digicust_types 1.8.3 → 1.8.4
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
|
}
|
@@ -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;
|