@synsci/sdk 2.0.60 → 2.0.62
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.
|
@@ -1984,6 +1984,7 @@ export type Model = {
|
|
|
1984
1984
|
reasoningOptions?: Array<{
|
|
1985
1985
|
[key: string]: unknown;
|
|
1986
1986
|
}>;
|
|
1987
|
+
contextOptions?: Array<number>;
|
|
1987
1988
|
variants?: {
|
|
1988
1989
|
[key: string]: {
|
|
1989
1990
|
[key: string]: unknown;
|
|
@@ -1999,6 +2000,15 @@ export type Model = {
|
|
|
1999
2000
|
read: number;
|
|
2000
2001
|
write: number;
|
|
2001
2002
|
};
|
|
2003
|
+
tiers?: Array<{
|
|
2004
|
+
input: number;
|
|
2005
|
+
output: number;
|
|
2006
|
+
cache: {
|
|
2007
|
+
read: number;
|
|
2008
|
+
write: number;
|
|
2009
|
+
};
|
|
2010
|
+
threshold: number;
|
|
2011
|
+
}>;
|
|
2002
2012
|
};
|
|
2003
2013
|
provider?: {
|
|
2004
2014
|
body?: {
|
|
@@ -7405,6 +7415,8 @@ export type SettingsWalletGetResponses = {
|
|
|
7405
7415
|
200: {
|
|
7406
7416
|
signedIn: boolean;
|
|
7407
7417
|
balanceUsd: number | null;
|
|
7418
|
+
balanceRedacted?: boolean;
|
|
7419
|
+
accessVerified?: boolean;
|
|
7408
7420
|
billingMode: "managed" | "byok" | null;
|
|
7409
7421
|
managedSupported: boolean;
|
|
7410
7422
|
managedUnlocked: boolean;
|