@oro-ai/sdk 1.0.25 → 1.0.27

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.
@@ -1036,6 +1036,10 @@ type CreateSuiteRequest = {
1036
1036
  * URI to the problem suite definition
1037
1037
  */
1038
1038
  problem_suite_uri: string;
1039
+ /**
1040
+ * Whether this suite is queryable via public API
1041
+ */
1042
+ is_public?: boolean;
1039
1043
  };
1040
1044
  /**
1041
1045
  * Response for suite creation.
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.
@@ -1036,6 +1036,10 @@ type CreateSuiteRequest = {
1036
1036
  * URI to the problem suite definition
1037
1037
  */
1038
1038
  problem_suite_uri: string;
1039
+ /**
1040
+ * Whether this suite is queryable via public API
1041
+ */
1042
+ is_public?: boolean;
1039
1043
  };
1040
1044
  /**
1041
1045
  * Response for suite creation.
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.27",
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
  /**
@@ -1082,6 +1082,10 @@ export type CreateSuiteRequest = {
1082
1082
  * URI to the problem suite definition
1083
1083
  */
1084
1084
  problem_suite_uri: string;
1085
+ /**
1086
+ * Whether this suite is queryable via public API
1087
+ */
1088
+ is_public?: boolean;
1085
1089
  };
1086
1090
 
1087
1091
  /**