@artisan-commerce/builders 0.7.0-canary.73 → 0.7.0-canary.78
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/dist/bundle.cjs +5 -2
- package/dist/bundle.cjs.map +1 -1
- package/dist/bundle.mjs +5 -2
- package/dist/bundle.mjs.map +1 -1
- package/dist/bundle.umd.js +5 -2
- package/dist/bundle.umd.js.map +1 -1
- package/package.json +3 -3
package/dist/bundle.mjs
CHANGED
|
@@ -1305,7 +1305,9 @@ const buildMasivoCustomer = (overrides) => {
|
|
|
1305
1305
|
email: `${genWord()}@${genWord()}.com`,
|
|
1306
1306
|
gender: chooseRandom(["MALE", "FEMALE", "NOT_SPECIFIED"]),
|
|
1307
1307
|
id: `${genNumericId()}`,
|
|
1308
|
-
metadata: {
|
|
1308
|
+
metadata: {
|
|
1309
|
+
coupon_code: genWord(10)
|
|
1310
|
+
},
|
|
1309
1311
|
registration_date: "2024-11-15T00:00:00+00:00",
|
|
1310
1312
|
status: "ACTIVE",
|
|
1311
1313
|
dob: "2010-11-15T00:00:00+00:00",
|
|
@@ -1470,7 +1472,8 @@ const buildRedeemableBenefit = (overrides) => {
|
|
|
1470
1472
|
brand_id: genId(),
|
|
1471
1473
|
campaign_id: genId(),
|
|
1472
1474
|
issued_at: genDate().toString(),
|
|
1473
|
-
amount: genNumber(200)
|
|
1475
|
+
amount: genNumber(200),
|
|
1476
|
+
alerts: []
|
|
1474
1477
|
}, buildWalletTotal()), overrides);
|
|
1475
1478
|
};
|
|
1476
1479
|
const buildLoyaltyAccumulation = (override) => {
|