cecon-interfaces 1.7.1 → 1.7.2
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/mobyo/mobyo-customer-mobyo/entities/customer-privacy.entity.mjs +7 -7
- package/dist/fesm2022/cecon-interfaces.mjs +6 -6
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/mobyo/mobyo-customer-mobyo/entities/customer-privacy.entity.js +6 -6
- package/dist/package.json +1 -1
- package/package.json +1 -1
@@ -6,12 +6,12 @@ var PrivacySettingEntity = /** @class */ (function () {
|
|
6
6
|
// #region Constructors (1)
|
7
7
|
function PrivacySettingEntity(data) {
|
8
8
|
// #region Properties (9)
|
9
|
-
this.orderNotifications =
|
10
|
-
this.pushNotificationsPromo =
|
11
|
-
this.emailNotificationsPromo =
|
12
|
-
this.whatsAppNotificationsPromo =
|
13
|
-
this.smsNotificationsPromo =
|
14
|
-
this.acceptPrivayAndPolicyTerm =
|
9
|
+
this.orderNotifications = true;
|
10
|
+
this.pushNotificationsPromo = true;
|
11
|
+
this.emailNotificationsPromo = true;
|
12
|
+
this.whatsAppNotificationsPromo = true;
|
13
|
+
this.smsNotificationsPromo = true;
|
14
|
+
this.acceptPrivayAndPolicyTerm = true;
|
15
15
|
if (data) {
|
16
16
|
for (var key in data) {
|
17
17
|
if (data.hasOwnProperty(key) && key in this) {
|
package/dist/package.json
CHANGED