cmp-aws-database 1.2.0-dev.10 → 1.2.0-dev.100
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 +6 -0
- package/dist/config/table-names.js +9 -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.d.ts +1 -0
- package/dist/customer-user/bank-details/bank-details-model.js +22 -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 +42 -18
- package/dist/customer-user/cart/cart-model.js +137 -155
- 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.d.ts +3 -0
- package/dist/customer-user/counter/counter-model.js +26 -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 +2 -0
- package/dist/customer-user/default-platter/default-platters-model.js +50 -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/default-platter-variations/default-platter-dao.d.ts +6 -0
- package/dist/customer-user/default-platter-variations/default-platter-dao.js +8 -0
- package/dist/customer-user/default-platter-variations/default-platter-variations.d.ts +30 -0
- package/dist/customer-user/default-platter-variations/default-platter-variations.js +129 -0
- 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-model.d.ts +6 -8
- package/dist/customer-user/findmyplatter/find-my-platter-model.js +48 -33
- package/dist/customer-user/fmpRequestCallback/fmp-request-callback-dao.d.ts +6 -0
- package/dist/customer-user/fmpRequestCallback/fmp-request-callback-dao.js +8 -0
- package/dist/customer-user/fmpRequestCallback/fmp-request-callback-model.d.ts +15 -0
- package/dist/customer-user/fmpRequestCallback/fmp-request-callback-model.js +49 -0
- package/dist/customer-user/guest-feedback/guest-feedback-model.js +16 -7
- package/dist/customer-user/items/items-model.d.ts +1 -1
- package/dist/customer-user/items/items-model.js +45 -22
- 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.d.ts +2 -0
- package/dist/customer-user/occastion/occasion-model.js +24 -64
- 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 +11 -2
- package/dist/customer-user/order-module/order-review/order-review-feedback-model.js +45 -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 +16 -0
- package/dist/customer-user/order-module/plate-order/plate-order-model.js +264 -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.d.ts +5 -0
- package/dist/customer-user/tier-referral/tier-referral-model.js +38 -8
- package/dist/customer-user/user/user-model.d.ts +1 -0
- package/dist/customer-user/user/user-model.js +28 -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.d.ts +1 -0
- package/dist/customer-user/withdrawn/withdrawn-model.js +22 -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 +4 -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.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,91 @@ 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);
|
|
99
|
+
__decorate([
|
|
100
|
+
(0, annotations_1.attribute)(),
|
|
101
|
+
__metadata("design:type", Number)
|
|
102
|
+
], DefaultPlatterModel.prototype, "discountPercentage", void 0);
|
|
72
103
|
exports.DefaultPlatterModel = DefaultPlatterModel = __decorate([
|
|
73
104
|
(0, annotations_1.table)("DefaultPlattersTable")
|
|
74
105
|
], DefaultPlatterModel);
|
|
75
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
106
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmYXVsdC1wbGF0dGVycy1tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jdXN0b21lci11c2VyL2RlZmF1bHQtcGxhdHRlci9kZWZhdWx0LXBsYXR0ZXJzLW1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7OztBQUFBLHVEQUErRTtBQUMvRSxpREFBNkM7QUFHdEMsSUFBTSxtQkFBbUIsR0FBekIsTUFBTSxtQkFBb0IsU0FBUSxzQkFBUztDQWtEakQsQ0FBQTtBQWxEWSxrREFBbUI7QUFFNUI7SUFEQyxJQUFBLGtDQUFvQixFQUFDLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxDQUFDOztzREFDdkI7QUFFbEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3dEQUNRO0FBRXBCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzs0REFDYztBQUUxQjtJQURDLElBQUEsdUJBQVMsRUFBQyxFQUFFLHNCQUFzQixFQUFFLEVBQUUsMkJBQTJCLEVBQUUsT0FBTyxFQUFFLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxDQUFDOztzREFDOUU7QUFFbEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3VEQUNPO0FBRW5CO0lBREMsSUFBQSx1QkFBUyxHQUFFOzt1REFDTztBQUVuQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7cURBQ0s7QUFFakI7SUFEQyxJQUFBLHVCQUFTLEVBQUMsRUFBRSxzQkFBc0IsRUFBRSxFQUFFLG9CQUFvQixFQUFFLE1BQU0sRUFBRSxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsQ0FBQzs7MERBQ2xFO0FBRXRCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztxREFDSztBQUVqQjtJQURDLElBQUEsdUJBQVMsRUFBQyxFQUFFLHNCQUFzQixFQUFFLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxFQUFFLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxDQUFDLENBQUMsYUFBYTs7O3NEQUNoRjtBQUVsQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7eURBQ1c7QUFFdkI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3FEQUNLO0FBRWpCO0lBREMsSUFBQSx1QkFBUyxFQUFDLEVBQUUsc0JBQXNCLEVBQUUsRUFBRSwyQkFBMkIsRUFBRSxNQUFNLEVBQUUsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLENBQUM7O3dEQUMzRTtBQUVwQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7b0RBQ0k7QUFHaEI7SUFEQyxJQUFBLHVCQUFTLEVBQUMsRUFBRSxzQkFBc0IsRUFBRSxFQUFFLHFCQUFxQixFQUFFLE1BQU0sRUFBRSxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsQ0FBQzs7MkRBQ2xFO0FBR3ZCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzt5REFDUztBQUdyQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7MkRBQ1c7QUFHdkI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzJEQUNXO0FBR3ZCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzs2REFDYztBQUcxQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7NkRBQ2M7QUFHMUI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OytEQUNnQjs4QkFqRG5CLG1CQUFtQjtJQUQvQixJQUFBLG1CQUFLLEVBQUMsc0JBQXNCLENBQUM7R0FDakIsbUJBQW1CLENBa0QvQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGF0dHJpYnV0ZSwgYXV0b0dlbmVyYXRlZEhhc2hLZXksIHRhYmxlIH0gZnJvbSBcIkBub3ZhLW9kbS9hbm5vdGF0aW9uc1wiO1xuaW1wb3J0IHsgQmFzZU1vZGVsIH0gZnJvbSBcIi4uLy4uL2Jhc2UtbW9kZWxcIjtcblxuQHRhYmxlKFwiRGVmYXVsdFBsYXR0ZXJzVGFibGVcIilcbmV4cG9ydCBjbGFzcyBEZWZhdWx0UGxhdHRlck1vZGVsIGV4dGVuZHMgQmFzZU1vZGVsIHtcbiAgICBAYXV0b0dlbmVyYXRlZEhhc2hLZXkoeyB0eXBlOiAnU3RyaW5nJyB9KVxuICAgIHBsYXR0ZXJJZDogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHBsYXR0ZXJOYW1lOiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZXZlbnRDYXRlZ29yaWVzOiBzdHJpbmdbXTtcbiAgICBAYXR0cmlidXRlKHsgaW5kZXhLZXlDb25maWd1cmF0aW9uczogeyBcInBsYXR0ZXJUeXBlQmFzZVByaWNlSW5kZXhcIjogXCJSQU5HRVwiIH0sIHR5cGU6ICdOdW1iZXInIH0pXG4gICAgYmFzZVByaWNlOiBudW1iZXI7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgbWluaW11bVBheDogbnVtYmVyO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIG1heGltdW1QYXg6IG51bWJlcjtcbiAgICBAYXR0cmlidXRlKClcbiAgICBtaW5QcmljZTogbnVtYmVyO1xuICAgIEBhdHRyaWJ1dGUoeyBpbmRleEtleUNvbmZpZ3VyYXRpb25zOiB7IFwicGxhdHRlckFjdGl2ZUluZGV4XCI6IFwiSEFTSFwiIH0sIHR5cGU6ICdTdHJpbmcnIH0pXG4gICAgcGxhdHRlckFjdGl2ZTogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGltYWdlVXJsOiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSh7IGluZGV4S2V5Q29uZmlndXJhdGlvbnM6IHsgXCJtZWFsVGltZXNJbmRleFwiOiBcIkhBU0hcIiB9LCB0eXBlOiAnU3RyaW5nJyB9KSAvLyBWMiBVcGRhdGVkXG4gICAgbWVhbFRpbWVzOiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgbWVudUxvY2F0aW9uOiBzdHJpbmdbXTtcbiAgICBAYXR0cmlidXRlKClcbiAgICBtZW51VHlwZTogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoeyBpbmRleEtleUNvbmZpZ3VyYXRpb25zOiB7IFwicGxhdHRlclR5cGVCYXNlUHJpY2VJbmRleFwiOiBcIkhBU0hcIiB9LCB0eXBlOiAnU3RyaW5nJyB9KVxuICAgIHBsYXR0ZXJUeXBlOiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcG9wdWxhcjogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSh7IGluZGV4S2V5Q29uZmlndXJhdGlvbnM6IHsgXCJwbGF0dGVyU3ViVHlwZUluZGV4XCI6IFwiSEFTSFwiIH0sIHR5cGU6ICdTdHJpbmcnIH0pXG4gICAgcGxhdHRlclN1YlR5cGU6IHN0cmluZzsgLy8gVjJcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGljb25JbWFnZVRhZzogc3RyaW5nOyAvLyBWMlxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcGxhdHRlclRleHRUYWc6IHN0cmluZzsgLy8gVjJcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHBsYXR0ZXJDdWlzaW5lOiBzdHJpbmc7IC8vIFYyXG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBwbGF0dGVyRXZlbnRUeXBlPzogc3RyaW5nOyAvLyBWMlxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcGxhdGVGYWN0b3JWYWx1ZT86IG51bWJlcjsgLy8gVjJcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGRpc2NvdW50UGVyY2VudGFnZT86IG51bWJlcjsgLy8gVjJcbn1cbiJdfQ==
|
|
@@ -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=
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { GenericDAO } from "../../base-dao";
|
|
2
|
+
import { DefaultPlatterVariations } from "./default-platter-variations";
|
|
3
|
+
declare class DefaultPlatterVariationsDAO extends GenericDAO<DefaultPlatterVariations> {
|
|
4
|
+
}
|
|
5
|
+
export declare const defaultPlatterVariationsDAO: DefaultPlatterVariationsDAO;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.defaultPlatterVariationsDAO = void 0;
|
|
4
|
+
const base_dao_1 = require("../../base-dao");
|
|
5
|
+
class DefaultPlatterVariationsDAO extends base_dao_1.GenericDAO {
|
|
6
|
+
}
|
|
7
|
+
exports.defaultPlatterVariationsDAO = new DefaultPlatterVariationsDAO();
|
|
8
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmYXVsdC1wbGF0dGVyLWRhby5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jdXN0b21lci11c2VyL2RlZmF1bHQtcGxhdHRlci12YXJpYXRpb25zL2RlZmF1bHQtcGxhdHRlci1kYW8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEsNkNBQTRDO0FBRzVDLE1BQU0sMkJBQTRCLFNBQVEscUJBQW9DO0NBRTdFO0FBRVksUUFBQSwyQkFBMkIsR0FBRyxJQUFJLDJCQUEyQixFQUFFLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBHZW5lcmljREFPIH0gZnJvbSBcIi4uLy4uL2Jhc2UtZGFvXCI7XG5pbXBvcnQgeyBEZWZhdWx0UGxhdHRlclZhcmlhdGlvbnMgfSBmcm9tIFwiLi9kZWZhdWx0LXBsYXR0ZXItdmFyaWF0aW9uc1wiO1xuXG5jbGFzcyBEZWZhdWx0UGxhdHRlclZhcmlhdGlvbnNEQU8gZXh0ZW5kcyBHZW5lcmljREFPPERlZmF1bHRQbGF0dGVyVmFyaWF0aW9ucz4ge1xuXG59XG5cbmV4cG9ydCBjb25zdCBkZWZhdWx0UGxhdHRlclZhcmlhdGlvbnNEQU8gPSBuZXcgRGVmYXVsdFBsYXR0ZXJWYXJpYXRpb25zREFPKCk7Il19
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { BaseModel } from "../../base-model";
|
|
2
|
+
export declare class DefaultPlatterVariations extends BaseModel {
|
|
3
|
+
platterVariationId: string;
|
|
4
|
+
platterId: string;
|
|
5
|
+
platterName: string;
|
|
6
|
+
platterType: string;
|
|
7
|
+
platterSubType: string;
|
|
8
|
+
variationIndex: number;
|
|
9
|
+
totalMinPrice: number;
|
|
10
|
+
totalMaxPrice: number;
|
|
11
|
+
priceCalculationFormula: string;
|
|
12
|
+
categoriesCount: number;
|
|
13
|
+
category1Name: string;
|
|
14
|
+
category1MinPrice: number;
|
|
15
|
+
category1MaxPrice: number;
|
|
16
|
+
category1Items: string;
|
|
17
|
+
category2Name: string;
|
|
18
|
+
category2MinPrice: number;
|
|
19
|
+
category2MaxPrice: number;
|
|
20
|
+
category2Items: string;
|
|
21
|
+
category3Name: string;
|
|
22
|
+
category3MinPrice: number;
|
|
23
|
+
category3MaxPrice: number;
|
|
24
|
+
category3Items: string;
|
|
25
|
+
category4Name: string;
|
|
26
|
+
category4MinPrice: number;
|
|
27
|
+
category4MaxPrice: number;
|
|
28
|
+
category4Items: string;
|
|
29
|
+
variationDescription: string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
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
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
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
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.DefaultPlatterVariations = void 0;
|
|
13
|
+
const annotations_1 = require("@nova-odm/annotations");
|
|
14
|
+
const base_model_1 = require("../../base-model");
|
|
15
|
+
let DefaultPlatterVariations = class DefaultPlatterVariations extends base_model_1.BaseModel {
|
|
16
|
+
};
|
|
17
|
+
exports.DefaultPlatterVariations = DefaultPlatterVariations;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, annotations_1.autoGeneratedHashKey)({ type: "String" }),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], DefaultPlatterVariations.prototype, "platterVariationId", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "platterIndex": "HASH" }, type: 'String' }),
|
|
24
|
+
__metadata("design:type", String)
|
|
25
|
+
], DefaultPlatterVariations.prototype, "platterId", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, annotations_1.attribute)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], DefaultPlatterVariations.prototype, "platterName", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, annotations_1.attribute)(),
|
|
32
|
+
__metadata("design:type", String)
|
|
33
|
+
], DefaultPlatterVariations.prototype, "platterType", void 0);
|
|
34
|
+
__decorate([
|
|
35
|
+
(0, annotations_1.attribute)(),
|
|
36
|
+
__metadata("design:type", String)
|
|
37
|
+
], DefaultPlatterVariations.prototype, "platterSubType", void 0);
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, annotations_1.attribute)(),
|
|
40
|
+
__metadata("design:type", Number)
|
|
41
|
+
], DefaultPlatterVariations.prototype, "variationIndex", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "totalMinPriceIndex": "HASH" }, type: 'Number' }),
|
|
44
|
+
__metadata("design:type", Number)
|
|
45
|
+
], DefaultPlatterVariations.prototype, "totalMinPrice", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, annotations_1.attribute)(),
|
|
48
|
+
__metadata("design:type", Number)
|
|
49
|
+
], DefaultPlatterVariations.prototype, "totalMaxPrice", void 0);
|
|
50
|
+
__decorate([
|
|
51
|
+
(0, annotations_1.attribute)(),
|
|
52
|
+
__metadata("design:type", String)
|
|
53
|
+
], DefaultPlatterVariations.prototype, "priceCalculationFormula", void 0);
|
|
54
|
+
__decorate([
|
|
55
|
+
(0, annotations_1.attribute)(),
|
|
56
|
+
__metadata("design:type", Number)
|
|
57
|
+
], DefaultPlatterVariations.prototype, "categoriesCount", void 0);
|
|
58
|
+
__decorate([
|
|
59
|
+
(0, annotations_1.attribute)(),
|
|
60
|
+
__metadata("design:type", String)
|
|
61
|
+
], DefaultPlatterVariations.prototype, "category1Name", void 0);
|
|
62
|
+
__decorate([
|
|
63
|
+
(0, annotations_1.attribute)(),
|
|
64
|
+
__metadata("design:type", Number)
|
|
65
|
+
], DefaultPlatterVariations.prototype, "category1MinPrice", void 0);
|
|
66
|
+
__decorate([
|
|
67
|
+
(0, annotations_1.attribute)(),
|
|
68
|
+
__metadata("design:type", Number)
|
|
69
|
+
], DefaultPlatterVariations.prototype, "category1MaxPrice", void 0);
|
|
70
|
+
__decorate([
|
|
71
|
+
(0, annotations_1.attribute)(),
|
|
72
|
+
__metadata("design:type", String)
|
|
73
|
+
], DefaultPlatterVariations.prototype, "category1Items", void 0);
|
|
74
|
+
__decorate([
|
|
75
|
+
(0, annotations_1.attribute)(),
|
|
76
|
+
__metadata("design:type", String)
|
|
77
|
+
], DefaultPlatterVariations.prototype, "category2Name", void 0);
|
|
78
|
+
__decorate([
|
|
79
|
+
(0, annotations_1.attribute)(),
|
|
80
|
+
__metadata("design:type", Number)
|
|
81
|
+
], DefaultPlatterVariations.prototype, "category2MinPrice", void 0);
|
|
82
|
+
__decorate([
|
|
83
|
+
(0, annotations_1.attribute)(),
|
|
84
|
+
__metadata("design:type", Number)
|
|
85
|
+
], DefaultPlatterVariations.prototype, "category2MaxPrice", void 0);
|
|
86
|
+
__decorate([
|
|
87
|
+
(0, annotations_1.attribute)(),
|
|
88
|
+
__metadata("design:type", String)
|
|
89
|
+
], DefaultPlatterVariations.prototype, "category2Items", void 0);
|
|
90
|
+
__decorate([
|
|
91
|
+
(0, annotations_1.attribute)(),
|
|
92
|
+
__metadata("design:type", String)
|
|
93
|
+
], DefaultPlatterVariations.prototype, "category3Name", void 0);
|
|
94
|
+
__decorate([
|
|
95
|
+
(0, annotations_1.attribute)(),
|
|
96
|
+
__metadata("design:type", Number)
|
|
97
|
+
], DefaultPlatterVariations.prototype, "category3MinPrice", void 0);
|
|
98
|
+
__decorate([
|
|
99
|
+
(0, annotations_1.attribute)(),
|
|
100
|
+
__metadata("design:type", Number)
|
|
101
|
+
], DefaultPlatterVariations.prototype, "category3MaxPrice", void 0);
|
|
102
|
+
__decorate([
|
|
103
|
+
(0, annotations_1.attribute)(),
|
|
104
|
+
__metadata("design:type", String)
|
|
105
|
+
], DefaultPlatterVariations.prototype, "category3Items", void 0);
|
|
106
|
+
__decorate([
|
|
107
|
+
(0, annotations_1.attribute)(),
|
|
108
|
+
__metadata("design:type", String)
|
|
109
|
+
], DefaultPlatterVariations.prototype, "category4Name", void 0);
|
|
110
|
+
__decorate([
|
|
111
|
+
(0, annotations_1.attribute)(),
|
|
112
|
+
__metadata("design:type", Number)
|
|
113
|
+
], DefaultPlatterVariations.prototype, "category4MinPrice", void 0);
|
|
114
|
+
__decorate([
|
|
115
|
+
(0, annotations_1.attribute)(),
|
|
116
|
+
__metadata("design:type", Number)
|
|
117
|
+
], DefaultPlatterVariations.prototype, "category4MaxPrice", void 0);
|
|
118
|
+
__decorate([
|
|
119
|
+
(0, annotations_1.attribute)(),
|
|
120
|
+
__metadata("design:type", String)
|
|
121
|
+
], DefaultPlatterVariations.prototype, "category4Items", void 0);
|
|
122
|
+
__decorate([
|
|
123
|
+
(0, annotations_1.attribute)(),
|
|
124
|
+
__metadata("design:type", String)
|
|
125
|
+
], DefaultPlatterVariations.prototype, "variationDescription", void 0);
|
|
126
|
+
exports.DefaultPlatterVariations = DefaultPlatterVariations = __decorate([
|
|
127
|
+
(0, annotations_1.table)("DefaultPlatterVariationsTable")
|
|
128
|
+
], DefaultPlatterVariations);
|
|
129
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmYXVsdC1wbGF0dGVyLXZhcmlhdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvY3VzdG9tZXItdXNlci9kZWZhdWx0LXBsYXR0ZXItdmFyaWF0aW9ucy9kZWZhdWx0LXBsYXR0ZXItdmFyaWF0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7QUFBQSx1REFBa0c7QUFDbEcsaURBQTZDO0FBR3RDLElBQU0sd0JBQXdCLEdBQTlCLE1BQU0sd0JBQXlCLFNBQVEsc0JBQVM7Q0FzRnRELENBQUE7QUF0RlksNERBQXdCO0FBRWpDO0lBREMsSUFBQSxrQ0FBb0IsRUFBQyxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsQ0FBQzs7b0VBQ2Q7QUFHM0I7SUFEQyxJQUFBLHVCQUFTLEVBQUMsRUFBRSxzQkFBc0IsRUFBRSxFQUFFLGNBQWMsRUFBRSxNQUFNLEVBQUUsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLENBQUM7OzJEQUNoRTtBQUdsQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7NkRBQ1E7QUFHcEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzZEQUNRO0FBR3BCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztnRUFDVztBQUd2QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7Z0VBQ1c7QUFHdkI7SUFEQyxJQUFBLHVCQUFTLEVBQUMsRUFBRSxzQkFBc0IsRUFBRSxFQUFFLG9CQUFvQixFQUFFLE1BQU0sRUFBRSxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsQ0FBQzs7K0RBQ2xFO0FBR3RCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzsrREFDVTtBQUd0QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7eUVBQ29CO0FBR2hDO0lBREMsSUFBQSx1QkFBUyxHQUFFOztpRUFDWTtBQUl4QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7K0RBQ1U7QUFHdEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O21FQUNjO0FBRzFCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzttRUFDYztBQUcxQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7Z0VBQ1c7QUFJdkI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OytEQUNVO0FBR3RCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzttRUFDYztBQUcxQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7bUVBQ2M7QUFHMUI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O2dFQUNXO0FBSXZCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzsrREFDVTtBQUd0QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7bUVBQ2M7QUFHMUI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O21FQUNjO0FBRzFCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztnRUFDVztBQUl2QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7K0RBQ1U7QUFHdEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O21FQUNjO0FBRzFCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzttRUFDYztBQUcxQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7Z0VBQ1c7QUFHdkI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3NFQUNpQjttQ0FwRnBCLHdCQUF3QjtJQURwQyxJQUFBLG1CQUFLLEVBQUMsK0JBQStCLENBQUM7R0FDMUIsd0JBQXdCLENBc0ZwQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGF0dHJpYnV0ZSwgYXV0b0dlbmVyYXRlZEhhc2hLZXksIGhhc2hLZXksIHJhbmdlS2V5LCB0YWJsZSB9IGZyb20gXCJAbm92YS1vZG0vYW5ub3RhdGlvbnNcIjtcbmltcG9ydCB7IEJhc2VNb2RlbCB9IGZyb20gXCIuLi8uLi9iYXNlLW1vZGVsXCI7XG5cbkB0YWJsZShcIkRlZmF1bHRQbGF0dGVyVmFyaWF0aW9uc1RhYmxlXCIpXG5leHBvcnQgY2xhc3MgRGVmYXVsdFBsYXR0ZXJWYXJpYXRpb25zIGV4dGVuZHMgQmFzZU1vZGVsIHtcbiAgICBAYXV0b0dlbmVyYXRlZEhhc2hLZXkoeyB0eXBlOiBcIlN0cmluZ1wiIH0pXG4gICAgcGxhdHRlclZhcmlhdGlvbklkOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKHsgaW5kZXhLZXlDb25maWd1cmF0aW9uczogeyBcInBsYXR0ZXJJbmRleFwiOiBcIkhBU0hcIiB9LCB0eXBlOiAnU3RyaW5nJyB9KVxuICAgIHBsYXR0ZXJJZDogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcGxhdHRlck5hbWU6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHBsYXR0ZXJUeXBlOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBwbGF0dGVyU3ViVHlwZTogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgdmFyaWF0aW9uSW5kZXg6IG51bWJlcjtcblxuICAgIEBhdHRyaWJ1dGUoeyBpbmRleEtleUNvbmZpZ3VyYXRpb25zOiB7IFwidG90YWxNaW5QcmljZUluZGV4XCI6IFwiSEFTSFwiIH0sIHR5cGU6ICdOdW1iZXInIH0pXG4gICAgdG90YWxNaW5QcmljZTogbnVtYmVyO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgdG90YWxNYXhQcmljZTogbnVtYmVyO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcHJpY2VDYWxjdWxhdGlvbkZvcm11bGE6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNhdGVnb3JpZXNDb3VudDogbnVtYmVyO1xuXG4gICAgLy8gQ2F0ZWdvcnkgMVxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNhdGVnb3J5MU5hbWU6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNhdGVnb3J5MU1pblByaWNlOiBudW1iZXI7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBjYXRlZ29yeTFNYXhQcmljZTogbnVtYmVyO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgY2F0ZWdvcnkxSXRlbXM6IHN0cmluZztcblxuICAgIC8vIENhdGVnb3J5IDJcbiAgICBAYXR0cmlidXRlKClcbiAgICBjYXRlZ29yeTJOYW1lOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBjYXRlZ29yeTJNaW5QcmljZTogbnVtYmVyO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgY2F0ZWdvcnkyTWF4UHJpY2U6IG51bWJlcjtcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNhdGVnb3J5Mkl0ZW1zOiBzdHJpbmc7XG5cbiAgICAvLyBDYXRlZ29yeSAzXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgY2F0ZWdvcnkzTmFtZTogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgY2F0ZWdvcnkzTWluUHJpY2U6IG51bWJlcjtcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNhdGVnb3J5M01heFByaWNlOiBudW1iZXI7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBjYXRlZ29yeTNJdGVtczogc3RyaW5nO1xuXG4gICAgLy8gQ2F0ZWdvcnkgNFxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNhdGVnb3J5NE5hbWU6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNhdGVnb3J5NE1pblByaWNlOiBudW1iZXI7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBjYXRlZ29yeTRNYXhQcmljZTogbnVtYmVyO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgY2F0ZWdvcnk0SXRlbXM6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHZhcmlhdGlvbkRlc2NyaXB0aW9uOiBzdHJpbmc7XG5cbn0iXX0=
|
|
@@ -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.EventExecutivesModel = void 0;
|
|
10
13
|
const annotations_1 = require("@nova-odm/annotations");
|
|
@@ -13,35 +16,44 @@ let EventExecutivesModel = class EventExecutivesModel extends base_model_1.BaseM
|
|
|
13
16
|
};
|
|
14
17
|
exports.EventExecutivesModel = EventExecutivesModel;
|
|
15
18
|
__decorate([
|
|
16
|
-
(0, annotations_1.autoGeneratedHashKey)({ type: 'String' })
|
|
19
|
+
(0, annotations_1.autoGeneratedHashKey)({ type: 'String' }),
|
|
20
|
+
__metadata("design:type", String)
|
|
17
21
|
], EventExecutivesModel.prototype, "executiveId", void 0);
|
|
18
22
|
__decorate([
|
|
19
|
-
(0, annotations_1.attribute)()
|
|
23
|
+
(0, annotations_1.attribute)(),
|
|
24
|
+
__metadata("design:type", String)
|
|
20
25
|
], EventExecutivesModel.prototype, "executiveFirstName", void 0);
|
|
21
26
|
__decorate([
|
|
22
|
-
(0, annotations_1.attribute)()
|
|
27
|
+
(0, annotations_1.attribute)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
23
29
|
], EventExecutivesModel.prototype, "executiveLastName", void 0);
|
|
24
30
|
__decorate([
|
|
25
|
-
(0, annotations_1.attribute)()
|
|
31
|
+
(0, annotations_1.attribute)(),
|
|
32
|
+
__metadata("design:type", String)
|
|
26
33
|
], EventExecutivesModel.prototype, "executiveContactNumber", void 0);
|
|
27
34
|
__decorate([
|
|
28
|
-
(0, annotations_1.attribute)()
|
|
35
|
+
(0, annotations_1.attribute)(),
|
|
36
|
+
__metadata("design:type", String)
|
|
29
37
|
], EventExecutivesModel.prototype, "executiveMail", void 0);
|
|
30
38
|
__decorate([
|
|
31
|
-
(0, annotations_1.attribute)()
|
|
39
|
+
(0, annotations_1.attribute)(),
|
|
40
|
+
__metadata("design:type", String)
|
|
32
41
|
], EventExecutivesModel.prototype, "executiveImage", void 0);
|
|
33
42
|
__decorate([
|
|
34
|
-
(0, annotations_1.attribute)()
|
|
43
|
+
(0, annotations_1.attribute)(),
|
|
44
|
+
__metadata("design:type", Array)
|
|
35
45
|
], EventExecutivesModel.prototype, "executiveDocuments", void 0);
|
|
36
46
|
__decorate([
|
|
37
47
|
(0, annotations_1.attribute)({
|
|
38
48
|
indexKeyConfigurations: { "executiveActiveIndex": "HASH" }, type: 'String'
|
|
39
|
-
})
|
|
49
|
+
}),
|
|
50
|
+
__metadata("design:type", String)
|
|
40
51
|
], EventExecutivesModel.prototype, "executiveActive", void 0);
|
|
41
52
|
__decorate([
|
|
42
|
-
(0, annotations_1.attribute)()
|
|
53
|
+
(0, annotations_1.attribute)(),
|
|
54
|
+
__metadata("design:type", String)
|
|
43
55
|
], EventExecutivesModel.prototype, "executiveAddress", void 0);
|
|
44
56
|
exports.EventExecutivesModel = EventExecutivesModel = __decorate([
|
|
45
57
|
(0, annotations_1.table)("EventExecutivesTable")
|
|
46
58
|
], EventExecutivesModel);
|
|
47
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
59
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXZlbnQtZXhlY3V0aXZlLW1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2N1c3RvbWVyLXVzZXIvZXZlbnQtZXhlY3V0aXZlcy9ldmVudC1leGVjdXRpdmUtbW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7O0FBQUEsdURBQStFO0FBQy9FLGlEQUE2QztBQUl0QyxJQUFNLG9CQUFvQixHQUExQixNQUFNLG9CQUFxQixTQUFRLHNCQUFTO0NBc0JsRCxDQUFBO0FBdEJZLG9EQUFvQjtBQUU3QjtJQURDLElBQUEsa0NBQW9CLEVBQUMsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLENBQUM7O3lEQUNyQjtBQUVwQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7Z0VBQ2U7QUFFM0I7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OytEQUNjO0FBRTFCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztvRUFDbUI7QUFFL0I7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzJEQUNVO0FBRXRCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzs0REFDVztBQUV2QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7Z0VBQ2lCO0FBSTdCO0lBSEMsSUFBQSx1QkFBUyxFQUFDO1FBQ1Asc0JBQXNCLEVBQUUsRUFBRSxzQkFBc0IsRUFBRSxNQUFNLEVBQUUsRUFBRSxJQUFJLEVBQUUsUUFBUTtLQUM3RSxDQUFDOzs2REFDc0I7QUFFeEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzhEQUNhOytCQXBCaEIsb0JBQW9CO0lBRGhDLElBQUEsbUJBQUssRUFBQyxzQkFBc0IsQ0FBQztHQUNqQixvQkFBb0IsQ0FzQmhDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgYXR0cmlidXRlLCBhdXRvR2VuZXJhdGVkSGFzaEtleSwgdGFibGUgfSBmcm9tIFwiQG5vdmEtb2RtL2Fubm90YXRpb25zXCI7XG5pbXBvcnQgeyBCYXNlTW9kZWwgfSBmcm9tIFwiLi4vLi4vYmFzZS1tb2RlbFwiO1xuXG5cbkB0YWJsZShcIkV2ZW50RXhlY3V0aXZlc1RhYmxlXCIpXG5leHBvcnQgY2xhc3MgRXZlbnRFeGVjdXRpdmVzTW9kZWwgZXh0ZW5kcyBCYXNlTW9kZWwge1xuICAgIEBhdXRvR2VuZXJhdGVkSGFzaEtleSh7IHR5cGU6ICdTdHJpbmcnIH0pXG4gICAgZXhlY3V0aXZlSWQ6IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICBleGVjdXRpdmVGaXJzdE5hbWU6IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICBleGVjdXRpdmVMYXN0TmFtZTogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGV4ZWN1dGl2ZUNvbnRhY3ROdW1iZXI6IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICBleGVjdXRpdmVNYWlsOiBzdHJpbmc7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZXhlY3V0aXZlSW1hZ2U6IHN0cmluZztcbiAgICBAYXR0cmlidXRlKClcbiAgICBleGVjdXRpdmVEb2N1bWVudHM6IHN0cmluZ1tdO1xuICAgIEBhdHRyaWJ1dGUoe1xuICAgICAgICBpbmRleEtleUNvbmZpZ3VyYXRpb25zOiB7IFwiZXhlY3V0aXZlQWN0aXZlSW5kZXhcIjogXCJIQVNIXCIgfSwgdHlwZTogJ1N0cmluZydcbiAgICB9KVxuICAgIGV4ZWN1dGl2ZUFjdGl2ZTogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGV4ZWN1dGl2ZUFkZHJlc3M6IHN0cmluZztcblxufSJdfQ==
|