@synsci/sdk 2.0.2-test.68.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 {
|
|
@@ -344,6 +348,10 @@ export declare class Preferences extends HeyApiClient {
|
|
|
344
348
|
reasoning_effort?: "minimal" | "low" | "medium" | "high";
|
|
345
349
|
intent?: "commercial" | "non-commercial";
|
|
346
350
|
extra_budget_usd?: number;
|
|
351
|
+
show_trace?: boolean;
|
|
352
|
+
atlas_enabled?: boolean;
|
|
353
|
+
delegation_enabled?: boolean;
|
|
354
|
+
delegation_specialist?: string | null;
|
|
347
355
|
}, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SettingsPreferencesUpdateResponses, unknown, ThrowOnError, "fields">;
|
|
348
356
|
}
|
|
349
357
|
export declare class Billing extends HeyApiClient {
|
|
@@ -965,6 +973,7 @@ export declare class Session extends HeyApiClient {
|
|
|
965
973
|
tools?: {
|
|
966
974
|
[key: string]: boolean;
|
|
967
975
|
};
|
|
976
|
+
delegation?: boolean;
|
|
968
977
|
system?: string;
|
|
969
978
|
variant?: string;
|
|
970
979
|
tier?: string;
|
|
@@ -998,6 +1007,7 @@ export declare class Session extends HeyApiClient {
|
|
|
998
1007
|
tools?: {
|
|
999
1008
|
[key: string]: boolean;
|
|
1000
1009
|
};
|
|
1010
|
+
delegation?: boolean;
|
|
1001
1011
|
system?: string;
|
|
1002
1012
|
variant?: string;
|
|
1003
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,
|
|
@@ -638,6 +645,10 @@ export class Preferences extends HeyApiClient {
|
|
|
638
645
|
{ in: "body", key: "reasoning_effort" },
|
|
639
646
|
{ in: "body", key: "intent" },
|
|
640
647
|
{ in: "body", key: "extra_budget_usd" },
|
|
648
|
+
{ in: "body", key: "show_trace" },
|
|
649
|
+
{ in: "body", key: "atlas_enabled" },
|
|
650
|
+
{ in: "body", key: "delegation_enabled" },
|
|
651
|
+
{ in: "body", key: "delegation_specialist" },
|
|
641
652
|
],
|
|
642
653
|
},
|
|
643
654
|
]);
|
|
@@ -1880,6 +1891,7 @@ export class Session extends HeyApiClient {
|
|
|
1880
1891
|
{ in: "body", key: "agent" },
|
|
1881
1892
|
{ in: "body", key: "noReply" },
|
|
1882
1893
|
{ in: "body", key: "tools" },
|
|
1894
|
+
{ in: "body", key: "delegation" },
|
|
1883
1895
|
{ in: "body", key: "system" },
|
|
1884
1896
|
{ in: "body", key: "variant" },
|
|
1885
1897
|
{ in: "body", key: "tier" },
|
|
@@ -1935,6 +1947,7 @@ export class Session extends HeyApiClient {
|
|
|
1935
1947
|
{ in: "body", key: "agent" },
|
|
1936
1948
|
{ in: "body", key: "noReply" },
|
|
1937
1949
|
{ in: "body", key: "tools" },
|
|
1950
|
+
{ in: "body", key: "delegation" },
|
|
1938
1951
|
{ in: "body", key: "system" },
|
|
1939
1952
|
{ in: "body", key: "variant" },
|
|
1940
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];
|
|
@@ -4003,6 +4016,10 @@ export type SettingsPreferencesGetResponses = {
|
|
|
4003
4016
|
reasoning_effort?: "minimal" | "low" | "medium" | "high";
|
|
4004
4017
|
intent?: "commercial" | "non-commercial";
|
|
4005
4018
|
extra_budget_usd?: number;
|
|
4019
|
+
show_trace?: boolean;
|
|
4020
|
+
atlas_enabled?: boolean;
|
|
4021
|
+
delegation_enabled?: boolean;
|
|
4022
|
+
delegation_specialist?: string | null;
|
|
4006
4023
|
};
|
|
4007
4024
|
};
|
|
4008
4025
|
export type SettingsPreferencesGetResponse = SettingsPreferencesGetResponses[keyof SettingsPreferencesGetResponses];
|
|
@@ -4011,6 +4028,10 @@ export type SettingsPreferencesUpdateData = {
|
|
|
4011
4028
|
reasoning_effort?: "minimal" | "low" | "medium" | "high";
|
|
4012
4029
|
intent?: "commercial" | "non-commercial";
|
|
4013
4030
|
extra_budget_usd?: number;
|
|
4031
|
+
show_trace?: boolean;
|
|
4032
|
+
atlas_enabled?: boolean;
|
|
4033
|
+
delegation_enabled?: boolean;
|
|
4034
|
+
delegation_specialist?: string | null;
|
|
4014
4035
|
};
|
|
4015
4036
|
path?: never;
|
|
4016
4037
|
query?: never;
|
|
@@ -4024,6 +4045,10 @@ export type SettingsPreferencesUpdateResponses = {
|
|
|
4024
4045
|
reasoning_effort?: "minimal" | "low" | "medium" | "high";
|
|
4025
4046
|
intent?: "commercial" | "non-commercial";
|
|
4026
4047
|
extra_budget_usd?: number;
|
|
4048
|
+
show_trace?: boolean;
|
|
4049
|
+
atlas_enabled?: boolean;
|
|
4050
|
+
delegation_enabled?: boolean;
|
|
4051
|
+
delegation_specialist?: string | null;
|
|
4027
4052
|
};
|
|
4028
4053
|
};
|
|
4029
4054
|
export type SettingsPreferencesUpdateResponse = SettingsPreferencesUpdateResponses[keyof SettingsPreferencesUpdateResponses];
|
|
@@ -5708,6 +5733,7 @@ export type SessionPromptData = {
|
|
|
5708
5733
|
tools?: {
|
|
5709
5734
|
[key: string]: boolean;
|
|
5710
5735
|
};
|
|
5736
|
+
delegation?: boolean;
|
|
5711
5737
|
system?: string;
|
|
5712
5738
|
variant?: string;
|
|
5713
5739
|
tier?: string;
|
|
@@ -5876,6 +5902,7 @@ export type SessionPromptAsyncData = {
|
|
|
5876
5902
|
tools?: {
|
|
5877
5903
|
[key: string]: boolean;
|
|
5878
5904
|
};
|
|
5905
|
+
delegation?: boolean;
|
|
5879
5906
|
system?: string;
|
|
5880
5907
|
variant?: string;
|
|
5881
5908
|
tier?: string;
|