digicust_types 1.8.417 → 1.8.419
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.
@@ -32,10 +32,14 @@ export interface BulkUploadFileStatistics {
|
|
32
32
|
}
|
33
33
|
export declare enum TariffSystem {
|
34
34
|
DE = "DE",// DE for Germany
|
35
|
-
|
35
|
+
AT = "AT",// AU for Austria
|
36
36
|
XK = "XK",// XK for Kosovo
|
37
37
|
CH = "CH"
|
38
38
|
}
|
39
|
+
export declare enum CustomsSystem {
|
40
|
+
atlas = "atlas",
|
41
|
+
eZoll = "eZoll"
|
42
|
+
}
|
39
43
|
/**
|
40
44
|
* Project Model provides all the data related to a project and customer
|
41
45
|
*/
|
@@ -44,6 +48,8 @@ export interface ProjectModel {
|
|
44
48
|
customerId?: string;
|
45
49
|
projectId?: string;
|
46
50
|
alias?: string;
|
51
|
+
/** @deprecated use tariffNumberTreeSystem, PR is progress */
|
52
|
+
customsSystem?: CustomsSystem;
|
47
53
|
tariffNumberTreeSystem?: TariffSystem;
|
48
54
|
mappings?: Mapping[];
|
49
55
|
rules?: Rule[];
|
@@ -1,10 +1,15 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.TariffSystem = void 0;
|
3
|
+
exports.CustomsSystem = exports.TariffSystem = void 0;
|
4
4
|
var TariffSystem;
|
5
5
|
(function (TariffSystem) {
|
6
6
|
TariffSystem["DE"] = "DE";
|
7
|
-
TariffSystem["
|
7
|
+
TariffSystem["AT"] = "AT";
|
8
8
|
TariffSystem["XK"] = "XK";
|
9
9
|
TariffSystem["CH"] = "CH";
|
10
10
|
})(TariffSystem || (exports.TariffSystem = TariffSystem = {}));
|
11
|
+
var CustomsSystem;
|
12
|
+
(function (CustomsSystem) {
|
13
|
+
CustomsSystem["atlas"] = "atlas";
|
14
|
+
CustomsSystem["eZoll"] = "eZoll";
|
15
|
+
})(CustomsSystem || (exports.CustomsSystem = CustomsSystem = {}));
|