@dynamic-labs/sdk-api 0.0.266 → 0.0.267

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.266",
3
+ "version": "0.0.267",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -22,6 +22,7 @@ function ProjectSettingsDesignModalFromJSONTyped(json, ignoreDiscriminator) {
22
22
  'template': !runtime.exists(json, 'template') ? undefined : json['template'],
23
23
  'displayOrder': !runtime.exists(json, 'displayOrder') ? undefined : json['displayOrder'],
24
24
  'emailOnly': !runtime.exists(json, 'emailOnly') ? undefined : json['emailOnly'],
25
+ 'showWalletsButton': !runtime.exists(json, 'showWalletsButton') ? undefined : json['showWalletsButton'],
25
26
  };
26
27
  }
27
28
  function ProjectSettingsDesignModalToJSON(value) {
@@ -41,6 +42,7 @@ function ProjectSettingsDesignModalToJSON(value) {
41
42
  'template': value.template,
42
43
  'displayOrder': value.displayOrder,
43
44
  'emailOnly': value.emailOnly,
45
+ 'showWalletsButton': value.showWalletsButton,
44
46
  };
45
47
  }
46
48
 
@@ -69,6 +69,12 @@ export interface ProjectSettingsDesignModal {
69
69
  * @memberof ProjectSettingsDesignModal
70
70
  */
71
71
  emailOnly?: boolean;
72
+ /**
73
+ *
74
+ * @type {boolean}
75
+ * @memberof ProjectSettingsDesignModal
76
+ */
77
+ showWalletsButton?: boolean;
72
78
  }
73
79
  export declare function ProjectSettingsDesignModalFromJSON(json: any): ProjectSettingsDesignModal;
74
80
  export declare function ProjectSettingsDesignModalFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsDesignModal;
@@ -18,6 +18,7 @@ function ProjectSettingsDesignModalFromJSONTyped(json, ignoreDiscriminator) {
18
18
  'template': !exists(json, 'template') ? undefined : json['template'],
19
19
  'displayOrder': !exists(json, 'displayOrder') ? undefined : json['displayOrder'],
20
20
  'emailOnly': !exists(json, 'emailOnly') ? undefined : json['emailOnly'],
21
+ 'showWalletsButton': !exists(json, 'showWalletsButton') ? undefined : json['showWalletsButton'],
21
22
  };
22
23
  }
23
24
  function ProjectSettingsDesignModalToJSON(value) {
@@ -37,6 +38,7 @@ function ProjectSettingsDesignModalToJSON(value) {
37
38
  'template': value.template,
38
39
  'displayOrder': value.displayOrder,
39
40
  'emailOnly': value.emailOnly,
41
+ 'showWalletsButton': value.showWalletsButton,
40
42
  };
41
43
  }
42
44