@artisan-commerce/builders 0.7.0-canary.55 → 0.7.0-canary.56
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.js +12 -7
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.d.ts +0 -5
- package/dist/bundle.esm.js +12 -7
- package/dist/bundle.esm.js.map +1 -1
- package/dist/bundle.umd.js +12 -7
- package/dist/bundle.umd.js.map +1 -1
- package/package.json +3 -3
package/dist/bundle.cjs.js
CHANGED
|
@@ -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
|
-
"
|
|
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()
|