@synsci/sdk 2.0.47 → 2.0.49

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.
@@ -1087,7 +1087,6 @@ export declare class Session extends HeyApiClient {
1087
1087
  modelID: string;
1088
1088
  };
1089
1089
  autonomy?: "interactive" | "balanced" | "autonomous";
1090
- diversity?: "focused" | "balanced" | "exploratory";
1091
1090
  };
1092
1091
  system?: string;
1093
1092
  variant?: string;
@@ -1131,7 +1130,6 @@ export declare class Session extends HeyApiClient {
1131
1130
  modelID: string;
1132
1131
  };
1133
1132
  autonomy?: "interactive" | "balanced" | "autonomous";
1134
- diversity?: "focused" | "balanced" | "exploratory";
1135
1133
  };
1136
1134
  system?: string;
1137
1135
  variant?: string;
@@ -1160,7 +1158,6 @@ export declare class Session extends HeyApiClient {
1160
1158
  modelID: string;
1161
1159
  };
1162
1160
  autonomy?: "interactive" | "balanced" | "autonomous";
1163
- diversity?: "focused" | "balanced" | "exploratory";
1164
1161
  };
1165
1162
  variant?: string;
1166
1163
  tier?: string;
@@ -210,6 +210,8 @@ export type UserMessage = {
210
210
  text: string;
211
211
  epoch: string;
212
212
  transaction: string;
213
+ progress?: string;
214
+ repair?: boolean;
213
215
  } | {
214
216
  type: "compaction";
215
217
  auto: boolean;
@@ -231,7 +233,6 @@ export type UserMessage = {
231
233
  modelID: string;
232
234
  };
233
235
  autonomy?: "interactive" | "balanced" | "autonomous";
234
- diversity?: "focused" | "balanced" | "exploratory";
235
236
  };
236
237
  variant?: string;
237
238
  tier?: string;
@@ -4112,6 +4113,7 @@ export type SettingsComputeJobsListResponses = {
4112
4113
  approval: string;
4113
4114
  sdk: string;
4114
4115
  volume?: string;
4116
+ retained_volume?: boolean;
4115
4117
  };
4116
4118
  ssh?: {
4117
4119
  protocol: 1;
@@ -4601,6 +4603,7 @@ export type SettingsComputeJobsStartResponses = {
4601
4603
  approval: string;
4602
4604
  sdk: string;
4603
4605
  volume?: string;
4606
+ retained_volume?: boolean;
4604
4607
  };
4605
4608
  ssh?: {
4606
4609
  protocol: 1;
@@ -5266,6 +5269,7 @@ export type SettingsComputeJobsRetryResponses = {
5266
5269
  approval: string;
5267
5270
  sdk: string;
5268
5271
  volume?: string;
5272
+ retained_volume?: boolean;
5269
5273
  };
5270
5274
  ssh?: {
5271
5275
  protocol: 1;
@@ -5727,6 +5731,7 @@ export type SettingsComputeJobsReleaseResponses = {
5727
5731
  approval: string;
5728
5732
  sdk: string;
5729
5733
  volume?: string;
5734
+ retained_volume?: boolean;
5730
5735
  };
5731
5736
  ssh?: {
5732
5737
  protocol: 1;
@@ -6184,6 +6189,7 @@ export type SettingsComputeJobsCancelResponses = {
6184
6189
  approval: string;
6185
6190
  sdk: string;
6186
6191
  volume?: string;
6192
+ retained_volume?: boolean;
6187
6193
  };
6188
6194
  ssh?: {
6189
6195
  protocol: 1;
@@ -8424,7 +8430,6 @@ export type SessionPromptData = {
8424
8430
  modelID: string;
8425
8431
  };
8426
8432
  autonomy?: "interactive" | "balanced" | "autonomous";
8427
- diversity?: "focused" | "balanced" | "exploratory";
8428
8433
  };
8429
8434
  system?: string;
8430
8435
  variant?: string;
@@ -8603,7 +8608,6 @@ export type SessionPromptAsyncData = {
8603
8608
  modelID: string;
8604
8609
  };
8605
8610
  autonomy?: "interactive" | "balanced" | "autonomous";
8606
- diversity?: "focused" | "balanced" | "exploratory";
8607
8611
  };
8608
8612
  system?: string;
8609
8613
  variant?: string;
@@ -8655,7 +8659,6 @@ export type SessionCommandData = {
8655
8659
  modelID: string;
8656
8660
  };
8657
8661
  autonomy?: "interactive" | "balanced" | "autonomous";
8658
- diversity?: "focused" | "balanced" | "exploratory";
8659
8662
  };
8660
8663
  variant?: string;
8661
8664
  tier?: string;
@@ -13736,6 +13739,7 @@ export type AppSkillsResponses = {
13736
13739
  tags?: Array<string>;
13737
13740
  role?: "workflow" | "support";
13738
13741
  capability?: string;
13742
+ allowed_tools?: Array<string>;
13739
13743
  requirements?: {
13740
13744
  all?: Array<string>;
13741
13745
  any?: Array<string>;
@@ -13794,6 +13798,7 @@ export type AppSkillWriteResponses = {
13794
13798
  tags?: Array<string>;
13795
13799
  role?: "workflow" | "support";
13796
13800
  capability?: string;
13801
+ allowed_tools?: Array<string>;
13797
13802
  requirements?: {
13798
13803
  all?: Array<string>;
13799
13804
  any?: Array<string>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@synsci/sdk",
4
- "version": "2.0.47",
4
+ "version": "2.0.49",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "scripts": {