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
  }
@@ -0,0 +1,7 @@
1
+ import { UserInput } from "./documents";
2
+ export interface UserInputTemplate {
3
+ id: string;
4
+ name: string;
5
+ description?: string;
6
+ userInput?: UserInput;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.370",
3
+ "version": "1.8.372",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",