@artisan-commerce/builders 0.7.0-canary.27 → 0.7.0-canary.29

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/CHANGELOG.md CHANGED
@@ -3,6 +3,24 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.7.0-canary.29](https://bitbucket.org/tradesystem/artisn_sdk/compare/@artisan-commerce/builders@0.7.0-canary.28...@artisan-commerce/builders@0.7.0-canary.29) (2021-10-27)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **global:** move buffer dependency from global to builders package ([6ce5afd](https://bitbucket.org/tradesystem/artisn_sdk/commit/6ce5afd67002b617845089885a0e139ec821ef6d))
12
+
13
+
14
+
15
+ ## [0.7.0-canary.28](https://bitbucket.org/tradesystem/artisn_sdk/compare/@artisan-commerce/builders@0.7.0-canary.27...@artisan-commerce/builders@0.7.0-canary.28) (2021-10-22)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **builders:** remove warning when using random from faker ([b914f7c](https://bitbucket.org/tradesystem/artisn_sdk/commit/b914f7cd501649bcfc7846efc1b38b279becb975))
21
+
22
+
23
+
6
24
  ## [0.7.0-canary.27](https://bitbucket.org/tradesystem/artisn_sdk/compare/@artisan-commerce/builders@0.7.0-canary.26...@artisan-commerce/builders@0.7.0-canary.27) (2021-10-22)
7
25
 
8
26
 
@@ -141334,7 +141334,7 @@ const VEDocumentTypes = [...commonDocumentTypes];
141334
141334
  const USDocumentTypes = [...commonDocumentTypes];
141335
141335
  const getPassword = (...args) => `!0_Oo${faker.internet.password(...args)}`;
141336
141336
  const getUsername = faker.internet.userName;
141337
- const genId = faker.random.uuid;
141337
+ const genId = faker.datatype.uuid;
141338
141338
  const genNumericId = () => new Date().valueOf() + Math.random();
141339
141339
  const genWord = faker.lorem.word;
141340
141340
  const genAddress = faker.address.streetAddress;