@oro-ai/sdk 1.0.3 → 1.0.4

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
@@ -2482,6 +2482,10 @@ type GetAuditEventsData = {
2482
2482
  * Offset for pagination
2483
2483
  */
2484
2484
  offset?: number;
2485
+ /**
2486
+ * Filter: at or after (ISO 8601)
2487
+ */
2488
+ since?: (string | null);
2485
2489
  /**
2486
2490
  * Filter by target ID
2487
2491
  */
@@ -2490,6 +2494,10 @@ type GetAuditEventsData = {
2490
2494
  * Filter by target type
2491
2495
  */
2492
2496
  target_type?: (string | null);
2497
+ /**
2498
+ * Filter: at or before (ISO 8601)
2499
+ */
2500
+ until?: (string | null);
2493
2501
  };
2494
2502
  };
2495
2503
  type GetAuditEventsResponse = (AuditEventsResponse);
@@ -2522,6 +2530,14 @@ type ListMinersData = {
2522
2530
  * Offset for pagination
2523
2531
  */
2524
2532
  offset?: number;
2533
+ /**
2534
+ * Last submitted at or after
2535
+ */
2536
+ since?: (string | null);
2537
+ /**
2538
+ * Last submitted at or before
2539
+ */
2540
+ until?: (string | null);
2525
2541
  };
2526
2542
  };
2527
2543
  type ListMinersResponse = (AdminMinersResponse);
@@ -2548,10 +2564,18 @@ type ListAgentVersions1Data = {
2548
2564
  * Offset for pagination
2549
2565
  */
2550
2566
  offset?: number;
2567
+ /**
2568
+ * Filter: created at or after (ISO 8601)
2569
+ */
2570
+ since?: (string | null);
2551
2571
  /**
2552
2572
  * Suite ID (defaults to active suite)
2553
2573
  */
2554
2574
  suite_id?: (number | null);
2575
+ /**
2576
+ * Filter: created at or before (ISO 8601)
2577
+ */
2578
+ until?: (string | null);
2555
2579
  };
2556
2580
  };
2557
2581
  type ListAgentVersions1Response = (AdminAgentVersionsResponse);
@@ -2570,10 +2594,18 @@ type ListEvaluationRunsData = {
2570
2594
  * Offset for pagination
2571
2595
  */
2572
2596
  offset?: number;
2597
+ /**
2598
+ * Filter: created at or after (ISO 8601)
2599
+ */
2600
+ since?: (string | null);
2573
2601
  /**
2574
2602
  * Filter by run status (e.g., RUNNING, SUCCESS)
2575
2603
  */
2576
2604
  status?: (EvaluationRunStatus | null);
2605
+ /**
2606
+ * Filter: created at or before (ISO 8601)
2607
+ */
2608
+ until?: (string | null);
2577
2609
  /**
2578
2610
  * Filter by validator hotkey
2579
2611
  */
package/dist/index.d.ts CHANGED
@@ -2482,6 +2482,10 @@ type GetAuditEventsData = {
2482
2482
  * Offset for pagination
2483
2483
  */
2484
2484
  offset?: number;
2485
+ /**
2486
+ * Filter: at or after (ISO 8601)
2487
+ */
2488
+ since?: (string | null);
2485
2489
  /**
2486
2490
  * Filter by target ID
2487
2491
  */
@@ -2490,6 +2494,10 @@ type GetAuditEventsData = {
2490
2494
  * Filter by target type
2491
2495
  */
2492
2496
  target_type?: (string | null);
2497
+ /**
2498
+ * Filter: at or before (ISO 8601)
2499
+ */
2500
+ until?: (string | null);
2493
2501
  };
2494
2502
  };
2495
2503
  type GetAuditEventsResponse = (AuditEventsResponse);
@@ -2522,6 +2530,14 @@ type ListMinersData = {
2522
2530
  * Offset for pagination
2523
2531
  */
2524
2532
  offset?: number;
2533
+ /**
2534
+ * Last submitted at or after
2535
+ */
2536
+ since?: (string | null);
2537
+ /**
2538
+ * Last submitted at or before
2539
+ */
2540
+ until?: (string | null);
2525
2541
  };
2526
2542
  };
