@hirosystems/token-metadata-api-client 2.0.0-next.2 → 2.0.0-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/generated/schema.d.ts +3 -34
- package/package.json +1 -1
|
@@ -93,7 +93,7 @@ export interface paths {
|
|
|
93
93
|
};
|
|
94
94
|
/**
|
|
95
95
|
* API Status
|
|
96
|
-
* @description Displays the status of the API
|
|
96
|
+
* @description Displays the status of the API
|
|
97
97
|
*/
|
|
98
98
|
get: operations["getApiStatus"];
|
|
99
99
|
put?: never;
|
|
@@ -712,40 +712,9 @@ export interface operations {
|
|
|
712
712
|
/** @example ready */
|
|
713
713
|
status: string;
|
|
714
714
|
chain_tip: {
|
|
715
|
-
/** @example 163541 */
|
|
716
715
|
block_height: number;
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
tokens?: {
|
|
720
|
-
/** @example 512 */
|
|
721
|
-
ft?: number;
|
|
722
|
-
/** @example 493452 */
|
|
723
|
-
nft?: number;
|
|
724
|
-
/** @example 44 */
|
|
725
|
-
sft?: number;
|
|
726
|
-
};
|
|
727
|
-
/** Api Token Contract Count */
|
|
728
|
-
token_contracts?: {
|
|
729
|
-
/** @example 3101 */
|
|
730
|
-
"sip-009"?: number;
|
|
731
|
-
/** @example 512 */
|
|
732
|
-
"sip-010"?: number;
|
|
733
|
-
/** @example 11 */
|
|
734
|
-
"sip-013"?: number;
|
|
735
|
-
};
|
|
736
|
-
/** Api Job Count */
|
|
737
|
-
job_queue?: {
|
|
738
|
-
/** @example 430562 */
|
|
739
|
-
pending?: number;
|
|
740
|
-
/** @example 512 */
|
|
741
|
-
queued?: number;
|
|
742
|
-
/** @example 12532 */
|
|
743
|
-
done?: number;
|
|
744
|
-
/** @example 11 */
|
|
745
|
-
failed?: number;
|
|
746
|
-
/** @example 20 */
|
|
747
|
-
invalid?: number;
|
|
748
|
-
};
|
|
716
|
+
index_block_hash: string;
|
|
717
|
+
} | null;
|
|
749
718
|
};
|
|
750
719
|
};
|
|
751
720
|
};
|
package/package.json
CHANGED