@oro-ai/sdk 1.0.73 → 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 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
  /**
@@ -2113,6 +2117,14 @@ type RacePublic = {
2113
2117
  * Number of qualifiers in this race
2114
2118
  */
2115
2119
  qualifier_count?: number;
2120
+ /**
2121
+ * Arithmetic mean of race_score across the top half (by race_score desc) of qualifiers with non-null race_score. Null when the race has no scored qualifiers. Pre-computed so Frontend doesn't have to fan out per-race detail fetches for the Challenge History chart's tooltip distribution stats.
2122
+ */
2123
+ top50_mean?: (number | null);
2124
+ /**
2125
+ * Population standard deviation of race_score across the same top-half slice as top50_mean. Null when the race has no scored qualifiers; 0.0 when the top half contains a single row.
2126
+ */
2127
+ top50_std?: (number | null);
2116
2128
  /**
2117
2129
  * When the race was created
2118
2130
  */
@@ -4069,7 +4081,6 @@ declare const joinWaitlist: <ThrowOnError extends boolean = false>(options: Opti
4069
4081
  * - `deepseek-ai/DeepSeek-V3.1-TEE`
4070
4082
  * - `deepseek-ai/DeepSeek-V3-0324-TEE`
4071
4083
  * - `deepseek-ai/DeepSeek-R1-0528-TEE`
4072
- * - `tngtech/DeepSeek-TNG-R1T2-Chimera-TEE`
4073
4084
  * - `XiaomiMiMo/MiMo-V2-Flash-TEE`
4074
4085
  */
4075
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
  /**
@@ -2113,6 +2117,14 @@ type RacePublic = {
2113
2117
  * Number of qualifiers in this race
2114
2118
  */
2115
2119
  qualifier_count?: number;
2120
+ /**
2121
+ * Arithmetic mean of race_score across the top half (by race_score desc) of qualifiers with non-null race_score. Null when the race has no scored qualifiers. Pre-computed so Frontend doesn't have to fan out per-race detail fetches for the Challenge History chart's tooltip distribution stats.
2122
+ */
2123
+ top50_mean?: (number | null);
2124
+ /**
2125
+ * Population standard deviation of race_score across the same top-half slice as top50_mean. Null when the race has no scored qualifiers; 0.0 when the top half contains a single row.
2126
+ */
2127
+ top50_std?: (number | null);
2116
2128
  /**
2117
2129
  * When the race was created
2118
2130
  */
@@ -4069,7 +4081,6 @@ declare const joinWaitlist: <ThrowOnError extends boolean = false>(options: Opti
4069
4081
  * - `deepseek-ai/DeepSeek-V3.1-TEE`
4070
4082
  * - `deepseek-ai/DeepSeek-V3-0324-TEE`
4071
4083
  * - `deepseek-ai/DeepSeek-R1-0528-TEE`
4072
- * - `tngtech/DeepSeek-TNG-R1T2-Chimera-TEE`
4073
4084
  * - `XiaomiMiMo/MiMo-V2-Flash-TEE`
4074
4085
  */
4075
4086
  declare const getInferenceModels: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<GetInferenceModelsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetInferenceModelsResponse, HTTPValidationError, ThrowOnError>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.73",
3
+ "version": "1.0.76",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -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 = {
@@ -2219,6 +2223,14 @@ export type RacePublic = {
2219
2223
  * Number of qualifiers in this race
2220
2224
  */
2221
2225
  qualifier_count?: number;
2226
+ /**
2227
+ * Arithmetic mean of race_score across the top half (by race_score desc) of qualifiers with non-null race_score. Null when the race has no scored qualifiers. Pre-computed so Frontend doesn't have to fan out per-race detail fetches for the Challenge History chart's tooltip distribution stats.
2228
+ */
2229
+ top50_mean?: (number | null);
2230
+ /**
2231
+ * Population standard deviation of race_score across the same top-half slice as top50_mean. Null when the race has no scored qualifiers; 0.0 when the top half contains a single row.
2232
+ */
2233
+ top50_std?: (number | null);
2222
2234
  /**
2223
2235
  * When the race was created
2224
2236
  */