digicust_types 1.8.416 → 1.8.418
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.
@@ -1,8 +1,4 @@
|
|
1
1
|
import { ClassificationTypes, Rule } from "..";
|
2
|
-
export declare enum CustomsSystem {
|
3
|
-
atlas = "atlas",
|
4
|
-
eZoll = "eZoll"
|
5
|
-
}
|
6
2
|
export interface MappingObject {
|
7
3
|
sourcePath: string;
|
8
4
|
destinationPath: string;
|
@@ -35,7 +31,8 @@ export interface BulkUploadFileStatistics {
|
|
35
31
|
};
|
36
32
|
}
|
37
33
|
export declare enum TariffSystem {
|
38
|
-
DE = "DE",// DE for Germany
|
34
|
+
DE = "DE",// DE for Germany
|
35
|
+
AT = "AT",// AU for Austria
|
39
36
|
XK = "XK",// XK for Kosovo
|
40
37
|
CH = "CH"
|
41
38
|
}
|
@@ -47,7 +44,6 @@ export interface ProjectModel {
|
|
47
44
|
customerId?: string;
|
48
45
|
projectId?: string;
|
49
46
|
alias?: string;
|
50
|
-
customsSystem?: CustomsSystem;
|
51
47
|
tariffNumberTreeSystem?: TariffSystem;
|
52
48
|
mappings?: Mapping[];
|
53
49
|
rules?: Rule[];
|
@@ -1,14 +1,10 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.TariffSystem =
|
4
|
-
var CustomsSystem;
|
5
|
-
(function (CustomsSystem) {
|
6
|
-
CustomsSystem["atlas"] = "atlas";
|
7
|
-
CustomsSystem["eZoll"] = "eZoll";
|
8
|
-
})(CustomsSystem || (exports.CustomsSystem = CustomsSystem = {}));
|
3
|
+
exports.TariffSystem = void 0;
|
9
4
|
var TariffSystem;
|
10
5
|
(function (TariffSystem) {
|
11
6
|
TariffSystem["DE"] = "DE";
|
7
|
+
TariffSystem["AT"] = "AT";
|
12
8
|
TariffSystem["XK"] = "XK";
|
13
9
|
TariffSystem["CH"] = "CH";
|
14
10
|
})(TariffSystem || (exports.TariffSystem = TariffSystem = {}));
|