@yolo-croket-dev/amqp-access 0.4.119-jun.4 → 0.4.119-jun.5
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/coupon-server/amqp.coupon-server.module.js +2 -2
- package/coupon-server/services/summer-black-friday.modules/amqp.brand-black-friday-coupon.service.d.ts +1 -1
- package/coupon-server/services/summer-black-friday.modules/amqp.brand-black-friday-coupon.service.js +5 -5
- package/package.json +1 -1
- package/user-service/amqp.user-service.module.js +4 -0
- package/user-service/services/index.d.ts +1 -0
- package/user-service/services/index.js +1 -0
- package/user-service/services/summer-black-friday.modules/amqp.brand-black-friday-coupon.service.d.ts +1 -1
- package/user-service/services/summer-black-friday.modules/amqp.brand-black-friday-coupon.service.js +5 -5
|
@@ -24,7 +24,7 @@ exports.AmqpCouponServerModule = AmqpCouponServerModule = __decorate([
|
|
|
24
24
|
services_1.AmqpReceiptCouponTemplateLogService,
|
|
25
25
|
services_1.AmqpIssuedReceiptCouponService,
|
|
26
26
|
services_1.AmqpIssuedReceiptCouponLogService,
|
|
27
|
-
services_1.
|
|
27
|
+
services_1.AmqpBrandBlackFridayCouponServiceByCouponServer,
|
|
28
28
|
],
|
|
29
29
|
exports: [
|
|
30
30
|
amqp_coupon_server_provider_1.CouponServerProvider,
|
|
@@ -35,7 +35,7 @@ exports.AmqpCouponServerModule = AmqpCouponServerModule = __decorate([
|
|
|
35
35
|
services_1.AmqpReceiptCouponTemplateLogService,
|
|
36
36
|
services_1.AmqpIssuedReceiptCouponService,
|
|
37
37
|
services_1.AmqpIssuedReceiptCouponLogService,
|
|
38
|
-
services_1.
|
|
38
|
+
services_1.AmqpBrandBlackFridayCouponServiceByCouponServer,
|
|
39
39
|
],
|
|
40
40
|
})
|
|
41
41
|
], AmqpCouponServerModule);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ClientProxy } from '@nestjs/microservices';
|
|
2
2
|
import { AbstractParam } from '@yolo-croket-dev/core';
|
|
3
3
|
import { GetBrandBlackFridayCouponPageResult } from '../../dto/summer-black-friday.modules/brand-black-friday-coupon';
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class AmqpBrandBlackFridayCouponServiceByCouponServer {
|
|
5
5
|
private readonly client;
|
|
6
6
|
private readonly amqpManager;
|
|
7
7
|
constructor(client: ClientProxy);
|
package/coupon-server/services/summer-black-friday.modules/amqp.brand-black-friday-coupon.service.js
CHANGED
|
@@ -12,11 +12,11 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
|
12
12
|
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
13
|
};
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.
|
|
15
|
+
exports.AmqpBrandBlackFridayCouponServiceByCouponServer = void 0;
|
|
16
16
|
const common_1 = require("@nestjs/common");
|
|
17
17
|
const microservices_1 = require("@nestjs/microservices");
|
|
18
18
|
const functions_1 = require("@yolo-croket-dev/core/functions");
|
|
19
|
-
let
|
|
19
|
+
let AmqpBrandBlackFridayCouponServiceByCouponServer = class AmqpBrandBlackFridayCouponServiceByCouponServer {
|
|
20
20
|
constructor(client) {
|
|
21
21
|
this.client = client;
|
|
22
22
|
this.amqpManager = new functions_1.AmqpManagement(this.client);
|
|
@@ -25,9 +25,9 @@ let AmqpBrandBlackFridayCouponService = class AmqpBrandBlackFridayCouponService
|
|
|
25
25
|
return this.amqpManager.call('브랜드 블랙 프라이데이 쿠폰 조회', 'brand-black-friday-coupon.get.page', payload, param, { isErrorThrowing: true });
|
|
26
26
|
}
|
|
27
27
|
};
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
28
|
+
exports.AmqpBrandBlackFridayCouponServiceByCouponServer = AmqpBrandBlackFridayCouponServiceByCouponServer;
|
|
29
|
+
exports.AmqpBrandBlackFridayCouponServiceByCouponServer = AmqpBrandBlackFridayCouponServiceByCouponServer = __decorate([
|
|
30
30
|
(0, common_1.Injectable)(),
|
|
31
31
|
__param(0, (0, common_1.Inject)('COUPON_SERVER_PROVIDER')),
|
|
32
32
|
__metadata("design:paramtypes", [microservices_1.ClientProxy])
|
|
33
|
-
],
|
|
33
|
+
], AmqpBrandBlackFridayCouponServiceByCouponServer);
|
package/package.json
CHANGED
|
@@ -44,6 +44,8 @@ exports.AmqpUserServiceModule = AmqpUserServiceModule = __decorate([
|
|
|
44
44
|
services_1.AmqpStoreAdminService,
|
|
45
45
|
services_1.AmqpFeedService,
|
|
46
46
|
services_1.AmqpLegacyApiService,
|
|
47
|
+
services_1.AmqpBrandBlackFridayCouponServiceByUserService,
|
|
48
|
+
services_1.AmqpCouponEventZoneService,
|
|
47
49
|
],
|
|
48
50
|
exports: [
|
|
49
51
|
amqp_user_service_provider_1.UserServiceProvider,
|
|
@@ -73,6 +75,8 @@ exports.AmqpUserServiceModule = AmqpUserServiceModule = __decorate([
|
|
|
73
75
|
services_1.AmqpStoreAdminService,
|
|
74
76
|
services_1.AmqpFeedService,
|
|
75
77
|
services_1.AmqpLegacyApiService,
|
|
78
|
+
services_1.AmqpBrandBlackFridayCouponServiceByUserService,
|
|
79
|
+
services_1.AmqpCouponEventZoneService,
|
|
76
80
|
],
|
|
77
81
|
})
|
|
78
82
|
], AmqpUserServiceModule);
|
|
@@ -38,3 +38,4 @@ __exportStar(require("./amqp.device-id.service"), exports);
|
|
|
38
38
|
__exportStar(require("./store.modules"), exports);
|
|
39
39
|
__exportStar(require("./amqp.feed.service"), exports);
|
|
40
40
|
__exportStar(require("./amqp.legacy-api.service"), exports);
|
|
41
|
+
__exportStar(require("./summer-black-friday.modules"), exports);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ClientProxy } from '@nestjs/microservices';
|
|
2
2
|
import { AbstractParam } from '@yolo-croket-dev/core';
|
|
3
3
|
import { GetBrandBlackFridayMdThemeResult } from '../../dto/summer-black-friday.modules/brand-black-friday-coupon';
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class AmqpBrandBlackFridayCouponServiceByUserService {
|
|
5
5
|
private readonly client;
|
|
6
6
|
private readonly amqpManager;
|
|
7
7
|
constructor(client: ClientProxy);
|
package/user-service/services/summer-black-friday.modules/amqp.brand-black-friday-coupon.service.js
CHANGED
|
@@ -12,11 +12,11 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
|
12
12
|
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
13
|
};
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.
|
|
15
|
+
exports.AmqpBrandBlackFridayCouponServiceByUserService = void 0;
|
|
16
16
|
const common_1 = require("@nestjs/common");
|
|
17
17
|
const microservices_1 = require("@nestjs/microservices");
|
|
18
18
|
const functions_1 = require("@yolo-croket-dev/core/functions");
|
|
19
|
-
let
|
|
19
|
+
let AmqpBrandBlackFridayCouponServiceByUserService = class AmqpBrandBlackFridayCouponServiceByUserService {
|
|
20
20
|
constructor(client) {
|
|
21
21
|
this.client = client;
|
|
22
22
|
this.amqpManager = new functions_1.AmqpManagement(this.client);
|
|
@@ -25,9 +25,9 @@ let AmqpBrandBlackFridayCouponService = class AmqpBrandBlackFridayCouponService
|
|
|
25
25
|
return this.amqpManager.call('브랜드 블랙 프라이데이 MDTheme 조회', 'brand-black-friday.get.md-theme', payload, param, { isErrorThrowing: true });
|
|
26
26
|
}
|
|
27
27
|
};
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
28
|
+
exports.AmqpBrandBlackFridayCouponServiceByUserService = AmqpBrandBlackFridayCouponServiceByUserService;
|
|
29
|
+
exports.AmqpBrandBlackFridayCouponServiceByUserService = AmqpBrandBlackFridayCouponServiceByUserService = __decorate([
|
|
30
30
|
(0, common_1.Injectable)(),
|
|
31
31
|
__param(0, (0, common_1.Inject)('USER_SERVICE_PROVIDER')),
|
|
32
32
|
__metadata("design:paramtypes", [microservices_1.ClientProxy])
|
|
33
|
-
],
|
|
33
|
+
], AmqpBrandBlackFridayCouponServiceByUserService);
|