@ubs-platform/users-mona-microservice-helper 3.0.8-beta → 3.0.10-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/lib/backend-jwt-utils.module.js +2 -4
- package/dist/lib/backend-jwt-utils.module.js.map +1 -1
- package/dist/lib/service/entity-ownership.service.d.ts +5 -3
- package/dist/lib/service/entity-ownership.service.js +7 -7
- package/dist/lib/service/entity-ownership.service.js.map +1 -1
- package/package.json +1 -1
@@ -8,6 +8,7 @@ const backend_jwt_utils_exports_module_1 = require("./backend-jwt-utils-exports.
|
|
8
8
|
const communication_handler_1 = require("./guards/communication-handler");
|
9
9
|
const jwt_strategy_1 = require("./strategies/jwt.strategy");
|
10
10
|
const user_service_1 = require("./service/user.service");
|
11
|
+
const nest_microservice_setup_util_1 = require("@ubs-platform/nest-microservice-setup-util");
|
11
12
|
const entity_ownership_service_1 = require("./service/entity-ownership.service");
|
12
13
|
// import { JwtStrategy } from './strategies/jwt.strategy';
|
13
14
|
exports.INTERNAL_COMMUNICATION = {
|
@@ -30,10 +31,7 @@ exports.BackendJwtUtilsModule = BackendJwtUtilsModule = tslib_1.__decorate([
|
|
30
31
|
imports: [
|
31
32
|
...backend_jwt_utils_exports_module_1.BackendJwtUtilsExportModule,
|
32
33
|
microservices_1.ClientsModule.register([
|
33
|
-
|
34
|
-
// name: 'KAFKA_CLIENT',
|
35
|
-
// ...getMicroserviceConnection(''),
|
36
|
-
// } as any,
|
34
|
+
Object.assign({ name: 'KAFKA_CLIENT' }, (0, nest_microservice_setup_util_1.getMicroserviceConnection)('')),
|
37
35
|
{
|
38
36
|
name: 'USER_MICROSERVICE',
|
39
37
|
transport: microservices_1.Transport.TCP,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"backend-jwt-utils.module.js","sourceRoot":"","sources":["../../src/lib/backend-jwt-utils.module.ts"],"names":[],"mappings":";;;;AAAA,2CAAwC;AACxC,yDAAiE;AACjE,yFAAiF;AACjF,0EAAqE;AACrE,4DAAwD;AACxD,yDAAqD;
|
1
|
+
{"version":3,"file":"backend-jwt-utils.module.js","sourceRoot":"","sources":["../../src/lib/backend-jwt-utils.module.ts"],"names":[],"mappings":";;;;AAAA,2CAAwC;AACxC,yDAAiE;AACjE,yFAAiF;AACjF,0EAAqE;AACrE,4DAAwD;AACxD,yDAAqD;AACrD,6FAAuF;AACvF,iFAA4E;AAC5E,2DAA2D;AAC9C,QAAA,sBAAsB,GAAG;IACpC,IAAI,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,gCAAgC,CAAC,IAAI,GAAG,CAAC;IACpE,IAAI,EAAE,OAAO,CAAC,GAAG,CAAC,gCAAgC,CAAC;CACpD,CAAC;AA8BK,IAAM,qBAAqB,GAA3B,MAAM,qBAAqB;CAAG,CAAA;AAAxB,sDAAqB;gCAArB,qBAAqB;IA5BjC,IAAA,eAAM,EAAC;QACN,WAAW,EAAE,EAAE;QACf,SAAS,EAAE;YACT,2CAAmB;YACnB,0BAAW;YACX,0BAAW;YACX,iDAAsB;SACvB;QACD,OAAO,EAAE,CAAC,0BAAW,EAAE,iDAAsB,CAAC;QAC9C,OAAO,EAAE;YACP,GAAG,8DAA2B;YAE9B,6BAAa,CAAC,QAAQ,CAAC;gBACrB,gBACE,IAAI,EAAE,cAAc,IACjB,IAAA,wDAAyB,EAAC,EAAE,CAAC,CAC1B;gBACR;oBACE,IAAI,EAAE,mBAAmB;oBACzB,SAAS,EAAE,yBAAS,CAAC,GAAG;oBACxB,OAAO,EAAE;wBACP,IAAI,EAAE,8BAAsB,CAAC,IAAI;wBACjC,IAAI,EAAE,8BAAsB,CAAC,IAAI;qBAClC;iBACF;aACF,CAAC;SACH;KACF,CAAC;GACW,qBAAqB,CAAG"}
|
@@ -1,11 +1,13 @@
|
|
1
1
|
import { OnModuleInit } from '@nestjs/common';
|
2
2
|
import { ClientProxy, ClientKafka, ClientRMQ } from '@nestjs/microservices';
|
3
|
-
import { EntityOwnershipDTO, EntityOwnershipInsertCapabiltyDTO, EntityOwnershipUserCheck } from '@ubs-platform/users-common';
|
3
|
+
import { EntityOwnershipDTO, EntityOwnershipInsertCapabiltyDTO, EntityOwnershipUserCheck, UserCapabilityDTO } from '@ubs-platform/users-common';
|
4
|
+
import { Observable } from 'rxjs';
|
4
5
|
export declare class EntityOwnershipService implements OnModuleInit {
|
5
6
|
private userClient;
|
6
|
-
|
7
|
+
private kafkaClient;
|
8
|
+
constructor(userClient: ClientProxy | ClientKafka | ClientRMQ, kafkaClient: ClientProxy | ClientKafka | ClientRMQ);
|
7
9
|
onModuleInit(): void;
|
8
10
|
insertOwnership(oe: EntityOwnershipDTO): Promise<void>;
|
9
11
|
insertUserCapability(oe: EntityOwnershipInsertCapabiltyDTO): Promise<void>;
|
10
|
-
hasOwnership(eo: EntityOwnershipUserCheck):
|
12
|
+
hasOwnership(eo: EntityOwnershipUserCheck): Observable<UserCapabilityDTO>;
|
11
13
|
}
|
@@ -4,32 +4,32 @@ exports.EntityOwnershipService = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
5
5
|
const common_1 = require("@nestjs/common");
|
6
6
|
let EntityOwnershipService = class EntityOwnershipService {
|
7
|
-
constructor(userClient) {
|
7
|
+
constructor(userClient, kafkaClient) {
|
8
8
|
this.userClient = userClient;
|
9
|
+
this.kafkaClient = kafkaClient;
|
9
10
|
}
|
10
11
|
onModuleInit() {
|
11
12
|
// (this.userClient as ClientKafka).subscribeToResponseOf?.('user-by-id');
|
12
13
|
}
|
13
14
|
insertOwnership(oe) {
|
14
15
|
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
15
|
-
this.
|
16
|
+
this.kafkaClient.emit('insert-ownership', oe);
|
16
17
|
});
|
17
18
|
}
|
18
19
|
insertUserCapability(oe) {
|
19
20
|
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
20
|
-
this.
|
21
|
+
this.kafkaClient.emit('insert-user-capability', oe);
|
21
22
|
});
|
22
23
|
}
|
23
24
|
hasOwnership(eo) {
|
24
|
-
return
|
25
|
-
return yield this.userClient.emit('check-ownership', eo);
|
26
|
-
});
|
25
|
+
return this.userClient.send('check-ownership', eo);
|
27
26
|
}
|
28
27
|
};
|
29
28
|
exports.EntityOwnershipService = EntityOwnershipService;
|
30
29
|
exports.EntityOwnershipService = EntityOwnershipService = tslib_1.__decorate([
|
31
30
|
(0, common_1.Injectable)(),
|
32
31
|
tslib_1.__param(0, (0, common_1.Inject)('USER_MICROSERVICE')),
|
33
|
-
tslib_1.
|
32
|
+
tslib_1.__param(1, (0, common_1.Inject)('KAFKA_CLIENT')),
|
33
|
+
tslib_1.__metadata("design:paramtypes", [Object, Object])
|
34
34
|
], EntityOwnershipService);
|
35
35
|
//# sourceMappingURL=entity-ownership.service.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"entity-ownership.service.js","sourceRoot":"","sources":["../../../src/lib/service/entity-ownership.service.ts"],"names":[],"mappings":";;;;AAAA,2CAAkE;
|
1
|
+
{"version":3,"file":"entity-ownership.service.js","sourceRoot":"","sources":["../../../src/lib/service/entity-ownership.service.ts"],"names":[],"mappings":";;;;AAAA,2CAAkE;AAW3D,IAAM,sBAAsB,GAA5B,MAAM,sBAAsB;IACjC,YAEU,UAAiD,EAEjD,WAAkD;QAFlD,eAAU,GAAV,UAAU,CAAuC;QAEjD,gBAAW,GAAX,WAAW,CAAuC;IACzD,CAAC;IAEJ,YAAY;QACV,0EAA0E;IAC5E,CAAC;IAEK,eAAe,CAAC,EAAsB;;YAC1C,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,kBAAkB,EAAE,EAAE,CAAC,CAAC;QAChD,CAAC;KAAA;IAEK,oBAAoB,CAAC,EAAqC;;YAC9D,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,wBAAwB,EAAE,EAAE,CAAC,CAAC;QACtD,CAAC;KAAA;IAED,YAAY,CAAC,EAA4B;QACvC,OAAO,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,iBAAiB,EAAE,EAAE,CAAC,CAAC;IACrD,CAAC;CAUF,CAAA;AAhCY,wDAAsB;iCAAtB,sBAAsB;IADlC,IAAA,mBAAU,GAAE;IAGR,mBAAA,IAAA,eAAM,EAAC,mBAAmB,CAAC,CAAA;IAE3B,mBAAA,IAAA,eAAM,EAAC,cAAc,CAAC,CAAA;;GAJd,sBAAsB,CAgClC"}
|
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.10-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.10-beta", "@ubs-platform/users-common": "3.0.10-beta", "@ubs-platform/users-mona-roles": "3.0.10-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" } }
|