@yolo-croket-dev/amqp-access 0.7.225 → 0.7.226
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/.claude/settings.local.json +11 -0
- package/package.json +3 -3
- package/store-item-server/dto/store-item/command/reg-store-item.dto.d.ts +18 -2
- package/store-item-server/dto/store-item/command/reg-store-item.dto.js +62 -4
- package/store-item-server/dto/store-item/query/get-store-item-info-by-id.dto.d.ts +2 -2
- package/store-item-server/dto/store-item/query/get-store-item-info-by-ids.dto.d.ts +2 -2
- package/store-item-server/dto/store-item-bookmark/query/get-store-item-bookmarks.dto.d.ts +3 -1
- package/excel-upload-server/dto/ad-performance-report/command/create-sns-roas-report-excel-result.dto.d.ts +0 -15
- package/excel-upload-server/dto/ad-performance-report/command/create-sns-roas-report-excel-result.dto.js +0 -2
- package/excel-upload-server/dto/ad-performance-report/command/sns-roas-source-row.dto.d.ts +0 -10
- package/excel-upload-server/dto/ad-performance-report/command/sns-roas-source-row.dto.js +0 -38
- package/order-server/dto/purchased-info.modules/purchased-info-admin/command/upsert-invoice-bulk-for-admin.dto.d.ts +0 -34
- package/order-server/dto/purchased-info.modules/purchased-info-admin/command/upsert-invoice-bulk-for-admin.dto.js +0 -56
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yolo-croket-dev/amqp-access",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.226",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "Yolo Co., Ltd.",
|
|
6
6
|
"description": "크로켓 amqp-access npm",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"@yolo-croket-dev/domain": "0.2.38",
|
|
23
23
|
"@yolo-croket-dev/dto-v2": "0.2.22",
|
|
24
24
|
"@yolo-croket-dev/entity": "0.2.90",
|
|
25
|
-
"@yolo-croket-dev/entity-v2": "0.3.
|
|
25
|
+
"@yolo-croket-dev/entity-v2": "0.3.4",
|
|
26
26
|
"class-transformer": "^0.5.1",
|
|
27
27
|
"class-validator": "^0.13.2",
|
|
28
28
|
"dotenv": "^16.3.1"
|
|
29
29
|
}
|
|
30
|
-
}
|
|
30
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PrecautionCodeEnum, StoreItemContentsTypeEnum, StoreItemOptionTypeEnum, StoreItemKeyword as StoreItemKeywordEntity } from '@yolo-croket-dev/entity/src/store-item';
|
|
2
|
+
import { StoreItemTypeEnum, StoreItemUsedConditionGradeEnum, StoreItemUsedCurrencyCodeEnum, StoreItemUsedRarityEnum } from '@yolo-croket-dev/entity-v2/store-item';
|
|
2
3
|
export declare class RegStoreItemImgSizeInfo {
|
|
3
4
|
width: number;
|
|
4
5
|
height: number;
|
|
@@ -33,11 +34,26 @@ export declare class StoreItemKeyword implements StoreItemKeywordEntity {
|
|
|
33
34
|
keyword: string;
|
|
34
35
|
isMainKeyword: boolean;
|
|
35
36
|
}
|
|
37
|
+
export declare class RegStoreItemUsedReleasePriceInfo {
|
|
38
|
+
currencyCode: StoreItemUsedCurrencyCodeEnum;
|
|
39
|
+
amount: number;
|
|
40
|
+
}
|
|
41
|
+
export declare class RegStoreItemUsedInfo {
|
|
42
|
+
productionYear?: number;
|
|
43
|
+
discoveryCountryCode?: string;
|
|
44
|
+
rarity?: StoreItemUsedRarityEnum;
|
|
45
|
+
conditionGrade?: StoreItemUsedConditionGradeEnum;
|
|
46
|
+
releasePriceInfo?: RegStoreItemUsedReleasePriceInfo;
|
|
47
|
+
}
|
|
36
48
|
export declare class RegStoreItemPayload {
|
|
37
49
|
/** 셀러 전용 상품 관리 메모 */
|
|
38
50
|
sellerMemo?: string;
|
|
39
|
-
/**
|
|
40
|
-
|
|
51
|
+
/** 상품 타입 */
|
|
52
|
+
itemType?: StoreItemTypeEnum.normal | StoreItemTypeEnum.used;
|
|
53
|
+
/** 대표 품번 */
|
|
54
|
+
mainSku?: string | null;
|
|
55
|
+
/** 중고 상품 추가 정보 */
|
|
56
|
+
usedItemInfo?: RegStoreItemUsedInfo | null;
|
|
41
57
|
itemImgUrls: string[];
|
|
42
58
|
itemName: string;
|
|
43
59
|
itemNameEng?: string;
|
|
@@ -9,10 +9,11 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.RegStoreItemResult = exports.RegStoreItemPayload = exports.StoreItemKeyword = exports.RegStoreItemAdminRegInfo = exports.RegStoreItemOptionInfo = exports.RegStoreItemOptionList = exports.RegStoreItemOptionGroupFrameList = exports.RegStoreItemContentsData = exports.RegStoreItemImgSizeInfo = void 0;
|
|
12
|
+
exports.RegStoreItemResult = exports.RegStoreItemPayload = exports.RegStoreItemUsedInfo = exports.RegStoreItemUsedReleasePriceInfo = exports.StoreItemKeyword = exports.RegStoreItemAdminRegInfo = exports.RegStoreItemOptionInfo = exports.RegStoreItemOptionList = exports.RegStoreItemOptionGroupFrameList = exports.RegStoreItemContentsData = exports.RegStoreItemImgSizeInfo = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
14
|
const class_transformer_1 = require("class-transformer");
|
|
15
15
|
const store_item_1 = require("@yolo-croket-dev/entity/src/store-item");
|
|
16
|
+
const store_item_2 = require("@yolo-croket-dev/entity-v2/store-item");
|
|
16
17
|
const update_store_item_seller_memo_dto_1 = require("./update-store-item-seller-memo.dto");
|
|
17
18
|
class RegStoreItemImgSizeInfo {
|
|
18
19
|
}
|
|
@@ -125,6 +126,49 @@ __decorate([
|
|
|
125
126
|
(0, class_validator_1.IsBoolean)(),
|
|
126
127
|
__metadata("design:type", Boolean)
|
|
127
128
|
], StoreItemKeyword.prototype, "isMainKeyword", void 0);
|
|
129
|
+
class RegStoreItemUsedReleasePriceInfo {
|
|
130
|
+
}
|
|
131
|
+
exports.RegStoreItemUsedReleasePriceInfo = RegStoreItemUsedReleasePriceInfo;
|
|
132
|
+
__decorate([
|
|
133
|
+
(0, class_validator_1.IsEnum)(store_item_2.StoreItemUsedCurrencyCodeEnum),
|
|
134
|
+
__metadata("design:type", String)
|
|
135
|
+
], RegStoreItemUsedReleasePriceInfo.prototype, "currencyCode", void 0);
|
|
136
|
+
__decorate([
|
|
137
|
+
(0, class_validator_1.IsNumber)({ maxDecimalPlaces: 2 }),
|
|
138
|
+
(0, class_validator_1.IsPositive)(),
|
|
139
|
+
__metadata("design:type", Number)
|
|
140
|
+
], RegStoreItemUsedReleasePriceInfo.prototype, "amount", void 0);
|
|
141
|
+
class RegStoreItemUsedInfo {
|
|
142
|
+
}
|
|
143
|
+
exports.RegStoreItemUsedInfo = RegStoreItemUsedInfo;
|
|
144
|
+
__decorate([
|
|
145
|
+
(0, class_validator_1.IsInt)(),
|
|
146
|
+
(0, class_validator_1.Min)(1000),
|
|
147
|
+
(0, class_validator_1.Max)(new Date().getFullYear()),
|
|
148
|
+
(0, class_validator_1.IsOptional)(),
|
|
149
|
+
__metadata("design:type", Number)
|
|
150
|
+
], RegStoreItemUsedInfo.prototype, "productionYear", void 0);
|
|
151
|
+
__decorate([
|
|
152
|
+
(0, class_validator_1.IsString)(),
|
|
153
|
+
(0, class_validator_1.IsOptional)(),
|
|
154
|
+
__metadata("design:type", String)
|
|
155
|
+
], RegStoreItemUsedInfo.prototype, "discoveryCountryCode", void 0);
|
|
156
|
+
__decorate([
|
|
157
|
+
(0, class_validator_1.IsEnum)(store_item_2.StoreItemUsedRarityEnum),
|
|
158
|
+
(0, class_validator_1.IsOptional)(),
|
|
159
|
+
__metadata("design:type", String)
|
|
160
|
+
], RegStoreItemUsedInfo.prototype, "rarity", void 0);
|
|
161
|
+
__decorate([
|
|
162
|
+
(0, class_validator_1.IsEnum)(store_item_2.StoreItemUsedConditionGradeEnum),
|
|
163
|
+
(0, class_validator_1.IsOptional)(),
|
|
164
|
+
__metadata("design:type", String)
|
|
165
|
+
], RegStoreItemUsedInfo.prototype, "conditionGrade", void 0);
|
|
166
|
+
__decorate([
|
|
167
|
+
(0, class_validator_1.ValidateNested)(),
|
|
168
|
+
(0, class_transformer_1.Type)(() => RegStoreItemUsedReleasePriceInfo),
|
|
169
|
+
(0, class_validator_1.IsOptional)(),
|
|
170
|
+
__metadata("design:type", RegStoreItemUsedReleasePriceInfo)
|
|
171
|
+
], RegStoreItemUsedInfo.prototype, "releasePriceInfo", void 0);
|
|
128
172
|
class RegStoreItemPayload {
|
|
129
173
|
}
|
|
130
174
|
exports.RegStoreItemPayload = RegStoreItemPayload;
|
|
@@ -135,10 +179,24 @@ __decorate([
|
|
|
135
179
|
__metadata("design:type", String)
|
|
136
180
|
], RegStoreItemPayload.prototype, "sellerMemo", void 0);
|
|
137
181
|
__decorate([
|
|
138
|
-
(0, class_validator_1.
|
|
182
|
+
(0, class_validator_1.IsIn)([
|
|
183
|
+
store_item_2.StoreItemTypeEnum.normal,
|
|
184
|
+
store_item_2.StoreItemTypeEnum.used,
|
|
185
|
+
]),
|
|
139
186
|
(0, class_validator_1.IsOptional)(),
|
|
140
|
-
__metadata("design:type",
|
|
141
|
-
], RegStoreItemPayload.prototype, "
|
|
187
|
+
__metadata("design:type", String)
|
|
188
|
+
], RegStoreItemPayload.prototype, "itemType", void 0);
|
|
189
|
+
__decorate([
|
|
190
|
+
(0, class_validator_1.IsString)(),
|
|
191
|
+
(0, class_validator_1.IsOptional)(),
|
|
192
|
+
__metadata("design:type", Object)
|
|
193
|
+
], RegStoreItemPayload.prototype, "mainSku", void 0);
|
|
194
|
+
__decorate([
|
|
195
|
+
(0, class_validator_1.ValidateNested)(),
|
|
196
|
+
(0, class_transformer_1.Type)(() => RegStoreItemUsedInfo),
|
|
197
|
+
(0, class_validator_1.IsOptional)(),
|
|
198
|
+
__metadata("design:type", Object)
|
|
199
|
+
], RegStoreItemPayload.prototype, "usedItemInfo", void 0);
|
|
142
200
|
__decorate([
|
|
143
201
|
(0, class_validator_1.IsArray)(),
|
|
144
202
|
__metadata("design:type", Array)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { StoreItemEntity } from '@yolo-croket-dev/entity-v2/store-item';
|
|
2
2
|
export declare class GetStoreItemInfoByIdPayload {
|
|
3
3
|
/** 상품 아이디 */
|
|
4
4
|
itemId: string;
|
|
@@ -8,5 +8,5 @@ export declare class GetStoreItemInfoByIdPayload {
|
|
|
8
8
|
excludeFields?: string[];
|
|
9
9
|
}
|
|
10
10
|
export declare class GetStoreItemInfoByIdResult {
|
|
11
|
-
storeItem:
|
|
11
|
+
storeItem: StoreItemEntity | null;
|
|
12
12
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { StoreItemEntity } from '@yolo-croket-dev/entity-v2/store-item';
|
|
2
2
|
export declare class GetStoreItemInfoByIdsPayload {
|
|
3
3
|
/** 상품 아이디 */
|
|
4
4
|
itemIds: string[];
|
|
@@ -8,5 +8,5 @@ export declare class GetStoreItemInfoByIdsPayload {
|
|
|
8
8
|
excludeFields?: string[];
|
|
9
9
|
}
|
|
10
10
|
export declare class GetStoreItemInfoByIdsResult {
|
|
11
|
-
storeItems: (Partial<
|
|
11
|
+
storeItems: (Partial<StoreItemEntity> | null)[];
|
|
12
12
|
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { StoreItemLegacyEntity } from '@yolo-croket-dev/entity/src/store-item';
|
|
2
2
|
import { StoreEntity } from '@yolo-croket-dev/entity-v2';
|
|
3
|
+
import { StoreItemTypeEnum } from '@yolo-croket-dev/entity-v2/store-item';
|
|
3
4
|
export declare class GetStoreItemBookmarksPayload {
|
|
4
5
|
lastBookmarkId?: string;
|
|
5
6
|
}
|
|
6
|
-
export interface StoreItemForBookmark extends Pick<StoreItemLegacyEntity, 'itemId' | 'storeId' | 'itemImg' | 'itemName' | 'itemPriceForBuyer' | 'remainCount' | 'bookNums' | 'stickerInfo' | 'mainCategory' | 'subCategory' | 'isAdultItem' | 'isDirect' | 'isShipping' | 'isPrepay' | 'isVisit' | 'isBundleShipping' | 'deliveryDate' | 'dueDateRemainDay' | 'isExistDueDate' | 'dueDate' | 'shippingFee' | 'expectedSendDays' | 'expectedDeliveryDays' | 'isShippingTerms' | 'isAbroadShipping' | 'area' | 'nation' | 'storeTitle' | 'maxDiscountCouponPriceInfo'
|
|
7
|
+
export interface StoreItemForBookmark extends Pick<StoreItemLegacyEntity, 'itemId' | 'storeId' | 'itemImg' | 'itemName' | 'itemPriceForBuyer' | 'remainCount' | 'bookNums' | 'stickerInfo' | 'mainCategory' | 'subCategory' | 'isAdultItem' | 'isDirect' | 'isShipping' | 'isPrepay' | 'isVisit' | 'isBundleShipping' | 'deliveryDate' | 'dueDateRemainDay' | 'isExistDueDate' | 'dueDate' | 'shippingFee' | 'expectedSendDays' | 'expectedDeliveryDays' | 'isShippingTerms' | 'isAbroadShipping' | 'area' | 'nation' | 'storeTitle' | 'maxDiscountCouponPriceInfo'> {
|
|
8
|
+
itemType?: StoreItemTypeEnum;
|
|
7
9
|
}
|
|
8
10
|
export interface StoreForBookmark extends Pick<StoreEntity, 'storeTitle'> {
|
|
9
11
|
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @author jun
|
|
3
|
-
* @description SNS ROAS 엑셀 생성 AMQP 응답입니다.
|
|
4
|
-
* @process 생성된 파일과 처리 범위 및 처리 건수를 호출 서버에 반환합니다.
|
|
5
|
-
*/
|
|
6
|
-
export interface CreateSnsRoasReportExcelResult {
|
|
7
|
-
downloadUrl: string;
|
|
8
|
-
endDate: string;
|
|
9
|
-
exchangeRateKrwPerUsd: number;
|
|
10
|
-
fileName: string;
|
|
11
|
-
resultRowCount: number;
|
|
12
|
-
sourceRowCount: number;
|
|
13
|
-
startDate: string;
|
|
14
|
-
transactionCount: number;
|
|
15
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.SnsRoasSourceRow = void 0;
|
|
13
|
-
const class_validator_1 = require("class-validator");
|
|
14
|
-
/**
|
|
15
|
-
* @author jun
|
|
16
|
-
* @description SNS ROAS 엑셀 생성에 사용할 광고 소재별 일자 광고비입니다.
|
|
17
|
-
* @process 광고 소재명, 일자, USD 광고비의 형식과 범위를 검증합니다.
|
|
18
|
-
*/
|
|
19
|
-
class SnsRoasSourceRow {
|
|
20
|
-
}
|
|
21
|
-
exports.SnsRoasSourceRow = SnsRoasSourceRow;
|
|
22
|
-
__decorate([
|
|
23
|
-
(0, class_validator_1.IsString)(),
|
|
24
|
-
(0, class_validator_1.IsNotEmpty)(),
|
|
25
|
-
__metadata("design:type", String)
|
|
26
|
-
], SnsRoasSourceRow.prototype, "adName", void 0);
|
|
27
|
-
__decorate([
|
|
28
|
-
(0, class_validator_1.IsDateString)({ strict: true }),
|
|
29
|
-
__metadata("design:type", String)
|
|
30
|
-
], SnsRoasSourceRow.prototype, "date", void 0);
|
|
31
|
-
__decorate([
|
|
32
|
-
(0, class_validator_1.IsNumber)({
|
|
33
|
-
allowInfinity: false,
|
|
34
|
-
allowNaN: false,
|
|
35
|
-
}),
|
|
36
|
-
(0, class_validator_1.Min)(0),
|
|
37
|
-
__metadata("design:type", Number)
|
|
38
|
-
], SnsRoasSourceRow.prototype, "spendUsd", void 0);
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/** @description 관리자용 일괄 송장 등록/수정 개별 처리 결과 */
|
|
2
|
-
export interface UpsertInvoiceBulkForAdminResultItem {
|
|
3
|
-
pInfoId: string;
|
|
4
|
-
failType?: string;
|
|
5
|
-
reason?: string;
|
|
6
|
-
}
|
|
7
|
-
/**
|
|
8
|
-
* @author jun
|
|
9
|
-
* @description 관리자용 일괄 송장 등록/수정 payload
|
|
10
|
-
*/
|
|
11
|
-
export declare class UpsertInvoiceBulkForAdminPayload {
|
|
12
|
-
/** 송장을 등록하거나 수정할 결제정보 ID 목록 */
|
|
13
|
-
pInfoIds: string[];
|
|
14
|
-
/** 택배사명 */
|
|
15
|
-
SCompany: string;
|
|
16
|
-
/** 송장번호 */
|
|
17
|
-
invoice: string;
|
|
18
|
-
/** 배송 조회 URL */
|
|
19
|
-
invoiceUrl?: string;
|
|
20
|
-
/** 택배사 직접 입력 여부 */
|
|
21
|
-
isDirectInput: boolean;
|
|
22
|
-
/** 구매자 알림 발송 여부 */
|
|
23
|
-
isNoti: boolean;
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* @author jun
|
|
27
|
-
* @description 관리자용 일괄 송장 등록/수정 결과
|
|
28
|
-
*/
|
|
29
|
-
export declare class UpsertInvoiceBulkForAdminResult {
|
|
30
|
-
allCount: number;
|
|
31
|
-
successCount: number;
|
|
32
|
-
failCount: number;
|
|
33
|
-
results: UpsertInvoiceBulkForAdminResultItem[];
|
|
34
|
-
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.UpsertInvoiceBulkForAdminResult = exports.UpsertInvoiceBulkForAdminPayload = void 0;
|
|
13
|
-
const class_validator_1 = require("class-validator");
|
|
14
|
-
/**
|
|
15
|
-
* @author jun
|
|
16
|
-
* @description 관리자용 일괄 송장 등록/수정 payload
|
|
17
|
-
*/
|
|
18
|
-
class UpsertInvoiceBulkForAdminPayload {
|
|
19
|
-
}
|
|
20
|
-
exports.UpsertInvoiceBulkForAdminPayload = UpsertInvoiceBulkForAdminPayload;
|
|
21
|
-
__decorate([
|
|
22
|
-
(0, class_validator_1.IsArray)(),
|
|
23
|
-
(0, class_validator_1.ArrayMinSize)(1),
|
|
24
|
-
(0, class_validator_1.ArrayMaxSize)(50),
|
|
25
|
-
(0, class_validator_1.ArrayUnique)(),
|
|
26
|
-
(0, class_validator_1.IsMongoId)({ each: true }),
|
|
27
|
-
__metadata("design:type", Array)
|
|
28
|
-
], UpsertInvoiceBulkForAdminPayload.prototype, "pInfoIds", void 0);
|
|
29
|
-
__decorate([
|
|
30
|
-
(0, class_validator_1.IsString)(),
|
|
31
|
-
__metadata("design:type", String)
|
|
32
|
-
], UpsertInvoiceBulkForAdminPayload.prototype, "SCompany", void 0);
|
|
33
|
-
__decorate([
|
|
34
|
-
(0, class_validator_1.IsString)(),
|
|
35
|
-
__metadata("design:type", String)
|
|
36
|
-
], UpsertInvoiceBulkForAdminPayload.prototype, "invoice", void 0);
|
|
37
|
-
__decorate([
|
|
38
|
-
(0, class_validator_1.IsOptional)(),
|
|
39
|
-
(0, class_validator_1.IsString)(),
|
|
40
|
-
__metadata("design:type", String)
|
|
41
|
-
], UpsertInvoiceBulkForAdminPayload.prototype, "invoiceUrl", void 0);
|
|
42
|
-
__decorate([
|
|
43
|
-
(0, class_validator_1.IsBoolean)(),
|
|
44
|
-
__metadata("design:type", Boolean)
|
|
45
|
-
], UpsertInvoiceBulkForAdminPayload.prototype, "isDirectInput", void 0);
|
|
46
|
-
__decorate([
|
|
47
|
-
(0, class_validator_1.IsBoolean)(),
|
|
48
|
-
__metadata("design:type", Boolean)
|
|
49
|
-
], UpsertInvoiceBulkForAdminPayload.prototype, "isNoti", void 0);
|
|
50
|
-
/**
|
|
51
|
-
* @author jun
|
|
52
|
-
* @description 관리자용 일괄 송장 등록/수정 결과
|
|
53
|
-
*/
|
|
54
|
-
class UpsertInvoiceBulkForAdminResult {
|
|
55
|
-
}
|
|
56
|
-
exports.UpsertInvoiceBulkForAdminResult = UpsertInvoiceBulkForAdminResult;
|