@ubs-platform/users-mona-microservice-helper 3.0.4-beta → 3.0.6-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.
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/lib/service/entity-ownership.service.d.ts +11 -0
- package/dist/lib/service/entity-ownership.service.js +35 -0
- package/dist/lib/service/entity-ownership.service.js.map +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
@@ -6,4 +6,5 @@ tslib_1.__exportStar(require("./lib/backend-jwt-utils-exports.module"), exports)
|
|
6
6
|
tslib_1.__exportStar(require("./lib/guards/jwt.guard"), exports);
|
7
7
|
tslib_1.__exportStar(require("./lib/current-user-decorator"), exports);
|
8
8
|
tslib_1.__exportStar(require("./lib/service/user.service"), exports);
|
9
|
+
tslib_1.__exportStar(require("./lib/service/entity-ownership.service"), exports);
|
9
10
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,yEAA+C;AAC/C,iFAAuD;AACvD,iEAAuC;AACvC,uEAA6C;AAC7C,qEAA2C"}
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,yEAA+C;AAC/C,iFAAuD;AACvD,iEAAuC;AACvC,uEAA6C;AAC7C,qEAA2C;AAC3C,iFAAuD"}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { OnModuleInit } from '@nestjs/common';
|
2
|
+
import { ClientProxy, ClientKafka, ClientRMQ } from '@nestjs/microservices';
|
3
|
+
import { EntityOwnershipDTO, EntityOwnershipInsertCapabiltyDTO, EntityOwnershipUserCheck } from '@ubs-platform/users-common';
|
4
|
+
export declare class EntityOwnershipService implements OnModuleInit {
|
5
|
+
private userClient;
|
6
|
+
constructor(userClient: ClientProxy | ClientKafka | ClientRMQ);
|
7
|
+
onModuleInit(): void;
|
8
|
+
insertOwnership(oe: EntityOwnershipDTO): Promise<void>;
|
9
|
+
insertUserCapability(oe: EntityOwnershipInsertCapabiltyDTO): Promise<void>;
|
10
|
+
hasOwnership(eo: EntityOwnershipUserCheck): Promise<import("rxjs").Observable<any>>;
|
11
|
+
}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.EntityOwnershipService = void 0;
|
4
|
+
const tslib_1 = require("tslib");
|
5
|
+
const common_1 = require("@nestjs/common");
|
6
|
+
let EntityOwnershipService = class EntityOwnershipService {
|
7
|
+
constructor(userClient) {
|
8
|
+
this.userClient = userClient;
|
9
|
+
}
|
10
|
+
onModuleInit() {
|
11
|
+
// (this.userClient as ClientKafka).subscribeToResponseOf?.('user-by-id');
|
12
|
+
}
|
13
|
+
insertOwnership(oe) {
|
14
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
15
|
+
this.userClient.emit('insert-ownership', oe);
|
16
|
+
});
|
17
|
+
}
|
18
|
+
insertUserCapability(oe) {
|
19
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
20
|
+
this.userClient.emit('insert-user-capability', oe);
|
21
|
+
});
|
22
|
+
}
|
23
|
+
hasOwnership(eo) {
|
24
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
25
|
+
return yield this.userClient.emit('check-ownership', eo);
|
26
|
+
});
|
27
|
+
}
|
28
|
+
};
|
29
|
+
exports.EntityOwnershipService = EntityOwnershipService;
|
30
|
+
exports.EntityOwnershipService = EntityOwnershipService = tslib_1.__decorate([
|
31
|
+
(0, common_1.Injectable)(),
|
32
|
+
tslib_1.__param(0, (0, common_1.Inject)('USER_MICROSERVICE')),
|
33
|
+
tslib_1.__metadata("design:paramtypes", [Object])
|
34
|
+
], EntityOwnershipService);
|
35
|
+
//# sourceMappingURL=entity-ownership.service.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"entity-ownership.service.js","sourceRoot":"","sources":["../../../src/lib/service/entity-ownership.service.ts"],"names":[],"mappings":";;;;AAAA,2CAAkE;AAS3D,IAAM,sBAAsB,GAA5B,MAAM,sBAAsB;IACjC,YAEU,UAAiD;QAAjD,eAAU,GAAV,UAAU,CAAuC;IACxD,CAAC;IAEJ,YAAY;QACV,0EAA0E;IAC5E,CAAC;IAEK,eAAe,CAAC,EAAsB;;YAC1C,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,kBAAkB,EAAE,EAAE,CAAC,CAAC;QAC/C,CAAC;KAAA;IAEK,oBAAoB,CAAC,EAAqC;;YAC9D,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,wBAAwB,EAAE,EAAE,CAAC,CAAC;QACrD,CAAC;KAAA;IAEK,YAAY,CAAC,EAA4B;;YAC7C,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,iBAAiB,EAAE,EAAE,CAAC,CAAC;QAC3D,CAAC;KAAA;CAUF,CAAA;AA9BY,wDAAsB;iCAAtB,sBAAsB;IADlC,IAAA,mBAAU,GAAE;IAGR,mBAAA,IAAA,eAAM,EAAC,mBAAmB,CAAC,CAAA;;GAFnB,sBAAsB,CA8BlC"}
|
package/package.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{ "name": "@ubs-platform/users-mona-microservice-helper", "version": "3.0.
|
1
|
+
{ "name": "@ubs-platform/users-mona-microservice-helper", "version": "3.0.6-beta", "private": false, "main": "dist/index.js", "license": "MIT", "author": "Unlimited Bundle Systems", "homepage": "https://github.com/ubs-platform/users-mona-microservice-helper", "repository": { "type": "git", "url": "https://github.com/ubs-platform/users-mona-microservice-helper" }, "scripts": { "build": "tsc", "build-publish": "npm run build && npm publish --tag beta" }, "peerDependencies": { "@nestjs/common": "^10.0.2", "@nestjs/core": "^10.0.2", "@nestjs/jwt": "^10.2.0", "@nestjs/microservices": "^10.3.3", "@nestjs/mongoose": "^10.0.4", "@nestjs/passport": "^10.0.3", "@nestjs/platform-express": "^10.0.2", "@ubs-platform/nest-microservice-setup-util": "3.0.6-beta", "@ubs-platform/users-common": "3.0.6-beta", "@ubs-platform/users-mona-roles": "3.0.6-beta", "passport-jwt": "^4.0.1", "rxjs": "^7.8.0" }, "dependencies": { "tslib": "^2.3.0", "crypto-promise": "^2.1.0" }, "devDependencies": { "typescript": "~5.3.2", "@types/node": "~18.16.9" }, "publishConfig": { "access": "public" } }
|