digicust_types 1.8.316 → 1.8.317
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
|
|
1
1
|
export declare enum DocumentCodeSource {
|
2
|
-
TaricDatabase = "
|
3
|
-
Computed = "
|
4
|
-
MaterialMasterdata = "
|
5
|
-
TariffNumberMasterdata = "
|
2
|
+
TaricDatabase = "taricDatabase",
|
3
|
+
Computed = "computed",
|
4
|
+
MaterialMasterdata = "materialMasterdata",
|
5
|
+
TariffNumberMasterdata = "tariffNumberMasterdata"
|
6
6
|
}
|
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.DocumentCodeSource = void 0;
|
4
4
|
var DocumentCodeSource;
|
5
5
|
(function (DocumentCodeSource) {
|
6
|
-
DocumentCodeSource["TaricDatabase"] = "
|
7
|
-
DocumentCodeSource["Computed"] = "
|
8
|
-
DocumentCodeSource["MaterialMasterdata"] = "
|
9
|
-
DocumentCodeSource["TariffNumberMasterdata"] = "
|
6
|
+
DocumentCodeSource["TaricDatabase"] = "taricDatabase";
|
7
|
+
DocumentCodeSource["Computed"] = "computed";
|
8
|
+
DocumentCodeSource["MaterialMasterdata"] = "materialMasterdata";
|
9
|
+
DocumentCodeSource["TariffNumberMasterdata"] = "tariffNumberMasterdata";
|
10
10
|
})(DocumentCodeSource || (exports.DocumentCodeSource = DocumentCodeSource = {}));
|