@oro-ai/sdk 1.0.26 → 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
@@ -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
@@ -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.26",
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",
@@ -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
  /**