@ubs-platform/users-common 2.3.0 → 3.0.0-beta

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,23 @@
1
+ export declare class UserCapabilityDTO {
2
+ userId: string;
3
+ capability: string;
4
+ }
5
+ export interface EntityOwnershipDTO {
6
+ userCapabilities: UserCapabilityDTO[];
7
+ entityGroup: String;
8
+ entityName: String;
9
+ entityId: String;
10
+ overriderRoles: String[];
11
+ }
12
+ export interface EntityOwnershipSearch {
13
+ entityGroup: String;
14
+ entityName: String;
15
+ entityId: String;
16
+ }
17
+ export interface EntityOwnershipUserCheck {
18
+ entityGroup: String;
19
+ entityName: String;
20
+ entityId: String;
21
+ capabilityName: String;
22
+ userId: string;
23
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UserCapabilityDTO = void 0;
4
+ class UserCapabilityDTO {
5
+ }
6
+ exports.UserCapabilityDTO = UserCapabilityDTO;
7
+ //# sourceMappingURL=entity-ownership-dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"entity-ownership-dto.js","sourceRoot":"","sources":["../../../src/lib/dto/entity-ownership-dto.ts"],"names":[],"mappings":";;;AAAA,MAAa,iBAAiB;CAG7B;AAHD,8CAGC"}
package/package.json CHANGED
@@ -1 +1 @@
1
- { "name": "@ubs-platform/users-common", "version": "2.3.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" }
1
+ { "name": "@ubs-platform/users-common", "version": "3.0.0-beta", "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 --tag beta" }, "type": "commonjs", "main": "./dist/index.js" }