@dynamic-labs/sdk-api 0.0.728 → 0.0.730
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 +1 -1
- package/src/models/UnprocessableEntityErrorCode.cjs +1 -0
- package/src/models/UnprocessableEntityErrorCode.d.ts +1 -0
- package/src/models/UnprocessableEntityErrorCode.js +1 -0
- package/src/models/UserIdentifierTypeEnum.cjs +1 -0
- package/src/models/UserIdentifierTypeEnum.d.ts +2 -1
- package/src/models/UserIdentifierTypeEnum.js +1 -0
package/package.json
CHANGED
|
@@ -22,6 +22,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
22
22
|
*/
|
|
23
23
|
exports.UnprocessableEntityErrorCode = void 0;
|
|
24
24
|
(function (UnprocessableEntityErrorCode) {
|
|
25
|
+
UnprocessableEntityErrorCode["EmailCannotBeNull"] = "email_cannot_be_null";
|
|
25
26
|
UnprocessableEntityErrorCode["ExchangeCannotBeEnabled"] = "exchange_cannot_be_enabled";
|
|
26
27
|
UnprocessableEntityErrorCode["TransferAmountTooSmall"] = "transfer_amount_too_small";
|
|
27
28
|
UnprocessableEntityErrorCode["TransferAddressNotWhitelisted"] = "transfer_address_not_whitelisted";
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
* @enum {string}
|
|
16
16
|
*/
|
|
17
17
|
export declare enum UnprocessableEntityErrorCode {
|
|
18
|
+
EmailCannotBeNull = "email_cannot_be_null",
|
|
18
19
|
ExchangeCannotBeEnabled = "exchange_cannot_be_enabled",
|
|
19
20
|
TransferAmountTooSmall = "transfer_amount_too_small",
|
|
20
21
|
TransferAddressNotWhitelisted = "transfer_address_not_whitelisted",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
*/
|
|
19
19
|
var UnprocessableEntityErrorCode;
|
|
20
20
|
(function (UnprocessableEntityErrorCode) {
|
|
21
|
+
UnprocessableEntityErrorCode["EmailCannotBeNull"] = "email_cannot_be_null";
|
|
21
22
|
UnprocessableEntityErrorCode["ExchangeCannotBeEnabled"] = "exchange_cannot_be_enabled";
|
|
22
23
|
UnprocessableEntityErrorCode["TransferAmountTooSmall"] = "transfer_amount_too_small";
|
|
23
24
|
UnprocessableEntityErrorCode["TransferAddressNotWhitelisted"] = "transfer_address_not_whitelisted";
|
|
@@ -27,6 +27,7 @@ exports.UserIdentifierTypeEnum = void 0;
|
|
|
27
27
|
UserIdentifierTypeEnum["ExternalUserId"] = "externalUserId";
|
|
28
28
|
UserIdentifierTypeEnum["PhoneNumber"] = "phoneNumber";
|
|
29
29
|
UserIdentifierTypeEnum["SocialUsername"] = "socialUsername";
|
|
30
|
+
UserIdentifierTypeEnum["SocialAccountId"] = "socialAccountId";
|
|
30
31
|
})(exports.UserIdentifierTypeEnum || (exports.UserIdentifierTypeEnum = {}));
|
|
31
32
|
function UserIdentifierTypeEnumFromJSON(json) {
|
|
32
33
|
return UserIdentifierTypeEnumFromJSONTyped(json);
|
|
@@ -19,7 +19,8 @@ export declare enum UserIdentifierTypeEnum {
|
|
|
19
19
|
Id = "id",
|
|
20
20
|
ExternalUserId = "externalUserId",
|
|
21
21
|
PhoneNumber = "phoneNumber",
|
|
22
|
-
SocialUsername = "socialUsername"
|
|
22
|
+
SocialUsername = "socialUsername",
|
|
23
|
+
SocialAccountId = "socialAccountId"
|
|
23
24
|
}
|
|
24
25
|
export declare function UserIdentifierTypeEnumFromJSON(json: any): UserIdentifierTypeEnum;
|
|
25
26
|
export declare function UserIdentifierTypeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserIdentifierTypeEnum;
|
|
@@ -23,6 +23,7 @@ var UserIdentifierTypeEnum;
|
|
|
23
23
|
UserIdentifierTypeEnum["ExternalUserId"] = "externalUserId";
|
|
24
24
|
UserIdentifierTypeEnum["PhoneNumber"] = "phoneNumber";
|
|
25
25
|
UserIdentifierTypeEnum["SocialUsername"] = "socialUsername";
|
|
26
|
+
UserIdentifierTypeEnum["SocialAccountId"] = "socialAccountId";
|
|
26
27
|
})(UserIdentifierTypeEnum || (UserIdentifierTypeEnum = {}));
|
|
27
28
|
function UserIdentifierTypeEnumFromJSON(json) {
|
|
28
29
|
return UserIdentifierTypeEnumFromJSONTyped(json);
|