@crowdedkingdoms/crowdyjs 8.14.0 → 8.14.1
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.
|
@@ -6853,6 +6853,10 @@ export type WasmAppDiagnostics = {
|
|
|
6853
6853
|
moduleCount: Scalars['Int']['output'];
|
|
6854
6854
|
/** Runs in the last 24h. */
|
|
6855
6855
|
runs24h: Scalars['Int']['output'];
|
|
6856
|
+
/** Rust compiler version of the toolchain on the replica that served this query (the boot-logged fingerprint; replicas with skewed toolchains produce disjoint compile-cache keys). Null when the toolchain is not provisioned on this host. */
|
|
6857
|
+
toolchainRustVersion: Maybe<Scalars['String']['output']>;
|
|
6858
|
+
/** wasm-opt version of the toolchain on the replica that served this query. Null when the toolchain is not provisioned on this host. */
|
|
6859
|
+
toolchainWasmOptVersion: Maybe<Scalars['String']['output']>;
|
|
6856
6860
|
/** Most-active modules in the last 24h. */
|
|
6857
6861
|
topModules: Array<WasmTopModule>;
|
|
6858
6862
|
/** Trigger bindings defined. */
|
|
@@ -9053,6 +9057,8 @@ export type ComputeAppDiagnosticsQuery = {
|
|
|
9053
9057
|
runs24h: number;
|
|
9054
9058
|
failedRuns24h: number;
|
|
9055
9059
|
fuelUsed24h: string;
|
|
9060
|
+
toolchainRustVersion: string | null;
|
|
9061
|
+
toolchainWasmOptVersion: string | null;
|
|
9056
9062
|
topModules: Array<{
|
|
9057
9063
|
__typename?: 'WasmTopModule';
|
|
9058
9064
|
moduleName: string;
|