digicust_types 1.8.369 → 1.8.371

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
- 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;
11
+ status?: "verified" | "invited";
19
12
  acceptTerms?: boolean;
20
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.369",
3
+ "version": "1.8.371",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -1,7 +0,0 @@
1
- import { UserInput } from "./documents";
2
- export interface UserInputTemplate {
3
- id: string;
4
- name: string;
5
- description?: string;
6
- userInput?: UserInput;
7
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });