cardus 0.0.83 → 0.0.84
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/types/index.js +7 -2
- package/package.json +1 -1
- package/types/index.ts +7 -2
package/dist/types/index.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const shipmentTypes = {
|
|
4
4
|
NORMAL: 1,
|
|
5
|
+
ODOO: 4,
|
|
5
6
|
EXCEL: 7,
|
|
6
7
|
RECTIFICATIVO: 8,
|
|
7
8
|
PRESTASHOP_MODULE: 15,
|
|
@@ -22,7 +23,9 @@ const shipmentTypes = {
|
|
|
22
23
|
JOOM: 119,
|
|
23
24
|
HOLDED: 120,
|
|
24
25
|
ETSY: 121,
|
|
25
|
-
NORMAL_V2: 122
|
|
26
|
+
NORMAL_V2: 122,
|
|
27
|
+
TEMU: 123,
|
|
28
|
+
JUMPSELLER: 125
|
|
26
29
|
};
|
|
27
30
|
const integrationTypes = {
|
|
28
31
|
EXCEL: 1,
|
|
@@ -37,5 +40,7 @@ const integrationTypes = {
|
|
|
37
40
|
JOOM: 12,
|
|
38
41
|
ETSY: 13,
|
|
39
42
|
ODOO: 14,
|
|
40
|
-
APIV2: 15
|
|
43
|
+
APIV2: 15,
|
|
44
|
+
TEMU: 16,
|
|
45
|
+
JUMPSELLER: 18
|
|
41
46
|
};
|
package/package.json
CHANGED
package/types/index.ts
CHANGED
|
@@ -38,6 +38,7 @@ export type Shipment = {
|
|
|
38
38
|
|
|
39
39
|
const shipmentTypes = {
|
|
40
40
|
NORMAL: 1,
|
|
41
|
+
ODOO: 4,
|
|
41
42
|
EXCEL: 7,
|
|
42
43
|
RECTIFICATIVO: 8,
|
|
43
44
|
PRESTASHOP_MODULE: 15,
|
|
@@ -58,7 +59,9 @@ const shipmentTypes = {
|
|
|
58
59
|
JOOM: 119,
|
|
59
60
|
HOLDED: 120,
|
|
60
61
|
ETSY: 121,
|
|
61
|
-
NORMAL_V2: 122
|
|
62
|
+
NORMAL_V2: 122,
|
|
63
|
+
TEMU: 123,
|
|
64
|
+
JUMPSELLER: 125
|
|
62
65
|
};
|
|
63
66
|
|
|
64
67
|
const integrationTypes = {
|
|
@@ -74,7 +77,9 @@ const integrationTypes = {
|
|
|
74
77
|
JOOM: 12,
|
|
75
78
|
ETSY: 13,
|
|
76
79
|
ODOO: 14,
|
|
77
|
-
APIV2: 15
|
|
80
|
+
APIV2: 15,
|
|
81
|
+
TEMU: 16,
|
|
82
|
+
JUMPSELLER: 18
|
|
78
83
|
};
|
|
79
84
|
|
|
80
85
|
export type ShipmentType = (typeof shipmentTypes)[keyof typeof shipmentTypes];
|