@yolo-croket-dev/amqp-access 0.2.30-sj-1 → 0.2.30-sj-2
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.
|
@@ -8,10 +8,16 @@ export declare class SearchPurchaseReceiptsPayload {
|
|
|
8
8
|
searchAfter?: string;
|
|
9
9
|
searchBefore?: string;
|
|
10
10
|
}
|
|
11
|
-
|
|
11
|
+
declare class PurchaseReceiptList implements Pick<PurchaseReceiptDomain, '_id' | 'paymentNumber' | 'paymentMethod' | 'purchasedInfos' | 'paymentDate'> {
|
|
12
12
|
_id: string;
|
|
13
13
|
paymentNumber: string;
|
|
14
14
|
paymentMethod: string;
|
|
15
15
|
purchasedInfos: CustomPurchaseReceiptPurchasedInfo[];
|
|
16
16
|
paymentDate: Date;
|
|
17
17
|
}
|
|
18
|
+
export declare class SearchPurchaseReceiptsResult {
|
|
19
|
+
datas: PurchaseReceiptList[];
|
|
20
|
+
totalCount?: number;
|
|
21
|
+
searchToken?: string;
|
|
22
|
+
}
|
|
23
|
+
export {};
|
|
@@ -46,6 +46,8 @@ __decorate([
|
|
|
46
46
|
(0, class_validator_1.IsOptional)(),
|
|
47
47
|
__metadata("design:type", String)
|
|
48
48
|
], SearchPurchaseReceiptsPayload.prototype, "searchBefore", void 0);
|
|
49
|
+
class PurchaseReceiptList {
|
|
50
|
+
}
|
|
49
51
|
// eslint-disable-next-line max-len
|
|
50
52
|
class SearchPurchaseReceiptsResult {
|
|
51
53
|
}
|