2527
2543
  type ListMinersResponse = (AdminMinersResponse);
@@ -2548,10 +2564,18 @@ type ListAgentVersions1Data = {
2548
2564
  * Offset for pagination
2549
2565
  */
2550
2566
  offset?: number;
2567
+ /**
2568
+ * Filter: created at or after (ISO 8601)
2569
+ */
2570
+ since?: (string | null);
2551
2571
  /**
2552
2572
  * Suite ID (defaults to active suite)
2553
2573
  */
2554
2574
  suite_id?: (number | null);
2575
+ /**
2576
+ * Filter: created at or before (ISO 8601)
2577
+ */
2578
+ until?: (string | null);
2555
2579
  };
2556
2580
  };
2557
2581
  type ListAgentVersions1Response = (AdminAgentVersionsResponse);
@@ -2570,10 +2594,18 @@ type ListEvaluationRunsData = {
2570
2594
  * Offset for pagination
2571
2595
  */
2572
2596
  offset?: number;
2597
+ /**
2598
+ * Filter: created at or after (ISO 8601)
2599
+ */
2600
+ since?: (string | null);
2573
2601
  /**
2574
2602
  * Filter by run status (e.g., RUNNING, SUCCESS)
2575
2603
  */
2576
2604
  status?: (EvaluationRunStatus | null);
2605
+ /**
2606
+ * Filter: created at or before (ISO 8601)
2607
+ */
2608
+ until?: (string | null);
2577
2609
  /**
2578
2610
  * Filter by validator hotkey
2579
2611
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -2705,6 +2705,10 @@ export type GetAuditEventsData = {
2705
2705
  * Offset for pagination
2706
2706
  */
2707
2707
  offset?: number;
2708
+ /**
2709
+ * Filter: at or after (ISO 8601)
2710
+ */
2711
+ since?: (string | null);
2708
2712
  /**
2709
2713
  * Filter by target ID
2710
2714
  */
@@ -2713,6 +2717,10 @@ export type GetAuditEventsData = {
2713
2717
  * Filter by target type
2714
2718
  */
2715
2719
  target_type?: (string | null);
2720
+ /**
2721
+ * Filter: at or before (ISO 8601)
2722
+ */
2723
+ until?: (string | null);
2716
2724
  };
2717
2725
  };
2718
2726
 
@@ -2753,6 +2761,14 @@ export type ListMinersData = {
2753
2761
  * Offset for pagination
2754
2762
  */
2755
2763
  offset?: number;
2764
+ /**
2765
+ * Last submitted at or after
2766
+ */
2767
+ since?: (string | null);
2768
+ /**
2769
+ * Last submitted at or before
2770
+ */
2771
+ until?: (string | null);
2756
2772
  };
2757
2773
  };
2758
2774
 
@@ -2782,10 +2798,18 @@ export type ListAgentVersions1Data = {
2782
2798
  * Offset for pagination
2783
2799
  */
2784
2800
  offset?: number;
2801
+ /**
2802
+ * Filter: created at or after (ISO 8601)
2803
+ */
2804
+ since?: (string | null);
2785
2805
  /**
2786
2806
  * Suite ID (defaults to active suite)
2787
2807
  */
2788
2808
  suite_id?: (number | null);
2809
+ /**
2810
+ * Filter: created at or before (ISO 8601)
2811
+ */
2812
+ until?: (string | null);
2789
2813
  };
2790
2814
  };
2791
2815
 
@@ -2807,10 +2831,18 @@ export type ListEvaluationRunsData = {
2807
2831
  * Offset for pagination
2808
2832
  */
2809
2833
  offset?: number;
2834
+ /**
2835
+ * Filter: created at or after (ISO 8601)
2836
+ */
2837
+ since?: (string | null);
2810
2838
  /**
2811
2839
  * Filter by run status (e.g., RUNNING, SUCCESS)
2812
2840
  */
2813
2841
  status?: (EvaluationRunStatus | null);
2842
+ /**
2843
+ * Filter: created at or before (ISO 8601)
2844
+ */
2845
+ until?: (string | null);
2814
2846
  /**
2815
2847
  * Filter by validator hotkey
2816
2848
  */