@oro-ai/sdk 1.0.46 → 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 +72 -0
- package/dist/index.d.ts +72 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +72 -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
|
*/
|
|
@@ -588,6 +608,14 @@ type AgentVersionStatus = {
|
|
|
588
608
|
per_validator_success_scores?: ({
|
|
589
609
|
[key: string]: (number);
|
|
590
610
|
} | null);
|
|
611
|
+
/**
|
|
612
|
+
* True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
|
|
613
|
+
*/
|
|
614
|
+
is_active_qualifier?: boolean;
|
|
615
|
+
/**
|
|
616
|
+
* Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
|
|
617
|
+
*/
|
|
618
|
+
outranked_by_agent_version_id?: (string | null);
|
|
591
619
|
};
|
|
592
620
|
type AgentVersionVariance = {
|
|
593
621
|
/**
|
|
@@ -1324,6 +1352,22 @@ type HeartbeatRequest = {
|
|
|
1324
1352
|
service_versions?: ({
|
|
1325
1353
|
[key: string]: (string);
|
|
1326
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);
|
|
1327
1371
|
};
|
|
1328
1372
|
type HeartbeatResponse = {
|
|
1329
1373
|
/**
|
|
@@ -1442,6 +1486,14 @@ type LeaderboardEntry = {
|
|
|
1442
1486
|
* When this agent became top
|
|
1443
1487
|
*/
|
|
1444
1488
|
top_at?: (string | null);
|
|
1489
|
+
/**
|
|
1490
|
+
* True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
|
|
1491
|
+
*/
|
|
1492
|
+
is_active_qualifier?: boolean;
|
|
1493
|
+
/**
|
|
1494
|
+
* Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
|
|
1495
|
+
*/
|
|
1496
|
+
outranked_by_agent_version_id?: (string | null);
|
|
1445
1497
|
};
|
|
1446
1498
|
type LeaderboardResponse = {
|
|
1447
1499
|
/**
|
|
@@ -2598,6 +2650,26 @@ type ValidatorPublic = {
|
|
|
2598
2650
|
* On-chain identity description
|
|
2599
2651
|
*/
|
|
2600
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);
|
|
2601
2673
|
};
|
|
2602
2674
|
/**
|
|
2603
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
|
*/
|
|
@@ -588,6 +608,14 @@ type AgentVersionStatus = {
|
|
|
588
608
|
per_validator_success_scores?: ({
|
|
589
609
|
[key: string]: (number);
|
|
590
610
|
} | null);
|
|
611
|
+
/**
|
|
612
|
+
* True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
|
|
613
|
+
*/
|
|
614
|
+
is_active_qualifier?: boolean;
|
|
615
|
+
/**
|
|
616
|
+
* Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
|
|
617
|
+
*/
|
|
618
|
+
outranked_by_agent_version_id?: (string | null);
|
|
591
619
|
};
|
|
592
620
|
type AgentVersionVariance = {
|
|
593
621
|
/**
|
|
@@ -1324,6 +1352,22 @@ type HeartbeatRequest = {
|
|
|
1324
1352
|
service_versions?: ({
|
|
1325
1353
|
[key: string]: (string);
|
|
1326
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);
|
|
1327
1371
|
};
|
|
1328
1372
|
type HeartbeatResponse = {
|
|
1329
1373
|
/**
|
|
@@ -1442,6 +1486,14 @@ type LeaderboardEntry = {
|
|
|
1442
1486
|
* When this agent became top
|
|
1443
1487
|
*/
|
|
1444
1488
|
top_at?: (string | null);
|
|
1489
|
+
/**
|
|
1490
|
+
* True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
|
|
1491
|
+
*/
|
|
1492
|
+
is_active_qualifier?: boolean;
|
|
1493
|
+
/**
|
|
1494
|
+
* Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
|
|
1495
|
+
*/
|
|
1496
|
+
outranked_by_agent_version_id?: (string | null);
|
|
1445
1497
|
};
|
|
1446
1498
|
type LeaderboardResponse = {
|
|
1447
1499
|
/**
|
|
@@ -2598,6 +2650,26 @@ type ValidatorPublic = {
|
|
|
2598
2650
|
* On-chain identity description
|
|
2599
2651
|
*/
|
|
2600
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);
|
|
2601
2673
|
};
|
|
2602
2674
|
/**
|
|
2603
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
|
*/
|
|
@@ -608,6 +628,14 @@ export type AgentVersionStatus = {
|
|
|
608
628
|
per_validator_success_scores?: ({
|
|
609
629
|
[key: string]: (number);
|
|
610
630
|
} | null);
|
|
631
|
+
/**
|
|
632
|
+
* True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
|
|
633
|
+
*/
|
|
634
|
+
is_active_qualifier?: boolean;
|
|
635
|
+
/**
|
|
636
|
+
* Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
|
|
637
|
+
*/
|
|
638
|
+
outranked_by_agent_version_id?: (string | null);
|
|
611
639
|
};
|
|
612
640
|
|
|
613
641
|
export type AgentVersionVariance = {
|
|
@@ -1384,6 +1412,22 @@ export type HeartbeatRequest = {
|
|
|
1384
1412
|
service_versions?: ({
|
|
1385
1413
|
[key: string]: (string);
|
|
1386
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);
|
|
1387
1431
|
};
|
|
1388
1432
|
|
|
1389
1433
|
export type HeartbeatResponse = {
|
|
@@ -1511,6 +1555,14 @@ export type LeaderboardEntry = {
|
|
|
1511
1555
|
* When this agent became top
|
|
1512
1556
|
*/
|
|
1513
1557
|
top_at?: (string | null);
|
|
1558
|
+
/**
|
|
1559
|
+
* True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
|
|
1560
|
+
*/
|
|
1561
|
+
is_active_qualifier?: boolean;
|
|
1562
|
+
/**
|
|
1563
|
+
* Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
|
|
1564
|
+
*/
|
|
1565
|
+
outranked_by_agent_version_id?: (string | null);
|
|
1514
1566
|
};
|
|
1515
1567
|
|
|
1516
1568
|
export type LeaderboardResponse = {
|
|
@@ -2729,6 +2781,26 @@ export type ValidatorPublic = {
|
|
|
2729
2781
|
* On-chain identity description
|
|
2730
2782
|
*/
|
|
2731
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);
|
|
2732
2804
|
};
|
|
2733
2805
|
|
|
2734
2806
|
/**
|