@artisan-commerce/builders 0.7.0-canary.55 → 0.7.0-canary.57

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.
@@ -20,7 +20,8 @@ const genItems = (builder, quantity) => {
20
20
 
21
21
  const getCommonDocumentTypes = () => ["PASSPORT"];
22
22
  const getARDocumentTypes = () => [
23
- ...getCommonDocumentTypes()
23
+ ...getCommonDocumentTypes(),
24
+ "DNI"
24
25
  ];
25
26
  const getBODocumentTypes = () => [
26
27
  ...getCommonDocumentTypes()
@@ -29,14 +30,13 @@ const getBRDocumentTypes = () => [
29
30
  ...getCommonDocumentTypes()
30
31
  ];
31
32
  const getCLDocumentTypes = () => [
32
- ...getCommonDocumentTypes()
33
+ ...getCommonDocumentTypes(),
34
+ "RUT"
33
35
  ];
34
36
  const getCODocumentTypes = () => [
35
37
  ...getCommonDocumentTypes(),
36
- "RUT",
37
38
  "NIT",
38
- "CE",
39
- "CC"
39
+ "CI_CO"
40
40
  ];
41
41
  const getECDocumentTypes = () => [
42
42
  ...getCommonDocumentTypes(),
@@ -47,13 +47,18 @@ const getPYDocumentTypes = () => [
47
47
  ...getCommonDocumentTypes()
48
48
  ];
49
49
  const getPEDocumentTypes = () => [
50
- ...getCommonDocumentTypes()
50
+ ...getCommonDocumentTypes(),
51
+ "DNI",
52
+ "RUC"
51
53
  ];
52
54
  const getUYDocumentTypes = () => [
53
55
  ...getCommonDocumentTypes()
54
56
  ];
55
57
  const getVEDocumentTypes = () => [
56
- ...getCommonDocumentTypes()
58
+ ...getCommonDocumentTypes(),
59
+ "CE_VE",
60
+ "CI_VE",
61
+ "RIF"
57
62
  ];
58
63
  const getUSDocumentTypes = () => [
59
64
  ...getCommonDocumentTypes()
@@ -723,7 +728,8 @@ const buildCategory = (overrides = {}) => {
723
728
  images: genCDNImages(void 0, { width: 1200, height: 400 }),
724
729
  name: genName(),
725
730
  reload: true,
726
- subcategories: genBiasBoolean(0.5)
731
+ subcategories: genBiasBoolean(0.5),
732
+ featured: false
727
733
  }, overrides);
728
734
  };
729
735
  const genCategories = (quantity) => {