cmp-aws-database 1.2.0-dev.8 → 1.2.0-proddebug.10
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/config/table-names.d.ts +4 -0
- package/dist/config/table-names.js +7 -3
- 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 +40 -17
- package/dist/customer-user/cart/cart-model.js +132 -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.d.ts +1 -0
- package/dist/customer-user/cutlery/cutlery-model.js +34 -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 +9 -2
- package/dist/customer-user/order-module/order-review/order-review-feedback-model.js +41 -16
- 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 +3 -3
- package/dist/customer-user/order-module/payment/payment-model.js +56 -27
- package/dist/customer-user/order-module/plate-order/plate-order-model.d.ts +12 -0
- package/dist/customer-user/order-module/plate-order/plate-order-model.js +248 -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/skewers/skewers-dao.d.ts +6 -0
- package/dist/customer-user/skewers/skewers-dao.js +8 -0
- package/dist/customer-user/skewers/skewers-model.d.ts +23 -0
- package/dist/customer-user/skewers/skewers-model.js +101 -0
- package/dist/customer-user/tier-details/tier-details-model.d.ts +2 -0
- package/dist/customer-user/tier-details/tier-details-model.js +34 -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/user-specifics-dao.d.ts +6 -0
- package/dist/customer-user/user/user-specifics-dao.js +8 -0
- package/dist/customer-user/user/user-specifics-model.d.ts +5 -0
- package/dist/customer-user/user/user-specifics-model.js +29 -0
- 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.SplitingAmountDetails = exports.PaymentModel = void 0;
|
|
10
13
|
const annotations_1 = require("@nova-odm/annotations");
|
|
@@ -13,76 +16,98 @@ let PaymentModel = class PaymentModel extends base_model_1.BaseModel {
|
|
|
13
16
|
};
|
|
14
17
|
exports.PaymentModel = PaymentModel;
|
|
15
18
|
__decorate([
|
|
16
|
-
(0, annotations_1.autoGeneratedHashKey)({ type: "String" })
|
|
19
|
+
(0, annotations_1.autoGeneratedHashKey)({ type: "String" }),
|
|
20
|
+
__metadata("design:type", String)
|
|
17
21
|
], PaymentModel.prototype, "paymentId", void 0);
|
|
18
22
|
__decorate([
|
|
19
23
|
(0, annotations_1.attribute)({
|
|
20
24
|
indexKeyConfigurations: { "orderIndex": "HASH" }, type: 'String'
|
|
21
|
-
})
|
|
25
|
+
}),
|
|
26
|
+
__metadata("design:type", String)
|
|
22
27
|
], PaymentModel.prototype, "orderId", void 0);
|
|
23
28
|
__decorate([
|
|
24
|
-
(0, annotations_1.attribute)()
|
|
29
|
+
(0, annotations_1.attribute)(),
|
|
30
|
+
__metadata("design:type", Object)
|
|
25
31
|
], PaymentModel.prototype, "userId", void 0);
|
|
26
32
|
__decorate([
|
|
27
33
|
(0, annotations_1.attribute)({
|
|
28
34
|
indexKeyConfigurations: { "plateIdIndex": "HASH" }, type: 'String'
|
|
29
|
-
})
|
|
35
|
+
}),
|
|
36
|
+
__metadata("design:type", Object)
|
|
30
37
|
], PaymentModel.prototype, "plateId", void 0);
|
|
31
38
|
__decorate([
|
|
32
|
-
(0, annotations_1.attribute)()
|
|
39
|
+
(0, annotations_1.attribute)(),
|
|
40
|
+
__metadata("design:type", String)
|
|
33
41
|
], PaymentModel.prototype, "razorpayPaymentId", void 0);
|
|
34
42
|
__decorate([
|
|
35
43
|
(0, annotations_1.attribute)({
|
|
36
44
|
indexKeyConfigurations: { "razorpayOrderIndex": "HASH" }, type: 'String'
|
|
37
|
-
})
|
|
45
|
+
}),
|
|
46
|
+
__metadata("design:type", String)
|
|
38
47
|
], PaymentModel.prototype, "razorpayOrderId", void 0);
|
|
39
48
|
__decorate([
|
|
40
|
-
(0, annotations_1.attribute)()
|
|
49
|
+
(0, annotations_1.attribute)(),
|
|
50
|
+
__metadata("design:type", String)
|
|
41
51
|
], PaymentModel.prototype, "razorpaySignature", void 0);
|
|
42
52
|
__decorate([
|
|
43
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "paymentStatusIndex": "HASH" } })
|
|
53
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "paymentStatusIndex": "HASH" }, type: 'String' }),
|
|
54
|
+
__metadata("design:type", String)
|
|
44
55
|
], PaymentModel.prototype, "paymentStatus", void 0);
|
|
45
56
|
__decorate([
|
|
46
|
-
(0, annotations_1.attribute)()
|
|
57
|
+
(0, annotations_1.attribute)(),
|
|
58
|
+
__metadata("design:type", String)
|
|
47
59
|
], PaymentModel.prototype, "paymentMethod", void 0);
|
|
48
60
|
__decorate([
|
|
49
|
-
(0, annotations_1.attribute)()
|
|
61
|
+
(0, annotations_1.attribute)(),
|
|
62
|
+
__metadata("design:type", String)
|
|
50
63
|
], PaymentModel.prototype, "paymentMethodType", void 0);
|
|
51
64
|
__decorate([
|
|
52
|
-
(0, annotations_1.attribute)()
|
|
65
|
+
(0, annotations_1.attribute)(),
|
|
66
|
+
__metadata("design:type", Number)
|
|
53
67
|
], PaymentModel.prototype, "amount", void 0);
|
|
54
68
|
__decorate([
|
|
55
|
-
(0, annotations_1.attribute)()
|
|
69
|
+
(0, annotations_1.attribute)(),
|
|
70
|
+
__metadata("design:type", Number)
|
|
56
71
|
], PaymentModel.prototype, "initialPaymentAmount", void 0);
|
|
57
72
|
__decorate([
|
|
58
|
-
(0, annotations_1.attribute)()
|
|
73
|
+
(0, annotations_1.attribute)(),
|
|
74
|
+
__metadata("design:type", Number)
|
|
59
75
|
], PaymentModel.prototype, "remainingAmount", void 0);
|
|
60
76
|
__decorate([
|
|
61
|
-
(0, annotations_1.attribute)()
|
|
77
|
+
(0, annotations_1.attribute)(),
|
|
78
|
+
__metadata("design:type", String)
|
|
62
79
|
], PaymentModel.prototype, "paymentDueDate", void 0);
|
|
63
80
|
__decorate([
|
|
64
|
-
(0, annotations_1.attribute)()
|
|
81
|
+
(0, annotations_1.attribute)(),
|
|
82
|
+
__metadata("design:type", String)
|
|
65
83
|
], PaymentModel.prototype, "paymentDate", void 0);
|
|
66
84
|
__decorate([
|
|
67
|
-
(0, annotations_1.attribute)()
|
|
85
|
+
(0, annotations_1.attribute)(),
|
|
86
|
+
__metadata("design:type", Number)
|
|
68
87
|
], PaymentModel.prototype, "splitLevel", void 0);
|
|
69
88
|
__decorate([
|
|
70
|
-
(0, annotations_1.attribute)()
|
|
89
|
+
(0, annotations_1.attribute)(),
|
|
90
|
+
__metadata("design:type", Array)
|
|
71
91
|
], PaymentModel.prototype, "splitingAmountDetails", void 0);
|
|
72
92
|
__decorate([
|
|
73
|
-
(0, annotations_1.attribute)()
|
|
93
|
+
(0, annotations_1.attribute)(),
|
|
94
|
+
__metadata("design:type", Array)
|
|
74
95
|
], PaymentModel.prototype, "assigneeIds", void 0);
|
|
75
96
|
__decorate([
|
|
76
|
-
(0, annotations_1.attribute)()
|
|
97
|
+
(0, annotations_1.attribute)(),
|
|
98
|
+
__metadata("design:type", String)
|
|
77
99
|
], PaymentModel.prototype, "refundType", void 0);
|
|
78
100
|
__decorate([
|
|
79
|
-
(0, annotations_1.attribute)()
|
|
101
|
+
(0, annotations_1.attribute)(),
|
|
102
|
+
__metadata("design:type", Number)
|
|
80
103
|
], PaymentModel.prototype, "refundAmount", void 0);
|
|
81
104
|
__decorate([
|
|
82
|
-
(0, annotations_1.attribute)()
|
|
105
|
+
(0, annotations_1.attribute)(),
|
|
106
|
+
__metadata("design:type", String)
|
|
83
107
|
], PaymentModel.prototype, "refundStatus", void 0);
|
|
84
108
|
__decorate([
|
|
85
|
-
(0, annotations_1.attribute)()
|
|
109
|
+
(0, annotations_1.attribute)({ memberType: "String" }),
|
|
110
|
+
__metadata("design:type", Object)
|
|
86
111
|
], PaymentModel.prototype, "refundLog", void 0);
|
|
87
112
|
exports.PaymentModel = PaymentModel = __decorate([
|
|
88
113
|
(0, annotations_1.table)("PaymentTable")
|
|
@@ -91,15 +116,19 @@ class SplitingAmountDetails {
|
|
|
91
116
|
}
|
|
92
117
|
exports.SplitingAmountDetails = SplitingAmountDetails;
|
|
93
118
|
__decorate([
|
|
94
|
-
(0, annotations_1.attribute)()
|
|
119
|
+
(0, annotations_1.attribute)(),
|
|
120
|
+
__metadata("design:type", Number)
|
|
95
121
|
], SplitingAmountDetails.prototype, "splitAmount", void 0);
|
|
96
122
|
__decorate([
|
|
97
|
-
(0, annotations_1.attribute)()
|
|
123
|
+
(0, annotations_1.attribute)(),
|
|
124
|
+
__metadata("design:type", String)
|
|
98
125
|
], SplitingAmountDetails.prototype, "splitPaymentStatus", void 0);
|
|
99
126
|
__decorate([
|
|
100
|
-
(0, annotations_1.attribute)()
|
|
127
|
+
(0, annotations_1.attribute)(),
|
|
128
|
+
__metadata("design:type", Object)
|
|
101
129
|
], SplitingAmountDetails.prototype, "splitPaidDate", void 0);
|
|
102
130
|
__decorate([
|
|
103
|
-
(0, annotations_1.attribute)()
|
|
131
|
+
(0, annotations_1.attribute)(),
|
|
132
|
+
__metadata("design:type", Date)
|
|
104
133
|
], SplitingAmountDetails.prototype, "nextSplitDueDate", void 0);
|
|
105
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
134
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGF5bWVudC1tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9jdXN0b21lci11c2VyL29yZGVyLW1vZHVsZS9wYXltZW50L3BheW1lbnQtbW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7O0FBQUEsdURBQStFO0FBQy9FLG9EQUFnRDtBQUd6QyxJQUFNLFlBQVksR0FBbEIsTUFBTSxZQUFhLFNBQVEsc0JBQVM7Q0F5RTFDLENBQUE7QUF6RVksb0NBQVk7QUFHckI7SUFEQyxJQUFBLGtDQUFvQixFQUFDLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxDQUFDOzsrQ0FDdkI7QUFLbEI7SUFIQyxJQUFBLHVCQUFTLEVBQUM7UUFDUCxzQkFBc0IsRUFBRSxFQUFFLFlBQVksRUFBRSxNQUFNLEVBQUUsRUFBRSxJQUFJLEVBQUUsUUFBUTtLQUNuRSxDQUFDOzs2Q0FDYztBQUdoQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7NENBQ2U7QUFLM0I7SUFIQyxJQUFBLHVCQUFTLEVBQUM7UUFDUCxzQkFBc0IsRUFBRSxFQUFFLGNBQWMsRUFBRSxNQUFNLEVBQUUsRUFBRSxJQUFJLEVBQUUsUUFBUTtLQUNyRSxDQUFDOzs2Q0FDMEI7QUFHNUI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3VEQUNjO0FBSzFCO0lBSEMsSUFBQSx1QkFBUyxFQUFDO1FBQ1Asc0JBQXNCLEVBQUUsRUFBRSxvQkFBb0IsRUFBRSxNQUFNLEVBQUUsRUFBRSxJQUFJLEVBQUUsUUFBUTtLQUMzRSxDQUFDOztxREFDc0I7QUFHeEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3VEQUNjO0FBRzFCO0lBREMsSUFBQSx1QkFBUyxFQUFDLEVBQUUsc0JBQXNCLEVBQUUsRUFBRSxvQkFBb0IsRUFBRSxNQUFNLEVBQUUsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLENBQUM7O21EQUNsRTtBQUd0QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7bURBQ1U7QUFHdEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3VEQUNjO0FBRzFCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzs0Q0FDRztBQUdmO0lBREMsSUFBQSx1QkFBUyxHQUFFOzswREFDaUI7QUFHN0I7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3FEQUNZO0FBR3hCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztvREFDVztBQUd2QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7aURBQ1E7QUFHcEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O2dEQUNPO0FBR25CO0lBREMsSUFBQSx1QkFBUyxHQUFFOzsyREFDbUM7QUFHL0M7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O2lEQUNXO0FBR3ZCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztnREFDUTtBQUdwQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7a0RBQ1U7QUFHdEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O2tEQUNVO0FBR3RCO0lBREMsSUFBQSx1QkFBUyxFQUFDLEVBQUUsVUFBVSxFQUFFLFFBQVEsRUFBRSxDQUFDOzsrQ0FDRDt1QkF4RTFCLFlBQVk7SUFEeEIsSUFBQSxtQkFBSyxFQUFDLGNBQWMsQ0FBQztHQUNULFlBQVksQ0F5RXhCO0FBRUQsTUFBYSxxQkFBcUI7Q0FhakM7QUFiRCxzREFhQztBQVZHO0lBREMsSUFBQSx1QkFBUyxHQUFFOzswREFDUTtBQUdwQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7aUVBQ2U7QUFHM0I7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzREQUNnQjtBQUc1QjtJQURDLElBQUEsdUJBQVMsR0FBRTs4QkFDTyxJQUFJOytEQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgYXR0cmlidXRlLCBhdXRvR2VuZXJhdGVkSGFzaEtleSwgdGFibGUgfSBmcm9tIFwiQG5vdmEtb2RtL2Fubm90YXRpb25zXCI7XG5pbXBvcnQgeyBCYXNlTW9kZWwgfSBmcm9tIFwiLi4vLi4vLi4vYmFzZS1tb2RlbFwiO1xuXG5AdGFibGUoXCJQYXltZW50VGFibGVcIilcbmV4cG9ydCBjbGFzcyBQYXltZW50TW9kZWwgZXh0ZW5kcyBCYXNlTW9kZWwge1xuXG4gICAgQGF1dG9HZW5lcmF0ZWRIYXNoS2V5KHsgdHlwZTogXCJTdHJpbmdcIiB9KVxuICAgIHBheW1lbnRJZDogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSh7XG4gICAgICAgIGluZGV4S2V5Q29uZmlndXJhdGlvbnM6IHsgXCJvcmRlckluZGV4XCI6IFwiSEFTSFwiIH0sIHR5cGU6ICdTdHJpbmcnXG4gICAgfSlcbiAgICBvcmRlcklkOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICB1c2VySWQ6IHN0cmluZyB8IHVuZGVmaW5lZDtcblxuICAgIEBhdHRyaWJ1dGUoe1xuICAgICAgICBpbmRleEtleUNvbmZpZ3VyYXRpb25zOiB7IFwicGxhdGVJZEluZGV4XCI6IFwiSEFTSFwiIH0sIHR5cGU6ICdTdHJpbmcnXG4gICAgfSlcbiAgICBwbGF0ZUlkOiBzdHJpbmcgfCB1bmRlZmluZWQ7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICByYXpvcnBheVBheW1lbnRJZDogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSh7XG4gICAgICAgIGluZGV4S2V5Q29uZmlndXJhdGlvbnM6IHsgXCJyYXpvcnBheU9yZGVySW5kZXhcIjogXCJIQVNIXCIgfSwgdHlwZTogJ1N0cmluZydcbiAgICB9KVxuICAgIHJhem9ycGF5T3JkZXJJZDogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcmF6b3JwYXlTaWduYXR1cmU6IHN0cmluZzsgLy8gUmVtb3ZlIEFmdGVyIFRoaXMgcmVsZWFzZSBnb25lIGZvciB2MVxuXG4gICAgQGF0dHJpYnV0ZSh7IGluZGV4S2V5Q29uZmlndXJhdGlvbnM6IHsgXCJwYXltZW50U3RhdHVzSW5kZXhcIjogXCJIQVNIXCIgfSwgdHlwZTogJ1N0cmluZycgfSlcbiAgICBwYXltZW50U3RhdHVzOiBzdHJpbmc7IC8vIENPTVBMRVRFRCwgUEFZTUVOVF9TVUNDRVNTLCBGQUlMRUQsIFBFTkRJTkdcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHBheW1lbnRNZXRob2Q6IHN0cmluZzsgLy8gRlVMTF9QQVlNRU5ULCBTUExJVF9QQVlNRU5UXG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBwYXltZW50TWV0aG9kVHlwZTogc3RyaW5nOyAvLyBSQVpPUlBBWSwgV0FMTEVULCBDUkVESVRfQ0FSRCwgREVCSVRfQ0FSRCwgVVBJLCBQQVlUTSwgUEhPTkVQRSwgR09PR0xFX1BBWSwgQVBQTEVfUEFZLCBQQVlNRU5UX0dBVEVXQVlcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGFtb3VudDogbnVtYmVyOyAvLyBUb3RhbCBhbW91bnQgcGFpZFxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgaW5pdGlhbFBheW1lbnRBbW91bnQ6IG51bWJlcjsgLy8gSW5pdGlhbCBhbW91bnQgcGFpZFxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcmVtYWluaW5nQW1vdW50OiBudW1iZXI7IC8vIFJlbWFpbmluZyBhbW91bnQgdG8gYmUgcGFpZFxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcGF5bWVudER1ZURhdGU6IHN0cmluZzsgLy8gTkVYVCBTUExJVCBEVUUgREFURVxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcGF5bWVudERhdGU6IHN0cmluZzsgLy8gUGF5bWVudCBwYWlkIGRhdGVcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHNwbGl0TGV2ZWw6IG51bWJlcjsgLy8gMSwgMiwgMywgNCwgNVxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgc3BsaXRpbmdBbW91bnREZXRhaWxzOiBTcGxpdGluZ0Ftb3VudERldGFpbHNbXTsgLy8gUmVtb3ZlIEFmdGVyIFRoaXMgcmVsZWFzZSBnb25lIGZvciB2MVxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgYXNzaWduZWVJZHM/OiBzdHJpbmdbXTsgLy8gUmVtb3ZlIEFmdGVyIFRoaXMgcmVsZWFzZSBnb25lIGZvciB2MVxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcmVmdW5kVHlwZT86IHN0cmluZzsgLy8gXCJDUkVESVRTXCIsXCJDQVNIXCJcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHJlZnVuZEFtb3VudD86IG51bWJlcjtcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHJlZnVuZFN0YXR1cz86IHN0cmluZzsgLy8gXCJQRU5ESU5HXCIsXCJESVNCVVJTRURcIixcIlJFSkVDVEVEXCJcblxuICAgIEBhdHRyaWJ1dGUoeyBtZW1iZXJUeXBlOiBcIlN0cmluZ1wiIH0pXG4gICAgcmVmdW5kTG9nPzogUmVjb3JkPHN0cmluZywgc3RyaW5nPjsgLy8gTWFwIHRvIHN0b3JlIHN0YXR1cyB0aW1lc3RhbXBzIChlLmcuLCBDUkVBVEVEOiBcIjIwMjUtMDktMjNUMDk6MTU6MDBaXCIpXG59XG5cbmV4cG9ydCBjbGFzcyBTcGxpdGluZ0Ftb3VudERldGFpbHMge1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgc3BsaXRBbW91bnQ6IG51bWJlcjtcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHNwbGl0UGF5bWVudFN0YXR1czogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgc3BsaXRQYWlkRGF0ZT86IERhdGUgfCBudWxsO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgbmV4dFNwbGl0RHVlRGF0ZT86IERhdGU7XG59ICJdfQ==
|
|
@@ -47,6 +47,11 @@ export declare class PlateModel extends BaseModel {
|
|
|
47
47
|
premiumItemsCost?: number;
|
|
48
48
|
cutleryCost?: number;
|
|
49
49
|
createOwn?: boolean;
|
|
50
|
+
cartId?: string;
|
|
51
|
+
isPartialGrill?: boolean;
|
|
52
|
+
chargeableKits?: number;
|
|
53
|
+
pricePerKit?: number;
|
|
54
|
+
freeKits?: number;
|
|
50
55
|
}
|
|
51
56
|
export declare class CutleryItem {
|
|
52
57
|
cutleryId: string;
|
|
@@ -72,10 +77,13 @@ export declare class AddonsItems {
|
|
|
72
77
|
addonType: string;
|
|
73
78
|
addonQuantityUnit: string;
|
|
74
79
|
addonBaseRatio: number;
|
|
80
|
+
isBonelessItem?: boolean;
|
|
81
|
+
boneItemPrice?: number;
|
|
75
82
|
}
|
|
76
83
|
export declare class Category {
|
|
77
84
|
categoryId: string;
|
|
78
85
|
categoryName: string;
|
|
86
|
+
isSkewerCategory?: boolean;
|
|
79
87
|
items: Item[];
|
|
80
88
|
vegItems: ItemDetails[];
|
|
81
89
|
premiumVegItems: ItemDetails[];
|
|
@@ -100,6 +108,8 @@ export declare class ItemDetails {
|
|
|
100
108
|
itemQuantity: number;
|
|
101
109
|
baseRatio: number;
|
|
102
110
|
quantityUnit: string;
|
|
111
|
+
isBonelessItem?: boolean;
|
|
112
|
+
boneItemPrice?: number;
|
|
103
113
|
accompaniments: AccompanimentsDetails[];
|
|
104
114
|
}
|
|
105
115
|
export declare class AccompanimentsDetails {
|
|
@@ -112,4 +122,6 @@ export declare class AccompanimentsDetails {
|
|
|
112
122
|
accompanimentPrice: number;
|
|
113
123
|
accompanimentQty: string;
|
|
114
124
|
baseRatio: number;
|
|
125
|
+
isBonelessItem?: boolean;
|
|
126
|
+
boneItemPrice?: number;
|
|
115
127
|
}
|