@dynamic-labs/sdk-api 0.0.247 → 0.0.248
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
|
@@ -52,6 +52,7 @@ function DynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
52
52
|
'ltcWallet': !runtime.exists(json, 'ltc_wallet') ? undefined : json['ltc_wallet'],
|
|
53
53
|
'ckbWallet': !runtime.exists(json, 'ckb_wallet') ? undefined : json['ckb_wallet'],
|
|
54
54
|
'kasWallet': !runtime.exists(json, 'kas_wallet') ? undefined : json['kas_wallet'],
|
|
55
|
+
'dogeWallet': !runtime.exists(json, 'doge_wallet') ? undefined : json['doge_wallet'],
|
|
55
56
|
'emailNotification': !runtime.exists(json, 'email_notification') ? undefined : json['email_notification'],
|
|
56
57
|
'discordNotification': !runtime.exists(json, 'discord_notification') ? undefined : json['discord_notification'],
|
|
57
58
|
'newsletterNotification': !runtime.exists(json, 'newsletter_notification') ? undefined : json['newsletter_notification'],
|
|
@@ -101,6 +102,7 @@ function DynamicJwtToJSON(value) {
|
|
|
101
102
|
'ltc_wallet': value.ltcWallet,
|
|
102
103
|
'ckb_wallet': value.ckbWallet,
|
|
103
104
|
'kas_wallet': value.kasWallet,
|
|
105
|
+
'doge_wallet': value.dogeWallet,
|
|
104
106
|
'email_notification': value.emailNotification,
|
|
105
107
|
'discord_notification': value.discordNotification,
|
|
106
108
|
'newsletter_notification': value.newsletterNotification,
|
package/src/models/DynamicJwt.js
CHANGED
|
@@ -48,6 +48,7 @@ function DynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
48
48
|
'ltcWallet': !exists(json, 'ltc_wallet') ? undefined : json['ltc_wallet'],
|
|
49
49
|
'ckbWallet': !exists(json, 'ckb_wallet') ? undefined : json['ckb_wallet'],
|
|
50
50
|
'kasWallet': !exists(json, 'kas_wallet') ? undefined : json['kas_wallet'],
|
|
51
|
+
'dogeWallet': !exists(json, 'doge_wallet') ? undefined : json['doge_wallet'],
|
|
51
52
|
'emailNotification': !exists(json, 'email_notification') ? undefined : json['email_notification'],
|
|
52
53
|
'discordNotification': !exists(json, 'discord_notification') ? undefined : json['discord_notification'],
|
|
53
54
|
'newsletterNotification': !exists(json, 'newsletter_notification') ? undefined : json['newsletter_notification'],
|
|
@@ -97,6 +98,7 @@ function DynamicJwtToJSON(value) {
|
|
|
97
98
|
'ltc_wallet': value.ltcWallet,
|
|
98
99
|
'ckb_wallet': value.ckbWallet,
|
|
99
100
|
'kas_wallet': value.kasWallet,
|
|
101
|
+
'doge_wallet': value.dogeWallet,
|
|
100
102
|
'email_notification': value.emailNotification,
|
|
101
103
|
'discord_notification': value.discordNotification,
|
|
102
104
|
'newsletter_notification': value.newsletterNotification,
|