@oro-ai/sdk 1.0.47 → 1.0.48
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/dist/index.d.mts +56 -0
- package/dist/index.d.ts +56 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +56 -0
package/dist/index.d.mts
CHANGED
|
@@ -308,6 +308,26 @@ type AdminValidatorEntry = {
|
|
|
308
308
|
* On-chain identity description
|
|
309
309
|
*/
|
|
310
310
|
identity_description?: (string | null);
|
|
311
|
+
/**
|
|
312
|
+
* Latest reported host CPU utilisation percentage (0-100)
|
|
313
|
+
*/
|
|
314
|
+
cpu_pct?: (number | null);
|
|
315
|
+
/**
|
|
316
|
+
* Latest reported host RAM utilisation percentage (0-100)
|
|
317
|
+
*/
|
|
318
|
+
ram_pct?: (number | null);
|
|
319
|
+
/**
|
|
320
|
+
* Latest reported host disk utilisation percentage on the sandbox volume (0-100)
|
|
321
|
+
*/
|
|
322
|
+
disk_pct?: (number | null);
|
|
323
|
+
/**
|
|
324
|
+
* Latest reported running Docker container count on the host
|
|
325
|
+
*/
|
|
326
|
+
docker_container_count?: (number | null);
|
|
327
|
+
/**
|
|
328
|
+
* UTC timestamp of the last resource-metrics report
|
|
329
|
+
*/
|
|
330
|
+
metrics_reported_at?: (string | null);
|
|
311
331
|
/**
|
|
312
332
|
* Whether the validator is banned
|
|
313
333
|
*/
|
|
@@ -1332,6 +1352,22 @@ type HeartbeatRequest = {
|
|
|
1332
1352
|
service_versions?: ({
|
|
1333
1353
|
[key: string]: (string);
|
|
1334
1354
|
} | null);
|
|
1355
|
+
/**
|
|
1356
|
+
* Validator host CPU utilisation percentage (0-100)
|
|
1357
|
+
*/
|
|
1358
|
+
cpu_pct?: (number | null);
|
|
1359
|
+
/**
|
|
1360
|
+
* Validator host RAM utilisation percentage (0-100)
|
|
1361
|
+
*/
|
|
1362
|
+
ram_pct?: (number | null);
|
|
1363
|
+
/**
|
|
1364
|
+
* Validator host disk utilisation percentage on the sandbox volume (0-100)
|
|
1365
|
+
*/
|
|
1366
|
+
disk_pct?: (number | null);
|
|
1367
|
+
/**
|
|
1368
|
+
* Validator host running Docker container count
|
|
1369
|
+
*/
|
|
1370
|
+
docker_container_count?: (number | null);
|
|
1335
1371
|
};
|
|
1336
1372
|
type HeartbeatResponse = {
|
|
1337
1373
|
/**
|
|
@@ -2614,6 +2650,26 @@ type ValidatorPublic = {
|
|
|
2614
2650
|
* On-chain identity description
|
|
2615
2651
|
*/
|
|
2616
2652
|
identity_description?: (string | null);
|
|
2653
|
+
/**
|
|
2654
|
+
* Latest reported host CPU utilisation percentage (0-100)
|
|
2655
|
+
*/
|
|
2656
|
+
cpu_pct?: (number | null);
|
|
2657
|
+
/**
|
|
2658
|
+
* Latest reported host RAM utilisation percentage (0-100)
|
|
2659
|
+
*/
|
|
2660
|
+
ram_pct?: (number | null);
|
|
2661
|
+
/**
|
|
2662
|
+
* Latest reported host disk utilisation percentage on the sandbox volume (0-100)
|
|
2663
|
+
*/
|
|
2664
|
+
disk_pct?: (number | null);
|
|
2665
|
+
/**
|
|
2666
|
+
* Latest reported running Docker container count on the host
|
|
2667
|
+
*/
|
|
2668
|
+
docker_container_count?: (number | null);
|
|
2669
|
+
/**
|
|
2670
|
+
* UTC timestamp of the last resource-metrics report
|
|
2671
|
+
*/
|
|
2672
|
+
metrics_reported_at?: (string | null);
|
|
2617
2673
|
};
|
|
2618
2674
|
/**
|
|
2619
2675
|
* Aggregated validator scoring analysis.
|
package/dist/index.d.ts
CHANGED
|
@@ -308,6 +308,26 @@ type AdminValidatorEntry = {
|
|
|
308
308
|
* On-chain identity description
|
|
309
309
|
*/
|
|
310
310
|
identity_description?: (string | null);
|
|
311
|
+
/**
|
|
312
|
+
* Latest reported host CPU utilisation percentage (0-100)
|
|
313
|
+
*/
|
|
314
|
+
cpu_pct?: (number | null);
|
|
315
|
+
/**
|
|
316
|
+
* Latest reported host RAM utilisation percentage (0-100)
|
|
317
|
+
*/
|
|
318
|
+
ram_pct?: (number | null);
|
|
319
|
+
/**
|
|
320
|
+
* Latest reported host disk utilisation percentage on the sandbox volume (0-100)
|
|
321
|
+
*/
|
|
322
|
+
disk_pct?: (number | null);
|
|
323
|
+
/**
|
|
324
|
+
* Latest reported running Docker container count on the host
|
|
325
|
+
*/
|
|
326
|
+
docker_container_count?: (number | null);
|
|
327
|
+
/**
|
|
328
|
+
* UTC timestamp of the last resource-metrics report
|
|
329
|
+
*/
|
|
330
|
+
metrics_reported_at?: (string | null);
|
|
311
331
|
/**
|
|
312
332
|
* Whether the validator is banned
|
|
313
333
|
*/
|
|
@@ -1332,6 +1352,22 @@ type HeartbeatRequest = {
|
|
|
1332
1352
|
service_versions?: ({
|
|
1333
1353
|
[key: string]: (string);
|
|
1334
1354
|
} | null);
|
|
1355
|
+
/**
|
|
1356
|
+
* Validator host CPU utilisation percentage (0-100)
|
|
1357
|
+
*/
|
|
1358
|
+
cpu_pct?: (number | null);
|
|
1359
|
+
/**
|
|
1360
|
+
* Validator host RAM utilisation percentage (0-100)
|
|
1361
|
+
*/
|
|
1362
|
+
ram_pct?: (number | null);
|
|
1363
|
+
/**
|
|
1364
|
+
* Validator host disk utilisation percentage on the sandbox volume (0-100)
|
|
1365
|
+
*/
|
|
1366
|
+
disk_pct?: (number | null);
|
|
1367
|
+
/**
|
|
1368
|
+
* Validator host running Docker container count
|
|
1369
|
+
*/
|
|
1370
|
+
docker_container_count?: (number | null);
|
|
1335
1371
|
};
|
|
1336
1372
|
type HeartbeatResponse = {
|
|
1337
1373
|
/**
|
|
@@ -2614,6 +2650,26 @@ type ValidatorPublic = {
|
|
|
2614
2650
|
* On-chain identity description
|
|
2615
2651
|
*/
|
|
2616
2652
|
identity_description?: (string | null);
|
|
2653
|
+
/**
|
|
2654
|
+
* Latest reported host CPU utilisation percentage (0-100)
|
|
2655
|
+
*/
|
|
2656
|
+
cpu_pct?: (number | null);
|
|
2657
|
+
/**
|
|
2658
|
+
* Latest reported host RAM utilisation percentage (0-100)
|
|
2659
|
+
*/
|
|
2660
|
+
ram_pct?: (number | null);
|
|
2661
|
+
/**
|
|
2662
|
+
* Latest reported host disk utilisation percentage on the sandbox volume (0-100)
|
|
2663
|
+
*/
|
|
2664
|
+
disk_pct?: (number | null);
|
|
2665
|
+
/**
|
|
2666
|
+
* Latest reported running Docker container count on the host
|
|
2667
|
+
*/
|
|
2668
|
+
docker_container_count?: (number | null);
|
|
2669
|
+
/**
|
|
2670
|
+
* UTC timestamp of the last resource-metrics report
|
|
2671
|
+
*/
|
|
2672
|
+
metrics_reported_at?: (string | null);
|
|
2617
2673
|
};
|
|
2618
2674
|
/**
|
|
2619
2675
|
* Aggregated validator scoring analysis.
|
package/package.json
CHANGED
|
@@ -315,6 +315,26 @@ export type AdminValidatorEntry = {
|
|
|
315
315
|
* On-chain identity description
|
|
316
316
|
*/
|
|
317
317
|
identity_description?: (string | null);
|
|
318
|
+
/**
|
|
319
|
+
* Latest reported host CPU utilisation percentage (0-100)
|
|
320
|
+
*/
|
|
321
|
+
cpu_pct?: (number | null);
|
|
322
|
+
/**
|
|
323
|
+
* Latest reported host RAM utilisation percentage (0-100)
|
|
324
|
+
*/
|
|
325
|
+
ram_pct?: (number | null);
|
|
326
|
+
/**
|
|
327
|
+
* Latest reported host disk utilisation percentage on the sandbox volume (0-100)
|
|
328
|
+
*/
|
|
329
|
+
disk_pct?: (number | null);
|
|
330
|
+
/**
|
|
331
|
+
* Latest reported running Docker container count on the host
|
|
332
|
+
*/
|
|
333
|
+
docker_container_count?: (number | null);
|
|
334
|
+
/**
|
|
335
|
+
* UTC timestamp of the last resource-metrics report
|
|
336
|
+
*/
|
|
337
|
+
metrics_reported_at?: (string | null);
|
|
318
338
|
/**
|
|
319
339
|
* Whether the validator is banned
|
|
320
340
|
*/
|
|
@@ -1392,6 +1412,22 @@ export type HeartbeatRequest = {
|
|
|
1392
1412
|
service_versions?: ({
|
|
1393
1413
|
[key: string]: (string);
|
|
1394
1414
|
} | null);
|
|
1415
|
+
/**
|
|
1416
|
+
* Validator host CPU utilisation percentage (0-100)
|
|
1417
|
+
*/
|
|
1418
|
+
cpu_pct?: (number | null);
|
|
1419
|
+
/**
|
|
1420
|
+
* Validator host RAM utilisation percentage (0-100)
|
|
1421
|
+
*/
|
|
1422
|
+
ram_pct?: (number | null);
|
|
1423
|
+
/**
|
|
1424
|
+
* Validator host disk utilisation percentage on the sandbox volume (0-100)
|
|
1425
|
+
*/
|
|
1426
|
+
disk_pct?: (number | null);
|
|
1427
|
+
/**
|
|
1428
|
+
* Validator host running Docker container count
|
|
1429
|
+
*/
|
|
1430
|
+
docker_container_count?: (number | null);
|
|
1395
1431
|
};
|
|
1396
1432
|
|
|
1397
1433
|
export type HeartbeatResponse = {
|
|
@@ -2745,6 +2781,26 @@ export type ValidatorPublic = {
|
|
|
2745
2781
|
* On-chain identity description
|
|
2746
2782
|
*/
|
|
2747
2783
|
identity_description?: (string | null);
|
|
2784
|
+
/**
|
|
2785
|
+
* Latest reported host CPU utilisation percentage (0-100)
|
|
2786
|
+
*/
|
|
2787
|
+
cpu_pct?: (number | null);
|
|
2788
|
+
/**
|
|
2789
|
+
* Latest reported host RAM utilisation percentage (0-100)
|
|
2790
|
+
*/
|
|
2791
|
+
ram_pct?: (number | null);
|
|
2792
|
+
/**
|
|
2793
|
+
* Latest reported host disk utilisation percentage on the sandbox volume (0-100)
|
|
2794
|
+
*/
|
|
2795
|
+
disk_pct?: (number | null);
|
|
2796
|
+
/**
|
|
2797
|
+
* Latest reported running Docker container count on the host
|
|
2798
|
+
*/
|
|
2799
|
+
docker_container_count?: (number | null);
|
|
2800
|
+
/**
|
|
2801
|
+
* UTC timestamp of the last resource-metrics report
|
|
2802
|
+
*/
|
|
2803
|
+
metrics_reported_at?: (string | null);
|
|
2748
2804
|
};
|
|
2749
2805
|
|
|
2750
2806
|
/**
|