@yolo-croket-dev/amqp-access 0.6.100 → 0.6.101

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.
Files changed (37) hide show
  1. package/analytics-service/amqp.analytics-service.module.js +4 -0
  2. package/analytics-service/dto/index.d.ts +2 -0
  3. package/analytics-service/dto/index.js +2 -0
  4. package/{manage-service → analytics-service}/services/amqp-attribution-history.service.d.ts +1 -1
  5. package/analytics-service/services/index.d.ts +2 -0
  6. package/analytics-service/services/index.js +2 -0
  7. package/manage-service/amqp.manage-service.module.js +0 -4
  8. package/manage-service/dto/index.d.ts +0 -2
  9. package/manage-service/dto/index.js +0 -2
  10. package/manage-service/services/index.d.ts +0 -2
  11. package/manage-service/services/index.js +0 -2
  12. package/package.json +1 -1
  13. /package/{manage-service → analytics-service}/dto/attribution-history/command/create-attribution-history.dto.d.ts +0 -0
  14. /package/{manage-service → analytics-service}/dto/attribution-history/command/create-attribution-history.dto.js +0 -0
  15. /package/{manage-service → analytics-service}/dto/attribution-history/command/index.d.ts +0 -0
  16. /package/{manage-service → analytics-service}/dto/attribution-history/command/index.js +0 -0
  17. /package/{manage-service → analytics-service}/dto/attribution-history/index.d.ts +0 -0
  18. /package/{manage-service → analytics-service}/dto/attribution-history/index.js +0 -0
  19. /package/{manage-service → analytics-service}/dto/attribution-touch/command/create-attribution-touch-external.dto.d.ts +0 -0
  20. /package/{manage-service → analytics-service}/dto/attribution-touch/command/create-attribution-touch-external.dto.js +0 -0
  21. /package/{manage-service → analytics-service}/dto/attribution-touch/command/create-attribution-touch-internal.dto.d.ts +0 -0
  22. /package/{manage-service → analytics-service}/dto/attribution-touch/command/create-attribution-touch-internal.dto.js +0 -0
  23. /package/{manage-service → analytics-service}/dto/attribution-touch/command/delete-attribution-touchs-for-create-history.dto.d.ts +0 -0
  24. /package/{manage-service → analytics-service}/dto/attribution-touch/command/delete-attribution-touchs-for-create-history.dto.js +0 -0
  25. /package/{manage-service → analytics-service}/dto/attribution-touch/command/index.d.ts +0 -0
  26. /package/{manage-service → analytics-service}/dto/attribution-touch/command/index.js +0 -0
  27. /package/{manage-service → analytics-service}/dto/attribution-touch/index.d.ts +0 -0
  28. /package/{manage-service → analytics-service}/dto/attribution-touch/index.js +0 -0
  29. /package/{manage-service → analytics-service}/dto/attribution-touch/query/get-attribution-id.dto.d.ts +0 -0
  30. /package/{manage-service → analytics-service}/dto/attribution-touch/query/get-attribution-id.dto.js +0 -0
  31. /package/{manage-service → analytics-service}/dto/attribution-touch/query/get-attributions-touchs-for-create-history.dto.d.ts +0 -0
  32. /package/{manage-service → analytics-service}/dto/attribution-touch/query/get-attributions-touchs-for-create-history.dto.js +0 -0
  33. /package/{manage-service → analytics-service}/dto/attribution-touch/query/index.d.ts +0 -0
  34. /package/{manage-service → analytics-service}/dto/attribution-touch/query/index.js +0 -0
  35. /package/{manage-service → analytics-service}/services/amqp-attribution-history.service.js +0 -0
  36. /package/{manage-service → analytics-service}/services/amqp-attribution-touch.service.d.ts +0 -0
  37. /package/{manage-service → analytics-service}/services/amqp-attribution-touch.service.js +0 -0
@@ -20,12 +20,16 @@ exports.AmqpAnalyticsServiceModule = AmqpAnalyticsServiceModule = __decorate([
20
20
  services_1.AmqpInflowSessionService,
21
21
  services_1.AmqpStoreItemReviewRequestUserService,
22
22
  services_1.AmqpEventLogService,
23
+ services_1.AmqpAttributionTouchService,
24
+ services_1.AmqpAttributionHistoryService,
23
25
  ],
24
26
  exports: [
25
27
  amqp_analytics_service_provider_1.AnalyticsServiceProvider,
26
28
  services_1.AmqpInflowSessionService,
27
29
  services_1.AmqpStoreItemReviewRequestUserService,
28
30
  services_1.AmqpEventLogService,
31
+ services_1.AmqpAttributionTouchService,
32
+ services_1.AmqpAttributionHistoryService,
29
33
  ],
30
34
  })
