@oro-ai/sdk 1.0.40 → 1.0.42
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 +32 -0
- package/dist/index.d.ts +32 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +32 -0
package/dist/index.d.mts
CHANGED
|
@@ -334,6 +334,14 @@ type AdminValidatorsResponse = {
|
|
|
334
334
|
type AdmissionReason = 'COOLDOWN' | 'INVALID_FILE' | 'NOT_REGISTERED_ONCHAIN' | 'BANNED' | 'NO_ACTIVE_SUITE';
|
|
335
335
|
type AdmissionStatus = 'ACCEPTED' | 'REJECTED';
|
|
336
336
|
type AgentLatestVersion = {
|
|
337
|
+
/**
|
|
338
|
+
* When the agent was eliminated from future races, if any
|
|
339
|
+
*/
|
|
340
|
+
eliminated_at?: (string | null);
|
|
341
|
+
/**
|
|
342
|
+
* Race number that eliminated this agent, if any
|
|
343
|
+
*/
|
|
344
|
+
eliminated_in_race_number?: (number | null);
|
|
337
345
|
/**
|
|
338
346
|
* Version ID
|
|
339
347
|
*/
|
|
@@ -388,6 +396,14 @@ type AgentPublic = {
|
|
|
388
396
|
latest_version?: (AgentLatestVersion | null);
|
|
389
397
|
};
|
|
390
398
|
type AgentVersionHistoryEntry = {
|
|
399
|
+
/**
|
|
400
|
+
* When the agent was eliminated from future races, if any
|
|
401
|
+
*/
|
|
402
|
+
eliminated_at?: (string | null);
|
|
403
|
+
/**
|
|
404
|
+
* Race number that eliminated this agent, if any
|
|
405
|
+
*/
|
|
406
|
+
eliminated_in_race_number?: (number | null);
|
|
391
407
|
/**
|
|
392
408
|
* Version ID
|
|
393
409
|
*/
|
|
@@ -486,6 +502,14 @@ type AgentVersionScoreEntry = {
|
|
|
486
502
|
*/
|
|
487
503
|
type AgentVersionState = 'RECEIVED' | 'QUEUED' | 'RUNNING' | 'ELIGIBLE' | 'DISCARDED' | 'CANCELLED';
|
|
488
504
|
type AgentVersionStatus = {
|
|
505
|
+
/**
|
|
506
|
+
* When the agent was eliminated from future races, if any
|
|
507
|
+
*/
|
|
508
|
+
eliminated_at?: (string | null);
|
|
509
|
+
/**
|
|
510
|
+
* Race number that eliminated this agent, if any
|
|
511
|
+
*/
|
|
512
|
+
eliminated_in_race_number?: (number | null);
|
|
489
513
|
/**
|
|
490
514
|
* Unique identifier for this version
|
|
491
515
|
*/
|
|
@@ -1693,6 +1717,10 @@ type ProblemProgressUpdate = {
|
|
|
1693
1717
|
* Total number of inference calls
|
|
1694
1718
|
*/
|
|
1695
1719
|
inference_total?: (number | null);
|
|
1720
|
+
/**
|
|
1721
|
+
* Sandbox execution time for this problem in seconds
|
|
1722
|
+
*/
|
|
1723
|
+
execution_time?: (number | null);
|
|
1696
1724
|
};
|
|
1697
1725
|
type ProblemPublic = {
|
|
1698
1726
|
/**
|
|
@@ -2469,6 +2497,10 @@ type ValidatorProblemResult = {
|
|
|
2469
2497
|
* Total number of inference calls for this problem
|
|
2470
2498
|
*/
|
|
2471
2499
|
inference_total?: (number | null);
|
|
2500
|
+
/**
|
|
2501
|
+
* Sandbox execution time for this problem in seconds
|
|
2502
|
+
*/
|
|
2503
|
+
execution_time?: (number | null);
|
|
2472
2504
|
};
|
|
2473
2505
|
type ValidatorPublic = {
|
|
2474
2506
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -334,6 +334,14 @@ type AdminValidatorsResponse = {
|
|
|
334
334
|
type AdmissionReason = 'COOLDOWN' | 'INVALID_FILE' | 'NOT_REGISTERED_ONCHAIN' | 'BANNED' | 'NO_ACTIVE_SUITE';
|
|
335
335
|
type AdmissionStatus = 'ACCEPTED' | 'REJECTED';
|
|
336
336
|
type AgentLatestVersion = {
|
|
337
|
+
/**
|
|
338
|
+
* When the agent was eliminated from future races, if any
|
|
339
|
+
*/
|
|
340
|
+
eliminated_at?: (string | null);
|
|
341
|
+
/**
|
|
342
|
+
* Race number that eliminated this agent, if any
|
|
343
|
+
*/
|
|
344
|
+
eliminated_in_race_number?: (number | null);
|
|
337
345
|
/**
|
|
338
346
|
* Version ID
|
|
339
347
|
*/
|
|
@@ -388,6 +396,14 @@ type AgentPublic = {
|
|
|
388
396
|
latest_version?: (AgentLatestVersion | null);
|
|
389
397
|
};
|
|
390
398
|
type AgentVersionHistoryEntry = {
|
|
399
|
+
/**
|
|
400
|
+
* When the agent was eliminated from future races, if any
|
|
401
|
+
*/
|
|
402
|
+
eliminated_at?: (string | null);
|
|
403
|
+
/**
|
|
404
|
+
* Race number that eliminated this agent, if any
|
|
405
|
+
*/
|
|
406
|
+
eliminated_in_race_number?: (number | null);
|
|
391
407
|
/**
|
|
392
408
|
* Version ID
|
|
393
409
|
*/
|
|
@@ -486,6 +502,14 @@ type AgentVersionScoreEntry = {
|
|
|
486
502
|
*/
|
|
487
503
|
type AgentVersionState = 'RECEIVED' | 'QUEUED' | 'RUNNING' | 'ELIGIBLE' | 'DISCARDED' | 'CANCELLED';
|
|
488
504
|
type AgentVersionStatus = {
|
|
505
|
+
/**
|
|
506
|
+
* When the agent was eliminated from future races, if any
|
|
507
|
+
*/
|
|
508
|
+
eliminated_at?: (string | null);
|
|
509
|
+
/**
|
|
510
|
+
* Race number that eliminated this agent, if any
|
|
511
|
+
*/
|
|
512
|
+
eliminated_in_race_number?: (number | null);
|
|
489
513
|
/**
|
|
490
514
|
* Unique identifier for this version
|
|
491
515
|
*/
|
|
@@ -1693,6 +1717,10 @@ type ProblemProgressUpdate = {
|
|
|
1693
1717
|
* Total number of inference calls
|
|
1694
1718
|
*/
|
|
1695
1719
|
inference_total?: (number | null);
|
|
1720
|
+
/**
|
|
1721
|
+
* Sandbox execution time for this problem in seconds
|
|
1722
|
+
*/
|
|
1723
|
+
execution_time?: (number | null);
|
|
1696
1724
|
};
|
|
1697
1725
|
type ProblemPublic = {
|
|
1698
1726
|
/**
|
|
@@ -2469,6 +2497,10 @@ type ValidatorProblemResult = {
|
|
|
2469
2497
|
* Total number of inference calls for this problem
|
|
2470
2498
|
*/
|
|
2471
2499
|
inference_total?: (number | null);
|
|
2500
|
+
/**
|
|
2501
|
+
* Sandbox execution time for this problem in seconds
|
|
2502
|
+
*/
|
|
2503
|
+
execution_time?: (number | null);
|
|
2472
2504
|
};
|
|
2473
2505
|
type ValidatorPublic = {
|
|
2474
2506
|
/**
|
package/package.json
CHANGED
|
@@ -345,6 +345,14 @@ export type AdmissionReason = 'COOLDOWN' | 'INVALID_FILE' | 'NOT_REGISTERED_ONCH
|
|
|
345
345
|
export type AdmissionStatus = 'ACCEPTED' | 'REJECTED';
|
|
346
346
|
|
|
347
347
|
export type AgentLatestVersion = {
|
|
348
|
+
/**
|
|
349
|
+
* When the agent was eliminated from future races, if any
|
|
350
|
+
*/
|
|
351
|
+
eliminated_at?: (string | null);
|
|
352
|
+
/**
|
|
353
|
+
* Race number that eliminated this agent, if any
|
|
354
|
+
*/
|
|
355
|
+
eliminated_in_race_number?: (number | null);
|
|
348
356
|
/**
|
|
349
357
|
* Version ID
|
|
350
358
|
*/
|
|
@@ -402,6 +410,14 @@ export type AgentPublic = {
|
|
|
402
410
|
};
|
|
403
411
|
|
|
404
412
|
export type AgentVersionHistoryEntry = {
|
|
413
|
+
/**
|
|
414
|
+
* When the agent was eliminated from future races, if any
|
|
415
|
+
*/
|
|
416
|
+
eliminated_at?: (string | null);
|
|
417
|
+
/**
|
|
418
|
+
* Race number that eliminated this agent, if any
|
|
419
|
+
*/
|
|
420
|
+
eliminated_in_race_number?: (number | null);
|
|
405
421
|
/**
|
|
406
422
|
* Version ID
|
|
407
423
|
*/
|
|
@@ -506,6 +522,14 @@ export type AgentVersionScoreEntry = {
|
|
|
506
522
|
export type AgentVersionState = 'RECEIVED' | 'QUEUED' | 'RUNNING' | 'ELIGIBLE' | 'DISCARDED' | 'CANCELLED';
|
|
507
523
|
|
|
508
524
|
export type AgentVersionStatus = {
|
|
525
|
+
/**
|
|
526
|
+
* When the agent was eliminated from future races, if any
|
|
527
|
+
*/
|
|
528
|
+
eliminated_at?: (string | null);
|
|
529
|
+
/**
|
|
530
|
+
* Race number that eliminated this agent, if any
|
|
531
|
+
*/
|
|
532
|
+
eliminated_in_race_number?: (number | null);
|
|
509
533
|
/**
|
|
510
534
|
* Unique identifier for this version
|
|
511
535
|
*/
|
|
@@ -1778,6 +1802,10 @@ export type ProblemProgressUpdate = {
|
|
|
1778
1802
|
* Total number of inference calls
|
|
1779
1803
|
*/
|
|
1780
1804
|
inference_total?: (number | null);
|
|
1805
|
+
/**
|
|
1806
|
+
* Sandbox execution time for this problem in seconds
|
|
1807
|
+
*/
|
|
1808
|
+
execution_time?: (number | null);
|
|
1781
1809
|
};
|
|
1782
1810
|
|
|
1783
1811
|
export type ProblemPublic = {
|
|
@@ -2596,6 +2624,10 @@ export type ValidatorProblemResult = {
|
|
|
2596
2624
|
* Total number of inference calls for this problem
|
|
2597
2625
|
*/
|
|
2598
2626
|
inference_total?: (number | null);
|
|
2627
|
+
/**
|
|
2628
|
+
* Sandbox execution time for this problem in seconds
|
|
2629
|
+
*/
|
|
2630
|
+
execution_time?: (number | null);
|
|
2599
2631
|
};
|
|
2600
2632
|
|
|
2601
2633
|
export type ValidatorPublic = {
|