@yolo-croket-dev/amqp-access 0.7.47-jun.34 → 0.7.47-jun.36
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/order-server/dto/pay-try-log.modules/pay-try-log-reservation/command/write-store-item-reservation-pay-try-log-init.dto.d.ts +5 -0
- package/order-server/dto/pay-try-log.modules/pay-try-log-reservation/command/write-store-item-reservation-pay-try-log-init.dto.js +11 -0
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AttributionDeviceTypeEnum } from '@yolo-croket-dev/entity-v2';
|
|
1
2
|
/** @description 예약 상품 결제 시도 에러 코드 */
|
|
2
3
|
export declare enum ReservationPayTryLogErrorEnum {
|
|
3
4
|
/** 로그인 필요 */
|
|
@@ -43,6 +44,10 @@ export declare class WriteStoreItemReservationPayTryLogInitPayload {
|
|
|
43
44
|
itemId: string;
|
|
44
45
|
pOptionInfo: WriteStoreItemReservationPayTryLogInitPOptionInfo;
|
|
45
46
|
paidPrice: number;
|
|
47
|
+
/** 유저 트래킹 ID (어트리뷰션) */
|
|
48
|
+
userTrackingId?: string;
|
|
49
|
+
/** 어트리뷰션 디바이스 타입 */
|
|
50
|
+
attributionDeviceType?: AttributionDeviceTypeEnum;
|
|
46
51
|
}
|
|
47
52
|
export declare class WriteStoreItemReservationPayTryLogInitResult {
|
|
48
53
|
payTryLogId: string;
|
|
@@ -12,6 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.WriteStoreItemReservationPayTryLogInitResult = exports.WriteStoreItemReservationPayTryLogInitPayload = exports.WriteStoreItemReservationPayTryLogInitPOptionInfo = exports.WriteStoreItemReservationPayTryLogInitPOptionInfoChild = exports.ReservationPayTryLogErrorEnum = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
14
|
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
const entity_v2_1 = require("@yolo-croket-dev/entity-v2");
|
|
15
16
|
/** @description 예약 상품 결제 시도 에러 코드 */
|
|
16
17
|
var ReservationPayTryLogErrorEnum;
|
|
17
18
|
(function (ReservationPayTryLogErrorEnum) {
|
|
@@ -90,6 +91,16 @@ __decorate([
|
|
|
90
91
|
(0, class_validator_1.IsNumber)(),
|
|
91
92
|
__metadata("design:type", Number)
|
|
92
93
|
], WriteStoreItemReservationPayTryLogInitPayload.prototype, "paidPrice", void 0);
|
|
94
|
+
__decorate([
|
|
95
|
+
(0, class_validator_1.IsString)(),
|
|
96
|
+
(0, class_validator_1.IsOptional)(),
|
|
97
|
+
__metadata("design:type", String)
|
|
98
|
+
], WriteStoreItemReservationPayTryLogInitPayload.prototype, "userTrackingId", void 0);
|
|
99
|
+
__decorate([
|
|
100
|
+
(0, class_validator_1.IsEnum)(entity_v2_1.AttributionDeviceTypeEnum),
|
|
101
|
+
(0, class_validator_1.IsOptional)(),
|
|
102
|
+
__metadata("design:type", String)
|
|
103
|
+
], WriteStoreItemReservationPayTryLogInitPayload.prototype, "attributionDeviceType", void 0);
|
|
93
104
|
class WriteStoreItemReservationPayTryLogInitResult {
|
|
94
105
|
}
|
|
95
106
|
exports.WriteStoreItemReservationPayTryLogInitResult = WriteStoreItemReservationPayTryLogInitResult;
|