@synsci/sdk 2.0.2-test.69.1 → 2.0.2-test.70.1
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.
|
@@ -330,6 +330,10 @@ export declare class Review extends HeyApiClient {
|
|
|
330
330
|
*/
|
|
331
331
|
set<ThrowOnError extends boolean = false>(parameters?: {
|
|
332
332
|
auto?: boolean;
|
|
333
|
+
model?: {
|
|
334
|
+
providerID: string;
|
|
335
|
+
modelID: string;
|
|
336
|
+
} | null;
|
|
333
337
|
}, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SettingsReviewSetResponses, unknown, ThrowOnError, "fields">;
|
|
334
338
|
}
|
|
335
339
|
export declare class Preferences extends HeyApiClient {
|
|
@@ -345,6 +349,9 @@ export declare class Preferences extends HeyApiClient {
|
|
|
345
349
|
intent?: "commercial" | "non-commercial";
|
|
346
350
|
extra_budget_usd?: number;
|
|
347
351
|
show_trace?: boolean;
|
|
352
|
+
atlas_enabled?: boolean;
|
|
353
|
+
delegation_enabled?: boolean;
|
|
354
|
+
delegation_specialist?: string | null;
|
|
348
355
|
}, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SettingsPreferencesUpdateResponses, unknown, ThrowOnError, "fields">;
|
|
349
356
|
}
|
|
350
357
|
export declare class Billing extends HeyApiClient {
|
|
@@ -966,6 +973,7 @@ export declare class Session extends HeyApiClient {
|
|
|
966
973
|
tools?: {
|
|
967
974
|
[key: string]: boolean;
|
|
968
975
|
};
|
|
976
|
+
delegation?: boolean;
|
|
969
977
|
system?: string;
|
|
970
978
|
variant?: string;
|
|
971
979
|
tier?: string;
|
|
@@ -999,6 +1007,7 @@ export declare class Session extends HeyApiClient {
|
|
|
999
1007
|
tools?: {
|
|
1000
1008
|
[key: string]: boolean;
|
|
1001
1009
|
};
|
|
1010
|
+
delegation?: boolean;
|
|
1002
1011
|
system?: string;
|
|
1003
1012
|
variant?: string;
|
|
1004
1013
|
tier?: string;
|
|
@@ -605,7 +605,14 @@ export class Review extends HeyApiClient {
|
|
|
605
605
|
* Update reviewer preferences
|
|
606
606
|
*/
|
|
607
607
|
set(parameters, options) {
|
|
608
|
-
const params = buildClientParams([parameters], [
|
|
608
|
+
const params = buildClientParams([parameters], [
|
|
609
|
+
{
|
|
610
|
+
args: [
|
|
611
|
+
{ in: "body", key: "auto" },
|
|
612
|
+
{ in: "body", key: "model" },
|
|
613
|
+
],
|
|
614
|
+
},
|
|
615
|
+
]);
|
|
609
616
|
return (options?.client ?? this.client).put({
|
|
610
617
|
url: "/settings/review",
|
|
611
618
|
...options,
|
|
@@ -639,6 +646,9 @@ export class Preferences extends HeyApiClient {
|
|
|
639
646
|
{ in: "body", key: "intent" },
|
|
640
647
|
{ in: "body", key: "extra_budget_usd" },
|
|
641
648
|
{ in: "body", key: "show_trace" },
|
|
649
|
+
{ in: "body", key: "atlas_enabled" },
|
|
650
|
+
{ in: "body", key: "delegation_enabled" },
|
|
651
|
+
{ in: "body", key: "delegation_specialist" },
|
|
642
652
|
],
|
|
643
653
|
},
|
|
644
654
|
]);
|
|
@@ -1881,6 +1891,7 @@ export class Session extends HeyApiClient {
|
|
|
1881
1891
|
{ in: "body", key: "agent" },
|
|
1882
1892
|
{ in: "body", key: "noReply" },
|
|
1883
1893
|
{ in: "body", key: "tools" },
|
|
1894
|
+
{ in: "body", key: "delegation" },
|
|
1884
1895
|
{ in: "body", key: "system" },
|
|
1885
1896
|
{ in: "body", key: "variant" },
|
|
1886
1897
|
{ in: "body", key: "tier" },
|
|
@@ -1936,6 +1947,7 @@ export class Session extends HeyApiClient {
|
|
|
1936
1947
|
{ in: "body", key: "agent" },
|
|
1937
1948
|
{ in: "body", key: "noReply" },
|
|
1938
1949
|
{ in: "body", key: "tools" },
|
|
1950
|
+
{ in: "body", key: "delegation" },
|
|
1939
1951
|
{ in: "body", key: "system" },
|
|
1940
1952
|
{ in: "body", key: "variant" },
|
|
1941
1953
|
{ in: "body", key: "tier" },
|
|
@@ -172,6 +172,7 @@ export type UserMessage = {
|
|
|
172
172
|
tools?: {
|
|
173
173
|
[key: string]: boolean;
|
|
174
174
|
};
|
|
175
|
+
delegation?: boolean;
|
|
175
176
|
variant?: string;
|
|
176
177
|
tier?: string;
|
|
177
178
|
inference?: {
|
|
@@ -3969,12 +3970,20 @@ export type SettingsReviewGetResponses = {
|
|
|
3969
3970
|
*/
|
|
3970
3971
|
200: {
|
|
3971
3972
|
auto: boolean;
|
|
3973
|
+
model?: {
|
|
3974
|
+
providerID: string;
|
|
3975
|
+
modelID: string;
|
|
3976
|
+
} | null;
|
|
3972
3977
|
};
|
|
3973
3978
|
};
|
|
3974
3979
|
export type SettingsReviewGetResponse = SettingsReviewGetResponses[keyof SettingsReviewGetResponses];
|
|
3975
3980
|
export type SettingsReviewSetData = {
|
|
3976
3981
|
body?: {
|
|
3977
3982
|
auto: boolean;
|
|
3983
|
+
model?: {
|
|
3984
|
+
providerID: string;
|
|
3985
|
+
modelID: string;
|
|
3986
|
+
} | null;
|
|
3978
3987
|
};
|
|
3979
3988
|
path?: never;
|
|
3980
3989
|
query?: never;
|
|
@@ -3986,6 +3995,10 @@ export type SettingsReviewSetResponses = {
|
|
|
3986
3995
|
*/
|
|
3987
3996
|
200: {
|
|
3988
3997
|
auto: boolean;
|
|
3998
|
+
model?: {
|
|
3999
|
+
providerID: string;
|
|
4000
|
+
modelID: string;
|
|
4001
|
+
} | null;
|
|
3989
4002
|
};
|
|
3990
4003
|
};
|
|
3991
4004
|
export type SettingsReviewSetResponse = SettingsReviewSetResponses[keyof SettingsReviewSetResponses];
|
|
@@ -4004,6 +4017,9 @@ export type SettingsPreferencesGetResponses = {
|
|
|
4004
4017
|
intent?: "commercial" | "non-commercial";
|
|
4005
4018
|
extra_budget_usd?: number;
|
|
4006
4019
|
show_trace?: boolean;
|
|
4020
|
+
atlas_enabled?: boolean;
|
|
4021
|
+
delegation_enabled?: boolean;
|
|
4022
|
+
delegation_specialist?: string | null;
|
|
4007
4023
|
};
|
|
4008
4024
|
};
|
|
4009
4025
|
export type SettingsPreferencesGetResponse = SettingsPreferencesGetResponses[keyof SettingsPreferencesGetResponses];
|
|
@@ -4013,6 +4029,9 @@ export type SettingsPreferencesUpdateData = {
|
|
|
4013
4029
|
intent?: "commercial" | "non-commercial";
|
|
4014
4030
|
extra_budget_usd?: number;
|
|
4015
4031
|
show_trace?: boolean;
|
|
4032
|
+
atlas_enabled?: boolean;
|
|
4033
|
+
delegation_enabled?: boolean;
|
|
4034
|
+
delegation_specialist?: string | null;
|
|
4016
4035
|
};
|
|
4017
4036
|
path?: never;
|
|
4018
4037
|
query?: never;
|
|
@@ -4027,6 +4046,9 @@ export type SettingsPreferencesUpdateResponses = {
|
|
|
4027
4046
|
intent?: "commercial" | "non-commercial";
|
|
4028
4047
|
extra_budget_usd?: number;
|
|
4029
4048
|
show_trace?: boolean;
|
|
4049
|
+
atlas_enabled?: boolean;
|
|
4050
|
+
delegation_enabled?: boolean;
|
|
4051
|
+
delegation_specialist?: string | null;
|
|
4030
4052
|
};
|
|
4031
4053
|
};
|
|
4032
4054
|
export type SettingsPreferencesUpdateResponse = SettingsPreferencesUpdateResponses[keyof SettingsPreferencesUpdateResponses];
|
|
@@ -5711,6 +5733,7 @@ export type SessionPromptData = {
|
|
|
5711
5733
|
tools?: {
|
|
5712
5734
|
[key: string]: boolean;
|
|
5713
5735
|
};
|
|
5736
|
+
delegation?: boolean;
|
|
5714
5737
|
system?: string;
|
|
5715
5738
|
variant?: string;
|
|
5716
5739
|
tier?: string;
|
|
@@ -5879,6 +5902,7 @@ export type SessionPromptAsyncData = {
|
|
|
5879
5902
|
tools?: {
|
|
5880
5903
|
[key: string]: boolean;
|
|
5881
5904
|
};
|
|
5905
|
+
delegation?: boolean;
|
|
5882
5906
|
system?: string;
|
|
5883
5907
|
variant?: string;
|
|
5884
5908
|
tier?: string;
|