@synsci/sdk 2.0.86 → 2.0.87-test.34371192024

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.
@@ -524,6 +524,7 @@ export declare class Preferences extends HeyApiClient {
524
524
  show_trace?: boolean;
525
525
  show_local_models?: boolean;
526
526
  desktop_onboarding_version?: number;
527
+ desktop_onboarding_step?: "account" | "ace" | "connect" | "done";
527
528
  atlas_enabled?: boolean;
528
529
  delegation_enabled?: boolean;
529
530
  delegation_specialist?: string | null;
@@ -533,6 +534,7 @@ export declare class Preferences extends HeyApiClient {
533
534
  modelID: string;
534
535
  } | null;
535
536
  delegation_autonomy?: "interactive" | "balanced" | "autonomous";
537
+ delegation_strategy?: "parallel" | "fusion";
536
538
  delegation_diversity?: "focused" | "balanced" | "exploratory";
537
539
  }, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SettingsPreferencesUpdateResponses, unknown, ThrowOnError, "fields">;
538
540
  /**
@@ -1178,6 +1180,7 @@ export declare class Session extends HeyApiClient {
1178
1180
  modelID: string;
1179
1181
  };
1180
1182
  autonomy?: "interactive" | "balanced" | "autonomous";
1183
+ strategy?: "parallel" | "fusion";
1181
1184
  };
1182
1185
  system?: string;
1183
1186
  variant?: string;
@@ -1222,6 +1225,7 @@ export declare class Session extends HeyApiClient {
1222
1225
  modelID: string;
1223
1226
  };
1224
1227
  autonomy?: "interactive" | "balanced" | "autonomous";
1228
+ strategy?: "parallel" | "fusion";
1225
1229
  };
1226
1230
  system?: string;
1227
1231
  variant?: string;
@@ -1251,6 +1255,7 @@ export declare class Session extends HeyApiClient {
1251
1255
  modelID: string;
1252
1256
  };
1253
1257
  autonomy?: "interactive" | "balanced" | "autonomous";
1258
+ strategy?: "parallel" | "fusion";
1254
1259
  };
1255
1260
  variant?: string;
1256
1261
  tier?: string;
@@ -1403,6 +1408,7 @@ export declare class Runtime extends HeyApiClient {
1403
1408
  modelID: string;
1404
1409
  };
1405
1410
  autonomy?: "interactive" | "balanced" | "autonomous";
1411
+ strategy?: "parallel" | "fusion";
1406
1412
  };
1407
1413
  requestID?: string;
1408
1414
  message?: string;
@@ -924,12 +924,14 @@ export class Preferences extends HeyApiClient {
924
924
  { in: "body", key: "show_trace" },
925
925
  { in: "body", key: "show_local_models" },
926
926
  { in: "body", key: "desktop_onboarding_version" },
927
+ { in: "body", key: "desktop_onboarding_step" },
927
928
  { in: "body", key: "atlas_enabled" },
928
929
  { in: "body", key: "delegation_enabled" },
929
930
  { in: "body", key: "delegation_specialist" },
930
931
  { in: "body", key: "delegation_level" },
931
932
  { in: "body", key: "delegation_worker_model" },
932
933
  { in: "body", key: "delegation_autonomy" },
934
+ { in: "body", key: "delegation_strategy" },
933
935
  { in: "body", key: "delegation_diversity" },
934
936
  ],
935
937
  },
@@ -252,6 +252,7 @@ export type UserMessage = {
252
252
  modelID: string;
253
253
  };
254
254
  autonomy?: "interactive" | "balanced" | "autonomous";
255
+ strategy?: "parallel" | "fusion";
255
256
  };
256
257
  variant?: string;
257
258
  tier?: string;
@@ -7002,6 +7003,7 @@ export type SettingsPreferencesGetResponses = {
7002
7003
  show_trace?: boolean;
7003
7004
  show_local_models?: boolean;
7004
7005
  desktop_onboarding_version?: number;
7006
+ desktop_onboarding_step?: "account" | "ace" | "connect" | "done";
7005
7007
  desktop_onboarding_operations?: {
7006
7008
  [key: string]: string;
7007
7009
  };
@@ -7014,6 +7016,7 @@ export type SettingsPreferencesGetResponses = {
7014
7016
  modelID: string;
7015
7017
  } | null;
7016
7018
  delegation_autonomy?: "interactive" | "balanced" | "autonomous";
7019
+ delegation_strategy?: "parallel" | "fusion";
7017
7020
  delegation_diversity?: "focused" | "balanced" | "exploratory";
7018
7021
  };
7019
7022
  };
@@ -7026,6 +7029,7 @@ export type SettingsPreferencesUpdateData = {
7026
7029
  show_trace?: boolean;
7027
7030
  show_local_models?: boolean;
7028
7031
  desktop_onboarding_version?: number;
7032
+ desktop_onboarding_step?: "account" | "ace" | "connect" | "done";
7029
7033
  atlas_enabled?: boolean;
7030
7034
  delegation_enabled?: boolean;
7031
7035
  delegation_specialist?: string | null;
@@ -7035,6 +7039,7 @@ export type SettingsPreferencesUpdateData = {
7035
7039
  modelID: string;
7036
7040
  } | null;
7037
7041
  delegation_autonomy?: "interactive" | "balanced" | "autonomous";
7042
+ delegation_strategy?: "parallel" | "fusion";
7038
7043
  delegation_diversity?: "focused" | "balanced" | "exploratory";
7039
7044
  };
7040
7045
  path?: never;
@@ -7055,6 +7060,7 @@ export type SettingsPreferencesUpdateResponses = {
7055
7060
  show_trace?: boolean;
7056
7061
  show_local_models?: boolean;
7057
7062
  desktop_onboarding_version?: number;
7063
+ desktop_onboarding_step?: "account" | "ace" | "connect" | "done";
7058
7064
  desktop_onboarding_operations?: {
7059
7065
  [key: string]: string;
7060
7066
  };
@@ -7067,6 +7073,7 @@ export type SettingsPreferencesUpdateResponses = {
7067
7073
  modelID: string;
7068
7074
  } | null;
7069
7075
  delegation_autonomy?: "interactive" | "balanced" | "autonomous";
7076
+ delegation_strategy?: "parallel" | "fusion";
7070
7077
  delegation_diversity?: "focused" | "balanced" | "exploratory";
7071
7078
  };
7072
7079
  };
@@ -9474,6 +9481,7 @@ export type SessionPromptData = {
9474
9481
  modelID: string;
9475
9482
  };
9476
9483
  autonomy?: "interactive" | "balanced" | "autonomous";
9484
+ strategy?: "parallel" | "fusion";
9477
9485
  };
9478
9486
  system?: string;
9479
9487
  variant?: string;
@@ -9653,6 +9661,7 @@ export type SessionPromptAsyncData = {
9653
9661
  modelID: string;
9654
9662
  };
9655
9663
  autonomy?: "interactive" | "balanced" | "autonomous";
9664
+ strategy?: "parallel" | "fusion";
9656
9665
  };
9657
9666
  system?: string;
9658
9667
  variant?: string;
@@ -9705,6 +9714,7 @@ export type SessionCommandData = {
9705
9714
  modelID: string;
9706
9715
  };
9707
9716
  autonomy?: "interactive" | "balanced" | "autonomous";
9717
+ strategy?: "parallel" | "fusion";
9708
9718
  };
9709
9719
  variant?: string;
9710
9720
  tier?: string;
@@ -9912,6 +9922,7 @@ export type RuntimePromptData = {
9912
9922
  modelID: string;
9913
9923
  };
9914
9924
  autonomy?: "interactive" | "balanced" | "autonomous";
9925
+ strategy?: "parallel" | "fusion";
9915
9926
  };
9916
9927
  requestID?: string;
9917
9928
  message?: 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.86",
4
+ "version": "2.0.87-test.34371192024",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "scripts": {