@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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +4 -0
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