59 lines
1.4 KiB
TypeScript
59 lines
1.4 KiB
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
|
|
/**
|
|
* Summary of the upstream registry snapshot exposed through Demo3.
|
|
*/
|
|
export type Demo3UpstreamRegistrySummary = {
|
|
/**
|
|
* Total static registry entry count before filtering.
|
|
*/
|
|
totalEntryCount: number,
|
|
/**
|
|
* Returned entry count after filtering.
|
|
*/
|
|
returnedEntryCount: number,
|
|
/**
|
|
* Number of entries that have a program id.
|
|
*/
|
|
entriesWithProgramIdCount: number,
|
|
/**
|
|
* Number of entries that have a discriminator.
|
|
*/
|
|
entriesWithDiscriminatorCount: number,
|
|
/**
|
|
* Number of program-level seed entries.
|
|
*/
|
|
programEntryCount: number,
|
|
/**
|
|
* Number of instruction entries.
|
|
*/
|
|
instructionEntryCount: number,
|
|
/**
|
|
* Number of event entries.
|
|
*/
|
|
eventEntryCount: number,
|
|
/**
|
|
* Number of account entries.
|
|
*/
|
|
accountEntryCount: number,
|
|
/**
|
|
* Number of entries still unverified from upstream Git or seed data.
|
|
*/
|
|
upstreamGitUnverifiedCount: number,
|
|
/**
|
|
* Number of entries mapped into decoders but not locally observed.
|
|
*/
|
|
upstreamGitMappedUnverifiedCount: number,
|
|
/**
|
|
* Number of entries observed in the local corpus.
|
|
*/
|
|
upstreamGitLocalCorpusObservedCount: number,
|
|
/**
|
|
* Number of entries materialized in local business tables.
|
|
*/
|
|
upstreamGitLocalCorpusMaterializedCount: number,
|
|
/**
|
|
* Number of layout entries still unverified locally.
|
|
*/
|
|
upstreamGitLayoutUnverifiedCount: number, };
|