@dynamic-labs/sdk-api 0.0.740 → 0.0.742
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
|
@@ -136,6 +136,7 @@ exports.UnprocessableEntityErrorCode = void 0;
|
|
|
136
136
|
UnprocessableEntityErrorCode["WalletServiceConnectionError"] = "wallet_service_connection_error";
|
|
137
137
|
UnprocessableEntityErrorCode["NoGlobalWalletFound"] = "no_global_wallet_found";
|
|
138
138
|
UnprocessableEntityErrorCode["InvalidMetadataValue"] = "invalid_metadata_value";
|
|
139
|
+
UnprocessableEntityErrorCode["MaxPasskeysPerUser"] = "max_passkeys_per_user";
|
|
139
140
|
})(exports.UnprocessableEntityErrorCode || (exports.UnprocessableEntityErrorCode = {}));
|
|
140
141
|
function UnprocessableEntityErrorCodeFromJSON(json) {
|
|
141
142
|
return UnprocessableEntityErrorCodeFromJSONTyped(json);
|
|
@@ -128,7 +128,8 @@ export declare enum UnprocessableEntityErrorCode {
|
|
|
128
128
|
InvalidKeySharesLength = "invalid_key_shares_length",
|
|
129
129
|
WalletServiceConnectionError = "wallet_service_connection_error",
|
|
130
130
|
NoGlobalWalletFound = "no_global_wallet_found",
|
|
131
|
-
InvalidMetadataValue = "invalid_metadata_value"
|
|
131
|
+
InvalidMetadataValue = "invalid_metadata_value",
|
|
132
|
+
MaxPasskeysPerUser = "max_passkeys_per_user"
|
|
132
133
|
}
|
|
133
134
|
export declare function UnprocessableEntityErrorCodeFromJSON(json: any): UnprocessableEntityErrorCode;
|
|
134
135
|
export declare function UnprocessableEntityErrorCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnprocessableEntityErrorCode;
|
|
@@ -132,6 +132,7 @@ var UnprocessableEntityErrorCode;
|
|
|
132
132
|
UnprocessableEntityErrorCode["WalletServiceConnectionError"] = "wallet_service_connection_error";
|
|
133
133
|
UnprocessableEntityErrorCode["NoGlobalWalletFound"] = "no_global_wallet_found";
|
|
134
134
|
UnprocessableEntityErrorCode["InvalidMetadataValue"] = "invalid_metadata_value";
|
|
135
|
+
UnprocessableEntityErrorCode["MaxPasskeysPerUser"] = "max_passkeys_per_user";
|
|
135
136
|
})(UnprocessableEntityErrorCode || (UnprocessableEntityErrorCode = {}));
|
|
136
137
|
function UnprocessableEntityErrorCodeFromJSON(json) {
|
|
137
138
|
return UnprocessableEntityErrorCodeFromJSONTyped(json);
|