@dynamic-labs/sdk-api 0.0.268 → 0.0.270

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-api",
3
- "version": "0.0.268",
3
+ "version": "0.0.270",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -56,6 +56,7 @@ function DynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
56
56
  'emailNotification': !runtime.exists(json, 'email_notification') ? undefined : json['email_notification'],
57
57
  'discordNotification': !runtime.exists(json, 'discord_notification') ? undefined : json['discord_notification'],
58
58
  'newsletterNotification': !runtime.exists(json, 'newsletter_notification') ? undefined : json['newsletter_notification'],
59
+ 'metadata': !runtime.exists(json, 'metadata') ? undefined : json['metadata'],
59
60
  'info': !runtime.exists(json, 'info') ? undefined : JwtPayloadDeprecatedInfo.JwtPayloadDeprecatedInfoFromJSON(json['info']),
60
61
  };
61
62
  }
@@ -106,6 +107,7 @@ function DynamicJwtToJSON(value) {
106
107
  'email_notification': value.emailNotification,
107
108
  'discord_notification': value.discordNotification,
108
109
  'newsletter_notification': value.newsletterNotification,
110
+ 'metadata': value.metadata,
109
111
  'info': JwtPayloadDeprecatedInfo.JwtPayloadDeprecatedInfoToJSON(value.info),
110
112
  };
111
113
  }
@@ -253,6 +253,12 @@ export interface DynamicJwt {
253
253
  * @memberof DynamicJwt
254
254
  */
255
255
  newsletterNotification?: boolean;
256
+ /**
257
+ *
258
+ * @type {object}
259
+ * @memberof DynamicJwt
260
+ */
261
+ metadata?: object;
256
262
  /**
257
263
  *
258
264
  * @type {JwtPayloadDeprecatedInfo}
@@ -52,6 +52,7 @@ function DynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
52
52
  'emailNotification': !exists(json, 'email_notification') ? undefined : json['email_notification'],
53
53
  'discordNotification': !exists(json, 'discord_notification') ? undefined : json['discord_notification'],
54
54
  'newsletterNotification': !exists(json, 'newsletter_notification') ? undefined : json['newsletter_notification'],
55
+ 'metadata': !exists(json, 'metadata') ? undefined : json['metadata'],
55
56
  'info': !exists(json, 'info') ? undefined : JwtPayloadDeprecatedInfoFromJSON(json['info']),
56
57
  };
57
58
  }
@@ -102,6 +103,7 @@ function DynamicJwtToJSON(value) {
102
103
  'email_notification': value.emailNotification,
103
104
  'discord_notification': value.discordNotification,
104
105
  'newsletter_notification': value.newsletterNotification,
106
+ 'metadata': value.metadata,
105
107
  'info': JwtPayloadDeprecatedInfoToJSON(value.info),
106
108
  };
107
109
  }
@@ -23,6 +23,8 @@ function ProjectSettingsDesignModalFromJSONTyped(json, ignoreDiscriminator) {
23
23
  'displayOrder': !runtime.exists(json, 'displayOrder') ? undefined : json['displayOrder'],
24
24
  'emailOnly': !runtime.exists(json, 'emailOnly') ? undefined : json['emailOnly'],
25
25
  'showWalletsButton': !runtime.exists(json, 'showWalletsButton') ? undefined : json['showWalletsButton'],
26
+ 'splitEmailAndSocial': !runtime.exists(json, 'splitEmailAndSocial') ? undefined : json['splitEmailAndSocial'],
27
+ 'socialAboveEmail': !runtime.exists(json, 'socialAboveEmail') ? undefined : json['socialAboveEmail'],
26
28
  };
27
29
  }
28
30
  function ProjectSettingsDesignModalToJSON(value) {
@@ -43,6 +45,8 @@ function ProjectSettingsDesignModalToJSON(value) {
43
45
  'displayOrder': value.displayOrder,
44
46
  'emailOnly': value.emailOnly,
45
47
  'showWalletsButton': value.showWalletsButton,
48
+ 'splitEmailAndSocial': value.splitEmailAndSocial,
49
+ 'socialAboveEmail': value.socialAboveEmail,
46
50
  };
47
51
  }
48
52
 
@@ -75,6 +75,18 @@ export interface ProjectSettingsDesignModal {
75
75
  * @memberof ProjectSettingsDesignModal
76
76
  */
77
77
  showWalletsButton?: boolean;
78
+ /**
79
+ *
80
+ * @type {boolean}
81
+ * @memberof ProjectSettingsDesignModal
82
+ */
83
+ splitEmailAndSocial?: boolean;
84
+ /**
85
+ *
86
+ * @type {boolean}
87
+ * @memberof ProjectSettingsDesignModal
88
+ */
89
+ socialAboveEmail?: boolean;
78
90
  }
79
91
  export declare function ProjectSettingsDesignModalFromJSON(json: any): ProjectSettingsDesignModal;
80
92
  export declare function ProjectSettingsDesignModalFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsDesignModal;
@@ -19,6 +19,8 @@ function ProjectSettingsDesignModalFromJSONTyped(json, ignoreDiscriminator) {
19
19
  'displayOrder': !exists(json, 'displayOrder') ? undefined : json['displayOrder'],
20
20
  'emailOnly': !exists(json, 'emailOnly') ? undefined : json['emailOnly'],
21
21
  'showWalletsButton': !exists(json, 'showWalletsButton') ? undefined : json['showWalletsButton'],
22
+ 'splitEmailAndSocial': !exists(json, 'splitEmailAndSocial') ? undefined : json['splitEmailAndSocial'],
23
+ 'socialAboveEmail': !exists(json, 'socialAboveEmail') ? undefined : json['socialAboveEmail'],
22
24
  };
23
25
  }
24
26
  function ProjectSettingsDesignModalToJSON(value) {
@@ -39,6 +41,8 @@ function ProjectSettingsDesignModalToJSON(value) {
39
41
  'displayOrder': value.displayOrder,
40
42
  'emailOnly': value.emailOnly,
41
43
  'showWalletsButton': value.showWalletsButton,
44
+ 'splitEmailAndSocial': value.splitEmailAndSocial,
45
+ 'socialAboveEmail': value.socialAboveEmail,
42
46
  };
43
47
  }
44
48