digicust_types 1.8.60 → 1.8.62
Sign up to get free protection for your applications and to get access to all the features.
@@ -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";
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
1
|
+
import { DigicustDocumentType, ProcedureMode, TradePreference, TypeOfBusinessType, UnitOfMeasurement } from "..";
|
2
|
+
import { CustomsTariffNumber, DateTimeModel, Dimensions, Meta, Money, Quantity, Weight, Workflow } from "../..";
|
3
3
|
import { DocumentCode } from "../documents";
|
4
4
|
export declare enum ClassificationTypes {
|
5
5
|
noClassification = "noClassification",
|
@@ -138,7 +138,7 @@ export interface MaterialModel {
|
|
138
138
|
id: string;
|
139
139
|
name: string;
|
140
140
|
}[];
|
141
|
-
unitOfMeasurement?:
|
141
|
+
unitOfMeasurement?: UnitOfMeasurement;
|
142
142
|
documentTypeCodes?: ExtendedDocumentTypeCode[];
|
143
143
|
CAS?: Workflow<string>;
|
144
144
|
units?: Workflow<{
|