digicust_types 1.8.183 → 1.8.184
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.
@@ -26,9 +26,10 @@ export interface TariffClassifyV2Result {
|
|
26
26
|
}[];
|
27
27
|
process_time: number;
|
28
28
|
}
|
29
|
-
export interface
|
29
|
+
export interface BTISuggestionResponse {
|
30
30
|
Sprache: string;
|
31
31
|
"Nomenklatur-Code": string;
|
32
|
+
Warenbeschreibung: string;
|
32
33
|
"VZTA-Nummer": string;
|
33
34
|
"Nationale Stichworte": string;
|
34
35
|
"Datum der Erteilung": string;
|
@@ -41,7 +42,23 @@ export interface BTISuggestion {
|
|
41
42
|
_id: string;
|
42
43
|
_collection_name: string;
|
43
44
|
score: number;
|
44
|
-
|
45
|
+
}
|
46
|
+
export interface BTISuggestion {
|
47
|
+
language: string;
|
48
|
+
nomenclatureCode: string;
|
49
|
+
descriptionOfGoods: string;
|
50
|
+
vztaNumber: string;
|
51
|
+
nationalKeywords: string;
|
52
|
+
dateOfIssuance: string;
|
53
|
+
nameAndAddress: string;
|
54
|
+
reasonForClassification: string;
|
55
|
+
issuingCountry: string;
|
56
|
+
placeOfIssuance: string;
|
57
|
+
validUntil: string;
|
58
|
+
validFrom: string;
|
59
|
+
_id: string;
|
60
|
+
_collectionName: string;
|
61
|
+
score: number;
|
45
62
|
}
|
46
63
|
/** Tariff chat web socket types */
|
47
64
|
export declare enum TariffWSMessageSender {
|