@ubs-platform/users-common 2.0.1 → 2.2.0

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.
@@ -7,5 +7,6 @@ export interface UserAuthBackendDTO {
7
7
  suspended: boolean;
8
8
  suspendReason: string;
9
9
  roles: string[];
10
+ localeCode: string;
10
11
  active: boolean;
11
12
  }
@@ -8,5 +8,6 @@ export interface UserCreateDTO {
8
8
  name: string;
9
9
  surname: string;
10
10
  active: boolean;
11
+ localeCode: string;
11
12
  roles: Array<string>;
12
13
  }
@@ -7,4 +7,5 @@ export interface UserDTO {
7
7
  suspended: boolean;
8
8
  suspendReason: string;
9
9
  active: boolean;
10
+ localeCode: string;
10
11
  }
@@ -16,4 +16,5 @@ export interface UserFullDto {
16
16
  suspended: boolean;
17
17
  suspendReason: string;
18
18
  password?: string;
19
+ localeCode: string;
19
20
  }
@@ -9,4 +9,5 @@ export interface UserGeneralInfoDTO {
9
9
  state: string;
10
10
  city: string;
11
11
  district: string;
12
+ localeCode: string;
12
13
  }
@@ -2,4 +2,5 @@ export interface UserOnlyRequiredDTO {
2
2
  name: string;
3
3
  surname: string;
4
4
  id: string;
5
+ localeCode: string;
5
6
  }
@@ -4,4 +4,5 @@ export interface UserRegisterDTO {
4
4
  primaryEmail: string;
5
5
  name: string;
6
6
  surname: string;
7
+ localeCode: string;
7
8
  }
package/package.json CHANGED
@@ -1 +1 @@
1
- { "name": "@ubs-platform/users-common", "version": "2.0.1", "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "devDependencies": { "typescript": "~5.3.2", "@types/node": "~18.16.9" }, "publishConfig": { "access": "public" }, "peerDependencies": {}, "scripts": { "build": "tsc", "build-publish": "npm run build && npm publish" }, "type": "commonjs", "main": "./dist/index.js" }
1
+ { "name": "@ubs-platform/users-common", "version": "2.2.0", "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "devDependencies": { "typescript": "~5.3.2", "@types/node": "~18.16.9" }, "publishConfig": { "access": "public" }, "peerDependencies": {}, "scripts": { "build": "tsc", "build-publish": "npm run build && npm publish" }, "type": "commonjs", "main": "./dist/index.js" }