digicust_types 1.8.59 → 1.8.61
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,6 @@
|
|
1
1
|
export interface TariffNumberSuggestion {
|
2
|
-
tariffNumber
|
3
|
-
reason
|
4
|
-
confidence?: number;
|
2
|
+
tariffNumber: string;
|
3
|
+
reason: string;
|
5
4
|
}
|
6
5
|
export interface TariffClassifyV2Payload {
|
7
6
|
product_name: string;
|
@@ -11,7 +10,7 @@ export interface TariffClassifyV2Payload {
|
|
11
10
|
}
|
12
11
|
export interface TariffClassifyV2Result {
|
13
12
|
tariff_code: string;
|
14
|
-
|
13
|
+
product_description: string;
|
15
14
|
details: {
|
16
15
|
level: string;
|
17
16
|
confidence: number;
|
@@ -6,6 +6,7 @@ var FilterCondition;
|
|
6
6
|
FilterCondition["greaterThan"] = "greaterThan";
|
7
7
|
FilterCondition["smallerThan"] = "smallerThan";
|
8
8
|
FilterCondition["equals"] = "equals";
|
9
|
+
FilterCondition["notEqualsTo"] = "notEqualsTo";
|
9
10
|
FilterCondition["startsWith"] = "startsWith";
|
10
11
|
FilterCondition["endsWith"] = "endsWith";
|
11
12
|
FilterCondition["contains"] = "contains";
|