@artisan-commerce/builders 0.7.0-canary.50 → 0.7.0-canary.52

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.
@@ -0,0 +1,6 @@
1
+ {
2
+ "name": "@artisan-commerce/builders/dev",
3
+ "main": "../dist/bundle.cjs.js",
4
+ "module": "../dist/bundle.esm.js",
5
+ "types": "../dist/bundle.d.ts"
6
+ }
@@ -43,7 +43,7 @@ const USDocumentTypes = [...commonDocumentTypes];
43
43
  const getPassword = (...args) => `!0_Oo${faker.faker.internet.password(...args)}`;
44
44
  const getUsername = faker.faker.internet.userName;
45
45
  const genId = faker.faker.datatype.uuid;
46
- const genNumericId = () => new Date().valueOf() + Math.random();
46
+ const genNumericId = (...params) => +faker.faker.random.numeric(...params);
47
47
  const genWord = faker.faker.lorem.word;
48
48
  const genAddress = faker.faker.address.streetAddress;
49
49
  const genName = faker.faker.name.fullName;