@oro-ai/sdk 1.0.25 → 1.0.26

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
@@ -842,7 +842,7 @@ type Body_submit_agent = {
842
842
  /**
843
843
  * Python agent file (max 1MB)
844
844
  */
845
- file: string;
845
+ file: (Blob | File);
846
846
  };
847
847
  /**
848
848
  * Request to cancel an agent version's evaluation.
package/dist/index.d.ts CHANGED
@@ -842,7 +842,7 @@ type Body_submit_agent = {
842
842
  /**
843
843
  * Python agent file (max 1MB)
844
844
  */
845
- file: string;
845
+ file: (Blob | File);
846
846
  };
847
847
  /**
848
848
  * Request to cancel an agent version's evaluation.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -877,7 +877,7 @@ export type Body_submit_agent = {
877
877
  /**
878
878
  * Python agent file (max 1MB)
879
879
  */
880
- file: string;
880
+ file: (Blob | File);
881
881
  };
882
882
 
883
883
  /**