@yolo-croket-dev/amqp-access 0.0.119 → 0.0.120
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/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PartialRefundForAdminEntity } from '@yolo-croket-dev/entity-v2';
|
|
1
|
+
import { PartialRefundForAdminEntity, PartialRefundProcessEnum } from '@yolo-croket-dev/entity-v2';
|
|
2
2
|
export declare class SearchPartialRefundsForAdminPayload {
|
|
3
3
|
startRefundDate: Date;
|
|
4
4
|
endRefundDate: Date;
|
|
@@ -10,6 +10,7 @@ export declare class SearchPartialRefundsForAdminPayload {
|
|
|
10
10
|
userId?: string;
|
|
11
11
|
username?: string;
|
|
12
12
|
storeTitle?: string;
|
|
13
|
+
refundProcess: PartialRefundProcessEnum;
|
|
13
14
|
page: number;
|
|
14
15
|
limit: number;
|
|
15
16
|
}
|
|
@@ -11,6 +11,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.SearchPartialRefundsForAdminResult = exports.TotalCountByProcessType = exports.SearchPartialRefundsForAdminPayload = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
|
+
const entity_v2_1 = require("@yolo-croket-dev/entity-v2");
|
|
14
15
|
class SearchPartialRefundsForAdminPayload {
|
|
15
16
|
}
|
|
16
17
|
exports.SearchPartialRefundsForAdminPayload = SearchPartialRefundsForAdminPayload;
|
|
@@ -62,6 +63,10 @@ __decorate([
|
|
|
62
63
|
(0, class_validator_1.IsOptional)(),
|
|
63
64
|
__metadata("design:type", String)
|
|
64
65
|
], SearchPartialRefundsForAdminPayload.prototype, "storeTitle", void 0);
|
|
66
|
+
__decorate([
|
|
67
|
+
(0, class_validator_1.IsEnum)(entity_v2_1.PartialRefundProcessEnum),
|
|
68
|
+
__metadata("design:type", String)
|
|
69
|
+
], SearchPartialRefundsForAdminPayload.prototype, "refundProcess", void 0);
|
|
65
70
|
__decorate([
|
|
66
71
|
(0, class_validator_1.IsNumber)(),
|
|
67
72
|
__metadata("design:type", Number)
|