31
35
  ], AmqpAnalyticsServiceModule);
@@ -1 +1,3 @@
1
1
  export * from './store-item-review-request-user';
2
+ export * from './attribution-touch';
3
+ export * from './attribution-history';
@@ -15,3 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./store-item-review-request-user"), exports);
18
+ __exportStar(require("./attribution-touch"), exports);
19
+ __exportStar(require("./attribution-history"), exports);
@@ -1,6 +1,6 @@
1
1
  import { ClientProxy } from '@nestjs/microservices';
2
2
  import { AbstractParam } from '@yolo-croket-dev/core';
3
- import { CreateAttributionHistoryPayload } from '../dto';
3
+ import { CreateAttributionHistoryPayload } from '../dto/attribution-history';
4
4
  export declare class AmqpAttributionHistoryService {
5
5
  private readonly client;
6
6
  private readonly amqpManager;
@@ -2,3 +2,5 @@ export * from './amqp.inflow-session.service';
2
2
  export * from './amqp.store-item-review-request-user.service';
3
3
  export * from './amqp.inflow-session.service';
4
4
  export * from './amqp.event-log.service';
5
+ export * from './amqp-attribution-touch.service';
6
+ export * from './amqp-attribution-history.service';
@@ -18,3 +18,5 @@ __exportStar(require("./amqp.inflow-session.service"), exports);
18
18
  __exportStar(require("./amqp.store-item-review-request-user.service"), exports);
19
19
  __exportStar(require("./amqp.inflow-session.service"), exports);
20
20
  __exportStar(require("./amqp.event-log.service"), exports);
21
+ __exportStar(require("./amqp-attribution-touch.service"), exports);
22
+ __exportStar(require("./amqp-attribution-history.service"), exports);
@@ -23,8 +23,6 @@ exports.AmqpManageServiceModule = AmqpManageServiceModule = __decorate([
23
23
  services_1.AmqpPublicHolidayService,
24
24
  services_1.AmqpEventBannerService,
25
25
  services_1.AmqpFileService,
26
- services_1.AmqpAttributionTouchService,
27
- services_1.AmqpAttributionHistoryService,
28
26
  ],
29
27
  exports: [
30
28
  amqp_manage_service_provider_1.ManageServiceProvider,
@@ -34,8 +32,6 @@ exports.AmqpManageServiceModule = AmqpManageServiceModule = __decorate([
34
32
  services_1.AmqpPublicHolidayService,
35
33
  services_1.AmqpEventBannerService,
36
34
  services_1.AmqpFileService,
37
- services_1.AmqpAttributionTouchService,
38
- services_1.AmqpAttributionHistoryService,
39
35
  ],
40
36
  })
41
37
  ], AmqpManageServiceModule);
@@ -2,5 +2,3 @@ export * from './link-tab';
2
2
  export * from './manage-user';
3
3
  export * from './exchange-rate';
4
4
  export * from './event-banner';
5
- export * from './attribution-touch';
6
- export * from './attribution-history';
@@ -18,5 +18,3 @@ __exportStar(require("./link-tab"), exports);
18
18
  __exportStar(require("./manage-user"), exports);
19
19
  __exportStar(require("./exchange-rate"), exports);
20
20
  __exportStar(require("./event-banner"), exports);
21
- __exportStar(require("./attribution-touch"), exports);
22
- __exportStar(require("./attribution-history"), exports);
@@ -4,5 +4,3 @@ export * from './amqp-exchange-rate.service';
4
4
  export * from './amqp-public-holiday.service';
5
5
  export * from './event-banner.service';
6
6
  export * from './amqp.file.service';
7
- export * from './amqp-attribution-touch.service';
8
- export * from './amqp-attribution-history.service';
@@ -20,5 +20,3 @@ __exportStar(require("./amqp-exchange-rate.service"), exports);
20
20
  __exportStar(require("./amqp-public-holiday.service"), exports);
21
21
  __exportStar(require("./event-banner.service"), exports);
22
22
  __exportStar(require("./amqp.file.service"), exports);
23
- __exportStar(require("./amqp-attribution-touch.service"), exports);
24
- __exportStar(require("./amqp-attribution-history.service"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.6.100",
3
+ "version": "0.6.101",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",