@artisan-commerce/builders 0.7.0-canary.59 → 0.7.0-canary.60
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/dev/package.json +3 -2
- package/dist/{bundle.cjs.js → bundle.cjs} +185 -191
- package/dist/bundle.cjs.map +1 -0
- package/dist/bundle.d.ts +195 -482
- package/dist/{bundle.esm.js → bundle.mjs} +184 -184
- package/dist/bundle.mjs.map +1 -0
- package/dist/bundle.umd.js +184 -190
- package/dist/bundle.umd.js.map +1 -1
- package/dist/{noop.cjs.js → noop.cjs} +1 -3
- package/dist/noop.cjs.map +1 -0
- package/dist/{noop.esm.js → noop.mjs} +1 -1
- package/dist/noop.mjs.map +1 -0
- package/package.json +16 -15
- package/dist/bundle.cjs.js.map +0 -1
- package/dist/bundle.esm.js.map +0 -1
- package/dist/noop.cjs.js.map +0 -1
- package/dist/noop.esm.js.map +0 -1
package/dev/package.json
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
3
|
var faker = require('@faker-js/faker');
|
|
6
4
|
var btoa = require('btoa');
|
|
7
5
|
|
|
8
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
9
|
-
|
|
10
|
-
var btoa__default = /*#__PURE__*/_interopDefaultLegacy(btoa);
|
|
11
|
-
|
|
12
6
|
const genItems = (builder, quantity) => {
|
|
13
7
|
const num = quantity != null ? quantity : faker.faker.datatype.number({ min: 1, max: 10 });
|
|
14
8
|
const items = [];
|
|
@@ -88,7 +82,7 @@ const genRandomImage = (randomImageConfig) => {
|
|
|
88
82
|
const genWords = (words) => faker.faker.random.words(words);
|
|
89
83
|
const genURL = (...params) => faker.faker.internet.url(...params);
|
|
90
84
|
const genDate = () => faker.faker.date.recent(7).toISOString();
|
|
91
|
-
const genBase64 = () =>
|
|
85
|
+
const genBase64 = () => btoa(genWord());
|
|
92
86
|
const genBiasBoolean = (bias) => {
|
|
93
87
|
if (bias > 1 || bias < 0) {
|
|
94
88
|
throw new Error(`Bias must be a number between 0 and 1. Value ${bias} is not valid`);
|
|
@@ -155,47 +149,47 @@ const genIP = (...params) => faker.faker.internet.ip(...params);
|
|
|
155
149
|
|
|
156
150
|
var common_builder = /*#__PURE__*/Object.freeze({
|
|
157
151
|
__proto__: null,
|
|
158
|
-
|
|
152
|
+
chooseRandom: chooseRandom,
|
|
153
|
+
fillNumber: fillNumber,
|
|
154
|
+
genAddress: genAddress,
|
|
155
|
+
genBase64: genBase64,
|
|
156
|
+
genBiasBoolean: genBiasBoolean,
|
|
157
|
+
genCompanyName: genCompanyName,
|
|
158
|
+
genCountry: genCountry,
|
|
159
|
+
genCountryName: genCountryName,
|
|
160
|
+
genDate: genDate,
|
|
161
|
+
genDocument: genDocument,
|
|
162
|
+
genDocumentType: genDocumentType,
|
|
163
|
+
genEmail: genEmail,
|
|
164
|
+
genIP: genIP,
|
|
165
|
+
genId: genId,
|
|
166
|
+
genItems: genItems,
|
|
167
|
+
genMobilPhone: genMobilPhone,
|
|
168
|
+
genName: genName,
|
|
169
|
+
genNumber: genNumber,
|
|
170
|
+
genNumericId: genNumericId,
|
|
171
|
+
genParagraph: genParagraph,
|
|
172
|
+
genRandomImage: genRandomImage,
|
|
173
|
+
genSymbol: genSymbol,
|
|
174
|
+
genTitle: genTitle,
|
|
175
|
+
genURL: genURL,
|
|
176
|
+
genWord: genWord,
|
|
177
|
+
genWords: genWords,
|
|
159
178
|
getARDocumentTypes: getARDocumentTypes,
|
|
160
179
|
getBODocumentTypes: getBODocumentTypes,
|
|
161
180
|
getBRDocumentTypes: getBRDocumentTypes,
|
|
181
|
+
getBoolean: getBoolean,
|
|
162
182
|
getCLDocumentTypes: getCLDocumentTypes,
|
|
163
183
|
getCODocumentTypes: getCODocumentTypes,
|
|
184
|
+
getCommonDocumentTypes: getCommonDocumentTypes,
|
|
164
185
|
getECDocumentTypes: getECDocumentTypes,
|
|
165
|
-
getPYDocumentTypes: getPYDocumentTypes,
|
|
166
186
|
getPEDocumentTypes: getPEDocumentTypes,
|
|
167
|
-
|
|
168
|
-
getVEDocumentTypes: getVEDocumentTypes,
|
|
169
|
-
getUSDocumentTypes: getUSDocumentTypes,
|
|
187
|
+
getPYDocumentTypes: getPYDocumentTypes,
|
|
170
188
|
getPassword: getPassword,
|
|
189
|
+
getUSDocumentTypes: getUSDocumentTypes,
|
|
190
|
+
getUYDocumentTypes: getUYDocumentTypes,
|
|
171
191
|
getUsername: getUsername,
|
|
172
|
-
|
|
173
|
-
genNumericId: genNumericId,
|
|
174
|
-
genWord: genWord,
|
|
175
|
-
genAddress: genAddress,
|
|
176
|
-
genName: genName,
|
|
177
|
-
genEmail: genEmail,
|
|
178
|
-
genCompanyName: genCompanyName,
|
|
179
|
-
genParagraph: genParagraph,
|
|
180
|
-
genTitle: genTitle,
|
|
181
|
-
genNumber: genNumber,
|
|
182
|
-
getBoolean: getBoolean,
|
|
183
|
-
genCountryName: genCountryName,
|
|
184
|
-
genRandomImage: genRandomImage,
|
|
185
|
-
genWords: genWords,
|
|
186
|
-
genURL: genURL,
|
|
187
|
-
genDate: genDate,
|
|
188
|
-
genBase64: genBase64,
|
|
189
|
-
genBiasBoolean: genBiasBoolean,
|
|
190
|
-
genDocument: genDocument,
|
|
191
|
-
genDocumentType: genDocumentType,
|
|
192
|
-
genMobilPhone: genMobilPhone,
|
|
193
|
-
genCountry: genCountry,
|
|
194
|
-
fillNumber: fillNumber,
|
|
195
|
-
chooseRandom: chooseRandom,
|
|
196
|
-
genSymbol: genSymbol,
|
|
197
|
-
genIP: genIP,
|
|
198
|
-
genItems: genItems
|
|
192
|
+
getVEDocumentTypes: getVEDocumentTypes
|
|
199
193
|
});
|
|
200
194
|
|
|
201
195
|
var __defProp$i = Object.defineProperty;
|
|
@@ -234,10 +228,10 @@ const genCDNImages = (quantity, options) => {
|
|
|
234
228
|
|
|
235
229
|
var image_builder = /*#__PURE__*/Object.freeze({
|
|
236
230
|
__proto__: null,
|
|
237
|
-
buildURLImage: buildURLImage,
|
|
238
|
-
genURLImages: genURLImages,
|
|
239
231
|
buildCDNImage: buildCDNImage,
|
|
240
|
-
|
|
232
|
+
buildURLImage: buildURLImage,
|
|
233
|
+
genCDNImages: genCDNImages,
|
|
234
|
+
genURLImages: genURLImages
|
|
241
235
|
});
|
|
242
236
|
|
|
243
237
|
var __defProp$h = Object.defineProperty;
|
|
@@ -366,12 +360,12 @@ const genBannerImages = (quantity) => {
|
|
|
366
360
|
var banner_builder = /*#__PURE__*/Object.freeze({
|
|
367
361
|
__proto__: null,
|
|
368
362
|
buildBanner: buildBanner,
|
|
369
|
-
buildBannerCoupon: buildBannerCoupon,
|
|
370
363
|
buildBannerBenefits: buildBannerBenefits,
|
|
371
|
-
|
|
372
|
-
genBanners: genBanners,
|
|
364
|
+
buildBannerCoupon: buildBannerCoupon,
|
|
373
365
|
buildBannerImage: buildBannerImage,
|
|
374
|
-
|
|
366
|
+
genBannerBenefits: genBannerBenefits,
|
|
367
|
+
genBannerImages: genBannerImages,
|
|
368
|
+
genBanners: genBanners
|
|
375
369
|
});
|
|
376
370
|
|
|
377
371
|
var __defProp$f = Object.defineProperty;
|
|
@@ -682,24 +676,24 @@ const genCartProducts = (quantity) => {
|
|
|
682
676
|
|
|
683
677
|
var product_builder = /*#__PURE__*/Object.freeze({
|
|
684
678
|
__proto__: null,
|
|
685
|
-
buildPriceCategoryTax: buildPriceCategoryTax,
|
|
686
|
-
genPriceCategoryTaxes: genPriceCategoryTaxes,
|
|
687
|
-
buildPriceCategory: buildPriceCategory,
|
|
688
|
-
buildBaseProduct: buildBaseProduct,
|
|
689
|
-
genBaseProducts: genBaseProducts,
|
|
690
679
|
MODIFIER_TYPES: MODIFIER_TYPES,
|
|
680
|
+
buildBaseProduct: buildBaseProduct,
|
|
681
|
+
buildCartProduct: buildCartProduct,
|
|
682
|
+
buildCartProductAnswer: buildCartProductAnswer,
|
|
683
|
+
buildCartProductQuestion: buildCartProductQuestion,
|
|
684
|
+
buildPriceCategory: buildPriceCategory,
|
|
685
|
+
buildPriceCategoryTax: buildPriceCategoryTax,
|
|
691
686
|
buildProductAnswer: buildProductAnswer,
|
|
692
|
-
genProductAnswers: genProductAnswers,
|
|
693
|
-
buildProductQuestion: buildProductQuestion,
|
|
694
|
-
genProductQuestions: genProductQuestions,
|
|
695
687
|
buildProductDetails: buildProductDetails,
|
|
696
|
-
|
|
697
|
-
|
|
688
|
+
buildProductQuestion: buildProductQuestion,
|
|
689
|
+
genBaseProducts: genBaseProducts,
|
|
698
690
|
genCartProductAnswers: genCartProductAnswers,
|
|
699
|
-
buildCartProductQuestion: buildCartProductQuestion,
|
|
700
691
|
genCartProductQuestions: genCartProductQuestions,
|
|
701
|
-
|
|
702
|
-
|
|
692
|
+
genCartProducts: genCartProducts,
|
|
693
|
+
genPriceCategoryTaxes: genPriceCategoryTaxes,
|
|
694
|
+
genProductAnswers: genProductAnswers,
|
|
695
|
+
genProductDetails: genProductDetails,
|
|
696
|
+
genProductQuestions: genProductQuestions
|
|
703
697
|
});
|
|
704
698
|
|
|
705
699
|
var __defProp$c = Object.defineProperty;
|
|
@@ -748,8 +742,8 @@ const genCategoryWithProducts = (quantity) => {
|
|
|
748
742
|
var category_builder = /*#__PURE__*/Object.freeze({
|
|
749
743
|
__proto__: null,
|
|
750
744
|
buildCategory: buildCategory,
|
|
751
|
-
genCategories: genCategories,
|
|
752
745
|
buildCategoryWithProducts: buildCategoryWithProducts,
|
|
746
|
+
genCategories: genCategories,
|
|
753
747
|
genCategoryWithProducts: genCategoryWithProducts
|
|
754
748
|
});
|
|
755
749
|
|
|
@@ -807,11 +801,11 @@ const genCountries = (quantity) => {
|
|
|
807
801
|
|
|
808
802
|
var country_builder = /*#__PURE__*/Object.freeze({
|
|
809
803
|
__proto__: null,
|
|
810
|
-
countriesCodes: countriesCodes,
|
|
811
|
-
buildCountryCurrency: buildCountryCurrency,
|
|
812
|
-
genCountryCurrencies: genCountryCurrencies,
|
|
813
804
|
buildCountry: buildCountry,
|
|
814
|
-
|
|
805
|
+
buildCountryCurrency: buildCountryCurrency,
|
|
806
|
+
countriesCodes: countriesCodes,
|
|
807
|
+
genCountries: genCountries,
|
|
808
|
+
genCountryCurrencies: genCountryCurrencies
|
|
815
809
|
});
|
|
816
810
|
|
|
817
811
|
var __defProp$a = Object.defineProperty;
|
|
@@ -1040,28 +1034,28 @@ const genStoreCouponDetails = (quantity) => {
|
|
|
1040
1034
|
|
|
1041
1035
|
var coupon_builder = /*#__PURE__*/Object.freeze({
|
|
1042
1036
|
__proto__: null,
|
|
1043
|
-
buildBenefit: buildBenefit,
|
|
1044
|
-
genBenefits: genBenefits,
|
|
1045
1037
|
buildAward: buildAward,
|
|
1046
|
-
|
|
1047
|
-
buildWallet: buildWallet,
|
|
1048
|
-
genWallets: genWallets,
|
|
1049
|
-
buildStoreCoupon: buildStoreCoupon,
|
|
1050
|
-
genStoreCoupons: genStoreCoupons,
|
|
1051
|
-
buildProductCoupon: buildProductCoupon,
|
|
1052
|
-
genProductCoupons: genProductCoupons,
|
|
1038
|
+
buildBenefit: buildBenefit,
|
|
1053
1039
|
buildBenefitData: buildBenefitData,
|
|
1054
|
-
|
|
1040
|
+
buildCode: buildCode,
|
|
1055
1041
|
buildCoupon: buildCoupon,
|
|
1056
|
-
genCoupons: genCoupons,
|
|
1057
1042
|
buildCouponCategory: buildCouponCategory,
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1043
|
+
buildProductCoupon: buildProductCoupon,
|
|
1044
|
+
buildStoreCoupon: buildStoreCoupon,
|
|
1045
|
+
buildStoreCouponDetail: buildStoreCouponDetail,
|
|
1061
1046
|
buildToken: buildToken,
|
|
1047
|
+
buildWallet: buildWallet,
|
|
1048
|
+
genAwards: genAwards,
|
|
1049
|
+
genBenefitData: genBenefitData,
|
|
1050
|
+
genBenefits: genBenefits,
|
|
1051
|
+
genCodes: genCodes,
|
|
1052
|
+
genCouponCategories: genCouponCategories,
|
|
1053
|
+
genCoupons: genCoupons,
|
|
1054
|
+
genProductCoupons: genProductCoupons,
|
|
1055
|
+
genStoreCouponDetails: genStoreCouponDetails,
|
|
1056
|
+
genStoreCoupons: genStoreCoupons,
|
|
1062
1057
|
genTokens: genTokens,
|
|
1063
|
-
|
|
1064
|
-
genStoreCouponDetails: genStoreCouponDetails
|
|
1058
|
+
genWallets: genWallets
|
|
1065
1059
|
});
|
|
1066
1060
|
|
|
1067
1061
|
var __defProp$9 = Object.defineProperty;
|
|
@@ -1258,28 +1252,28 @@ const genTransitionWorkflows = (quantity) => {
|
|
|
1258
1252
|
|
|
1259
1253
|
var fulfillment_builder = /*#__PURE__*/Object.freeze({
|
|
1260
1254
|
__proto__: null,
|
|
1261
|
-
stepCategory: stepCategory,
|
|
1262
|
-
stepCode: stepCode,
|
|
1263
1255
|
buildIssue: buildIssue,
|
|
1264
|
-
genIssues: genIssues,
|
|
1265
1256
|
buildIssueAdditionalInfo: buildIssueAdditionalInfo,
|
|
1266
|
-
genIssueAdditionalInfo: genIssueAdditionalInfo,
|
|
1267
1257
|
buildIssueHistory: buildIssueHistory,
|
|
1268
|
-
genIssueHistory: genIssueHistory,
|
|
1269
|
-
buildWorkflow: buildWorkflow,
|
|
1270
|
-
genWorkflows: genWorkflows,
|
|
1271
1258
|
buildStepNotification: buildStepNotification,
|
|
1272
|
-
genStepNotifications: genStepNotifications,
|
|
1273
1259
|
buildStepWorkflow: buildStepWorkflow,
|
|
1274
|
-
genStepWorkflows: genStepWorkflows,
|
|
1275
|
-
buildWebhookWorkflow: buildWebhookWorkflow,
|
|
1276
|
-
genWebhookWorkflows: genWebhookWorkflows,
|
|
1277
1260
|
buildStepWorkflowAdditionalInfo: buildStepWorkflowAdditionalInfo,
|
|
1278
|
-
genStepWorkflowAdditionalInfos: genStepWorkflowAdditionalInfos,
|
|
1279
1261
|
buildStepWorkflowGroup: buildStepWorkflowGroup,
|
|
1280
|
-
genStepWorkflowGroups: genStepWorkflowGroups,
|
|
1281
1262
|
buildTransitionWorkflow: buildTransitionWorkflow,
|
|
1282
|
-
|
|
1263
|
+
buildWebhookWorkflow: buildWebhookWorkflow,
|
|
1264
|
+
buildWorkflow: buildWorkflow,
|
|
1265
|
+
genIssueAdditionalInfo: genIssueAdditionalInfo,
|
|
1266
|
+
genIssueHistory: genIssueHistory,
|
|
1267
|
+
genIssues: genIssues,
|
|
1268
|
+
genStepNotifications: genStepNotifications,
|
|
1269
|
+
genStepWorkflowAdditionalInfos: genStepWorkflowAdditionalInfos,
|
|
1270
|
+
genStepWorkflowGroups: genStepWorkflowGroups,
|
|
1271
|
+
genStepWorkflows: genStepWorkflows,
|
|
1272
|
+
genTransitionWorkflows: genTransitionWorkflows,
|
|
1273
|
+
genWebhookWorkflows: genWebhookWorkflows,
|
|
1274
|
+
genWorkflows: genWorkflows,
|
|
1275
|
+
stepCategory: stepCategory,
|
|
1276
|
+
stepCode: stepCode
|
|
1283
1277
|
});
|
|
1284
1278
|
|
|
1285
1279
|
var __defProp$8 = Object.defineProperty;
|
|
@@ -1337,10 +1331,10 @@ const genPhones = (quantity) => {
|
|
|
1337
1331
|
|
|
1338
1332
|
var user_builder = /*#__PURE__*/Object.freeze({
|
|
1339
1333
|
__proto__: null,
|
|
1340
|
-
buildUser: buildUser,
|
|
1341
|
-
genUsers: genUsers,
|
|
1342
1334
|
buildPhone: buildPhone,
|
|
1343
|
-
|
|
1335
|
+
buildUser: buildUser,
|
|
1336
|
+
genPhones: genPhones,
|
|
1337
|
+
genUsers: genUsers
|
|
1344
1338
|
});
|
|
1345
1339
|
|
|
1346
1340
|
var __defProp$7 = Object.defineProperty;
|
|
@@ -1498,17 +1492,17 @@ const genStoreLocation = (quantity) => {
|
|
|
1498
1492
|
|
|
1499
1493
|
var store_builder = /*#__PURE__*/Object.freeze({
|
|
1500
1494
|
__proto__: null,
|
|
1501
|
-
buildStore: buildStore,
|
|
1502
1495
|
buildDelivery: buildDelivery,
|
|
1496
|
+
buildGenericStoreLocation: buildGenericStoreLocation,
|
|
1503
1497
|
buildSchedule: buildSchedule,
|
|
1504
1498
|
buildService: buildService,
|
|
1505
|
-
|
|
1506
|
-
genSchedules: genSchedules,
|
|
1507
|
-
genStores: genStores,
|
|
1508
|
-
buildGenericStoreLocation: buildGenericStoreLocation,
|
|
1509
|
-
genGenericStoreLocation: genGenericStoreLocation,
|
|
1499
|
+
buildStore: buildStore,
|
|
1510
1500
|
buildStoreLocation: buildStoreLocation,
|
|
1511
|
-
|
|
1501
|
+
genGenericStoreLocation: genGenericStoreLocation,
|
|
1502
|
+
genSchedules: genSchedules,
|
|
1503
|
+
genServices: genServices,
|
|
1504
|
+
genStoreLocation: genStoreLocation,
|
|
1505
|
+
genStores: genStores
|
|
1512
1506
|
});
|
|
1513
1507
|
|
|
1514
1508
|
var __defProp$5 = Object.defineProperty;
|
|
@@ -1636,16 +1630,16 @@ const genDiscounts = (quantity) => {
|
|
|
1636
1630
|
|
|
1637
1631
|
var shoppingCart_builder = /*#__PURE__*/Object.freeze({
|
|
1638
1632
|
__proto__: null,
|
|
1639
|
-
buildBillTotalNormalCategory: buildBillTotalNormalCategory,
|
|
1640
1633
|
buildBillTotal: buildBillTotal,
|
|
1634
|
+
buildBillTotalNormalCategory: buildBillTotalNormalCategory,
|
|
1641
1635
|
buildCartStore: buildCartStore,
|
|
1642
|
-
|
|
1643
|
-
buildShoppingCart: buildShoppingCart,
|
|
1636
|
+
buildDiscount: buildDiscount,
|
|
1644
1637
|
buildShippingCost: buildShippingCost,
|
|
1645
1638
|
buildShippingCostTax: buildShippingCostTax,
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
genDiscounts: genDiscounts
|
|
1639
|
+
buildShoppingCart: buildShoppingCart,
|
|
1640
|
+
genCartStores: genCartStores,
|
|
1641
|
+
genDiscounts: genDiscounts,
|
|
1642
|
+
genShippingCostTaxes: genShippingCostTaxes
|
|
1649
1643
|
});
|
|
1650
1644
|
|
|
1651
1645
|
var __defProp$4 = Object.defineProperty;
|
|
@@ -1734,20 +1728,20 @@ const genShippingAddress = (quantity) => {
|
|
|
1734
1728
|
|
|
1735
1729
|
var shippingAddress_builder = /*#__PURE__*/Object.freeze({
|
|
1736
1730
|
__proto__: null,
|
|
1737
|
-
genStreetName: genStreetName,
|
|
1738
|
-
genStreetNumber: genStreetNumber,
|
|
1739
|
-
genLatitude: genLatitude,
|
|
1740
|
-
genLongitude: genLongitude,
|
|
1741
1731
|
buildField: buildField,
|
|
1742
|
-
genFields: genFields,
|
|
1743
|
-
buildRule: buildRule,
|
|
1744
|
-
buildMessage: buildMessage,
|
|
1745
|
-
genRules: genRules,
|
|
1746
|
-
genMessages: genMessages,
|
|
1747
1732
|
buildLivingPlace: buildLivingPlace,
|
|
1748
|
-
|
|
1733
|
+
buildMessage: buildMessage,
|
|
1734
|
+
buildRule: buildRule,
|
|
1749
1735
|
buildShippingAddress: buildShippingAddress,
|
|
1750
|
-
|
|
1736
|
+
genFields: genFields,
|
|
1737
|
+
genLatitude: genLatitude,
|
|
1738
|
+
genLivingPlaces: genLivingPlaces,
|
|
1739
|
+
genLongitude: genLongitude,
|
|
1740
|
+
genMessages: genMessages,
|
|
1741
|
+
genRules: genRules,
|
|
1742
|
+
genShippingAddress: genShippingAddress,
|
|
1743
|
+
genStreetName: genStreetName,
|
|
1744
|
+
genStreetNumber: genStreetNumber
|
|
1751
1745
|
});
|
|
1752
1746
|
|
|
1753
1747
|
var __defProp$3 = Object.defineProperty;
|
|
@@ -1788,8 +1782,8 @@ const genUserSettings = (quantity) => {
|
|
|
1788
1782
|
var settings_builder = /*#__PURE__*/Object.freeze({
|
|
1789
1783
|
__proto__: null,
|
|
1790
1784
|
buildSettings: buildSettings,
|
|
1791
|
-
genSettings: genSettings,
|
|
1792
1785
|
buildUserSettings: buildUserSettings,
|
|
1786
|
+
genSettings: genSettings,
|
|
1793
1787
|
genUserSettings: genUserSettings
|
|
1794
1788
|
});
|
|
1795
1789
|
|
|
@@ -2322,73 +2316,73 @@ const genOrderRetryPaymentMethods = (quantity) => {
|
|
|
2322
2316
|
|
|
2323
2317
|
var order_builder = /*#__PURE__*/Object.freeze({
|
|
2324
2318
|
__proto__: null,
|
|
2325
|
-
orderStatusOptions: orderStatusOptions,
|
|
2326
|
-
paymentStatus: paymentStatus,
|
|
2327
2319
|
allocationOptions: allocationOptions,
|
|
2328
|
-
|
|
2329
|
-
genReference: genReference,
|
|
2320
|
+
buildBaseField: buildBaseField,
|
|
2330
2321
|
buildBaseOrder: buildBaseOrder,
|
|
2331
|
-
|
|
2322
|
+
buildInjectionDetail: buildInjectionDetail,
|
|
2323
|
+
buildIntegrationMessage: buildIntegrationMessage,
|
|
2324
|
+
buildMetadataShipping: buildMetadataShipping,
|
|
2325
|
+
buildOperatorInformation: buildOperatorInformation,
|
|
2326
|
+
buildOrderBillProduct: buildOrderBillProduct,
|
|
2327
|
+
buildOrderBillProductAdditionalInfo: buildOrderBillProductAdditionalInfo,
|
|
2328
|
+
buildOrderBillTotal: buildOrderBillTotal,
|
|
2329
|
+
buildOrderDetailShippingCost: buildOrderDetailShippingCost,
|
|
2332
2330
|
buildOrderDetails: buildOrderDetails,
|
|
2333
|
-
|
|
2331
|
+
buildOrderPaymentMethod: buildOrderPaymentMethod,
|
|
2332
|
+
buildOrderProduct: buildOrderProduct,
|
|
2333
|
+
buildOrderProductAdditionalInfo: buildOrderProductAdditionalInfo,
|
|
2334
|
+
buildOrderProductAttributes: buildOrderProductAttributes,
|
|
2335
|
+
buildOrderProductBillTotal: buildOrderProductBillTotal,
|
|
2336
|
+
buildOrderProductImage: buildOrderProductImage,
|
|
2337
|
+
buildOrderProductPriceCategory: buildOrderProductPriceCategory,
|
|
2338
|
+
buildOrderRetry: buildOrderRetry,
|
|
2339
|
+
buildOrderRetryPaymentMethod: buildOrderRetryPaymentMethod,
|
|
2340
|
+
buildOrderShoppingCart: buildOrderShoppingCart,
|
|
2334
2341
|
buildOrderStep: buildOrderStep,
|
|
2335
2342
|
buildOrderStepAdditionalInfo: buildOrderStepAdditionalInfo,
|
|
2336
|
-
genOrderStepAdditionalInfos: genOrderStepAdditionalInfos,
|
|
2337
2343
|
buildOrderStepAdditionalInfoGroup: buildOrderStepAdditionalInfoGroup,
|
|
2338
|
-
|
|
2339
|
-
buildOrderDetailShippingCost: buildOrderDetailShippingCost,
|
|
2340
|
-
genOrderDetailShippingCosts: genOrderDetailShippingCosts,
|
|
2341
|
-
buildOrderRetry: buildOrderRetry,
|
|
2342
|
-
buildStatus: buildStatus,
|
|
2343
|
-
genStatus: genStatus,
|
|
2344
|
-
genOrderRetries: genOrderRetries,
|
|
2345
|
-
buildOrderPaymentMethod: buildOrderPaymentMethod,
|
|
2346
|
-
genOrderPaymentMethods: genOrderPaymentMethods,
|
|
2347
|
-
buildOrderShoppingCart: buildOrderShoppingCart,
|
|
2344
|
+
buildOrderStore: buildOrderStore,
|
|
2348
2345
|
buildOrderStoreAdditionalInfo: buildOrderStoreAdditionalInfo,
|
|
2349
|
-
genOrderStoreAdditionalInfos: genOrderStoreAdditionalInfos,
|
|
2350
2346
|
buildOrderStoreDelivery: buildOrderStoreDelivery,
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
genOrderProductAttributes: genOrderProductAttributes,
|
|
2356
|
-
buildOrderProductAdditionalInfo: buildOrderProductAdditionalInfo,
|
|
2357
|
-
genOrderProductAdditionalInfos: genOrderProductAdditionalInfos,
|
|
2358
|
-
buildOrderProductImage: buildOrderProductImage,
|
|
2359
|
-
genOrderProductImages: genOrderProductImages,
|
|
2360
|
-
buildOrderBillProductAdditionalInfo: buildOrderBillProductAdditionalInfo,
|
|
2347
|
+
buildOrderUser: buildOrderUser,
|
|
2348
|
+
buildPaymentMethodByOrder: buildPaymentMethodByOrder,
|
|
2349
|
+
buildStatus: buildStatus,
|
|
2350
|
+
buildSuborder: buildSuborder,
|
|
2361
2351
|
buildTaxCalculation: buildTaxCalculation,
|
|
2362
|
-
genTaxCalculations: genTaxCalculations,
|
|
2363
2352
|
buildTaxCalculations: buildTaxCalculations,
|
|
2364
|
-
|
|
2353
|
+
buildZipCodeField: buildZipCodeField,
|
|
2354
|
+
genBaseFields: genBaseFields,
|
|
2355
|
+
genBaseOrders: genBaseOrders,
|
|
2356
|
+
genInjectionDetails: genInjectionDetails,
|
|
2357
|
+
genIntegrationMessages: genIntegrationMessages,
|
|
2358
|
+
genMetadataShippings: genMetadataShippings,
|
|
2359
|
+
genOperatorInformation: genOperatorInformation,
|
|
2360
|
+
genOrderDetailShippingCosts: genOrderDetailShippingCosts,
|
|
2361
|
+
genOrderDetails: genOrderDetails,
|
|
2362
|
+
genOrderPaymentMethods: genOrderPaymentMethods,
|
|
2363
|
+
genOrderProductAdditionalInfos: genOrderProductAdditionalInfos,
|
|
2364
|
+
genOrderProductAttributes: genOrderProductAttributes,
|
|
2365
|
+
genOrderProductImages: genOrderProductImages,
|
|
2365
2366
|
genOrderProductPriceCategories: genOrderProductPriceCategories,
|
|
2366
|
-
buildOrderProduct: buildOrderProduct,
|
|
2367
2367
|
genOrderProducts: genOrderProducts,
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
buildOrderBillTotal: buildOrderBillTotal,
|
|
2368
|
+
genOrderRetries: genOrderRetries,
|
|
2369
|
+
genOrderRetryPaymentMethods: genOrderRetryPaymentMethods,
|
|
2371
2370
|
genOrderShoppingCarts: genOrderShoppingCarts,
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
genZipCodeFields: genZipCodeFields,
|
|
2378
|
-
buildIntegrationMessage: buildIntegrationMessage,
|
|
2379
|
-
genIntegrationMessages: genIntegrationMessages,
|
|
2380
|
-
buildInjectionDetail: buildInjectionDetail,
|
|
2381
|
-
genInjectionDetails: genInjectionDetails,
|
|
2382
|
-
buildOrderUser: buildOrderUser,
|
|
2371
|
+
genOrderStepAdditionalInfos: genOrderStepAdditionalInfos,
|
|
2372
|
+
genOrderSteps: genOrderSteps,
|
|
2373
|
+
genOrderStoreAdditionalInfos: genOrderStoreAdditionalInfos,
|
|
2374
|
+
genOrderStoreDeliveries: genOrderStoreDeliveries,
|
|
2375
|
+
genOrderStores: genOrderStores,
|
|
2383
2376
|
genOrderUsers: genOrderUsers,
|
|
2384
|
-
buildOperatorInformation: buildOperatorInformation,
|
|
2385
|
-
genOperatorInformation: genOperatorInformation,
|
|
2386
|
-
buildSuborder: buildSuborder,
|
|
2387
|
-
genSuborders: genSuborders,
|
|
2388
|
-
buildPaymentMethodByOrder: buildPaymentMethodByOrder,
|
|
2389
2377
|
genPaymentMethodByOrders: genPaymentMethodByOrders,
|
|
2390
|
-
|
|
2391
|
-
|
|
2378
|
+
genReference: genReference,
|
|
2379
|
+
genSeqId: genSeqId,
|
|
2380
|
+
genStatus: genStatus,
|
|
2381
|
+
genSuborders: genSuborders,
|
|
2382
|
+
genTaxCalculations: genTaxCalculations,
|
|
2383
|
+
genZipCodeFields: genZipCodeFields,
|
|
2384
|
+
orderStatusOptions: orderStatusOptions,
|
|
2385
|
+
paymentStatus: paymentStatus
|
|
2392
2386
|
});
|
|
2393
2387
|
|
|
2394
2388
|
var __defProp$1 = Object.defineProperty;
|
|
@@ -2503,19 +2497,19 @@ const genNotificationListItems = (quantity) => {
|
|
|
2503
2497
|
var notification_builder = /*#__PURE__*/Object.freeze({
|
|
2504
2498
|
__proto__: null,
|
|
2505
2499
|
buildNotification: buildNotification,
|
|
2506
|
-
genNotifications: genNotifications,
|
|
2507
|
-
buildNotificationUser: buildNotificationUser,
|
|
2508
|
-
genNotificationUsers: genNotificationUsers,
|
|
2509
|
-
buildNotificationStore: buildNotificationStore,
|
|
2510
|
-
genNotificationStores: genNotificationStores,
|
|
2511
|
-
buildNotificationStep: buildNotificationStep,
|
|
2512
|
-
genNotificationSteps: genNotificationSteps,
|
|
2513
2500
|
buildNotificationAdditionalInfo: buildNotificationAdditionalInfo,
|
|
2514
|
-
genNotificationAdditionalInfos: genNotificationAdditionalInfos,
|
|
2515
2501
|
buildNotificationExtraData: buildNotificationExtraData,
|
|
2516
|
-
genNotificationExtraDatas: genNotificationExtraDatas,
|
|
2517
2502
|
buildNotificationListItem: buildNotificationListItem,
|
|
2518
|
-
|
|
2503
|
+
buildNotificationStep: buildNotificationStep,
|
|
2504
|
+
buildNotificationStore: buildNotificationStore,
|
|
2505
|
+
buildNotificationUser: buildNotificationUser,
|
|
2506
|
+
genNotificationAdditionalInfos: genNotificationAdditionalInfos,
|
|
2507
|
+
genNotificationExtraDatas: genNotificationExtraDatas,
|
|
2508
|
+
genNotificationListItems: genNotificationListItems,
|
|
2509
|
+
genNotificationSteps: genNotificationSteps,
|
|
2510
|
+
genNotificationStores: genNotificationStores,
|
|
2511
|
+
genNotificationUsers: genNotificationUsers,
|
|
2512
|
+
genNotifications: genNotifications
|
|
2519
2513
|
});
|
|
2520
2514
|
|
|
2521
2515
|
var __defProp = Object.defineProperty;
|
|
@@ -2620,15 +2614,15 @@ const genCardInscriptions = (quantity) => {
|
|
|
2620
2614
|
var payment_builder = /*#__PURE__*/Object.freeze({
|
|
2621
2615
|
__proto__: null,
|
|
2622
2616
|
buildBasePaymentMethod: buildBasePaymentMethod,
|
|
2623
|
-
|
|
2617
|
+
buildCardInscription: buildCardInscription,
|
|
2618
|
+
buildCreditCardMapping: buildCreditCardMapping,
|
|
2624
2619
|
buildPaymentMethod: buildPaymentMethod,
|
|
2625
|
-
genPaymentMethods: genPaymentMethods,
|
|
2626
2620
|
buildPaymentProvider: buildPaymentProvider,
|
|
2627
|
-
|
|
2628
|
-
|
|
2621
|
+
genBasePaymentMethods: genBasePaymentMethods,
|
|
2622
|
+
genCardInscriptions: genCardInscriptions,
|
|
2629
2623
|
genCreditCardMappings: genCreditCardMappings,
|
|
2630
|
-
|
|
2631
|
-
|
|
2624
|
+
genPaymentMethods: genPaymentMethods,
|
|
2625
|
+
genPaymentProviders: genPaymentProviders
|
|
2632
2626
|
});
|
|
2633
2627
|
|
|
2634
2628
|
const seed = (seed2) => {
|
|
@@ -2663,4 +2657,4 @@ exports.storeBuilders = store_builder;
|
|
|
2663
2657
|
exports.userBuilders = user_builder;
|
|
2664
2658
|
exports.utils = common_builder;
|
|
2665
2659
|
exports.vendorBuilders = vendor_builder;
|
|
2666
|
-
//# sourceMappingURL=bundle.cjs.
|
|
2660
|
+
//# sourceMappingURL=bundle.cjs.map
|