@yolo-croket-dev/amqp-access 0.7.80 → 0.7.82-sj
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 +6 -0
- package/package.json +1 -1
- package/user-service/dto/chat-content/command/send-chat-for-buyer-by-order.dto.d.ts +1 -8
- package/user-service/dto/chat-content/command/send-chat-for-buyer-by-order.dto.js +3 -30
package/order-server/dto/purchasedinfos/query/search-seller-transaction-history-by-process.dto.d.ts
CHANGED
|
@@ -23,6 +23,12 @@ export declare class SellerTransactionHistory {
|
|
|
23
23
|
SCompany?: string;
|
|
24
24
|
/** 송장번호 */
|
|
25
25
|
invoice?: string;
|
|
26
|
+
/** 해외 운송사명 */
|
|
27
|
+
abroadCarrierName?: string;
|
|
28
|
+
/** 해외 운송장 번호 */
|
|
29
|
+
abroadInvoice?: string;
|
|
30
|
+
/** 해외 운송장 등록일 */
|
|
31
|
+
abroadRegDate?: Date;
|
|
26
32
|
/** 발송일 */
|
|
27
33
|
deliveryDate?: string;
|
|
28
34
|
/** 거래 상태 */
|
package/package.json
CHANGED
|
@@ -1,11 +1,4 @@
|
|
|
1
1
|
export declare class SendChatForBuyerByOrderPayload {
|
|
2
2
|
process: string;
|
|
3
|
-
|
|
4
|
-
}
|
|
5
|
-
export declare class SendChatForBuyerByOrderChatRoomInfo {
|
|
6
|
-
sellerId: string;
|
|
7
|
-
chatRoomId: string;
|
|
8
|
-
itemName: string;
|
|
9
|
-
itemLength: number;
|
|
10
|
-
buyerUsername: string;
|
|
3
|
+
relatedPInfoIds: string[];
|
|
11
4
|
}
|
|
@@ -9,8 +9,7 @@ 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.
|
|
13
|
-
const class_transformer_1 = require("class-transformer");
|
|
12
|
+
exports.SendChatForBuyerByOrderPayload = void 0;
|
|
14
13
|
const class_validator_1 = require("class-validator");
|
|
15
14
|
class SendChatForBuyerByOrderPayload {
|
|
16
15
|
}
|
|
@@ -21,33 +20,7 @@ __decorate([
|
|
|
21
20
|
__metadata("design:type", String)
|
|
22
21
|
], SendChatForBuyerByOrderPayload.prototype, "process", void 0);
|
|
23
22
|
__decorate([
|
|
24
|
-
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
25
23
|
(0, class_validator_1.IsArray)(),
|
|
26
|
-
(0,
|
|
24
|
+
(0, class_validator_1.IsMongoId)({ each: true }),
|
|
27
25
|
__metadata("design:type", Array)
|
|
28
|
-
], SendChatForBuyerByOrderPayload.prototype, "
|
|
29
|
-
class SendChatForBuyerByOrderChatRoomInfo {
|
|
30
|
-
}
|
|
31
|
-
exports.SendChatForBuyerByOrderChatRoomInfo = SendChatForBuyerByOrderChatRoomInfo;
|
|
32
|
-
__decorate([
|
|
33
|
-
(0, class_validator_1.IsMongoId)(),
|
|
34
|
-
__metadata("design:type", String)
|
|
35
|
-
], SendChatForBuyerByOrderChatRoomInfo.prototype, "sellerId", void 0);
|
|
36
|
-
__decorate([
|
|
37
|
-
(0, class_validator_1.IsMongoId)(),
|
|
38
|
-
__metadata("design:type", String)
|
|
39
|
-
], SendChatForBuyerByOrderChatRoomInfo.prototype, "chatRoomId", void 0);
|
|
40
|
-
__decorate([
|
|
41
|
-
(0, class_validator_1.IsString)(),
|
|
42
|
-
(0, class_validator_1.IsNotEmpty)(),
|
|
43
|
-
__metadata("design:type", String)
|
|
44
|
-
], SendChatForBuyerByOrderChatRoomInfo.prototype, "itemName", void 0);
|
|
45
|
-
__decorate([
|
|
46
|
-
(0, class_validator_1.IsNumber)(),
|
|
47
|
-
__metadata("design:type", Number)
|
|
48
|
-
], SendChatForBuyerByOrderChatRoomInfo.prototype, "itemLength", void 0);
|
|
49
|
-
__decorate([
|
|
50
|
-
(0, class_validator_1.IsString)(),
|
|
51
|
-
(0, class_validator_1.IsNotEmpty)(),
|
|
52
|
-
__metadata("design:type", String)
|
|
53
|
-
], SendChatForBuyerByOrderChatRoomInfo.prototype, "buyerUsername", void 0);
|
|
26
|
+
], SendChatForBuyerByOrderPayload.prototype, "relatedPInfoIds", void 0);
|