@dynamic-labs/sdk-api 0.0.243 → 0.0.244
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/InternalUserFields.cjs +2 -0
- package/src/models/InternalUserFields.d.ts +7 -1
- package/src/models/InternalUserFields.js +2 -0
- package/src/models/SdkUser.cjs +2 -0
- package/src/models/SdkUser.d.ts +6 -0
- package/src/models/SdkUser.js +2 -0
- package/src/models/User.cjs +2 -0
- package/src/models/User.d.ts +6 -0
- package/src/models/User.js +2 -0
- package/src/models/UserFields.cjs +2 -0
- package/src/models/UserFields.d.ts +7 -1
- package/src/models/UserFields.js +2 -0
package/package.json
CHANGED
|
@@ -29,6 +29,7 @@ function InternalUserFieldsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
29
29
|
'ltcWallet': !runtime.exists(json, 'ltcWallet') ? undefined : json['ltcWallet'],
|
|
30
30
|
'ckbWallet': !runtime.exists(json, 'ckbWallet') ? undefined : json['ckbWallet'],
|
|
31
31
|
'kasWallet': !runtime.exists(json, 'kasWallet') ? undefined : json['kasWallet'],
|
|
32
|
+
'dogeWallet': !runtime.exists(json, 'dogeWallet') ? undefined : json['dogeWallet'],
|
|
32
33
|
'emailNotification': !runtime.exists(json, 'emailNotification') ? undefined : json['emailNotification'],
|
|
33
34
|
'discordNotification': !runtime.exists(json, 'discordNotification') ? undefined : json['discordNotification'],
|
|
34
35
|
'newsletterNotification': !runtime.exists(json, 'newsletterNotification') ? undefined : json['newsletterNotification'],
|
|
@@ -58,6 +59,7 @@ function InternalUserFieldsToJSON(value) {
|
|
|
58
59
|
'ltcWallet': value.ltcWallet,
|
|
59
60
|
'ckbWallet': value.ckbWallet,
|
|
60
61
|
'kasWallet': value.kasWallet,
|
|
62
|
+
'dogeWallet': value.dogeWallet,
|
|
61
63
|
'emailNotification': value.emailNotification,
|
|
62
64
|
'discordNotification': value.discordNotification,
|
|
63
65
|
'newsletterNotification': value.newsletterNotification,
|
|
@@ -94,7 +94,7 @@ export interface InternalUserFields {
|
|
|
94
94
|
*/
|
|
95
95
|
kdaWallet?: string | null;
|
|
96
96
|
/**
|
|
97
|
-
* LTC
|
|
97
|
+
* LTC wallet address
|
|
98
98
|
* @type {string}
|
|
99
99
|
* @memberof InternalUserFields
|
|
100
100
|
*/
|
|
@@ -111,6 +111,12 @@ export interface InternalUserFields {
|
|
|
111
111
|
* @memberof InternalUserFields
|
|
112
112
|
*/
|
|
113
113
|
kasWallet?: string | null;
|
|
114
|
+
/**
|
|
115
|
+
* DOGE wallet address
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof InternalUserFields
|
|
118
|
+
*/
|
|
119
|
+
dogeWallet?: string | null;
|
|
114
120
|
/**
|
|
115
121
|
*
|
|
116
122
|
* @type {boolean}
|
|
@@ -25,6 +25,7 @@ function InternalUserFieldsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
25
25
|
'ltcWallet': !exists(json, 'ltcWallet') ? undefined : json['ltcWallet'],
|
|
26
26
|
'ckbWallet': !exists(json, 'ckbWallet') ? undefined : json['ckbWallet'],
|
|
27
27
|
'kasWallet': !exists(json, 'kasWallet') ? undefined : json['kasWallet'],
|
|
28
|
+
'dogeWallet': !exists(json, 'dogeWallet') ? undefined : json['dogeWallet'],
|
|
28
29
|
'emailNotification': !exists(json, 'emailNotification') ? undefined : json['emailNotification'],
|
|
29
30
|
'discordNotification': !exists(json, 'discordNotification') ? undefined : json['discordNotification'],
|
|
30
31
|
'newsletterNotification': !exists(json, 'newsletterNotification') ? undefined : json['newsletterNotification'],
|
|
@@ -54,6 +55,7 @@ function InternalUserFieldsToJSON(value) {
|
|
|
54
55
|
'ltcWallet': value.ltcWallet,
|
|
55
56
|
'ckbWallet': value.ckbWallet,
|
|
56
57
|
'kasWallet': value.kasWallet,
|
|
58
|
+
'dogeWallet': value.dogeWallet,
|
|
57
59
|
'emailNotification': value.emailNotification,
|
|
58
60
|
'discordNotification': value.discordNotification,
|
|
59
61
|
'newsletterNotification': value.newsletterNotification,
|
package/src/models/SdkUser.cjs
CHANGED
|
@@ -37,6 +37,7 @@ function SdkUserFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
37
37
|
'ltcWallet': !runtime.exists(json, 'ltcWallet') ? undefined : json['ltcWallet'],
|
|
38
38
|
'ckbWallet': !runtime.exists(json, 'ckbWallet') ? undefined : json['ckbWallet'],
|
|
39
39
|
'kasWallet': !runtime.exists(json, 'kasWallet') ? undefined : json['kasWallet'],
|
|
40
|
+
'dogeWallet': !runtime.exists(json, 'dogeWallet') ? undefined : json['dogeWallet'],
|
|
40
41
|
'emailNotification': !runtime.exists(json, 'emailNotification') ? undefined : json['emailNotification'],
|
|
41
42
|
'discordNotification': !runtime.exists(json, 'discordNotification') ? undefined : json['discordNotification'],
|
|
42
43
|
'newsletterNotification': !runtime.exists(json, 'newsletterNotification') ? undefined : json['newsletterNotification'],
|
|
@@ -73,6 +74,7 @@ function SdkUserToJSON(value) {
|
|
|
73
74
|
'ltcWallet': value.ltcWallet,
|
|
74
75
|
'ckbWallet': value.ckbWallet,
|
|
75
76
|
'kasWallet': value.kasWallet,
|
|
77
|
+
'dogeWallet': value.dogeWallet,
|
|
76
78
|
'emailNotification': value.emailNotification,
|
|
77
79
|
'discordNotification': value.discordNotification,
|
|
78
80
|
'newsletterNotification': value.newsletterNotification,
|
package/src/models/SdkUser.d.ts
CHANGED
package/src/models/SdkUser.js
CHANGED
|
@@ -33,6 +33,7 @@ function SdkUserFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
33
33
|
'ltcWallet': !exists(json, 'ltcWallet') ? undefined : json['ltcWallet'],
|
|
34
34
|
'ckbWallet': !exists(json, 'ckbWallet') ? undefined : json['ckbWallet'],
|
|
35
35
|
'kasWallet': !exists(json, 'kasWallet') ? undefined : json['kasWallet'],
|
|
36
|
+
'dogeWallet': !exists(json, 'dogeWallet') ? undefined : json['dogeWallet'],
|
|
36
37
|
'emailNotification': !exists(json, 'emailNotification') ? undefined : json['emailNotification'],
|
|
37
38
|
'discordNotification': !exists(json, 'discordNotification') ? undefined : json['discordNotification'],
|
|
38
39
|
'newsletterNotification': !exists(json, 'newsletterNotification') ? undefined : json['newsletterNotification'],
|
|
@@ -69,6 +70,7 @@ function SdkUserToJSON(value) {
|
|
|
69
70
|
'ltcWallet': value.ltcWallet,
|
|
70
71
|
'ckbWallet': value.ckbWallet,
|
|
71
72
|
'kasWallet': value.kasWallet,
|
|
73
|
+
'dogeWallet': value.dogeWallet,
|
|
72
74
|
'emailNotification': value.emailNotification,
|
|
73
75
|
'discordNotification': value.discordNotification,
|
|
74
76
|
'newsletterNotification': value.newsletterNotification,
|
package/src/models/User.cjs
CHANGED
|
@@ -41,6 +41,7 @@ function UserFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
41
41
|
'ltcWallet': !runtime.exists(json, 'ltcWallet') ? undefined : json['ltcWallet'],
|
|
42
42
|
'ckbWallet': !runtime.exists(json, 'ckbWallet') ? undefined : json['ckbWallet'],
|
|
43
43
|
'kasWallet': !runtime.exists(json, 'kasWallet') ? undefined : json['kasWallet'],
|
|
44
|
+
'dogeWallet': !runtime.exists(json, 'dogeWallet') ? undefined : json['dogeWallet'],
|
|
44
45
|
'emailNotification': !runtime.exists(json, 'emailNotification') ? undefined : json['emailNotification'],
|
|
45
46
|
'discordNotification': !runtime.exists(json, 'discordNotification') ? undefined : json['discordNotification'],
|
|
46
47
|
'newsletterNotification': !runtime.exists(json, 'newsletterNotification') ? undefined : json['newsletterNotification'],
|
|
@@ -85,6 +86,7 @@ function UserToJSON(value) {
|
|
|
85
86
|
'ltcWallet': value.ltcWallet,
|
|
86
87
|
'ckbWallet': value.ckbWallet,
|
|
87
88
|
'kasWallet': value.kasWallet,
|
|
89
|
+
'dogeWallet': value.dogeWallet,
|
|
88
90
|
'emailNotification': value.emailNotification,
|
|
89
91
|
'discordNotification': value.discordNotification,
|
|
90
92
|
'newsletterNotification': value.newsletterNotification,
|
package/src/models/User.d.ts
CHANGED
package/src/models/User.js
CHANGED
|
@@ -37,6 +37,7 @@ function UserFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
37
37
|
'ltcWallet': !exists(json, 'ltcWallet') ? undefined : json['ltcWallet'],
|
|
38
38
|
'ckbWallet': !exists(json, 'ckbWallet') ? undefined : json['ckbWallet'],
|
|
39
39
|
'kasWallet': !exists(json, 'kasWallet') ? undefined : json['kasWallet'],
|
|
40
|
+
'dogeWallet': !exists(json, 'dogeWallet') ? undefined : json['dogeWallet'],
|
|
40
41
|
'emailNotification': !exists(json, 'emailNotification') ? undefined : json['emailNotification'],
|
|
41
42
|
'discordNotification': !exists(json, 'discordNotification') ? undefined : json['discordNotification'],
|
|
42
43
|
'newsletterNotification': !exists(json, 'newsletterNotification') ? undefined : json['newsletterNotification'],
|
|
@@ -81,6 +82,7 @@ function UserToJSON(value) {
|
|
|
81
82
|
'ltcWallet': value.ltcWallet,
|
|
82
83
|
'ckbWallet': value.ckbWallet,
|
|
83
84
|
'kasWallet': value.kasWallet,
|
|
85
|
+
'dogeWallet': value.dogeWallet,
|
|
84
86
|
'emailNotification': value.emailNotification,
|
|
85
87
|
'discordNotification': value.discordNotification,
|
|
86
88
|
'newsletterNotification': value.newsletterNotification,
|
|
@@ -31,6 +31,7 @@ function UserFieldsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
31
31
|
'ltcWallet': !runtime.exists(json, 'ltcWallet') ? undefined : json['ltcWallet'],
|
|
32
32
|
'ckbWallet': !runtime.exists(json, 'ckbWallet') ? undefined : json['ckbWallet'],
|
|
33
33
|
'kasWallet': !runtime.exists(json, 'kasWallet') ? undefined : json['kasWallet'],
|
|
34
|
+
'dogeWallet': !runtime.exists(json, 'dogeWallet') ? undefined : json['dogeWallet'],
|
|
34
35
|
'emailNotification': !runtime.exists(json, 'emailNotification') ? undefined : json['emailNotification'],
|
|
35
36
|
'discordNotification': !runtime.exists(json, 'discordNotification') ? undefined : json['discordNotification'],
|
|
36
37
|
'newsletterNotification': !runtime.exists(json, 'newsletterNotification') ? undefined : json['newsletterNotification'],
|
|
@@ -62,6 +63,7 @@ function UserFieldsToJSON(value) {
|
|
|
62
63
|
'ltcWallet': value.ltcWallet,
|
|
63
64
|
'ckbWallet': value.ckbWallet,
|
|
64
65
|
'kasWallet': value.kasWallet,
|
|
66
|
+
'dogeWallet': value.dogeWallet,
|
|
65
67
|
'emailNotification': value.emailNotification,
|
|
66
68
|
'discordNotification': value.discordNotification,
|
|
67
69
|
'newsletterNotification': value.newsletterNotification,
|
|
@@ -106,7 +106,7 @@ export interface UserFields {
|
|
|
106
106
|
*/
|
|
107
107
|
kdaWallet?: string | null;
|
|
108
108
|
/**
|
|
109
|
-
* LTC
|
|
109
|
+
* LTC wallet address
|
|
110
110
|
* @type {string}
|
|
111
111
|
* @memberof UserFields
|
|
112
112
|
*/
|
|
@@ -123,6 +123,12 @@ export interface UserFields {
|
|
|
123
123
|
* @memberof UserFields
|
|
124
124
|
*/
|
|
125
125
|
kasWallet?: string | null;
|
|
126
|
+
/**
|
|
127
|
+
* DOGE wallet address
|
|
128
|
+
* @type {string}
|
|
129
|
+
* @memberof UserFields
|
|
130
|
+
*/
|
|
131
|
+
dogeWallet?: string | null;
|
|
126
132
|
/**
|
|
127
133
|
*
|
|
128
134
|
* @type {boolean}
|
package/src/models/UserFields.js
CHANGED
|
@@ -27,6 +27,7 @@ function UserFieldsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
27
27
|
'ltcWallet': !exists(json, 'ltcWallet') ? undefined : json['ltcWallet'],
|
|
28
28
|
'ckbWallet': !exists(json, 'ckbWallet') ? undefined : json['ckbWallet'],
|
|
29
29
|
'kasWallet': !exists(json, 'kasWallet') ? undefined : json['kasWallet'],
|
|
30
|
+
'dogeWallet': !exists(json, 'dogeWallet') ? undefined : json['dogeWallet'],
|
|
30
31
|
'emailNotification': !exists(json, 'emailNotification') ? undefined : json['emailNotification'],
|
|
31
32
|
'discordNotification': !exists(json, 'discordNotification') ? undefined : json['discordNotification'],
|
|
32
33
|
'newsletterNotification': !exists(json, 'newsletterNotification') ? undefined : json['newsletterNotification'],
|
|
@@ -58,6 +59,7 @@ function UserFieldsToJSON(value) {
|
|
|
58
59
|
'ltcWallet': value.ltcWallet,
|
|
59
60
|
'ckbWallet': value.ckbWallet,
|
|
60
61
|
'kasWallet': value.kasWallet,
|
|
62
|
+
'dogeWallet': value.dogeWallet,
|
|
61
63
|
'emailNotification': value.emailNotification,
|
|
62
64
|
'discordNotification': value.discordNotification,
|
|
63
65
|
'newsletterNotification': value.newsletterNotification,
|