@oro-ai/sdk 1.0.40 → 1.0.41
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 +24 -0
- package/dist/index.d.ts +24 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +24 -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
|
*/
|
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
|
*/
|
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
|
*/
|