@oro-ai/sdk 1.0.41 → 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 +8 -0
- package/dist/index.d.ts +8 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +8 -0
package/dist/index.d.mts
CHANGED
|
@@ -1717,6 +1717,10 @@ type ProblemProgressUpdate = {
|
|
|
1717
1717
|
* Total number of inference calls
|
|
1718
1718
|
*/
|
|
1719
1719
|
inference_total?: (number | null);
|
|
1720
|
+
/**
|
|
1721
|
+
* Sandbox execution time for this problem in seconds
|
|
1722
|
+
*/
|
|
1723
|
+
execution_time?: (number | null);
|
|
1720
1724
|
};
|
|
1721
1725
|
type ProblemPublic = {
|
|
1722
1726
|
/**
|
|
@@ -2493,6 +2497,10 @@ type ValidatorProblemResult = {
|
|
|
2493
2497
|
* Total number of inference calls for this problem
|
|
2494
2498
|
*/
|
|
2495
2499
|
inference_total?: (number | null);
|
|
2500
|
+
/**
|
|
2501
|
+
* Sandbox execution time for this problem in seconds
|
|
2502
|
+
*/
|
|
2503
|
+
execution_time?: (number | null);
|
|
2496
2504
|
};
|
|
2497
2505
|
type ValidatorPublic = {
|
|
2498
2506
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1717,6 +1717,10 @@ type ProblemProgressUpdate = {
|
|
|
1717
1717
|
* Total number of inference calls
|
|
1718
1718
|
*/
|
|
1719
1719
|
inference_total?: (number | null);
|
|
1720
|
+
/**
|
|
1721
|
+
* Sandbox execution time for this problem in seconds
|
|
1722
|
+
*/
|
|
1723
|
+
execution_time?: (number | null);
|
|
1720
1724
|
};
|
|
1721
1725
|
type ProblemPublic = {
|
|
1722
1726
|
/**
|
|
@@ -2493,6 +2497,10 @@ type ValidatorProblemResult = {
|
|
|
2493
2497
|
* Total number of inference calls for this problem
|
|
2494
2498
|
*/
|
|
2495
2499
|
inference_total?: (number | null);
|
|
2500
|
+
/**
|
|
2501
|
+
* Sandbox execution time for this problem in seconds
|
|
2502
|
+
*/
|
|
2503
|
+
execution_time?: (number | null);
|
|
2496
2504
|
};
|
|
2497
2505
|
type ValidatorPublic = {
|
|
2498
2506
|
/**
|
package/package.json
CHANGED
|
@@ -1802,6 +1802,10 @@ export type ProblemProgressUpdate = {
|
|
|
1802
1802
|
* Total number of inference calls
|
|
1803
1803
|
*/
|
|
1804
1804
|
inference_total?: (number | null);
|
|
1805
|
+
/**
|
|
1806
|
+
* Sandbox execution time for this problem in seconds
|
|
1807
|
+
*/
|
|
1808
|
+
execution_time?: (number | null);
|
|
1805
1809
|
};
|
|
1806
1810
|
|
|
1807
1811
|
export type ProblemPublic = {
|
|
@@ -2620,6 +2624,10 @@ export type ValidatorProblemResult = {
|
|
|
2620
2624
|
* Total number of inference calls for this problem
|
|
2621
2625
|
*/
|
|
2622
2626
|
inference_total?: (number | null);
|
|
2627
|
+
/**
|
|
2628
|
+
* Sandbox execution time for this problem in seconds
|
|
2629
|
+
*/
|
|
2630
|
+
execution_time?: (number | null);
|
|
2623
2631
|
};
|
|
2624
2632
|
|
|
2625
2633
|
export type ValidatorPublic = {
|