@ubs-platform/users-common 2.3.0 → 3.0.0-beta
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.
@@ -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 @@
|
|
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": "
|
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" }
|