@yolo-croket-dev/amqp-access 0.5.123 → 0.5.125
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/purchasedinfos/query/search-seller-transaction-history-by-process.dto.d.ts
CHANGED
|
@@ -106,6 +106,8 @@ export declare class SellerTransactionHistory {
|
|
|
106
106
|
isPOptionChanged?: boolean;
|
|
107
107
|
/** 정산 예정일 - yyyy. MM. dd || 목표액 미도달 */
|
|
108
108
|
expectSettleDate?: string;
|
|
109
|
+
/** 사방넷 상품 등록 여부 */
|
|
110
|
+
isSabang?: boolean;
|
|
109
111
|
}
|
|
110
112
|
export declare class SearchSellerTransactionHistoryByProcessResult {
|
|
111
113
|
sellerTransactionHistories: SellerTransactionHistory[];
|
package/package.json
CHANGED
|
@@ -194,6 +194,13 @@ __decorate([
|
|
|
194
194
|
(0, class_transformer_1.Type)(() => RegStoreItemAdminRegInfo),
|
|
195
195
|
__metadata("design:type", RegStoreItemAdminRegInfo)
|
|
196
196
|
], RegStoreItemPayload.prototype, "adminRegInfo", void 0);
|
|
197
|
+
__decorate([
|
|
198
|
+
(0, class_validator_1.IsBoolean)(),
|
|
199
|
+
(0, class_validator_1.IsOptional)()
|
|
200
|
+
/** 사방넷 상품 등록 여부 */
|
|
201
|
+
,
|
|
202
|
+
__metadata("design:type", Boolean)
|
|
203
|
+
], RegStoreItemPayload.prototype, "isSabang", void 0);
|
|
197
204
|
class RegStoreItemResult {
|
|
198
205
|
}
|
|
199
206
|
exports.RegStoreItemResult = RegStoreItemResult;
|