@equinor/subsurface-app-management 5.2.0 → 5.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,3 @@
1
- import type { UserImpersonationRoleSnapshot } from './UserImpersonationRoleSnapshot';
2
1
  export type ImpersonateUserDto = {
3
2
  id?: string | null;
4
3
  firstName: string;
@@ -6,9 +5,6 @@ export type ImpersonateUserDto = {
6
5
  fullName: string;
7
6
  uniqueName: string;
8
7
  email?: string | null;
9
- field?: string | null;
10
- well?: string | null;
11
- internalApplicationRoleSnapshots?: Array<UserImpersonationRoleSnapshot> | null;
12
8
  appName: string;
13
9
  roles: Array<string>;
14
10
  activeUsers: Array<string>;
@@ -1,13 +1,9 @@
1
- import type { UserImpersonationRoleSnapshot } from './UserImpersonationRoleSnapshot';
2
1
  export type ImpersonateUserUpdateDto = {
3
2
  id?: string | null;
4
3
  firstName: string;
5
4
  lastName: string;
6
5
  uniqueName: string;
7
6
  email?: string | null;
8
- field?: string | null;
9
- well?: string | null;
10
- internalApplicationRoleSnapshots?: Array<UserImpersonationRoleSnapshot> | null;
11
7
  appName: string;
12
8
  roles: Array<string>;
13
9
  activeUsers: Array<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/subsurface-app-management",
3
- "version": "5.2.0",
3
+ "version": "5.2.1",
4
4
  "description": "React Typescript components/hooks to communicate with equinor/sam",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
@@ -1,10 +0,0 @@
1
- export type UserImpersonationRoleSnapshot = {
2
- id?: string | null;
3
- username: string;
4
- field: string;
5
- well?: string | null;
6
- roleName?: string | null;
7
- environment?: string | null;
8
- removedQaFieldIds?: Array<string> | null;
9
- removedWellLeaderWells?: Array<string> | null;
10
- };