digicust_types 1.8.181 → 1.8.183
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.
@@ -12,6 +12,7 @@ export interface TariffClassifyV2Payload {
|
|
12
12
|
details?: string;
|
13
13
|
description?: string;
|
14
14
|
level?: string;
|
15
|
+
tariff_system?: string;
|
15
16
|
}
|
16
17
|
export interface TariffClassifyV2Result {
|
17
18
|
tariff_code: string;
|
@@ -25,6 +26,23 @@ export interface TariffClassifyV2Result {
|
|
25
26
|
}[];
|
26
27
|
process_time: number;
|
27
28
|
}
|
29
|
+
export interface BTISuggestion {
|
30
|
+
Sprache: string;
|
31
|
+
"Nomenklatur-Code": string;
|
32
|
+
"VZTA-Nummer": string;
|
33
|
+
"Nationale Stichworte": string;
|
34
|
+
"Datum der Erteilung": string;
|
35
|
+
"Name und Adresse": string;
|
36
|
+
"Begründung der Einreihung": string;
|
37
|
+
"Erteilendes Land": string;
|
38
|
+
"Ort der Erteilung": string;
|
39
|
+
"Gültig bis": string;
|
40
|
+
"Gültig ab": string;
|
41
|
+
_id: string;
|
42
|
+
_collection_name: string;
|
43
|
+
score: number;
|
44
|
+
Warenbeschreibung: string;
|
45
|
+
}
|
28
46
|
/** Tariff chat web socket types */
|
29
47
|
export declare enum TariffWSMessageSender {
|
30
48
|
bot = "bot",
|
@@ -14,7 +14,7 @@ export declare enum SubmissionVendor {
|
|
14
14
|
export interface Submission {
|
15
15
|
active?: boolean;
|
16
16
|
vendor: SubmissionVendor;
|
17
|
-
config: DakosySftpConfig | AebSftpConfig | DbhSftpConfig | BEOConfig | LdvSftpConfig | DhfSftpConfig | AsycudaSftpConfig | FormatSftpConfig;
|
17
|
+
config: DakosySftpConfig | AebSftpConfig | DbhSftpConfig | BEOConfig | LdvSftpConfig | DhfSftpConfig | AsycudaSftpConfig | FormatSftpConfig | CargoSoftSftpConfig;
|
18
18
|
}
|
19
19
|
export interface DakosySftpConfig {
|
20
20
|
"sftp-password"?: string;
|
@@ -78,6 +78,18 @@ export interface FormatSftpConfig {
|
|
78
78
|
/** Mandantennummer */
|
79
79
|
"client-code"?: string;
|
80
80
|
}
|
81
|
+
export interface CargoSoftSftpConfig {
|
82
|
+
"sftp-password"?: string;
|
83
|
+
"sftp-login-name"?: string;
|
84
|
+
"sftp-port"?: string;
|
85
|
+
"sftp-dns-name"?: string;
|
86
|
+
"sftp-inbound"?: string;
|
87
|
+
/** Mandantennummer */
|
88
|
+
"sender-id"?: string;
|
89
|
+
"receiver-id"?: string;
|
90
|
+
"company-code"?: string;
|
91
|
+
"office-code"?: string;
|
92
|
+
}
|
81
93
|
export interface BEOConfig {
|
82
94
|
token?: string;
|
83
95
|
/** Kundennummer */
|