@oro-ai/sdk 1.0.74 → 1.0.76
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 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
- package/src/generated/sdk.gen.ts +0 -1
- package/src/generated/types.gen.ts +4 -0
package/dist/index.d.mts
CHANGED
|
@@ -1086,6 +1086,10 @@ type CreateSuiteRequest = {
|
|
|
1086
1086
|
* Whether the suite is publicly visible
|
|
1087
1087
|
*/
|
|
1088
1088
|
is_public?: boolean;
|
|
1089
|
+
/**
|
|
1090
|
+
* Existing suite versions to also add the new problems to (via problem_suite_membership). Use to extend a race-bank with a freshly-generated batch while keeping the batch's own origin.
|
|
1091
|
+
*/
|
|
1092
|
+
also_member_of?: Array<(number)>;
|
|
1089
1093
|
};
|
|
1090
1094
|
type CreateSuiteResponse = {
|
|
1091
1095
|
/**
|
|
@@ -4077,7 +4081,6 @@ declare const joinWaitlist: <ThrowOnError extends boolean = false>(options: Opti
|
|
|
4077
4081
|
* - `deepseek-ai/DeepSeek-V3.1-TEE`
|
|
4078
4082
|
* - `deepseek-ai/DeepSeek-V3-0324-TEE`
|
|
4079
4083
|
* - `deepseek-ai/DeepSeek-R1-0528-TEE`
|
|
4080
|
-
* - `tngtech/DeepSeek-TNG-R1T2-Chimera-TEE`
|
|
4081
4084
|
* - `XiaomiMiMo/MiMo-V2-Flash-TEE`
|
|
4082
4085
|
*/
|
|
4083
4086
|
declare const getInferenceModels: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<GetInferenceModelsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetInferenceModelsResponse, HTTPValidationError, ThrowOnError>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1086,6 +1086,10 @@ type CreateSuiteRequest = {
|
|
|
1086
1086
|
* Whether the suite is publicly visible
|
|
1087
1087
|
*/
|
|
1088
1088
|
is_public?: boolean;
|
|
1089
|
+
/**
|
|
1090
|
+
* Existing suite versions to also add the new problems to (via problem_suite_membership). Use to extend a race-bank with a freshly-generated batch while keeping the batch's own origin.
|
|
1091
|
+
*/
|
|
1092
|
+
also_member_of?: Array<(number)>;
|
|
1089
1093
|
};
|
|
1090
1094
|
type CreateSuiteResponse = {
|
|
1091
1095
|
/**
|
|
@@ -4077,7 +4081,6 @@ declare const joinWaitlist: <ThrowOnError extends boolean = false>(options: Opti
|
|
|
4077
4081
|
* - `deepseek-ai/DeepSeek-V3.1-TEE`
|
|
4078
4082
|
* - `deepseek-ai/DeepSeek-V3-0324-TEE`
|
|
4079
4083
|
* - `deepseek-ai/DeepSeek-R1-0528-TEE`
|
|
4080
|
-
* - `tngtech/DeepSeek-TNG-R1T2-Chimera-TEE`
|
|
4081
4084
|
* - `XiaomiMiMo/MiMo-V2-Flash-TEE`
|
|
4082
4085
|
*/
|
|
4083
4086
|
declare const getInferenceModels: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<GetInferenceModelsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetInferenceModelsResponse, HTTPValidationError, ThrowOnError>;
|
package/package.json
CHANGED
package/src/generated/sdk.gen.ts
CHANGED
|
@@ -271,7 +271,6 @@ export const joinWaitlist = <ThrowOnError extends boolean = false>(options: Opti
|
|
|
271
271
|
* - `deepseek-ai/DeepSeek-V3.1-TEE`
|
|
272
272
|
* - `deepseek-ai/DeepSeek-V3-0324-TEE`
|
|
273
273
|
* - `deepseek-ai/DeepSeek-R1-0528-TEE`
|
|
274
|
-
* - `tngtech/DeepSeek-TNG-R1T2-Chimera-TEE`
|
|
275
274
|
* - `XiaomiMiMo/MiMo-V2-Flash-TEE`
|
|
276
275
|
*/
|
|
277
276
|
export const getInferenceModels = <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<GetInferenceModelsData, ThrowOnError>) => {
|
|
@@ -1134,6 +1134,10 @@ export type CreateSuiteRequest = {
|
|
|
1134
1134
|
* Whether the suite is publicly visible
|
|
1135
1135
|
*/
|
|
1136
1136
|
is_public?: boolean;
|
|
1137
|
+
/**
|
|
1138
|
+
* Existing suite versions to also add the new problems to (via problem_suite_membership). Use to extend a race-bank with a freshly-generated batch while keeping the batch's own origin.
|
|
1139
|
+
*/
|
|
1140
|
+
also_member_of?: Array<(number)>;
|
|
1137
1141
|
};
|
|
1138
1142
|
|
|
1139
1143
|
export type CreateSuiteResponse = {
|