@oro-ai/sdk 1.0.113 → 1.0.114

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 CHANGED
@@ -1278,6 +1278,10 @@ type EpisodeResultEntry = {
1278
1278
  * Terminal reward paid for this episode. MUST be null when verdict_correct is false.
1279
1279
  */
1280
1280
  aggregate_reward?: (number | string | null);
1281
+ /**
1282
+ * Validator-measured monotonic wall time from episode session creation through terminal result finalization.
1283
+ */
1284
+ wall_seconds?: (number | string | null);
1281
1285
  /**
1282
1286
  * sha256 of the ledger's final state — cross-validator parity anchor. Required for completed / partial / leakage / exploit; MUST be null for the *_error outcomes (no state to compare).
1283
1287
  */
package/dist/index.d.ts CHANGED
@@ -1278,6 +1278,10 @@ type EpisodeResultEntry = {
1278
1278
  * Terminal reward paid for this episode. MUST be null when verdict_correct is false.
1279
1279
  */
1280
1280
  aggregate_reward?: (number | string | null);
1281
+ /**
1282
+ * Validator-measured monotonic wall time from episode session creation through terminal result finalization.
1283
+ */
1284
+ wall_seconds?: (number | string | null);
1281
1285
  /**
1282
1286
  * sha256 of the ledger's final state — cross-validator parity anchor. Required for completed / partial / leakage / exploit; MUST be null for the *_error outcomes (no state to compare).
1283
1287
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.113",
3
+ "version": "1.0.114",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -1338,6 +1338,10 @@ export type EpisodeResultEntry = {
1338
1338
  * Terminal reward paid for this episode. MUST be null when verdict_correct is false.
1339
1339
  */
1340
1340
  aggregate_reward?: (number | string | null);
1341
+ /**
1342
+ * Validator-measured monotonic wall time from episode session creation through terminal result finalization.
1343
+ */
1344
+ wall_seconds?: (number | string | null);
1341
1345
  /**
1342
1346
  * sha256 of the ledger's final state — cross-validator parity anchor. Required for completed / partial / leakage / exploit; MUST be null for the *_error outcomes (no state to compare).
1343
1347
  */