@synsci/sdk 2.0.109 → 2.0.111
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.
|
@@ -2875,6 +2875,7 @@ export type AccountGetResponses = {
|
|
|
2875
2875
|
credential: {
|
|
2876
2876
|
type: "personal" | "organization";
|
|
2877
2877
|
legacy: boolean;
|
|
2878
|
+
origin: "browser" | "key";
|
|
2878
2879
|
} | null;
|
|
2879
2880
|
credential_sync?: unknown;
|
|
2880
2881
|
};
|
|
@@ -7511,6 +7512,8 @@ export type SettingsUpdatesInstallErrors = {
|
|
|
7511
7512
|
*/
|
|
7512
7513
|
409: {
|
|
7513
7514
|
error: string;
|
|
7515
|
+
blockers?: Array<string>;
|
|
7516
|
+
pausable?: boolean;
|
|
7514
7517
|
};
|
|
7515
7518
|
};
|
|
7516
7519
|
export type SettingsUpdatesInstallError = SettingsUpdatesInstallErrors[keyof SettingsUpdatesInstallErrors];
|
|
@@ -7609,6 +7612,8 @@ export type SettingsUpdatesApplyErrors = {
|
|
|
7609
7612
|
*/
|
|
7610
7613
|
409: {
|
|
7611
7614
|
error: string;
|
|
7615
|
+
blockers?: Array<string>;
|
|
7616
|
+
pausable?: boolean;
|
|
7612
7617
|
};
|
|
7613
7618
|
};
|
|
7614
7619
|
export type SettingsUpdatesApplyError = SettingsUpdatesApplyErrors[keyof SettingsUpdatesApplyErrors];
|
|
@@ -7640,12 +7645,16 @@ export type SettingsUpdatesDisposeErrors = {
|
|
|
7640
7645
|
*/
|
|
7641
7646
|
401: {
|
|
7642
7647
|
error: string;
|
|
7648
|
+
blockers?: Array<string>;
|
|
7649
|
+
pausable?: boolean;
|
|
7643
7650
|
};
|
|
7644
7651
|
/**
|
|
7645
7652
|
* Runtime disposal did not finish within the bounded handoff
|
|
7646
7653
|
*/
|
|
7647
7654
|
503: {
|
|
7648
7655
|
error: string;
|
|
7656
|
+
blockers?: Array<string>;
|
|
7657
|
+
pausable?: boolean;
|
|
7649
7658
|
};
|
|
7650
7659
|
};
|
|
7651
7660
|
export type SettingsUpdatesDisposeError = SettingsUpdatesDisposeErrors[keyof SettingsUpdatesDisposeErrors];
|
|
@@ -7929,6 +7938,12 @@ export type SettingsWalletGetResponses = {
|
|
|
7929
7938
|
description: string;
|
|
7930
7939
|
createdAt: string;
|
|
7931
7940
|
}>;
|
|
7941
|
+
workspace?: {
|
|
7942
|
+
organizationId: string;
|
|
7943
|
+
name: string;
|
|
7944
|
+
personal: boolean;
|
|
7945
|
+
};
|
|
7946
|
+
origin?: "browser" | "key";
|
|
7932
7947
|
refreshing: boolean;
|
|
7933
7948
|
refreshedAt: number | null;
|
|
7934
7949
|
error?: string;
|