@yolo-croket-dev/amqp-access 0.2.30-sj-2 → 0.2.30-sj-3
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,7 +8,7 @@ export declare class SearchPurchaseReceiptsPayload {
|
|
|
8
8
|
searchAfter?: string;
|
|
9
9
|
searchBefore?: string;
|
|
10
10
|
}
|
|
11
|
-
declare class PurchaseReceiptList implements Pick<PurchaseReceiptDomain, '_id' | 'paymentNumber' | 'paymentMethod' | 'purchasedInfos' | 'paymentDate'> {
|
|
11
|
+
export declare class PurchaseReceiptList implements Pick<PurchaseReceiptDomain, '_id' | 'paymentNumber' | 'paymentMethod' | 'purchasedInfos' | 'paymentDate'> {
|
|
12
12
|
_id: string;
|
|
13
13
|
paymentNumber: string;
|
|
14
14
|
paymentMethod: string;
|
|
@@ -20,4 +20,3 @@ export declare class SearchPurchaseReceiptsResult {
|
|
|
20
20
|
totalCount?: number;
|
|
21
21
|
searchToken?: string;
|
|
22
22
|
}
|
|
23
|
-
export {};
|
|
@@ -9,7 +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.SearchPurchaseReceiptsResult = exports.SearchPurchaseReceiptsPayload = void 0;
|
|
12
|
+
exports.SearchPurchaseReceiptsResult = exports.PurchaseReceiptList = exports.SearchPurchaseReceiptsPayload = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
14
|
const purchased_info_entity_1 = require("@yolo-croket-dev/entity-v2/purchased-info/purchased-info.entity");
|
|
15
15
|
class SearchPurchaseReceiptsPayload {
|
|
@@ -46,8 +46,10 @@ __decorate([
|
|
|
46
46
|
(0, class_validator_1.IsOptional)(),
|
|
47
47
|
__metadata("design:type", String)
|
|
48
48
|
], SearchPurchaseReceiptsPayload.prototype, "searchBefore", void 0);
|
|
49
|
+
// eslint-disable-next-line max-len
|
|
49
50
|
class PurchaseReceiptList {
|
|
50
51
|
}
|
|
52
|
+
exports.PurchaseReceiptList = PurchaseReceiptList;
|
|
51
53
|
// eslint-disable-next-line max-len
|
|
52
54
|
class SearchPurchaseReceiptsResult {
|
|
53
55
|
}
|