@dynamic-labs/sdk-api 0.0.268 → 0.0.269

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.269",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -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