digicust_types 1.8.370 → 1.8.372
Sign up to get free protection for your applications and to get access to all the features.
@@ -343,6 +343,9 @@ export interface ExecutionStrategy {
|
|
343
343
|
createNewCustomsCasesPerWaybillContainer?: {
|
344
344
|
active?: boolean;
|
345
345
|
};
|
346
|
+
createNewCustomsCasesAsDetectedInExcel?: {
|
347
|
+
active?: boolean;
|
348
|
+
};
|
346
349
|
/**
|
347
350
|
* Controls master data integration automation settings
|
348
351
|
*/
|
@@ -2,19 +2,12 @@
|
|
2
2
|
* Information about a user of Digicust
|
3
3
|
*/
|
4
4
|
export interface UserModel {
|
5
|
+
/** User id to match user in azure active directory */
|
6
|
+
userId?: string;
|
5
7
|
id?: string;
|
6
8
|
mail?: string;
|
7
9
|
displayName?: string;
|
8
10
|
role?: "admin" | "user" | "validator";
|
9
11
|
status?: "verified" | "invited";
|
10
|
-
surname?: string;
|
11
|
-
givenName?: string;
|
12
|
-
jobTitle?: string;
|
13
|
-
mobilePhone?: string;
|
14
|
-
department?: string;
|
15
|
-
country?: string;
|
16
|
-
city?: string;
|
17
|
-
streetAddress?: string;
|
18
|
-
subscribeToNewsletter?: boolean;
|
19
12
|
acceptTerms?: boolean;
|
20
13
|
}
|