@dynamic-labs/sdk-api 0.0.241 → 0.0.243
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.
package/package.json
CHANGED
|
@@ -82,35 +82,35 @@ export interface InternalUserFields {
|
|
|
82
82
|
*/
|
|
83
83
|
username?: string | null;
|
|
84
84
|
/**
|
|
85
|
-
*
|
|
85
|
+
* BTC wallet address
|
|
86
86
|
* @type {string}
|
|
87
87
|
* @memberof InternalUserFields
|
|
88
88
|
*/
|
|
89
|
-
btcWallet?: string;
|
|
89
|
+
btcWallet?: string | null;
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* KDA wallet address
|
|
92
92
|
* @type {string}
|
|
93
93
|
* @memberof InternalUserFields
|
|
94
94
|
*/
|
|
95
|
-
kdaWallet?: string;
|
|
95
|
+
kdaWallet?: string | null;
|
|
96
96
|
/**
|
|
97
|
-
*
|
|
97
|
+
* LTC or DOGE wallet address
|
|
98
98
|
* @type {string}
|
|
99
99
|
* @memberof InternalUserFields
|
|
100
100
|
*/
|
|
101
|
-
ltcWallet?: string;
|
|
101
|
+
ltcWallet?: string | null;
|
|
102
102
|
/**
|
|
103
|
-
*
|
|
103
|
+
* CKB wallet address
|
|
104
104
|
* @type {string}
|
|
105
105
|
* @memberof InternalUserFields
|
|
106
106
|
*/
|
|
107
|
-
ckbWallet?: string;
|
|
107
|
+
ckbWallet?: string | null;
|
|
108
108
|
/**
|
|
109
|
-
*
|
|
109
|
+
* KAS wallet address
|
|
110
110
|
* @type {string}
|
|
111
111
|
* @memberof InternalUserFields
|
|
112
112
|
*/
|
|
113
|
-
kasWallet?: string;
|
|
113
|
+
kasWallet?: string | null;
|
|
114
114
|
/**
|
|
115
115
|
*
|
|
116
116
|
* @type {boolean}
|
|
@@ -47,6 +47,8 @@ exports.UnprocessableEntityErrorCode = void 0;
|
|
|
47
47
|
UnprocessableEntityErrorCode["NoEnabledEmailProvider"] = "no_enabled_email_provider";
|
|
48
48
|
UnprocessableEntityErrorCode["InvalidKeyExportUrl"] = "invalid_key_export_url";
|
|
49
49
|
UnprocessableEntityErrorCode["InvalidDynamicProps"] = "invalid_dynamic_props";
|
|
50
|
+
UnprocessableEntityErrorCode["TooManyOrganizationsForUser"] = "too_many_organizations_for_user";
|
|
51
|
+
UnprocessableEntityErrorCode["TooManyProjectsForOrganization"] = "too_many_projects_for_organization";
|
|
50
52
|
})(exports.UnprocessableEntityErrorCode || (exports.UnprocessableEntityErrorCode = {}));
|
|
51
53
|
function UnprocessableEntityErrorCodeFromJSON(json) {
|
|
52
54
|
return UnprocessableEntityErrorCodeFromJSONTyped(json);
|
|
@@ -39,7 +39,9 @@ export declare enum UnprocessableEntityErrorCode {
|
|
|
39
39
|
EmptyChainName = "empty_chain_name",
|
|
40
40
|
NoEnabledEmailProvider = "no_enabled_email_provider",
|
|
41
41
|
InvalidKeyExportUrl = "invalid_key_export_url",
|
|
42
|
-
InvalidDynamicProps = "invalid_dynamic_props"
|
|
42
|
+
InvalidDynamicProps = "invalid_dynamic_props",
|
|
43
|
+
TooManyOrganizationsForUser = "too_many_organizations_for_user",
|
|
44
|
+
TooManyProjectsForOrganization = "too_many_projects_for_organization"
|
|
43
45
|
}
|
|
44
46
|
export declare function UnprocessableEntityErrorCodeFromJSON(json: any): UnprocessableEntityErrorCode;
|
|
45
47
|
export declare function UnprocessableEntityErrorCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnprocessableEntityErrorCode;
|
|
@@ -43,6 +43,8 @@ var UnprocessableEntityErrorCode;
|
|
|
43
43
|
UnprocessableEntityErrorCode["NoEnabledEmailProvider"] = "no_enabled_email_provider";
|
|
44
44
|
UnprocessableEntityErrorCode["InvalidKeyExportUrl"] = "invalid_key_export_url";
|
|
45
45
|
UnprocessableEntityErrorCode["InvalidDynamicProps"] = "invalid_dynamic_props";
|
|
46
|
+
UnprocessableEntityErrorCode["TooManyOrganizationsForUser"] = "too_many_organizations_for_user";
|
|
47
|
+
UnprocessableEntityErrorCode["TooManyProjectsForOrganization"] = "too_many_projects_for_organization";
|
|
46
48
|
})(UnprocessableEntityErrorCode || (UnprocessableEntityErrorCode = {}));
|
|
47
49
|
function UnprocessableEntityErrorCodeFromJSON(json) {
|
|
48
50
|
return UnprocessableEntityErrorCodeFromJSONTyped(json);
|
|
@@ -94,35 +94,35 @@ export interface UserFields {
|
|
|
94
94
|
*/
|
|
95
95
|
metadata?: object;
|
|
96
96
|
/**
|
|
97
|
-
*
|
|
97
|
+
* BTC wallet address
|
|
98
98
|
* @type {string}
|
|
99
99
|
* @memberof UserFields
|
|
100
100
|
*/
|
|
101
|
-
btcWallet?: string;
|
|
101
|
+
btcWallet?: string | null;
|
|
102
102
|
/**
|
|
103
|
-
*
|
|
103
|
+
* KDA wallet address
|
|
104
104
|
* @type {string}
|
|
105
105
|
* @memberof UserFields
|
|
106
106
|
*/
|
|
107
|
-
kdaWallet?: string;
|
|
107
|
+
kdaWallet?: string | null;
|
|
108
108
|
/**
|
|
109
|
-
*
|
|
109
|
+
* LTC or DOGE wallet address
|
|
110
110
|
* @type {string}
|
|
111
111
|
* @memberof UserFields
|
|
112
112
|
*/
|
|
113
|
-
ltcWallet?: string;
|
|
113
|
+
ltcWallet?: string | null;
|
|
114
114
|
/**
|
|
115
|
-
*
|
|
115
|
+
* CKB wallet address
|
|
116
116
|
* @type {string}
|
|
117
117
|
* @memberof UserFields
|
|
118
118
|
*/
|
|
119
|
-
ckbWallet?: string;
|
|
119
|
+
ckbWallet?: string | null;
|
|
120
120
|
/**
|
|
121
|
-
*
|
|
121
|
+
* KAS wallet address
|
|
122
122
|
* @type {string}
|
|
123
123
|
* @memberof UserFields
|
|
124
124
|
*/
|
|
125
|
-
kasWallet?: string;
|
|
125
|
+
kasWallet?: string | null;
|
|
126
126
|
/**
|
|
127
127
|
*
|
|
128
128
|
* @type {boolean}
|