cmp-aws-database 1.2.0-dev.6 → 1.2.0-proddebug.1
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/dist/base-model.js +12 -5
- package/dist/customer-user/accompaniments/accompaniments-model.d.ts +2 -0
- package/dist/customer-user/accompaniments/accompaniments-model.js +38 -14
- package/dist/customer-user/add-ons/add-ons-model.js +38 -18
- package/dist/customer-user/app-feedback/app-feedback-model.js +16 -7
- package/dist/customer-user/bank-details/bank-details-model.js +18 -8
- package/dist/customer-user/cart/cart-categories-model.d.ts +4 -0
- package/dist/customer-user/cart/cart-categories-model.js +30 -10
- package/dist/customer-user/cart/cart-model.d.ts +27 -16
- package/dist/customer-user/cart/cart-model.js +109 -64
- package/dist/customer-user/category/category-model.js +16 -7
- package/dist/customer-user/catering/catering-model.js +28 -13
- package/dist/customer-user/content/content-model.js +28 -13
- package/dist/customer-user/counter/counter-model.js +14 -6
- package/dist/customer-user/coupons/coupons-model.d.ts +3 -3
- package/dist/customer-user/coupons/coupons-model.js +44 -21
- package/dist/customer-user/cuisine/cuisine-model.js +14 -6
- package/dist/customer-user/cutlery/cutlery-model.js +30 -14
- package/dist/customer-user/default-platter/default-platters-category-model.js +24 -11
- package/dist/customer-user/default-platter/default-platters-model.d.ts +1 -0
- package/dist/customer-user/default-platter/default-platters-model.js +46 -19
- package/dist/customer-user/default-platter/default_platters_items.d.ts +1 -0
- package/dist/customer-user/default-platter/default_platters_items.js +38 -16
- package/dist/customer-user/event-executives/event-executive-model.js +22 -10
- package/dist/customer-user/example-model.js +12 -5
- package/dist/customer-user/feedbacks/common-feedback-model.js +18 -8
- package/dist/customer-user/findmyplatter/find-my-platter-dao.d.ts +6 -0
- package/dist/customer-user/findmyplatter/find-my-platter-dao.js +8 -0
- package/dist/customer-user/findmyplatter/find-my-platter-model.d.ts +21 -0
- package/dist/customer-user/findmyplatter/find-my-platter-model.js +93 -0
- package/dist/customer-user/guest-feedback/guest-feedback-model.js +16 -7
- package/dist/customer-user/items/items-model.d.ts +1 -0
- package/dist/customer-user/items/items-model.js +46 -20
- package/dist/customer-user/lead/lead-model.js +32 -15
- package/dist/customer-user/lsq-crm-activity/lsq-crm-model.js +28 -13
- package/dist/customer-user/occastion/occasion-model.js +16 -7
- package/dist/customer-user/order-module/address/address-model.js +40 -19
- package/dist/customer-user/order-module/address/user-address-request-model.js +22 -10
- package/dist/customer-user/order-module/order/order-model.js +66 -32
- package/dist/customer-user/order-module/order-address/address-order-model.js +40 -19
- package/dist/customer-user/order-module/order-review/order-review-feedback-model.d.ts +8 -3
- package/dist/customer-user/order-module/order-review/order-review-feedback-model.js +34 -17
- package/dist/customer-user/order-module/order-review/order-review-model.d.ts +1 -1
- package/dist/customer-user/order-module/order-review/order-review-model.js +26 -12
- package/dist/customer-user/order-module/payment/payment-model.d.ts +4 -3
- package/dist/customer-user/order-module/payment/payment-model.js +58 -26
- package/dist/customer-user/order-module/plate-order/plate-order-model.d.ts +6 -0
- package/dist/customer-user/order-module/plate-order/plate-order-model.js +224 -99
- package/dist/customer-user/order-module/tracking/tracking-model.d.ts +1 -1
- package/dist/customer-user/order-module/tracking/tracking-model.js +22 -10
- package/dist/customer-user/platter-search-events/platter-search-events-model.js +20 -9
- package/dist/customer-user/pricing-factors/pricing-factors-dao.d.ts +7 -0
- package/dist/customer-user/pricing-factors/pricing-factors-dao.js +16 -0
- package/dist/customer-user/pricing-factors/pricing-factors-model.d.ts +12 -0
- package/dist/customer-user/pricing-factors/pricing-factors-model.js +57 -0
- package/dist/customer-user/referal-content/referal-content-model.js +22 -10
- package/dist/customer-user/request-Invoice/request-invoice-model.js +16 -7
- package/dist/customer-user/tier-details/tier-details-model.d.ts +1 -0
- package/dist/customer-user/tier-details/tier-details-model.js +30 -12
- package/dist/customer-user/tier-referral/tier-referral-model.js +18 -8
- package/dist/customer-user/user/user-model.js +24 -11
- package/dist/customer-user/user-order-summary/user-order-summary-model.js +14 -6
- package/dist/customer-user/wallet/wallet-model.js +14 -6
- package/dist/customer-user/wallet-transaction/wallet-transaction-model.js +26 -12
- package/dist/customer-user/withdrawn/withdrawn-model.js +18 -8
- package/dist/internal-user/activity-logs/activity-logs-model.js +16 -7
- package/dist/internal-user/internal-user-model.js +20 -9
- package/dist/internal-user/quotations/quotation-model.js +46 -22
- package/package.json +3 -2
|
@@ -5,6 +5,9 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
5
5
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
6
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
7
|
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
8
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
12
|
exports.CouponsModel = void 0;
|
|
10
13
|
const annotations_1 = require("@nova-odm/annotations");
|
|
@@ -13,70 +16,90 @@ let CouponsModel = class CouponsModel extends base_model_1.BaseModel {
|
|
|
13
16
|
};
|
|
14
17
|
exports.CouponsModel = CouponsModel;
|
|
15
18
|
__decorate([
|
|
16
|
-
(0, annotations_1.autoGeneratedHashKey)({ type: "String" })
|
|
19
|
+
(0, annotations_1.autoGeneratedHashKey)({ type: "String" }),
|
|
20
|
+
__metadata("design:type", String)
|
|
17
21
|
], CouponsModel.prototype, "id", void 0);
|
|
18
22
|
__decorate([
|
|
19
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "codeIndex": "HASH" }, type: 'String' })
|
|
23
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "codeIndex": "HASH" }, type: 'String' }),
|
|
24
|
+
__metadata("design:type", String)
|
|
20
25
|
], CouponsModel.prototype, "code", void 0);
|
|
21
26
|
__decorate([
|
|
22
|
-
(0, annotations_1.attribute)()
|
|
27
|
+
(0, annotations_1.attribute)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
23
29
|
], CouponsModel.prototype, "description", void 0);
|
|
24
30
|
__decorate([
|
|
25
|
-
(0, annotations_1.attribute)()
|
|
31
|
+
(0, annotations_1.attribute)(),
|
|
32
|
+
__metadata("design:type", String)
|
|
26
33
|
], CouponsModel.prototype, "title", void 0);
|
|
27
34
|
__decorate([
|
|
28
|
-
(0, annotations_1.attribute)()
|
|
35
|
+
(0, annotations_1.attribute)(),
|
|
36
|
+
__metadata("design:type", Object)
|
|
29
37
|
], CouponsModel.prototype, "validFrom", void 0);
|
|
30
38
|
__decorate([
|
|
31
|
-
(0, annotations_1.attribute)()
|
|
39
|
+
(0, annotations_1.attribute)(),
|
|
40
|
+
__metadata("design:type", Object)
|
|
32
41
|
], CouponsModel.prototype, "validTo", void 0);
|
|
33
42
|
__decorate([
|
|
34
|
-
(0, annotations_1.attribute)()
|
|
43
|
+
(0, annotations_1.attribute)(),
|
|
44
|
+
__metadata("design:type", Number)
|
|
35
45
|
], CouponsModel.prototype, "guestCount", void 0);
|
|
36
46
|
__decorate([
|
|
37
|
-
(0, annotations_1.attribute)()
|
|
47
|
+
(0, annotations_1.attribute)(),
|
|
48
|
+
__metadata("design:type", Number)
|
|
38
49
|
], CouponsModel.prototype, "usageLimit", void 0);
|
|
39
50
|
__decorate([
|
|
40
|
-
(0, annotations_1.attribute)()
|
|
51
|
+
(0, annotations_1.attribute)(),
|
|
52
|
+
__metadata("design:type", String)
|
|
41
53
|
], CouponsModel.prototype, "imageUrl", void 0);
|
|
42
54
|
__decorate([
|
|
43
|
-
(0, annotations_1.attribute)()
|
|
55
|
+
(0, annotations_1.attribute)(),
|
|
56
|
+
__metadata("design:type", String)
|
|
44
57
|
], CouponsModel.prototype, "discountType", void 0);
|
|
45
58
|
__decorate([
|
|
46
|
-
(0, annotations_1.attribute)()
|
|
59
|
+
(0, annotations_1.attribute)(),
|
|
60
|
+
__metadata("design:type", Number)
|
|
47
61
|
], CouponsModel.prototype, "discountValue", void 0);
|
|
48
62
|
__decorate([
|
|
49
|
-
(0, annotations_1.attribute)()
|
|
63
|
+
(0, annotations_1.attribute)(),
|
|
64
|
+
__metadata("design:type", Number)
|
|
50
65
|
], CouponsModel.prototype, "minimumOrderValue", void 0);
|
|
51
66
|
__decorate([
|
|
52
67
|
(0, annotations_1.attribute)({
|
|
53
68
|
indexKeyConfigurations: { "couponActiveIndex": "RANGE" }, type: 'String'
|
|
54
|
-
})
|
|
69
|
+
}),
|
|
70
|
+
__metadata("design:type", String)
|
|
55
71
|
], CouponsModel.prototype, "status", void 0);
|
|
56
72
|
__decorate([
|
|
57
|
-
(0, annotations_1.attribute)()
|
|
73
|
+
(0, annotations_1.attribute)(),
|
|
74
|
+
__metadata("design:type", String)
|
|
58
75
|
], CouponsModel.prototype, "eligibilityType", void 0);
|
|
59
76
|
__decorate([
|
|
60
|
-
(0, annotations_1.attribute)()
|
|
77
|
+
(0, annotations_1.attribute)(),
|
|
78
|
+
__metadata("design:type", Object)
|
|
61
79
|
], CouponsModel.prototype, "eligibilityValue", void 0);
|
|
62
80
|
__decorate([
|
|
63
|
-
(0, annotations_1.attribute)()
|
|
81
|
+
(0, annotations_1.attribute)(),
|
|
82
|
+
__metadata("design:type", String)
|
|
64
83
|
], CouponsModel.prototype, "couponAdvantage", void 0);
|
|
65
84
|
__decorate([
|
|
66
85
|
(0, annotations_1.attribute)({
|
|
67
86
|
indexKeyConfigurations: { "locationIndex": "HASH" }, type: 'String'
|
|
68
|
-
})
|
|
87
|
+
}),
|
|
88
|
+
__metadata("design:type", String)
|
|
69
89
|
], CouponsModel.prototype, "location", void 0);
|
|
70
90
|
__decorate([
|
|
71
|
-
(0, annotations_1.attribute)()
|
|
91
|
+
(0, annotations_1.attribute)(),
|
|
92
|
+
__metadata("design:type", Number)
|
|
72
93
|
], CouponsModel.prototype, "itemBaseAmount", void 0);
|
|
73
94
|
__decorate([
|
|
74
|
-
(0, annotations_1.attribute)()
|
|
95
|
+
(0, annotations_1.attribute)(),
|
|
96
|
+
__metadata("design:type", String)
|
|
75
97
|
], CouponsModel.prototype, "itemName", void 0);
|
|
76
98
|
__decorate([
|
|
77
|
-
(0, annotations_1.attribute)()
|
|
99
|
+
(0, annotations_1.attribute)(),
|
|
100
|
+
__metadata("design:type", String)
|
|
78
101
|
], CouponsModel.prototype, "itemImage", void 0);
|
|
79
102
|
exports.CouponsModel = CouponsModel = __decorate([
|
|
80
103
|
(0, annotations_1.table)("CouponsTable")
|
|
81
104
|
], CouponsModel);
|
|
82
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
105
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY291cG9ucy1tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jdXN0b21lci11c2VyL2NvdXBvbnMvY291cG9ucy1tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7QUFBQSx1REFBK0U7QUFDL0UsaURBQTZDO0FBR3RDLElBQU0sWUFBWSxHQUFsQixNQUFNLFlBQWEsU0FBUSxzQkFBUztDQTZDMUMsQ0FBQTtBQTdDWSxvQ0FBWTtBQUVyQjtJQURDLElBQUEsa0NBQW9CLEVBQUMsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLENBQUM7O3dDQUM5QjtBQUVYO0lBREMsSUFBQSx1QkFBUyxFQUFDLEVBQUUsc0JBQXNCLEVBQUUsRUFBRSxXQUFXLEVBQUUsTUFBTSxFQUFFLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxDQUFDOzswQ0FDbEU7QUFFYjtJQURDLElBQUEsdUJBQVMsR0FBRTs7aURBQ1E7QUFFcEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzJDQUNFO0FBRWQ7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OytDQUNhO0FBRXpCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzs2Q0FDVztBQUV2QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7Z0RBQ087QUFFbkI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O2dEQUNPO0FBRW5CO0lBREMsSUFBQSx1QkFBUyxHQUFFOzs4Q0FDSztBQUVqQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7a0RBQ1M7QUFFckI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O21EQUNVO0FBRXRCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzt1REFDYztBQUkxQjtJQUhDLElBQUEsdUJBQVMsRUFBQztRQUNQLHNCQUFzQixFQUFFLEVBQUUsbUJBQW1CLEVBQUUsT0FBTyxFQUFFLEVBQUUsSUFBSSxFQUFFLFFBQVE7S0FDM0UsQ0FBQzs7NENBQ2E7QUFFZjtJQURDLElBQUEsdUJBQVMsR0FBRTs7cURBQ1k7QUFFeEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3NEQUNzQjtBQUVsQztJQURDLElBQUEsdUJBQVMsR0FBRTs7cURBQ2E7QUFJekI7SUFIQyxJQUFBLHVCQUFTLEVBQUM7UUFDUCxzQkFBc0IsRUFBRSxFQUFFLGVBQWUsRUFBRSxNQUFNLEVBQUUsRUFBRSxJQUFJLEVBQUUsUUFBUTtLQUN0RSxDQUFDOzs4Q0FDZTtBQUVqQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7b0RBQ1k7QUFFeEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzhDQUNNO0FBRWxCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzsrQ0FDTzt1QkE1Q1YsWUFBWTtJQUR4QixJQUFBLG1CQUFLLEVBQUMsY0FBYyxDQUFDO0dBQ1QsWUFBWSxDQTZDeEIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBhdHRyaWJ1dGUsIGF1dG9HZW5lcmF0ZWRIYXNoS2V5LCB0YWJsZSB9IGZyb20gXCJAbm92YS1vZG0vYW5ub3RhdGlvbnNcIjtcbmltcG9ydCB7IEJhc2VNb2RlbCB9IGZyb20gXCIuLi8uLi9iYXNlLW1vZGVsXCI7XG5cbkB0YWJsZShcIkNvdXBvbnNUYWJsZVwiKVxuZXhwb3J0IGNsYXNzIENvdXBvbnNNb2RlbCBleHRlbmRzIEJhc2VNb2RlbCB7XG4gICAgQGF1dG9HZW5lcmF0ZWRIYXNoS2V5KHsgdHlwZTogXCJTdHJpbmdcIiB9KVxuICAgIGlkOiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSh7IGluZGV4S2V5Q29uZmlndXJhdGlvbnM6IHsgXCJjb2RlSW5kZXhcIjogXCJIQVNIXCIgfSwgdHlwZTogJ1N0cmluZycgfSlcbiAgICBjb2RlOiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZGVzY3JpcHRpb246IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICB0aXRsZTogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHZhbGlkRnJvbTogRGF0ZSB8IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICB2YWxpZFRvOiBEYXRlIHwgc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGd1ZXN0Q291bnQ6IG51bWJlcjtcbiAgICBAYXR0cmlidXRlKClcbiAgICB1c2FnZUxpbWl0OiBudW1iZXI7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgaW1hZ2VVcmw6IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICBkaXNjb3VudFR5cGU6IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICBkaXNjb3VudFZhbHVlOiBudW1iZXI7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgbWluaW11bU9yZGVyVmFsdWU6IG51bWJlcjtcbiAgICBAYXR0cmlidXRlKHtcbiAgICAgICAgaW5kZXhLZXlDb25maWd1cmF0aW9uczogeyBcImNvdXBvbkFjdGl2ZUluZGV4XCI6IFwiUkFOR0VcIiB9LCB0eXBlOiAnU3RyaW5nJ1xuICAgIH0pXG4gICAgc3RhdHVzOiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZWxpZ2liaWxpdHlUeXBlOiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZWxpZ2liaWxpdHlWYWx1ZTogc3RyaW5nIHwgbnVtYmVyOyAvLyBWMlxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNvdXBvbkFkdmFudGFnZT86IHN0cmluZztcbiAgICBAYXR0cmlidXRlKHtcbiAgICAgICAgaW5kZXhLZXlDb25maWd1cmF0aW9uczogeyBcImxvY2F0aW9uSW5kZXhcIjogXCJIQVNIXCIgfSwgdHlwZTogJ1N0cmluZydcbiAgICB9KVxuICAgIGxvY2F0aW9uOiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgaXRlbUJhc2VBbW91bnQ/OiBudW1iZXI7IC8vIFNwcmludCA1IG5ldyBrZXkgQWRkZWRcbiAgICBAYXR0cmlidXRlKClcbiAgICBpdGVtTmFtZT86IHN0cmluZzsgLy8gU3ByaW50IDQgbmV3IGtleSBBZGRlZFxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGl0ZW1JbWFnZT86IHN0cmluZzsgLy8gU3ByaW50IDQgbmV3IGtleSBBZGRlZFxufSJdfQ==
|
|
@@ -5,6 +5,9 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
5
5
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
6
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
7
|
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
8
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
12
|
exports.CuisineModel = void 0;
|
|
10
13
|
const annotations_1 = require("@nova-odm/annotations");
|
|
@@ -13,23 +16,28 @@ let CuisineModel = class CuisineModel extends base_model_1.BaseModel {
|
|
|
13
16
|
};
|
|
14
17
|
exports.CuisineModel = CuisineModel;
|
|
15
18
|
__decorate([
|
|
16
|
-
(0, annotations_1.autoGeneratedHashKey)({ type: 'String' })
|
|
19
|
+
(0, annotations_1.autoGeneratedHashKey)({ type: 'String' }),
|
|
20
|
+
__metadata("design:type", String)
|
|
17
21
|
], CuisineModel.prototype, "cuisineId", void 0);
|
|
18
22
|
__decorate([
|
|
19
|
-
(0, annotations_1.attribute)()
|
|
23
|
+
(0, annotations_1.attribute)(),
|
|
24
|
+
__metadata("design:type", String)
|
|
20
25
|
], CuisineModel.prototype, "cuisineName", void 0);
|
|
21
26
|
__decorate([
|
|
22
|
-
(0, annotations_1.attribute)()
|
|
27
|
+
(0, annotations_1.attribute)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
23
29
|
], CuisineModel.prototype, "cuisineImageUrl", void 0);
|
|
24
30
|
__decorate([
|
|
25
|
-
(0, annotations_1.attribute)()
|
|
31
|
+
(0, annotations_1.attribute)(),
|
|
32
|
+
__metadata("design:type", String)
|
|
26
33
|
], CuisineModel.prototype, "cuisineDescription", void 0);
|
|
27
34
|
__decorate([
|
|
28
35
|
(0, annotations_1.attribute)({
|
|
29
36
|
indexKeyConfigurations: { "cuisineActiveIndex": "HASH" }, type: 'String'
|
|
30
|
-
})
|
|
37
|
+
}),
|
|
38
|
+
__metadata("design:type", String)
|
|
31
39
|
], CuisineModel.prototype, "cuisineActive", void 0);
|
|
32
40
|
exports.CuisineModel = CuisineModel = __decorate([
|
|
33
41
|
(0, annotations_1.table)("CuisineTable")
|
|
34
42
|
], CuisineModel);
|
|
35
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
43
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3Vpc2luZS1tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jdXN0b21lci11c2VyL2N1aXNpbmUvY3Vpc2luZS1tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7QUFBQSx1REFBK0U7QUFDL0UsaURBQTZDO0FBSXRDLElBQU0sWUFBWSxHQUFsQixNQUFNLFlBQWEsU0FBUSxzQkFBUztDQWExQyxDQUFBO0FBYlksb0NBQVk7QUFFckI7SUFEQyxJQUFBLGtDQUFvQixFQUFDLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxDQUFDOzsrQ0FDdkI7QUFFbEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O2lEQUNRO0FBRXBCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztxREFDWTtBQUV4QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7d0RBQ2U7QUFJM0I7SUFIQyxJQUFBLHVCQUFTLEVBQUM7UUFDUCxzQkFBc0IsRUFBRSxFQUFFLG9CQUFvQixFQUFFLE1BQU0sRUFBRSxFQUFFLElBQUksRUFBRSxRQUFRO0tBQzNFLENBQUM7O21EQUNvQjt1QkFaYixZQUFZO0lBRHhCLElBQUEsbUJBQUssRUFBQyxjQUFjLENBQUM7R0FDVCxZQUFZLENBYXhCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgYXR0cmlidXRlLCBhdXRvR2VuZXJhdGVkSGFzaEtleSwgdGFibGUgfSBmcm9tIFwiQG5vdmEtb2RtL2Fubm90YXRpb25zXCI7XG5pbXBvcnQgeyBCYXNlTW9kZWwgfSBmcm9tIFwiLi4vLi4vYmFzZS1tb2RlbFwiO1xuXG5cbkB0YWJsZShcIkN1aXNpbmVUYWJsZVwiKVxuZXhwb3J0IGNsYXNzIEN1aXNpbmVNb2RlbCBleHRlbmRzIEJhc2VNb2RlbCB7XG4gICAgQGF1dG9HZW5lcmF0ZWRIYXNoS2V5KHsgdHlwZTogJ1N0cmluZycgfSlcbiAgICBjdWlzaW5lSWQ6IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICBjdWlzaW5lTmFtZTogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGN1aXNpbmVJbWFnZVVybDogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGN1aXNpbmVEZXNjcmlwdGlvbjogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoe1xuICAgICAgICBpbmRleEtleUNvbmZpZ3VyYXRpb25zOiB7IFwiY3Vpc2luZUFjdGl2ZUluZGV4XCI6IFwiSEFTSFwiIH0sIHR5cGU6ICdTdHJpbmcnXG4gICAgfSlcbiAgICBjdWlzaW5lQWN0aXZlOiBzdHJpbmc7XG59Il19
|
|
@@ -5,6 +5,9 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
5
5
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
6
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
7
|
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
8
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
12
|
exports.CutleryModel = void 0;
|
|
10
13
|
const annotations_1 = require("@nova-odm/annotations");
|
|
@@ -13,45 +16,58 @@ let CutleryModel = class CutleryModel extends base_model_1.BaseModel {
|
|
|
13
16
|
};
|
|
14
17
|
exports.CutleryModel = CutleryModel;
|
|
15
18
|
__decorate([
|
|
16
|
-
(0, annotations_1.autoGeneratedHashKey)({ type: "String" })
|
|
19
|
+
(0, annotations_1.autoGeneratedHashKey)({ type: "String" }),
|
|
20
|
+
__metadata("design:type", String)
|
|
17
21
|
], CutleryModel.prototype, "cutleryId", void 0);
|
|
18
22
|
__decorate([
|
|
19
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterIndex": "HASH" }, type: 'String' })
|
|
23
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterIndex": "HASH" }, type: 'String' }),
|
|
24
|
+
__metadata("design:type", String)
|
|
20
25
|
], CutleryModel.prototype, "platterId", void 0);
|
|
21
26
|
__decorate([
|
|
22
|
-
(0, annotations_1.attribute)()
|
|
27
|
+
(0, annotations_1.attribute)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
23
29
|
], CutleryModel.prototype, "cutleryName", void 0);
|
|
24
30
|
__decorate([
|
|
25
|
-
(0, annotations_1.attribute)()
|
|
31
|
+
(0, annotations_1.attribute)(),
|
|
32
|
+
__metadata("design:type", String)
|
|
26
33
|
], CutleryModel.prototype, "cutleryType", void 0);
|
|
27
34
|
__decorate([
|
|
28
|
-
(0, annotations_1.attribute)()
|
|
35
|
+
(0, annotations_1.attribute)(),
|
|
36
|
+
__metadata("design:type", String)
|
|
29
37
|
], CutleryModel.prototype, "cutleryDescription", void 0);
|
|
30
38
|
__decorate([
|
|
31
|
-
(0, annotations_1.attribute)()
|
|
39
|
+
(0, annotations_1.attribute)(),
|
|
40
|
+
__metadata("design:type", String)
|
|
32
41
|
], CutleryModel.prototype, "cutleryImageUrl", void 0);
|
|
33
42
|
__decorate([
|
|
34
|
-
(0, annotations_1.attribute)()
|
|
43
|
+
(0, annotations_1.attribute)(),
|
|
44
|
+
__metadata("design:type", Number)
|
|
35
45
|
], CutleryModel.prototype, "maxPrice", void 0);
|
|
36
46
|
__decorate([
|
|
37
|
-
(0, annotations_1.attribute)()
|
|
47
|
+
(0, annotations_1.attribute)(),
|
|
48
|
+
__metadata("design:type", Number)
|
|
38
49
|
], CutleryModel.prototype, "minPrice", void 0);
|
|
39
50
|
__decorate([
|
|
40
|
-
(0, annotations_1.attribute)()
|
|
51
|
+
(0, annotations_1.attribute)(),
|
|
52
|
+
__metadata("design:type", String)
|
|
41
53
|
], CutleryModel.prototype, "quantityUnit", void 0);
|
|
42
54
|
__decorate([
|
|
43
|
-
(0, annotations_1.attribute)()
|
|
55
|
+
(0, annotations_1.attribute)(),
|
|
56
|
+
__metadata("design:type", Number)
|
|
44
57
|
], CutleryModel.prototype, "minQuantity", void 0);
|
|
45
58
|
__decorate([
|
|
46
|
-
(0, annotations_1.attribute)()
|
|
59
|
+
(0, annotations_1.attribute)(),
|
|
60
|
+
__metadata("design:type", Number)
|
|
47
61
|
], CutleryModel.prototype, "maxQuantity", void 0);
|
|
48
62
|
__decorate([
|
|
49
|
-
(0, annotations_1.attribute)()
|
|
63
|
+
(0, annotations_1.attribute)(),
|
|
64
|
+
__metadata("design:type", String)
|
|
50
65
|
], CutleryModel.prototype, "active", void 0);
|
|
51
66
|
__decorate([
|
|
52
|
-
(0, annotations_1.attribute)()
|
|
67
|
+
(0, annotations_1.attribute)(),
|
|
68
|
+
__metadata("design:type", Boolean)
|
|
53
69
|
], CutleryModel.prototype, "isIncluded", void 0);
|
|
54
70
|
exports.CutleryModel = CutleryModel = __decorate([
|
|
55
71
|
(0, annotations_1.table)("CutleryTable")
|
|
56
72
|
], CutleryModel);
|
|
57
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
73
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3V0bGVyeS1tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jdXN0b21lci11c2VyL2N1dGxlcnkvY3V0bGVyeS1tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7QUFBQSx1REFBeUY7QUFDekYsaURBQTZDO0FBR3RDLElBQU0sWUFBWSxHQUFsQixNQUFNLFlBQWEsU0FBUSxzQkFBUztDQTJCMUMsQ0FBQTtBQTNCWSxvQ0FBWTtBQUVyQjtJQURDLElBQUEsa0NBQW9CLEVBQUMsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLENBQUM7OytDQUN2QjtBQUVsQjtJQURDLElBQUEsdUJBQVMsRUFBQyxFQUFFLHNCQUFzQixFQUFFLEVBQUUsY0FBYyxFQUFFLE1BQU0sRUFBRSxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsQ0FBQzs7K0NBQ2hFO0FBRWxCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztpREFDUztBQUVyQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7aURBQ1M7QUFFckI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3dEQUNnQjtBQUU1QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7cURBQ2E7QUFFekI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzhDQUNNO0FBRWxCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzs4Q0FDTTtBQUVsQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7a0RBQ1U7QUFFdEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O2lEQUNTO0FBRXJCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztpREFDUztBQUVyQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7NENBQ0k7QUFFaEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O2dEQUNTO3VCQTFCWixZQUFZO0lBRHhCLElBQUEsbUJBQUssRUFBQyxjQUFjLENBQUM7R0FDVCxZQUFZLENBMkJ4QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGF0dHJpYnV0ZSwgYXV0b0dlbmVyYXRlZEhhc2hLZXksIHJhbmdlS2V5LCB0YWJsZSB9IGZyb20gXCJAbm92YS1vZG0vYW5ub3RhdGlvbnNcIjtcbmltcG9ydCB7IEJhc2VNb2RlbCB9IGZyb20gXCIuLi8uLi9iYXNlLW1vZGVsXCI7XG5cbkB0YWJsZShcIkN1dGxlcnlUYWJsZVwiKVxuZXhwb3J0IGNsYXNzIEN1dGxlcnlNb2RlbCBleHRlbmRzIEJhc2VNb2RlbCB7XG4gICAgQGF1dG9HZW5lcmF0ZWRIYXNoS2V5KHsgdHlwZTogXCJTdHJpbmdcIiB9KVxuICAgIGN1dGxlcnlJZDogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoeyBpbmRleEtleUNvbmZpZ3VyYXRpb25zOiB7IFwicGxhdHRlckluZGV4XCI6IFwiSEFTSFwiIH0sIHR5cGU6ICdTdHJpbmcnIH0pXG4gICAgcGxhdHRlcklkOiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgY3V0bGVyeU5hbWU/OiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgY3V0bGVyeVR5cGU/OiBzdHJpbmc7IC8vIFZFRyB8IE5PTlZFR1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGN1dGxlcnlEZXNjcmlwdGlvbj86IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICBjdXRsZXJ5SW1hZ2VVcmw/OiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgbWF4UHJpY2U/OiBudW1iZXI7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgbWluUHJpY2U/OiBudW1iZXI7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcXVhbnRpdHlVbml0Pzogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIG1pblF1YW50aXR5PzogbnVtYmVyO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIG1heFF1YW50aXR5PzogbnVtYmVyO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGFjdGl2ZT86IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICBpc0luY2x1ZGVkPzogYm9vbGVhbjtcbn0iXX0=
|
|
@@ -5,6 +5,9 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
5
5
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
6
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
7
|
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
8
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
12
|
exports.DefaultPlatterCategoriesModel = void 0;
|
|
10
13
|
const annotations_1 = require("@nova-odm/annotations");
|
|
@@ -13,38 +16,48 @@ let DefaultPlatterCategoriesModel = class DefaultPlatterCategoriesModel extends
|
|
|
13
16
|
};
|
|
14
17
|
exports.DefaultPlatterCategoriesModel = DefaultPlatterCategoriesModel;
|
|
15
18
|
__decorate([
|
|
16
|
-
(0, annotations_1.hashKey)({ type: 'String' })
|
|
19
|
+
(0, annotations_1.hashKey)({ type: 'String' }),
|
|
20
|
+
__metadata("design:type", String)
|
|
17
21
|
], DefaultPlatterCategoriesModel.prototype, "categoryId", void 0);
|
|
18
22
|
__decorate([
|
|
19
23
|
(0, annotations_1.rangeKey)({ type: 'String' }),
|
|
20
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterIndex": "HASH" }, type: 'String' })
|
|
24
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterIndex": "HASH" }, type: 'String' }),
|
|
25
|
+
__metadata("design:type", String)
|
|
21
26
|
], DefaultPlatterCategoriesModel.prototype, "platterId", void 0);
|
|
22
27
|
__decorate([
|
|
23
|
-
(0, annotations_1.attribute)()
|
|
28
|
+
(0, annotations_1.attribute)(),
|
|
29
|
+
__metadata("design:type", Number)
|
|
24
30
|
], DefaultPlatterCategoriesModel.prototype, "category_order", void 0);
|
|
25
31
|
__decorate([
|
|
26
|
-
(0, annotations_1.attribute)()
|
|
32
|
+
(0, annotations_1.attribute)(),
|
|
33
|
+
__metadata("design:type", String)
|
|
27
34
|
], DefaultPlatterCategoriesModel.prototype, "platterName", void 0);
|
|
28
35
|
__decorate([
|
|
29
|
-
(0, annotations_1.attribute)()
|
|
36
|
+
(0, annotations_1.attribute)(),
|
|
37
|
+
__metadata("design:type", String)
|
|
30
38
|
], DefaultPlatterCategoriesModel.prototype, "categoryName", void 0);
|
|
31
39
|
__decorate([
|
|
32
|
-
(0, annotations_1.attribute)()
|
|
40
|
+
(0, annotations_1.attribute)(),
|
|
41
|
+
__metadata("design:type", Number)
|
|
33
42
|
], DefaultPlatterCategoriesModel.prototype, "premiumItemsLimit", void 0);
|
|
34
43
|
__decorate([
|
|
35
|
-
(0, annotations_1.attribute)()
|
|
44
|
+
(0, annotations_1.attribute)(),
|
|
45
|
+
__metadata("design:type", Number)
|
|
36
46
|
], DefaultPlatterCategoriesModel.prototype, "categoryItemsLimit", void 0);
|
|
37
47
|
__decorate([
|
|
38
48
|
(0, annotations_1.attribute)(),
|
|
39
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterCategoryActiveIndex": "RANGE" }, type: 'String' })
|
|
49
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterCategoryActiveIndex": "RANGE" }, type: 'String' }),
|
|
50
|
+
__metadata("design:type", String)
|
|
40
51
|
], DefaultPlatterCategoriesModel.prototype, "categoryPlatterActive", void 0);
|
|
41
52
|
__decorate([
|
|
42
|
-
(0, annotations_1.attribute)()
|
|
53
|
+
(0, annotations_1.attribute)(),
|
|
54
|
+
__metadata("design:type", String)
|
|
43
55
|
], DefaultPlatterCategoriesModel.prototype, "categoryImage", void 0);
|
|
44
56
|
__decorate([
|
|
45
|
-
(0, annotations_1.attribute)()
|
|
57
|
+
(0, annotations_1.attribute)(),
|
|
58
|
+
__metadata("design:type", Boolean)
|
|
46
59
|
], DefaultPlatterCategoriesModel.prototype, "isCombo", void 0);
|
|
47
60
|
exports.DefaultPlatterCategoriesModel = DefaultPlatterCategoriesModel = __decorate([
|
|
48
61
|
(0, annotations_1.table)("DefaultPlattersCategoriesTable")
|
|
49
62
|
], DefaultPlatterCategoriesModel);
|
|
50
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
63
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmYXVsdC1wbGF0dGVycy1jYXRlZ29yeS1tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jdXN0b21lci11c2VyL2RlZmF1bHQtcGxhdHRlci9kZWZhdWx0LXBsYXR0ZXJzLWNhdGVnb3J5LW1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7OztBQUFBLHVEQUE0RTtBQUM1RSxpREFBNkM7QUFJdEMsSUFBTSw2QkFBNkIsR0FBbkMsTUFBTSw2QkFBOEIsU0FBUSxzQkFBUztDQXlCM0QsQ0FBQTtBQXpCWSxzRUFBNkI7QUFHdEM7SUFEQyxJQUFBLHFCQUFPLEVBQUMsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLENBQUM7O2lFQUNUO0FBR25CO0lBRkMsSUFBQSxzQkFBUSxFQUFDLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxDQUFDO0lBQzVCLElBQUEsdUJBQVMsRUFBQyxFQUFFLHNCQUFzQixFQUFFLEVBQUUsY0FBYyxFQUFFLE1BQU0sRUFBRSxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsQ0FBQzs7Z0VBQ2hFO0FBRWxCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztxRUFDVztBQUV2QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7a0VBQ1E7QUFFcEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O21FQUNTO0FBRXJCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzt3RUFDYztBQUUxQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7eUVBQ2U7QUFHM0I7SUFGQyxJQUFBLHVCQUFTLEdBQUU7SUFDWCxJQUFBLHVCQUFTLEVBQUMsRUFBRSxzQkFBc0IsRUFBRSxFQUFFLDRCQUE0QixFQUFFLE9BQU8sRUFBRSxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsQ0FBQzs7NEVBQ25FO0FBRTlCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztvRUFDVTtBQUV0QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7OERBQ0s7d0NBdkJSLDZCQUE2QjtJQUR6QyxJQUFBLG1CQUFLLEVBQUMsZ0NBQWdDLENBQUM7R0FDM0IsNkJBQTZCLENBeUJ6QyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGF0dHJpYnV0ZSwgaGFzaEtleSwgcmFuZ2VLZXksIHRhYmxlIH0gZnJvbSBcIkBub3ZhLW9kbS9hbm5vdGF0aW9uc1wiO1xuaW1wb3J0IHsgQmFzZU1vZGVsIH0gZnJvbSBcIi4uLy4uL2Jhc2UtbW9kZWxcIjtcblxuXG5AdGFibGUoXCJEZWZhdWx0UGxhdHRlcnNDYXRlZ29yaWVzVGFibGVcIilcbmV4cG9ydCBjbGFzcyBEZWZhdWx0UGxhdHRlckNhdGVnb3JpZXNNb2RlbCBleHRlbmRzIEJhc2VNb2RlbCB7XG5cbiAgICBAaGFzaEtleSh7IHR5cGU6ICdTdHJpbmcnIH0pXG4gICAgY2F0ZWdvcnlJZDogc3RyaW5nO1xuICAgIEByYW5nZUtleSh7IHR5cGU6ICdTdHJpbmcnIH0pXG4gICAgQGF0dHJpYnV0ZSh7IGluZGV4S2V5Q29uZmlndXJhdGlvbnM6IHsgXCJwbGF0dGVySW5kZXhcIjogXCJIQVNIXCIgfSwgdHlwZTogJ1N0cmluZycgfSlcbiAgICBwbGF0dGVySWQ6IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICBjYXRlZ29yeV9vcmRlcjogbnVtYmVyO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHBsYXR0ZXJOYW1lOiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgY2F0ZWdvcnlOYW1lOiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcHJlbWl1bUl0ZW1zTGltaXQ6IG51bWJlcjtcbiAgICBAYXR0cmlidXRlKClcbiAgICBjYXRlZ29yeUl0ZW1zTGltaXQ6IG51bWJlcjtcbiAgICBAYXR0cmlidXRlKClcbiAgICBAYXR0cmlidXRlKHsgaW5kZXhLZXlDb25maWd1cmF0aW9uczogeyBcInBsYXR0ZXJDYXRlZ29yeUFjdGl2ZUluZGV4XCI6IFwiUkFOR0VcIiB9LCB0eXBlOiAnU3RyaW5nJyB9KVxuICAgIGNhdGVnb3J5UGxhdHRlckFjdGl2ZTogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNhdGVnb3J5SW1hZ2U6IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICBpc0NvbWJvOiBib29sZWFuOyAvLyBWMlxuXG59Il19
|
|
@@ -5,6 +5,9 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
5
5
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
6
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
7
|
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
8
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
12
|
exports.DefaultPlatterModel = void 0;
|
|
10
13
|
const annotations_1 = require("@nova-odm/annotations");
|
|
@@ -13,63 +16,87 @@ let DefaultPlatterModel = class DefaultPlatterModel extends base_model_1.BaseMod
|
|
|
13
16
|
};
|
|
14
17
|
exports.DefaultPlatterModel = DefaultPlatterModel;
|
|
15
18
|
__decorate([
|
|
16
|
-
(0, annotations_1.autoGeneratedHashKey)({ type: 'String' })
|
|
19
|
+
(0, annotations_1.autoGeneratedHashKey)({ type: 'String' }),
|
|
20
|
+
__metadata("design:type", String)
|
|
17
21
|
], DefaultPlatterModel.prototype, "platterId", void 0);
|
|
18
22
|
__decorate([
|
|
19
|
-
(0, annotations_1.attribute)()
|
|
23
|
+
(0, annotations_1.attribute)(),
|
|
24
|
+
__metadata("design:type", String)
|
|
20
25
|
], DefaultPlatterModel.prototype, "platterName", void 0);
|
|
21
26
|
__decorate([
|
|
22
|
-
(0, annotations_1.attribute)()
|
|
27
|
+
(0, annotations_1.attribute)(),
|
|
28
|
+
__metadata("design:type", Array)
|
|
23
29
|
], DefaultPlatterModel.prototype, "eventCategories", void 0);
|
|
24
30
|
__decorate([
|
|
25
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterTypeBasePriceIndex": "RANGE" }, type: 'Number' })
|
|
31
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterTypeBasePriceIndex": "RANGE" }, type: 'Number' }),
|
|
32
|
+
__metadata("design:type", Number)
|
|
26
33
|
], DefaultPlatterModel.prototype, "basePrice", void 0);
|
|
27
34
|
__decorate([
|
|
28
|
-
(0, annotations_1.attribute)()
|
|
35
|
+
(0, annotations_1.attribute)(),
|
|
36
|
+
__metadata("design:type", Number)
|
|
29
37
|
], DefaultPlatterModel.prototype, "minimumPax", void 0);
|
|
30
38
|
__decorate([
|
|
31
|
-
(0, annotations_1.attribute)()
|
|
39
|
+
(0, annotations_1.attribute)(),
|
|
40
|
+
__metadata("design:type", Number)
|
|
32
41
|
], DefaultPlatterModel.prototype, "maximumPax", void 0);
|
|
33
42
|
__decorate([
|
|
34
|
-
(0, annotations_1.attribute)()
|
|
43
|
+
(0, annotations_1.attribute)(),
|
|
44
|
+
__metadata("design:type", Number)
|
|
35
45
|
], DefaultPlatterModel.prototype, "minPrice", void 0);
|
|
36
46
|
__decorate([
|
|
37
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterActiveIndex": "HASH" }, type: 'String' })
|
|
47
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterActiveIndex": "HASH" }, type: 'String' }),
|
|
48
|
+
__metadata("design:type", String)
|
|
38
49
|
], DefaultPlatterModel.prototype, "platterActive", void 0);
|
|
39
50
|
__decorate([
|
|
40
|
-
(0, annotations_1.attribute)()
|
|
51
|
+
(0, annotations_1.attribute)(),
|
|
52
|
+
__metadata("design:type", String)
|
|
41
53
|
], DefaultPlatterModel.prototype, "imageUrl", void 0);
|
|
42
54
|
__decorate([
|
|
43
55
|
(0, annotations_1.attribute)({ indexKeyConfigurations: { "mealTimesIndex": "HASH" }, type: 'String' }) // V2 Updated
|
|
56
|
+
,
|
|
57
|
+
__metadata("design:type", String)
|
|
44
58
|
], DefaultPlatterModel.prototype, "mealTimes", void 0);
|
|
45
59
|
__decorate([
|
|
46
|
-
(0, annotations_1.attribute)()
|
|
60
|
+
(0, annotations_1.attribute)(),
|
|
61
|
+
__metadata("design:type", Array)
|
|
47
62
|
], DefaultPlatterModel.prototype, "menuLocation", void 0);
|
|
48
63
|
__decorate([
|
|
49
|
-
(0, annotations_1.attribute)()
|
|
64
|
+
(0, annotations_1.attribute)(),
|
|
65
|
+
__metadata("design:type", String)
|
|
50
66
|
], DefaultPlatterModel.prototype, "menuType", void 0);
|
|
51
67
|
__decorate([
|
|
52
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterTypeBasePriceIndex": "HASH" }, type: 'String' })
|
|
68
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterTypeBasePriceIndex": "HASH" }, type: 'String' }),
|
|
69
|
+
__metadata("design:type", String)
|
|
53
70
|
], DefaultPlatterModel.prototype, "platterType", void 0);
|
|
54
71
|
__decorate([
|
|
55
|
-
(0, annotations_1.attribute)()
|
|
72
|
+
(0, annotations_1.attribute)(),
|
|
73
|
+
__metadata("design:type", String)
|
|
56
74
|
], DefaultPlatterModel.prototype, "popular", void 0);
|
|
57
75
|
__decorate([
|
|
58
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterSubTypeIndex": "HASH" }, type: 'String' })
|
|
76
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterSubTypeIndex": "HASH" }, type: 'String' }),
|
|
77
|
+
__metadata("design:type", String)
|
|
59
78
|
], DefaultPlatterModel.prototype, "platterSubType", void 0);
|
|
60
79
|
__decorate([
|
|
61
|
-
(0, annotations_1.attribute)()
|
|
80
|
+
(0, annotations_1.attribute)(),
|
|
81
|
+
__metadata("design:type", String)
|
|
62
82
|
], DefaultPlatterModel.prototype, "iconImageTag", void 0);
|
|
63
83
|
__decorate([
|
|
64
|
-
(0, annotations_1.attribute)()
|
|
84
|
+
(0, annotations_1.attribute)(),
|
|
85
|
+
__metadata("design:type", String)
|
|
65
86
|
], DefaultPlatterModel.prototype, "platterTextTag", void 0);
|
|
66
87
|
__decorate([
|
|
67
|
-
(0, annotations_1.attribute)()
|
|
88
|
+
(0, annotations_1.attribute)(),
|
|
89
|
+
__metadata("design:type", String)
|
|
68
90
|
], DefaultPlatterModel.prototype, "platterCuisine", void 0);
|
|
69
91
|
__decorate([
|
|
70
|
-
(0, annotations_1.attribute)()
|
|
92
|
+
(0, annotations_1.attribute)(),
|
|
93
|
+
__metadata("design:type", String)
|
|
71
94
|
], DefaultPlatterModel.prototype, "platterEventType", void 0);
|
|
95
|
+
__decorate([
|
|
96
|
+
(0, annotations_1.attribute)(),
|
|
97
|
+
__metadata("design:type", Number)
|
|
98
|
+
], DefaultPlatterModel.prototype, "plateFactorValue", void 0);
|
|
72
99
|
exports.DefaultPlatterModel = DefaultPlatterModel = __decorate([
|
|
73
100
|
(0, annotations_1.table)("DefaultPlattersTable")
|
|
74
101
|
], DefaultPlatterModel);
|
|
75
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
102
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmYXVsdC1wbGF0dGVycy1tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jdXN0b21lci11c2VyL2RlZmF1bHQtcGxhdHRlci9kZWZhdWx0LXBsYXR0ZXJzLW1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7OztBQUFBLHVEQUErRTtBQUMvRSxpREFBNkM7QUFHdEMsSUFBTSxtQkFBbUIsR0FBekIsTUFBTSxtQkFBb0IsU0FBUSxzQkFBUztDQStDakQsQ0FBQTtBQS9DWSxrREFBbUI7QUFFNUI7SUFEQyxJQUFBLGtDQUFvQixFQUFDLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxDQUFDOztzREFDdkI7QUFFbEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3dEQUNRO0FBRXBCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzs0REFDYztBQUUxQjtJQURDLElBQUEsdUJBQVMsRUFBQyxFQUFFLHNCQUFzQixFQUFFLEVBQUUsMkJBQTJCLEVBQUUsT0FBTyxFQUFFLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxDQUFDOztzREFDOUU7QUFFbEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3VEQUNPO0FBRW5CO0lBREMsSUFBQSx1QkFBUyxHQUFFOzt1REFDTztBQUVuQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7cURBQ0s7QUFFakI7SUFEQyxJQUFBLHVCQUFTLEVBQUMsRUFBRSxzQkFBc0IsRUFBRSxFQUFFLG9CQUFvQixFQUFFLE1BQU0sRUFBRSxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsQ0FBQzs7MERBQ2xFO0FBRXRCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztxREFDSztBQUVqQjtJQURDLElBQUEsdUJBQVMsRUFBQyxFQUFFLHNCQUFzQixFQUFFLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxFQUFFLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxDQUFDLENBQUMsYUFBYTs7O3NEQUNoRjtBQUVsQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7eURBQ1c7QUFFdkI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3FEQUNLO0FBRWpCO0lBREMsSUFBQSx1QkFBUyxFQUFDLEVBQUUsc0JBQXNCLEVBQUUsRUFBRSwyQkFBMkIsRUFBRSxNQUFNLEVBQUUsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLENBQUM7O3dEQUMzRTtBQUVwQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7b0RBQ0k7QUFHaEI7SUFEQyxJQUFBLHVCQUFTLEVBQUMsRUFBRSxzQkFBc0IsRUFBRSxFQUFFLHFCQUFxQixFQUFFLE1BQU0sRUFBRSxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsQ0FBQzs7MkRBQ2xFO0FBR3ZCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzt5REFDUztBQUdyQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7MkRBQ1c7QUFHdkI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzJEQUNXO0FBR3ZCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzs2REFDYztBQUcxQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7NkRBQ2M7OEJBOUNqQixtQkFBbUI7SUFEL0IsSUFBQSxtQkFBSyxFQUFDLHNCQUFzQixDQUFDO0dBQ2pCLG1CQUFtQixDQStDL0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBhdHRyaWJ1dGUsIGF1dG9HZW5lcmF0ZWRIYXNoS2V5LCB0YWJsZSB9IGZyb20gXCJAbm92YS1vZG0vYW5ub3RhdGlvbnNcIjtcbmltcG9ydCB7IEJhc2VNb2RlbCB9IGZyb20gXCIuLi8uLi9iYXNlLW1vZGVsXCI7XG5cbkB0YWJsZShcIkRlZmF1bHRQbGF0dGVyc1RhYmxlXCIpXG5leHBvcnQgY2xhc3MgRGVmYXVsdFBsYXR0ZXJNb2RlbCBleHRlbmRzIEJhc2VNb2RlbCB7XG4gICAgQGF1dG9HZW5lcmF0ZWRIYXNoS2V5KHsgdHlwZTogJ1N0cmluZycgfSlcbiAgICBwbGF0dGVySWQ6IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICBwbGF0dGVyTmFtZTogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGV2ZW50Q2F0ZWdvcmllczogc3RyaW5nW107XG4gICAgQGF0dHJpYnV0ZSh7IGluZGV4S2V5Q29uZmlndXJhdGlvbnM6IHsgXCJwbGF0dGVyVHlwZUJhc2VQcmljZUluZGV4XCI6IFwiUkFOR0VcIiB9LCB0eXBlOiAnTnVtYmVyJyB9KVxuICAgIGJhc2VQcmljZTogbnVtYmVyO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIG1pbmltdW1QYXg6IG51bWJlcjtcbiAgICBAYXR0cmlidXRlKClcbiAgICBtYXhpbXVtUGF4OiBudW1iZXI7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgbWluUHJpY2U6IG51bWJlcjtcbiAgICBAYXR0cmlidXRlKHsgaW5kZXhLZXlDb25maWd1cmF0aW9uczogeyBcInBsYXR0ZXJBY3RpdmVJbmRleFwiOiBcIkhBU0hcIiB9LCB0eXBlOiAnU3RyaW5nJyB9KVxuICAgIHBsYXR0ZXJBY3RpdmU6IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICBpbWFnZVVybDogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoeyBpbmRleEtleUNvbmZpZ3VyYXRpb25zOiB7IFwibWVhbFRpbWVzSW5kZXhcIjogXCJIQVNIXCIgfSwgdHlwZTogJ1N0cmluZycgfSkgLy8gVjIgVXBkYXRlZFxuICAgIG1lYWxUaW1lczogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIG1lbnVMb2NhdGlvbjogc3RyaW5nW107XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgbWVudVR5cGU6IHN0cmluZztcbiAgICBAYXR0cmlidXRlKHsgaW5kZXhLZXlDb25maWd1cmF0aW9uczogeyBcInBsYXR0ZXJUeXBlQmFzZVByaWNlSW5kZXhcIjogXCJIQVNIXCIgfSwgdHlwZTogJ1N0cmluZycgfSlcbiAgICBwbGF0dGVyVHlwZTogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHBvcHVsYXI6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoeyBpbmRleEtleUNvbmZpZ3VyYXRpb25zOiB7IFwicGxhdHRlclN1YlR5cGVJbmRleFwiOiBcIkhBU0hcIiB9LCB0eXBlOiAnU3RyaW5nJyB9KVxuICAgIHBsYXR0ZXJTdWJUeXBlOiBzdHJpbmc7IC8vIFYyXG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBpY29uSW1hZ2VUYWc6IHN0cmluZzsgLy8gVjJcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHBsYXR0ZXJUZXh0VGFnOiBzdHJpbmc7IC8vIFYyXG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBwbGF0dGVyQ3Vpc2luZTogc3RyaW5nOyAvLyBWMlxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcGxhdHRlckV2ZW50VHlwZT86IHN0cmluZzsgLy8gVjJcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHBsYXRlRmFjdG9yVmFsdWU/OiBudW1iZXI7IC8vIFYyXG59Il19
|
|
@@ -5,6 +5,9 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
5
5
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
6
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
7
|
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
8
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
12
|
exports.DefaultPlattersItems = void 0;
|
|
10
13
|
const annotations_1 = require("@nova-odm/annotations");
|
|
@@ -13,54 +16,73 @@ let DefaultPlattersItems = class DefaultPlattersItems extends base_model_1.BaseM
|
|
|
13
16
|
};
|
|
14
17
|
exports.DefaultPlattersItems = DefaultPlattersItems;
|
|
15
18
|
__decorate([
|
|
16
|
-
(0, annotations_1.hashKey)({ type: "String" })
|
|
19
|
+
(0, annotations_1.hashKey)({ type: "String" }),
|
|
20
|
+
__metadata("design:type", String)
|
|
17
21
|
], DefaultPlattersItems.prototype, "itemId", void 0);
|
|
18
22
|
__decorate([
|
|
19
23
|
(0, annotations_1.rangeKey)({ type: "String" }),
|
|
20
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterIndex": "HASH" }, type: 'String' })
|
|
24
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterIndex": "HASH" }, type: 'String' }),
|
|
25
|
+
__metadata("design:type", String)
|
|
21
26
|
], DefaultPlattersItems.prototype, "platterId", void 0);
|
|
22
27
|
__decorate([
|
|
23
28
|
(0, annotations_1.attribute)({
|
|
24
29
|
indexKeyConfigurations: { "platterCategoryIndex": "RANGE" }, type: 'String'
|
|
25
|
-
})
|
|
30
|
+
}),
|
|
31
|
+
__metadata("design:type", String)
|
|
26
32
|
], DefaultPlattersItems.prototype, "categoryId", void 0);
|
|
27
33
|
__decorate([
|
|
28
|
-
(0, annotations_1.attribute)()
|
|
34
|
+
(0, annotations_1.attribute)(),
|
|
35
|
+
__metadata("design:type", String)
|
|
29
36
|
], DefaultPlattersItems.prototype, "categoryName", void 0);
|
|
30
37
|
__decorate([
|
|
31
|
-
(0, annotations_1.attribute)()
|
|
38
|
+
(0, annotations_1.attribute)(),
|
|
39
|
+
__metadata("design:type", String)
|
|
32
40
|
], DefaultPlattersItems.prototype, "itemName", void 0);
|
|
33
41
|
__decorate([
|
|
34
|
-
(0, annotations_1.attribute)()
|
|
42
|
+
(0, annotations_1.attribute)(),
|
|
43
|
+
__metadata("design:type", Number)
|
|
35
44
|
], DefaultPlattersItems.prototype, "itemBasePrice", void 0);
|
|
36
45
|
__decorate([
|
|
37
|
-
(0, annotations_1.attribute)()
|
|
46
|
+
(0, annotations_1.attribute)(),
|
|
47
|
+
__metadata("design:type", Number)
|
|
38
48
|
], DefaultPlattersItems.prototype, "itemQuantity", void 0);
|
|
39
49
|
__decorate([
|
|
40
|
-
(0, annotations_1.attribute)()
|
|
50
|
+
(0, annotations_1.attribute)(),
|
|
51
|
+
__metadata("design:type", String)
|
|
41
52
|
], DefaultPlattersItems.prototype, "itemQuantityUnit", void 0);
|
|
42
53
|
__decorate([
|
|
43
|
-
(0, annotations_1.attribute)()
|
|
54
|
+
(0, annotations_1.attribute)(),
|
|
55
|
+
__metadata("design:type", Number)
|
|
44
56
|
], DefaultPlattersItems.prototype, "itemMinPrice", void 0);
|
|
45
57
|
__decorate([
|
|
46
|
-
(0, annotations_1.attribute)()
|
|
58
|
+
(0, annotations_1.attribute)(),
|
|
59
|
+
__metadata("design:type", String)
|
|
47
60
|
], DefaultPlattersItems.prototype, "platterName", void 0);
|
|
48
61
|
__decorate([
|
|
49
|
-
(0, annotations_1.attribute)()
|
|
62
|
+
(0, annotations_1.attribute)(),
|
|
63
|
+
__metadata("design:type", String)
|
|
50
64
|
], DefaultPlattersItems.prototype, "premium", void 0);
|
|
51
65
|
__decorate([
|
|
52
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "itemActiveIndex": "HASH" }, type: 'String' })
|
|
66
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "itemActiveIndex": "HASH" }, type: 'String' }),
|
|
67
|
+
__metadata("design:type", String)
|
|
53
68
|
], DefaultPlattersItems.prototype, "itemActive", void 0);
|
|
54
69
|
__decorate([
|
|
55
|
-
(0, annotations_1.attribute)()
|
|
70
|
+
(0, annotations_1.attribute)(),
|
|
71
|
+
__metadata("design:type", Array)
|
|
56
72
|
], DefaultPlattersItems.prototype, "daysOfWeek", void 0);
|
|
57
73
|
__decorate([
|
|
58
|
-
(0, annotations_1.attribute)()
|
|
74
|
+
(0, annotations_1.attribute)(),
|
|
75
|
+
__metadata("design:type", Number)
|
|
59
76
|
], DefaultPlattersItems.prototype, "freeAccompanimentsLimit", void 0);
|
|
60
77
|
__decorate([
|
|
61
|
-
(0, annotations_1.attribute)()
|
|
78
|
+
(0, annotations_1.attribute)(),
|
|
79
|
+
__metadata("design:type", Boolean)
|
|
62
80
|
], DefaultPlattersItems.prototype, "isBaseItem", void 0);
|
|
81
|
+
__decorate([
|
|
82
|
+
(0, annotations_1.attribute)(),
|
|
83
|
+
__metadata("design:type", Number)
|
|
84
|
+
], DefaultPlattersItems.prototype, "itemDiscountFactorValue", void 0);
|
|
63
85
|
exports.DefaultPlattersItems = DefaultPlattersItems = __decorate([
|
|
64
86
|
(0, annotations_1.table)("DefaultPlatterItemsTable")
|
|
65
87
|
], DefaultPlattersItems);
|
|
66
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
88
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmYXVsdF9wbGF0dGVyc19pdGVtcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jdXN0b21lci11c2VyL2RlZmF1bHQtcGxhdHRlci9kZWZhdWx0X3BsYXR0ZXJzX2l0ZW1zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7OztBQUFBLHVEQUE0RTtBQUM1RSxpREFBNkM7QUFHdEMsSUFBTSxvQkFBb0IsR0FBMUIsTUFBTSxvQkFBcUIsU0FBUSxzQkFBUztDQXFDbEQsQ0FBQTtBQXJDWSxvREFBb0I7QUFFN0I7SUFEQyxJQUFBLHFCQUFPLEVBQUMsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLENBQUM7O29EQUNiO0FBR2Y7SUFGQyxJQUFBLHNCQUFRLEVBQUMsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLENBQUM7SUFDNUIsSUFBQSx1QkFBUyxFQUFDLEVBQUUsc0JBQXNCLEVBQUUsRUFBRSxjQUFjLEVBQUUsTUFBTSxFQUFFLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxDQUFDOzt1REFDaEU7QUFLbEI7SUFIQyxJQUFBLHVCQUFTLEVBQUM7UUFDUCxzQkFBc0IsRUFBRSxFQUFFLHNCQUFzQixFQUFFLE9BQU8sRUFBRSxFQUFFLElBQUksRUFBRSxRQUFRO0tBQzlFLENBQUM7O3dEQUNpQjtBQUVuQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7MERBQ1U7QUFFdEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3NEQUNNO0FBRWxCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzsyREFDVztBQUV2QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7MERBQ1U7QUFFdEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzhEQUNjO0FBRTFCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzswREFDVTtBQUV0QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7eURBQ1M7QUFFckI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3FEQUNLO0FBRWpCO0lBREMsSUFBQSx1QkFBUyxFQUFDLEVBQUUsc0JBQXNCLEVBQUUsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLEVBQUUsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLENBQUM7O3dEQUNqRTtBQUVwQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7d0RBQ1U7QUFFdEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3FFQUNxQjtBQUVqQztJQURDLElBQUEsdUJBQVMsR0FBRTs7d0RBQ1M7QUFFckI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3FFQUNxQjsrQkFwQ3hCLG9CQUFvQjtJQURoQyxJQUFBLG1CQUFLLEVBQUMsMEJBQTBCLENBQUM7R0FDckIsb0JBQW9CLENBcUNoQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGF0dHJpYnV0ZSwgaGFzaEtleSwgcmFuZ2VLZXksIHRhYmxlIH0gZnJvbSBcIkBub3ZhLW9kbS9hbm5vdGF0aW9uc1wiO1xuaW1wb3J0IHsgQmFzZU1vZGVsIH0gZnJvbSBcIi4uLy4uL2Jhc2UtbW9kZWxcIjtcblxuQHRhYmxlKFwiRGVmYXVsdFBsYXR0ZXJJdGVtc1RhYmxlXCIpXG5leHBvcnQgY2xhc3MgRGVmYXVsdFBsYXR0ZXJzSXRlbXMgZXh0ZW5kcyBCYXNlTW9kZWwge1xuICAgIEBoYXNoS2V5KHsgdHlwZTogXCJTdHJpbmdcIiB9KVxuICAgIGl0ZW1JZDogc3RyaW5nO1xuICAgIEByYW5nZUtleSh7IHR5cGU6IFwiU3RyaW5nXCIgfSlcbiAgICBAYXR0cmlidXRlKHsgaW5kZXhLZXlDb25maWd1cmF0aW9uczogeyBcInBsYXR0ZXJJbmRleFwiOiBcIkhBU0hcIiB9LCB0eXBlOiAnU3RyaW5nJyB9KVxuICAgIHBsYXR0ZXJJZDogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSh7XG4gICAgICAgIGluZGV4S2V5Q29uZmlndXJhdGlvbnM6IHsgXCJwbGF0dGVyQ2F0ZWdvcnlJbmRleFwiOiBcIlJBTkdFXCIgfSwgdHlwZTogJ1N0cmluZydcbiAgICB9KVxuICAgIGNhdGVnb3J5SWQ6IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICBjYXRlZ29yeU5hbWU/OiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgaXRlbU5hbWU/OiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgaXRlbUJhc2VQcmljZT86IG51bWJlcjtcbiAgICBAYXR0cmlidXRlKClcbiAgICBpdGVtUXVhbnRpdHk/OiBudW1iZXI7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgaXRlbVF1YW50aXR5VW5pdD86IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICBpdGVtTWluUHJpY2U/OiBudW1iZXI7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcGxhdHRlck5hbWU/OiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcHJlbWl1bT86IHN0cmluZztcbiAgICBAYXR0cmlidXRlKHsgaW5kZXhLZXlDb25maWd1cmF0aW9uczogeyBcIml0ZW1BY3RpdmVJbmRleFwiOiBcIkhBU0hcIiB9LCB0eXBlOiAnU3RyaW5nJyB9KVxuICAgIGl0ZW1BY3RpdmU/OiBzdHJpbmc7IC8vIFYyXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZGF5c09mV2Vlaz86IHN0cmluZ1tdO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGZyZWVBY2NvbXBhbmltZW50c0xpbWl0PzogbnVtYmVyOyAvLyBGb3IgYWNjb21wbGltZW50c1RhYmxlIFZhbHVlIENoZWNrXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgaXNCYXNlSXRlbT86IGJvb2xlYW47IC8vIEZvciBwbGF0dGVySW1hZ2UgVmFsdWUgQ2hlY2tcbiAgICBAYXR0cmlidXRlKClcbiAgICBpdGVtRGlzY291bnRGYWN0b3JWYWx1ZT86IG51bWJlcjsgLy8gVjJcbn0iXX0=
|