digicust_types 1.8.3 → 1.8.5
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,3 @@
|
|
1
|
-
import { Translation } from "./meta";
|
2
1
|
export interface ErrorModel extends Error {
|
3
2
|
type?: string;
|
4
3
|
severity?: "error" | "warning" | "info";
|
@@ -9,5 +8,4 @@ export interface ValidationError extends ErrorModel {
|
|
9
8
|
field?: string;
|
10
9
|
expected?: any;
|
11
10
|
actual?: any;
|
12
|
-
translation?: Translation;
|
13
11
|
}
|
@@ -154,12 +154,6 @@ export interface MaterialModel {
|
|
154
154
|
* Redundant meta property needed for search scoring
|
155
155
|
*/
|
156
156
|
hasAnyUserEditedProperties?: boolean;
|
157
|
-
/**
|
158
|
-
* Suggestions added while uploading bulk data
|
159
|
-
*/
|
160
|
-
suggestions?: {
|
161
|
-
tariffNumber?: string;
|
162
|
-
};
|
163
157
|
meta?: {
|
164
158
|
version?: number;
|
165
159
|
userCreated?: boolean;
|
@@ -20,5 +20,10 @@ export interface AddressModel extends Meta<any> {
|
|
20
20
|
isEU?: boolean;
|
21
21
|
value?: string;
|
22
22
|
treatyMemberships?: Array<string>;
|
23
|
+
additionalIdentifier?: string;
|
24
|
+
/** TypeOfLocation */
|
25
|
+
DE_S0347?: string;
|
26
|
+
/** QualifierOfIdentification */
|
27
|
+
DE_S0326?: string;
|
23
28
|
}
|
24
29
|
export declare const condenseAddress: (address: AddressModel) => AddressModel;
|