@dynamic-labs/sdk-api 0.0.287 → 0.0.289
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/ProviderEnum.cjs +2 -0
- package/src/models/ProviderEnum.d.ts +3 -1
- package/src/models/ProviderEnum.js +2 -0
- package/src/models/SubscriptionAdvancedScopeEnum.cjs +1 -0
- package/src/models/SubscriptionAdvancedScopeEnum.d.ts +2 -1
- package/src/models/SubscriptionAdvancedScopeEnum.js +1 -0
- package/src/models/UnprocessableEntityErrorCode.cjs +1 -0
- package/src/models/UnprocessableEntityErrorCode.d.ts +2 -1
- package/src/models/UnprocessableEntityErrorCode.js +1 -0
package/package.json
CHANGED
|
@@ -39,6 +39,8 @@ exports.ProviderEnum = void 0;
|
|
|
39
39
|
ProviderEnum["Blocto"] = "blocto";
|
|
40
40
|
ProviderEnum["Banxa"] = "banxa";
|
|
41
41
|
ProviderEnum["Dynamic"] = "dynamic";
|
|
42
|
+
ProviderEnum["Alchemy"] = "alchemy";
|
|
43
|
+
ProviderEnum["Zerodev"] = "zerodev";
|
|
42
44
|
})(exports.ProviderEnum || (exports.ProviderEnum = {}));
|
|
43
45
|
function ProviderEnumFromJSON(json) {
|
|
44
46
|
return ProviderEnumFromJSONTyped(json);
|
|
@@ -31,7 +31,9 @@ export declare enum ProviderEnum {
|
|
|
31
31
|
Twitter = "twitter",
|
|
32
32
|
Blocto = "blocto",
|
|
33
33
|
Banxa = "banxa",
|
|
34
|
-
Dynamic = "dynamic"
|
|
34
|
+
Dynamic = "dynamic",
|
|
35
|
+
Alchemy = "alchemy",
|
|
36
|
+
Zerodev = "zerodev"
|
|
35
37
|
}
|
|
36
38
|
export declare function ProviderEnumFromJSON(json: any): ProviderEnum;
|
|
37
39
|
export declare function ProviderEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProviderEnum;
|
|
@@ -35,6 +35,8 @@ var ProviderEnum;
|
|
|
35
35
|
ProviderEnum["Blocto"] = "blocto";
|
|
36
36
|
ProviderEnum["Banxa"] = "banxa";
|
|
37
37
|
ProviderEnum["Dynamic"] = "dynamic";
|
|
38
|
+
ProviderEnum["Alchemy"] = "alchemy";
|
|
39
|
+
ProviderEnum["Zerodev"] = "zerodev";
|
|
38
40
|
})(ProviderEnum || (ProviderEnum = {}));
|
|
39
41
|
function ProviderEnumFromJSON(json) {
|
|
40
42
|
return ProviderEnumFromJSONTyped(json);
|
|
@@ -33,6 +33,7 @@ exports.SubscriptionAdvancedScopeEnum = void 0;
|
|
|
33
33
|
SubscriptionAdvancedScopeEnum["Captcha"] = "captcha";
|
|
34
34
|
SubscriptionAdvancedScopeEnum["SigninWithEmail"] = "signin_with_email";
|
|
35
35
|
SubscriptionAdvancedScopeEnum["Gating"] = "gating";
|
|
36
|
+
SubscriptionAdvancedScopeEnum["AccountAbstraction"] = "account_abstraction";
|
|
36
37
|
})(exports.SubscriptionAdvancedScopeEnum || (exports.SubscriptionAdvancedScopeEnum = {}));
|
|
37
38
|
function SubscriptionAdvancedScopeEnumFromJSON(json) {
|
|
38
39
|
return SubscriptionAdvancedScopeEnumFromJSONTyped(json);
|
|
@@ -25,7 +25,8 @@ export declare enum SubscriptionAdvancedScopeEnum {
|
|
|
25
25
|
AnalyticsVisits = "analytics_visits",
|
|
26
26
|
Captcha = "captcha",
|
|
27
27
|
SigninWithEmail = "signin_with_email",
|
|
28
|
-
Gating = "gating"
|
|
28
|
+
Gating = "gating",
|
|
29
|
+
AccountAbstraction = "account_abstraction"
|
|
29
30
|
}
|
|
30
31
|
export declare function SubscriptionAdvancedScopeEnumFromJSON(json: any): SubscriptionAdvancedScopeEnum;
|
|
31
32
|
export declare function SubscriptionAdvancedScopeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionAdvancedScopeEnum;
|
|
@@ -29,6 +29,7 @@ var SubscriptionAdvancedScopeEnum;
|
|
|
29
29
|
SubscriptionAdvancedScopeEnum["Captcha"] = "captcha";
|
|
30
30
|
SubscriptionAdvancedScopeEnum["SigninWithEmail"] = "signin_with_email";
|
|
31
31
|
SubscriptionAdvancedScopeEnum["Gating"] = "gating";
|
|
32
|
+
SubscriptionAdvancedScopeEnum["AccountAbstraction"] = "account_abstraction";
|
|
32
33
|
})(SubscriptionAdvancedScopeEnum || (SubscriptionAdvancedScopeEnum = {}));
|
|
33
34
|
function SubscriptionAdvancedScopeEnumFromJSON(json) {
|
|
34
35
|
return SubscriptionAdvancedScopeEnumFromJSONTyped(json);
|
|
@@ -57,6 +57,7 @@ exports.UnprocessableEntityErrorCode = void 0;
|
|
|
57
57
|
UnprocessableEntityErrorCode["SocialAccountAlreadyExists"] = "social_account_already_exists";
|
|
58
58
|
UnprocessableEntityErrorCode["InvalidEmailAddress"] = "invalid_email_address";
|
|
59
59
|
UnprocessableEntityErrorCode["ConflictingEmbeddedWalletProviders"] = "conflicting_embedded_wallet_providers";
|
|
60
|
+
UnprocessableEntityErrorCode["InvalidUser"] = "invalid_user";
|
|
60
61
|
})(exports.UnprocessableEntityErrorCode || (exports.UnprocessableEntityErrorCode = {}));
|
|
61
62
|
function UnprocessableEntityErrorCodeFromJSON(json) {
|
|
62
63
|
return UnprocessableEntityErrorCodeFromJSONTyped(json);
|
|
@@ -49,7 +49,8 @@ export declare enum UnprocessableEntityErrorCode {
|
|
|
49
49
|
InvalidInvite = "invalid_invite",
|
|
50
50
|
SocialAccountAlreadyExists = "social_account_already_exists",
|
|
51
51
|
InvalidEmailAddress = "invalid_email_address",
|
|
52
|
-
ConflictingEmbeddedWalletProviders = "conflicting_embedded_wallet_providers"
|
|
52
|
+
ConflictingEmbeddedWalletProviders = "conflicting_embedded_wallet_providers",
|
|
53
|
+
InvalidUser = "invalid_user"
|
|
53
54
|
}
|
|
54
55
|
export declare function UnprocessableEntityErrorCodeFromJSON(json: any): UnprocessableEntityErrorCode;
|
|
55
56
|
export declare function UnprocessableEntityErrorCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnprocessableEntityErrorCode;
|
|
@@ -53,6 +53,7 @@ var UnprocessableEntityErrorCode;
|
|
|
53
53
|
UnprocessableEntityErrorCode["SocialAccountAlreadyExists"] = "social_account_already_exists";
|
|
54
54
|
UnprocessableEntityErrorCode["InvalidEmailAddress"] = "invalid_email_address";
|
|
55
55
|
UnprocessableEntityErrorCode["ConflictingEmbeddedWalletProviders"] = "conflicting_embedded_wallet_providers";
|
|
56
|
+
UnprocessableEntityErrorCode["InvalidUser"] = "invalid_user";
|
|
56
57
|
})(UnprocessableEntityErrorCode || (UnprocessableEntityErrorCode = {}));
|
|
57
58
|
function UnprocessableEntityErrorCodeFromJSON(json) {
|
|
58
59
|
return UnprocessableEntityErrorCodeFromJSONTyped(json);
|