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.Fields = exports.LsqCrmModel = void 0;
|
|
10
13
|
const annotations_1 = require("@nova-odm/annotations");
|
|
@@ -13,34 +16,44 @@ let LsqCrmModel = class LsqCrmModel extends base_model_1.BaseModel {
|
|
|
13
16
|
};
|
|
14
17
|
exports.LsqCrmModel = LsqCrmModel;
|
|
15
18
|
__decorate([
|
|
16
|
-
(0, annotations_1.autoGeneratedHashKey)({ type: "String" })
|
|
19
|
+
(0, annotations_1.autoGeneratedHashKey)({ type: "String" }),
|
|
20
|
+
__metadata("design:type", String)
|
|
17
21
|
], LsqCrmModel.prototype, "leadCrmId", void 0);
|
|
18
22
|
__decorate([
|
|
19
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "userIndex": "HASH" }, type: 'String' })
|
|
23
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "userIndex": "HASH" }, type: 'String' }),
|
|
24
|
+
__metadata("design:type", String)
|
|
20
25
|
], LsqCrmModel.prototype, "userId", void 0);
|
|
21
26
|
__decorate([
|
|
22
|
-
(0, annotations_1.attribute)()
|
|
27
|
+
(0, annotations_1.attribute)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
23
29
|
], LsqCrmModel.prototype, "relatedProspectId", void 0);
|
|
24
30
|
__decorate([
|
|
25
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "activityEventIndex": "HASH" }, type: 'Number' })
|
|
31
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "activityEventIndex": "HASH" }, type: 'Number' }),
|
|
32
|
+
__metadata("design:type", String)
|
|
26
33
|
], LsqCrmModel.prototype, "activityEvent", void 0);
|
|
27
34
|
__decorate([
|
|
28
|
-
(0, annotations_1.attribute)()
|
|
35
|
+
(0, annotations_1.attribute)(),
|
|
36
|
+
__metadata("design:type", String)
|
|
29
37
|
], LsqCrmModel.prototype, "activityNote", void 0);
|
|
30
38
|
__decorate([
|
|
31
|
-
(0, annotations_1.attribute)()
|
|
39
|
+
(0, annotations_1.attribute)(),
|
|
40
|
+
__metadata("design:type", String)
|
|
32
41
|
], LsqCrmModel.prototype, "processFilesAsync", void 0);
|
|
33
42
|
__decorate([
|
|
34
|
-
(0, annotations_1.attribute)()
|
|
43
|
+
(0, annotations_1.attribute)(),
|
|
44
|
+
__metadata("design:type", String)
|
|
35
45
|
], LsqCrmModel.prototype, "activityDateTime", void 0);
|
|
36
46
|
__decorate([
|
|
37
|
-
(0, annotations_1.attribute)()
|
|
47
|
+
(0, annotations_1.attribute)(),
|
|
48
|
+
__metadata("design:type", Array)
|
|
38
49
|
], LsqCrmModel.prototype, "Fields", void 0);
|
|
39
50
|
__decorate([
|
|
40
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "phoneNumberIndex": "HASH" }, type: 'String' })
|
|
51
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "phoneNumberIndex": "HASH" }, type: 'String' }),
|
|
52
|
+
__metadata("design:type", String)
|
|
41
53
|
], LsqCrmModel.prototype, "phoneNumber", void 0);
|
|
42
54
|
__decorate([
|
|
43
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "updateLsqIndex": "HASH" }, type: 'String' })
|
|
55
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "updateLsqIndex": "HASH" }, type: 'String' }),
|
|
56
|
+
__metadata("design:type", String)
|
|
44
57
|
], LsqCrmModel.prototype, "updatedLsq", void 0);
|
|
45
58
|
exports.LsqCrmModel = LsqCrmModel = __decorate([
|
|
46
59
|
(0, annotations_1.table)("LsqCrmTable")
|
|
@@ -49,9 +62,11 @@ class Fields {
|
|
|
49
62
|
}
|
|
50
63
|
exports.Fields = Fields;
|
|
51
64
|
__decorate([
|
|
52
|
-
(0, annotations_1.attribute)()
|
|
65
|
+
(0, annotations_1.attribute)(),
|
|
66
|
+
__metadata("design:type", String)
|
|
53
67
|
], Fields.prototype, "schemaName", void 0);
|
|
54
68
|
__decorate([
|
|
55
|
-
(0, annotations_1.attribute)()
|
|
69
|
+
(0, annotations_1.attribute)(),
|
|
70
|
+
__metadata("design:type", String)
|
|
56
71
|
], Fields.prototype, "value", void 0);
|
|
57
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
72
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibHNxLWNybS1tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jdXN0b21lci11c2VyL2xzcS1jcm0tYWN0aXZpdHkvbHNxLWNybS1tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7QUFBQSx1REFBK0U7QUFDL0UsaURBQTZDO0FBSXRDLElBQU0sV0FBVyxHQUFqQixNQUFNLFdBQVksU0FBUSxzQkFBUztDQThCekMsQ0FBQTtBQTlCWSxrQ0FBVztBQUVwQjtJQURDLElBQUEsa0NBQW9CLEVBQUMsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLENBQUM7OzhDQUN2QjtBQUdsQjtJQURDLElBQUEsdUJBQVMsRUFBQyxFQUFFLHNCQUFzQixFQUFFLEVBQUUsV0FBVyxFQUFFLE1BQU0sRUFBRSxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsQ0FBQzs7MkNBQ2hFO0FBR2Y7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3NEQUNjO0FBRzFCO0lBREMsSUFBQSx1QkFBUyxFQUFDLEVBQUUsc0JBQXNCLEVBQUUsRUFBRSxvQkFBb0IsRUFBRSxNQUFNLEVBQUUsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLENBQUM7O2tEQUNsRTtBQUd0QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7aURBQ1M7QUFHckI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3NEQUNjO0FBRzFCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztxREFDYTtBQUd6QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7MkNBQ0s7QUFHakI7SUFEQyxJQUFBLHVCQUFTLEVBQUMsRUFBRSxzQkFBc0IsRUFBRSxFQUFFLGtCQUFrQixFQUFFLE1BQU0sRUFBRSxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsQ0FBQzs7Z0RBQ2xFO0FBR3BCO0lBREMsSUFBQSx1QkFBUyxFQUFDLEVBQUUsc0JBQXNCLEVBQUUsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLEVBQUUsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLENBQUM7OytDQUNqRTtzQkE3QlYsV0FBVztJQUR2QixJQUFBLG1CQUFLLEVBQUMsYUFBYSxDQUFDO0dBQ1IsV0FBVyxDQThCdkI7QUFFRCxNQUFhLE1BQU07Q0FLbEI7QUFMRCx3QkFLQztBQUhHO0lBREMsSUFBQSx1QkFBUyxHQUFFOzswQ0FDTztBQUVuQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7cUNBQ0UiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBhdHRyaWJ1dGUsIGF1dG9HZW5lcmF0ZWRIYXNoS2V5LCB0YWJsZSB9IGZyb20gXCJAbm92YS1vZG0vYW5ub3RhdGlvbnNcIjtcbmltcG9ydCB7IEJhc2VNb2RlbCB9IGZyb20gXCIuLi8uLi9iYXNlLW1vZGVsXCI7XG5cblxuQHRhYmxlKFwiTHNxQ3JtVGFibGVcIilcbmV4cG9ydCBjbGFzcyBMc3FDcm1Nb2RlbCBleHRlbmRzIEJhc2VNb2RlbCB7XG4gICAgQGF1dG9HZW5lcmF0ZWRIYXNoS2V5KHsgdHlwZTogXCJTdHJpbmdcIiB9KVxuICAgIGxlYWRDcm1JZDogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSh7IGluZGV4S2V5Q29uZmlndXJhdGlvbnM6IHsgXCJ1c2VySW5kZXhcIjogXCJIQVNIXCIgfSwgdHlwZTogJ1N0cmluZycgfSlcbiAgICB1c2VySWQ6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHJlbGF0ZWRQcm9zcGVjdElkOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKHsgaW5kZXhLZXlDb25maWd1cmF0aW9uczogeyBcImFjdGl2aXR5RXZlbnRJbmRleFwiOiBcIkhBU0hcIiB9LCB0eXBlOiAnTnVtYmVyJyB9KVxuICAgIGFjdGl2aXR5RXZlbnQ6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGFjdGl2aXR5Tm90ZTogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcHJvY2Vzc0ZpbGVzQXN5bmM6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGFjdGl2aXR5RGF0ZVRpbWU6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIEZpZWxkczogRmllbGRzW107XG5cbiAgICBAYXR0cmlidXRlKHsgaW5kZXhLZXlDb25maWd1cmF0aW9uczogeyBcInBob25lTnVtYmVySW5kZXhcIjogXCJIQVNIXCIgfSwgdHlwZTogJ1N0cmluZycgfSlcbiAgICBwaG9uZU51bWJlcjogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSh7IGluZGV4S2V5Q29uZmlndXJhdGlvbnM6IHsgXCJ1cGRhdGVMc3FJbmRleFwiOiBcIkhBU0hcIiB9LCB0eXBlOiAnU3RyaW5nJyB9KVxuICAgIHVwZGF0ZWRMc3E6IHN0cmluZztcbn1cblxuZXhwb3J0IGNsYXNzIEZpZWxkcyB7XG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgc2NoZW1hTmFtZTogc3RyaW5nO1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHZhbHVlOiBzdHJpbmc7XG59Il19
|
|
@@ -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.OccasionModel = void 0;
|
|
10
13
|
const annotations_1 = require("@nova-odm/annotations");
|
|
@@ -13,22 +16,28 @@ let OccasionModel = class OccasionModel extends base_model_1.BaseModel {
|
|
|
13
16
|
};
|
|
14
17
|
exports.OccasionModel = OccasionModel;
|
|
15
18
|
__decorate([
|
|
16
|
-
(0, annotations_1.autoGeneratedHashKey)({ type: "String" })
|
|
19
|
+
(0, annotations_1.autoGeneratedHashKey)({ type: "String" }),
|
|
20
|
+
__metadata("design:type", String)
|
|
17
21
|
], OccasionModel.prototype, "occasionId", void 0);
|
|
18
22
|
__decorate([
|
|
19
|
-
(0, annotations_1.attribute)()
|
|
23
|
+
(0, annotations_1.attribute)(),
|
|
24
|
+
__metadata("design:type", String)
|
|
20
25
|
], OccasionModel.prototype, "occasionName", void 0);
|
|
21
26
|
__decorate([
|
|
22
|
-
(0, annotations_1.attribute)()
|
|
27
|
+
(0, annotations_1.attribute)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
23
29
|
], OccasionModel.prototype, "occasionImageUrl", void 0);
|
|
24
30
|
__decorate([
|
|
25
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "categoryIndex": "HASH" }, type: 'String' })
|
|
31
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "categoryIndex": "HASH" }, type: 'String' }),
|
|
32
|
+
__metadata("design:type", String)
|
|
26
33
|
], OccasionModel.prototype, "category", void 0);
|
|
27
34
|
__decorate([
|
|
28
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "occasionStatusIndex": "RANGE" }, type: 'String' })
|
|
35
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "occasionStatusIndex": "RANGE" }, type: 'String' }),
|
|
36
|
+
__metadata("design:type", String)
|
|
29
37
|
], OccasionModel.prototype, "occasionStatus", void 0);
|
|
30
38
|
__decorate([
|
|
31
|
-
(0, annotations_1.attribute)()
|
|
39
|
+
(0, annotations_1.attribute)(),
|
|
40
|
+
__metadata("design:type", Array)
|
|
32
41
|
], OccasionModel.prototype, "filterCategory", void 0);
|
|
33
42
|
exports.OccasionModel = OccasionModel = __decorate([
|
|
34
43
|
(0, annotations_1.table)("OccasionEventTable")
|
|
@@ -90,4 +99,4 @@ exports.OccasionModel = OccasionModel = __decorate([
|
|
|
90
99
|
// "WEDDING_CEREMONIES"
|
|
91
100
|
// ]
|
|
92
101
|
// }
|
|
93
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
102
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2NjYXNpb24tbW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvY3VzdG9tZXItdXNlci9vY2Nhc3Rpb24vb2NjYXNpb24tbW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7O0FBQUEsdURBQStFO0FBQy9FLGlEQUE2QztBQUl0QyxJQUFNLGFBQWEsR0FBbkIsTUFBTSxhQUFjLFNBQVEsc0JBQVM7Q0FrQjNDLENBQUE7QUFsQlksc0NBQWE7QUFFdEI7SUFEQyxJQUFBLGtDQUFvQixFQUFDLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxDQUFDOztpREFDdEI7QUFHbkI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O21EQUNTO0FBR3JCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzt1REFDYTtBQUd6QjtJQURDLElBQUEsdUJBQVMsRUFBQyxFQUFFLHNCQUFzQixFQUFFLEVBQUUsZUFBZSxFQUFFLE1BQU0sRUFBRSxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsQ0FBQzs7K0NBQ2xFO0FBR2pCO0lBREMsSUFBQSx1QkFBUyxFQUFDLEVBQUUsc0JBQXNCLEVBQUUsRUFBRSxxQkFBcUIsRUFBRSxPQUFPLEVBQUUsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLENBQUM7O3FEQUNuRTtBQUd2QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7cURBQ2E7d0JBakJoQixhQUFhO0lBRHpCLElBQUEsbUJBQUssRUFBQyxvQkFBb0IsQ0FBQztHQUNmLGFBQWEsQ0FrQnpCO0FBRUQsNkJBQTZCO0FBQzdCLElBQUk7QUFDSix5QkFBeUI7QUFDekIsa0NBQWtDO0FBQ2xDLDBDQUEwQztBQUMxQyw2QkFBNkI7QUFDN0IsU0FBUztBQUNULHVCQUF1QjtBQUN2QixpQ0FBaUM7QUFDakMsU0FBUztBQUNULDBCQUEwQjtBQUMxQixrQ0FBa0M7QUFDbEMsdUNBQXVDO0FBQ3ZDLDZCQUE2QjtBQUM3QixTQUFTO0FBQ1QsNEJBQTRCO0FBQzVCLGlDQUFpQztBQUNqQyxTQUFTO0FBQ1QsK0JBQStCO0FBQy9CLGtDQUFrQztBQUNsQyx1Q0FBdUM7QUFDdkMseUNBQXlDO0FBQ3pDLFNBQVM7QUFDVCwwQkFBMEI7QUFDMUIsaUNBQWlDO0FBQ2pDLFNBQVM7QUFDVCx1QkFBdUI7QUFDdkIsa0NBQWtDO0FBQ2xDLHNDQUFzQztBQUN0QyxTQUFTO0FBQ1Qsc0JBQXNCO0FBQ3RCLGtDQUFrQztBQUNsQyw2QkFBNkI7QUFDN0IsU0FBUztBQUNULHFCQUFxQjtBQUNyQixrQ0FBa0M7QUFDbEMsMENBQTBDO0FBQzFDLDZCQUE2QjtBQUM3QixTQUFTO0FBQ1QscUJBQXFCO0FBQ3JCLHNDQUFzQztBQUN0QyxTQUFTO0FBQ1QsNEJBQTRCO0FBQzVCLHNDQUFzQztBQUN0QyxTQUFTO0FBQ1QsZ0JBQWdCO0FBQ2hCLHlDQUF5QztBQUN6QyxTQUFTO0FBQ1QsbUJBQW1CO0FBQ25CLDBDQUEwQztBQUMxQyw2QkFBNkI7QUFDN0IsU0FBUztBQUNULGlCQUFpQjtBQUNqQiwwQ0FBMEM7QUFDMUMsNkJBQTZCO0FBQzdCLFFBQVE7QUFDUixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgYXR0cmlidXRlLCBhdXRvR2VuZXJhdGVkSGFzaEtleSwgdGFibGUgfSBmcm9tIFwiQG5vdmEtb2RtL2Fubm90YXRpb25zXCI7XG5pbXBvcnQgeyBCYXNlTW9kZWwgfSBmcm9tIFwiLi4vLi4vYmFzZS1tb2RlbFwiO1xuXG5cbkB0YWJsZShcIk9jY2FzaW9uRXZlbnRUYWJsZVwiKVxuZXhwb3J0IGNsYXNzIE9jY2FzaW9uTW9kZWwgZXh0ZW5kcyBCYXNlTW9kZWwge1xuICAgIEBhdXRvR2VuZXJhdGVkSGFzaEtleSh7IHR5cGU6IFwiU3RyaW5nXCIgfSlcbiAgICBvY2Nhc2lvbklkOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBvY2Nhc2lvbk5hbWU6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIG9jY2FzaW9uSW1hZ2VVcmw6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoeyBpbmRleEtleUNvbmZpZ3VyYXRpb25zOiB7IFwiY2F0ZWdvcnlJbmRleFwiOiBcIkhBU0hcIiB9LCB0eXBlOiAnU3RyaW5nJyB9KVxuICAgIGNhdGVnb3J5OiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKHsgaW5kZXhLZXlDb25maWd1cmF0aW9uczogeyBcIm9jY2FzaW9uU3RhdHVzSW5kZXhcIjogXCJSQU5HRVwiIH0sIHR5cGU6ICdTdHJpbmcnIH0pXG4gICAgb2NjYXNpb25TdGF0dXM6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGZpbHRlckNhdGVnb3J5OiBzdHJpbmdbXTsgLy8gVjJcbn1cblxuLy8gZm9yIGZpbHRlciBjYXRlZ29yeSB2YWx1ZXNcbi8vIHtcbi8vICAgICBcIkhvdXNlIFdhcm1pbmdcIjogW1xuLy8gICAgICAgXCJQQVJUWV9BTkRfQ0VMRUJSQVRJT05TXCIsXG4vLyAgICAgICBcIlBVSkFfQU5EX1RSQURJVElPTkFMX0ZFU1RJVkFMU1wiLFxuLy8gICAgICAgXCJXRURESU5HX0NFUkVNT05JRVNcIlxuLy8gICAgIF0sXG4vLyAgICAgXCJLaXR0eSBQYXJ0eVwiOiBbXG4vLyAgICAgICBcIlBBUlRZX0FORF9DRUxFQlJBVElPTlNcIlxuLy8gICAgIF0sXG4vLyAgICAgXCJDb2NrdGFpbCBQYXJ0eVwiOiBbXG4vLyAgICAgICBcIlBBUlRZX0FORF9DRUxFQlJBVElPTlNcIixcbi8vICAgICAgIFwiRk9STUFMX0FORF9DT1JQT1JBVEVfRVZFTlRTXCIsXG4vLyAgICAgICBcIldFRERJTkdfQ0VSRU1PTklFU1wiXG4vLyAgICAgXSxcbi8vICAgICBcIkZhcm0gSG91c2UgUGFydHlcIjogW1xuLy8gICAgICAgXCJQQVJUWV9BTkRfQ0VMRUJSQVRJT05TXCJcbi8vICAgICBdLFxuLy8gICAgIFwiRmFtaWx5IEdldC1Ub2dldGhlclwiOiBbXG4vLyAgICAgICBcIlBBUlRZX0FORF9DRUxFQlJBVElPTlNcIixcbi8vICAgICAgIFwiRk9STUFMX0FORF9DT1JQT1JBVEVfRVZFTlRTXCIsXG4vLyAgICAgICBcIlBVSkFfQU5EX1RSQURJVElPTkFMX0ZFU1RJVkFMU1wiXG4vLyAgICAgXSxcbi8vICAgICBcIkJpcnRoZGF5IFBhcnR5XCI6IFtcbi8vICAgICAgIFwiUEFSVFlfQU5EX0NFTEVCUkFUSU9OU1wiXG4vLyAgICAgXSxcbi8vICAgICBcIkhvdXNlIFBhcnR5XCI6IFtcbi8vICAgICAgIFwiUEFSVFlfQU5EX0NFTEVCUkFUSU9OU1wiLFxuLy8gICAgICAgXCJGT1JNQUxfQU5EX0NPUlBPUkFURV9FVkVOVFNcIlxuLy8gICAgIF0sXG4vLyAgICAgXCJFbmdhZ2VtZW50XCI6IFtcbi8vICAgICAgIFwiUEFSVFlfQU5EX0NFTEVCUkFUSU9OU1wiLFxuLy8gICAgICAgXCJXRURESU5HX0NFUkVNT05JRVNcIlxuLy8gICAgIF0sXG4vLyAgICAgXCJSZWNlcHRpb25cIjogW1xuLy8gICAgICAgXCJQQVJUWV9BTkRfQ0VMRUJSQVRJT05TXCIsXG4vLyAgICAgICBcIlBVSkFfQU5EX1RSQURJVElPTkFMX0ZFU1RJVkFMU1wiLFxuLy8gICAgICAgXCJXRURESU5HX0NFUkVNT05JRVNcIlxuLy8gICAgIF0sXG4vLyAgICAgXCJXb3Jrc2hvcHNcIjogW1xuLy8gICAgICAgXCJGT1JNQUxfQU5EX0NPUlBPUkFURV9FVkVOVFNcIlxuLy8gICAgIF0sXG4vLyAgICAgXCJDb3Jwb3JhdGUgRXZlbnRzXCI6IFtcbi8vICAgICAgIFwiRk9STUFMX0FORF9DT1JQT1JBVEVfRVZFTlRTXCJcbi8vICAgICBdLFxuLy8gICAgIFwiUHVqYVwiOiBbXG4vLyAgICAgICBcIlBVSkFfQU5EX1RSQURJVElPTkFMX0ZFU1RJVkFMU1wiXG4vLyAgICAgXSxcbi8vICAgICBcIldlZGRpbmdcIjogW1xuLy8gICAgICAgXCJQVUpBX0FORF9UUkFESVRJT05BTF9GRVNUSVZBTFNcIixcbi8vICAgICAgIFwiV0VERElOR19DRVJFTU9OSUVTXCJcbi8vICAgICBdLFxuLy8gICAgIFwiSGFsZGlcIjogW1xuLy8gICAgICAgXCJQVUpBX0FORF9UUkFESVRJT05BTF9GRVNUSVZBTFNcIixcbi8vICAgICAgIFwiV0VERElOR19DRVJFTU9OSUVTXCJcbi8vICAgICBdXG4vLyAgIH1cbiJdfQ==
|
|
@@ -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.AddressModel = void 0;
|
|
10
13
|
const annotations_1 = require("@nova-odm/annotations");
|
|
@@ -13,60 +16,78 @@ let AddressModel = class AddressModel extends base_model_1.BaseModel {
|
|
|
13
16
|
};
|
|
14
17
|
exports.AddressModel = AddressModel;
|
|
15
18
|
__decorate([
|
|
16
|
-
(0, annotations_1.autoGeneratedHashKey)({ type: "String" })
|
|
19
|
+
(0, annotations_1.autoGeneratedHashKey)({ type: "String" }),
|
|
20
|
+
__metadata("design:type", String)
|
|
17
21
|
], AddressModel.prototype, "addressId", void 0);
|
|
18
22
|
__decorate([
|
|
19
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "userIndex": "HASH" }, type: 'String' })
|
|
23
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "userIndex": "HASH" }, type: 'String' }),
|
|
24
|
+
__metadata("design:type", String)
|
|
20
25
|
], AddressModel.prototype, "userId", void 0);
|
|
21
26
|
__decorate([
|
|
22
|
-
(0, annotations_1.attribute)()
|
|
27
|
+
(0, annotations_1.attribute)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
23
29
|
], AddressModel.prototype, "label", void 0);
|
|
24
30
|
__decorate([
|
|
25
|
-
(0, annotations_1.attribute)()
|
|
31
|
+
(0, annotations_1.attribute)(),
|
|
32
|
+
__metadata("design:type", String)
|
|
26
33
|
], AddressModel.prototype, "labelName", void 0);
|
|
27
34
|
__decorate([
|
|
28
|
-
(0, annotations_1.attribute)()
|
|
35
|
+
(0, annotations_1.attribute)(),
|
|
36
|
+
__metadata("design:type", String)
|
|
29
37
|
], AddressModel.prototype, "link", void 0);
|
|
30
38
|
__decorate([
|
|
31
|
-
(0, annotations_1.attribute)()
|
|
39
|
+
(0, annotations_1.attribute)(),
|
|
40
|
+
__metadata("design:type", String)
|
|
32
41
|
], AddressModel.prototype, "addressLine1", void 0);
|
|
33
42
|
__decorate([
|
|
34
|
-
(0, annotations_1.attribute)()
|
|
43
|
+
(0, annotations_1.attribute)(),
|
|
44
|
+
__metadata("design:type", String)
|
|
35
45
|
], AddressModel.prototype, "addressLine2", void 0);
|
|
36
46
|
__decorate([
|
|
37
|
-
(0, annotations_1.attribute)()
|
|
47
|
+
(0, annotations_1.attribute)(),
|
|
48
|
+
__metadata("design:type", String)
|
|
38
49
|
], AddressModel.prototype, "addressLine3", void 0);
|
|
39
50
|
__decorate([
|
|
40
|
-
(0, annotations_1.attribute)()
|
|
51
|
+
(0, annotations_1.attribute)(),
|
|
52
|
+
__metadata("design:type", String)
|
|
41
53
|
], AddressModel.prototype, "pincode", void 0);
|
|
42
54
|
__decorate([
|
|
43
|
-
(0, annotations_1.attribute)()
|
|
55
|
+
(0, annotations_1.attribute)(),
|
|
56
|
+
__metadata("design:type", String)
|
|
44
57
|
], AddressModel.prototype, "city", void 0);
|
|
45
58
|
__decorate([
|
|
46
|
-
(0, annotations_1.attribute)()
|
|
59
|
+
(0, annotations_1.attribute)(),
|
|
60
|
+
__metadata("design:type", String)
|
|
47
61
|
], AddressModel.prototype, "state", void 0);
|
|
48
62
|
__decorate([
|
|
49
|
-
(0, annotations_1.attribute)()
|
|
63
|
+
(0, annotations_1.attribute)(),
|
|
64
|
+
__metadata("design:type", Number)
|
|
50
65
|
], AddressModel.prototype, "latitude", void 0);
|
|
51
66
|
__decorate([
|
|
52
|
-
(0, annotations_1.attribute)()
|
|
67
|
+
(0, annotations_1.attribute)(),
|
|
68
|
+
__metadata("design:type", Number)
|
|
53
69
|
], AddressModel.prototype, "longitude", void 0);
|
|
54
70
|
__decorate([
|
|
55
|
-
(0, annotations_1.attribute)()
|
|
71
|
+
(0, annotations_1.attribute)(),
|
|
72
|
+
__metadata("design:type", String)
|
|
56
73
|
], AddressModel.prototype, "landmark", void 0);
|
|
57
74
|
__decorate([
|
|
58
|
-
(0, annotations_1.attribute)()
|
|
75
|
+
(0, annotations_1.attribute)(),
|
|
76
|
+
__metadata("design:type", String)
|
|
59
77
|
], AddressModel.prototype, "type", void 0);
|
|
60
78
|
__decorate([
|
|
61
|
-
(0, annotations_1.attribute)()
|
|
79
|
+
(0, annotations_1.attribute)(),
|
|
80
|
+
__metadata("design:type", String)
|
|
62
81
|
], AddressModel.prototype, "instructions", void 0);
|
|
63
82
|
__decorate([
|
|
64
|
-
(0, annotations_1.attribute)()
|
|
83
|
+
(0, annotations_1.attribute)(),
|
|
84
|
+
__metadata("design:type", String)
|
|
65
85
|
], AddressModel.prototype, "receiverName", void 0);
|
|
66
86
|
__decorate([
|
|
67
|
-
(0, annotations_1.attribute)()
|
|
87
|
+
(0, annotations_1.attribute)(),
|
|
88
|
+
__metadata("design:type", String)
|
|
68
89
|
], AddressModel.prototype, "receiverPhone", void 0);
|
|
69
90
|
exports.AddressModel = AddressModel = __decorate([
|
|
70
91
|
(0, annotations_1.table)("AddressTable")
|
|
71
92
|
], AddressModel);
|
|
72
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
93
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWRkcmVzcy1tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9jdXN0b21lci11c2VyL29yZGVyLW1vZHVsZS9hZGRyZXNzL2FkZHJlc3MtbW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7O0FBQUEsdURBQStFO0FBQy9FLG9EQUFnRDtBQUl6QyxJQUFNLFlBQVksR0FBbEIsTUFBTSxZQUFhLFNBQVEsc0JBQVM7Q0F1RDFDLENBQUE7QUF2RFksb0NBQVk7QUFHckI7SUFEQyxJQUFBLGtDQUFvQixFQUFDLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxDQUFDOzsrQ0FDdkI7QUFHbEI7SUFEQyxJQUFBLHVCQUFTLEVBQUMsRUFBRSxzQkFBc0IsRUFBRSxFQUFFLFdBQVcsRUFBRSxNQUFNLEVBQUUsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLENBQUM7OzRDQUNoRTtBQUdmO0lBREMsSUFBQSx1QkFBUyxHQUFFOzsyQ0FDRTtBQUdkO0lBREMsSUFBQSx1QkFBUyxHQUFFOzsrQ0FDTTtBQUdsQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7MENBQ0M7QUFHYjtJQURDLElBQUEsdUJBQVMsR0FBRTs7a0RBQ1M7QUFHckI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O2tEQUNTO0FBR3JCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztrREFDUztBQUdyQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7NkNBQ0k7QUFHaEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzBDQUNDO0FBR2I7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzJDQUNFO0FBR2Q7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzhDQUNLO0FBR2pCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzsrQ0FDTTtBQUdsQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7OENBQ0s7QUFHakI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzBDQUNDO0FBR2I7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O2tEQUNTO0FBR3JCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztrREFDVTtBQUd0QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7bURBQ1c7dUJBdERkLFlBQVk7SUFEeEIsSUFBQSxtQkFBSyxFQUFDLGNBQWMsQ0FBQztHQUNULFlBQVksQ0F1RHhCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgYXR0cmlidXRlLCBhdXRvR2VuZXJhdGVkSGFzaEtleSwgdGFibGUgfSBmcm9tIFwiQG5vdmEtb2RtL2Fubm90YXRpb25zXCI7XG5pbXBvcnQgeyBCYXNlTW9kZWwgfSBmcm9tIFwiLi4vLi4vLi4vYmFzZS1tb2RlbFwiO1xuXG5cbkB0YWJsZShcIkFkZHJlc3NUYWJsZVwiKVxuZXhwb3J0IGNsYXNzIEFkZHJlc3NNb2RlbCBleHRlbmRzIEJhc2VNb2RlbCB7XG5cbiAgICBAYXV0b0dlbmVyYXRlZEhhc2hLZXkoeyB0eXBlOiBcIlN0cmluZ1wiIH0pXG4gICAgYWRkcmVzc0lkOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKHsgaW5kZXhLZXlDb25maWd1cmF0aW9uczogeyBcInVzZXJJbmRleFwiOiBcIkhBU0hcIiB9LCB0eXBlOiAnU3RyaW5nJyB9KVxuICAgIHVzZXJJZDogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgbGFiZWw6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGxhYmVsTmFtZTogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgbGluazogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgYWRkcmVzc0xpbmUxOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBhZGRyZXNzTGluZTI6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGFkZHJlc3NMaW5lMzogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcGluY29kZTogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgY2l0eTogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgc3RhdGU6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGxhdGl0dWRlOiBudW1iZXI7IC8vIEdlb2dyYXBoaWNhbCBsYXRpdHVkZVxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgbG9uZ2l0dWRlOiBudW1iZXI7IC8vIEdlb2dyYXBoaWNhbCBsb25naXR1ZGVcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGxhbmRtYXJrOiBzdHJpbmc7IC8vIE5lYXJieSBsYW5kbWFyayBvciBwb2ludCBvZiBpbnRlcmVzdFxuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgdHlwZTogc3RyaW5nOyAvLyBUeXBlIG9mIGxvY2F0aW9uIChlLmcuLCBcIkhvbWVcIiwgXCJXb3JrXCIsIFwiT3RoZXJcIilcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGluc3RydWN0aW9uczogc3RyaW5nOyAvLyBTcGVjaWFsIGRlbGl2ZXJ5IGluc3RydWN0aW9uc1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcmVjZWl2ZXJOYW1lPzogc3RyaW5nOyAvLyBOYW1lIG9mIHRoZSByZWNlaXZlciAtIHYyXG5cbiAgICBAYXR0cmlidXRlKClcbiAgICByZWNlaXZlclBob25lPzogc3RyaW5nOyAvLyBQaG9uZSBudW1iZXIgb2YgdGhlIHJlY2VpdmVyIC0gdjJcbn1cbiJdfQ==
|
|
@@ -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.UserAddressRequestModel = void 0;
|
|
10
13
|
const annotations_1 = require("@nova-odm/annotations");
|
|
@@ -13,33 +16,42 @@ let UserAddressRequestModel = class UserAddressRequestModel extends base_model_1
|
|
|
13
16
|
};
|
|
14
17
|
exports.UserAddressRequestModel = UserAddressRequestModel;
|
|
15
18
|
__decorate([
|
|
16
|
-
(0, annotations_1.autoGeneratedHashKey)({ type: "String" })
|
|
19
|
+
(0, annotations_1.autoGeneratedHashKey)({ type: "String" }),
|
|
20
|
+
__metadata("design:type", String)
|
|
17
21
|
], UserAddressRequestModel.prototype, "requestedId", void 0);
|
|
18
22
|
__decorate([
|
|
19
|
-
(0, annotations_1.attribute)({ indexKeyConfigurations: { "userIndex": "HASH" }, type: 'String' })
|
|
23
|
+
(0, annotations_1.attribute)({ indexKeyConfigurations: { "userIndex": "HASH" }, type: 'String' }),
|
|
24
|
+
__metadata("design:type", String)
|
|
20
25
|
], UserAddressRequestModel.prototype, "userId", void 0);
|
|
21
26
|
__decorate([
|
|
22
|
-
(0, annotations_1.attribute)()
|
|
27
|
+
(0, annotations_1.attribute)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
23
29
|
], UserAddressRequestModel.prototype, "fullAddress", void 0);
|
|
24
30
|
__decorate([
|
|
25
|
-
(0, annotations_1.attribute)()
|
|
31
|
+
(0, annotations_1.attribute)(),
|
|
32
|
+
__metadata("design:type", String)
|
|
26
33
|
], UserAddressRequestModel.prototype, "city", void 0);
|
|
27
34
|
__decorate([
|
|
28
|
-
(0, annotations_1.attribute)()
|
|
35
|
+
(0, annotations_1.attribute)(),
|
|
36
|
+
__metadata("design:type", String)
|
|
29
37
|
], UserAddressRequestModel.prototype, "addressLink", void 0);
|
|
30
38
|
__decorate([
|
|
31
|
-
(0, annotations_1.attribute)()
|
|
39
|
+
(0, annotations_1.attribute)(),
|
|
40
|
+
__metadata("design:type", String)
|
|
32
41
|
], UserAddressRequestModel.prototype, "pincode", void 0);
|
|
33
42
|
__decorate([
|
|
34
|
-
(0, annotations_1.attribute)()
|
|
43
|
+
(0, annotations_1.attribute)(),
|
|
44
|
+
__metadata("design:type", String)
|
|
35
45
|
], UserAddressRequestModel.prototype, "state", void 0);
|
|
36
46
|
__decorate([
|
|
37
|
-
(0, annotations_1.attribute)()
|
|
47
|
+
(0, annotations_1.attribute)(),
|
|
48
|
+
__metadata("design:type", Number)
|
|
38
49
|
], UserAddressRequestModel.prototype, "latitude", void 0);
|
|
39
50
|
__decorate([
|
|
40
|
-
(0, annotations_1.attribute)()
|
|
51
|
+
(0, annotations_1.attribute)(),
|
|
52
|
+
__metadata("design:type", Number)
|
|
41
53
|
], UserAddressRequestModel.prototype, "longitude", void 0);
|
|
42
54
|
exports.UserAddressRequestModel = UserAddressRequestModel = __decorate([
|
|
43
55
|
(0, annotations_1.table)("UserAddressRequestTable")
|
|
44
56
|
], UserAddressRequestModel);
|
|
45
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
57
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlci1hZGRyZXNzLXJlcXVlc3QtbW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvY3VzdG9tZXItdXNlci9vcmRlci1tb2R1bGUvYWRkcmVzcy91c2VyLWFkZHJlc3MtcmVxdWVzdC1tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7QUFBQSx1REFBK0U7QUFDL0Usb0RBQWdEO0FBSXpDLElBQU0sdUJBQXVCLEdBQTdCLE1BQU0sdUJBQXdCLFNBQVEsc0JBQVM7Q0E0QnJELENBQUE7QUE1QlksMERBQXVCO0FBR2hDO0lBREMsSUFBQSxrQ0FBb0IsRUFBQyxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsQ0FBQzs7NERBQ3JCO0FBR3BCO0lBREMsSUFBQSx1QkFBUyxFQUFDLEVBQUUsc0JBQXNCLEVBQUUsRUFBRSxXQUFXLEVBQUUsTUFBTSxFQUFFLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxDQUFDOzt1REFDaEU7QUFHZjtJQURDLElBQUEsdUJBQVMsR0FBRTs7NERBQ1E7QUFHcEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3FEQUNDO0FBR2I7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzREQUNRO0FBR3BCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzt3REFDSTtBQUdoQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7c0RBQ0U7QUFHZDtJQURDLElBQUEsdUJBQVMsR0FBRTs7eURBQ0s7QUFHakI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzBEQUNNO2tDQTNCVCx1QkFBdUI7SUFEbkMsSUFBQSxtQkFBSyxFQUFDLHlCQUF5QixDQUFDO0dBQ3BCLHVCQUF1QixDQTRCbkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBhdHRyaWJ1dGUsIGF1dG9HZW5lcmF0ZWRIYXNoS2V5LCB0YWJsZSB9IGZyb20gXCJAbm92YS1vZG0vYW5ub3RhdGlvbnNcIjtcbmltcG9ydCB7IEJhc2VNb2RlbCB9IGZyb20gXCIuLi8uLi8uLi9iYXNlLW1vZGVsXCI7XG5cblxuQHRhYmxlKFwiVXNlckFkZHJlc3NSZXF1ZXN0VGFibGVcIilcbmV4cG9ydCBjbGFzcyBVc2VyQWRkcmVzc1JlcXVlc3RNb2RlbCBleHRlbmRzIEJhc2VNb2RlbCB7XG5cbiAgICBAYXV0b0dlbmVyYXRlZEhhc2hLZXkoeyB0eXBlOiBcIlN0cmluZ1wiIH0pXG4gICAgcmVxdWVzdGVkSWQ6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoeyBpbmRleEtleUNvbmZpZ3VyYXRpb25zOiB7IFwidXNlckluZGV4XCI6IFwiSEFTSFwiIH0sIHR5cGU6ICdTdHJpbmcnIH0pXG4gICAgdXNlcklkOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBmdWxsQWRkcmVzczogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgY2l0eTogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgYWRkcmVzc0xpbms6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHBpbmNvZGU6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHN0YXRlOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBsYXRpdHVkZTogbnVtYmVyOyAvLyBHZW9ncmFwaGljYWwgbGF0aXR1ZGVcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGxvbmdpdHVkZTogbnVtYmVyOyAvLyBHZW9ncmFwaGljYWwgbG9uZ2l0dWRlXG59XG4iXX0=
|
|
@@ -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.DeliveryFeesDetails = exports.OrderModel = void 0;
|
|
10
13
|
const annotations_1 = require("@nova-odm/annotations");
|
|
@@ -13,90 +16,118 @@ let OrderModel = class OrderModel extends base_model_1.BaseModel {
|
|
|
13
16
|
};
|
|
14
17
|
exports.OrderModel = OrderModel;
|
|
15
18
|
__decorate([
|
|
16
|
-
(0, annotations_1.autoGeneratedHashKey)({ type: "String" })
|
|
19
|
+
(0, annotations_1.autoGeneratedHashKey)({ type: "String" }),
|
|
20
|
+
__metadata("design:type", String)
|
|
17
21
|
], OrderModel.prototype, "orderId", void 0);
|
|
18
22
|
__decorate([
|
|
19
23
|
(0, annotations_1.attribute)({
|
|
20
24
|
indexKeyConfigurations: { "userIndex": "HASH" }, type: 'String'
|
|
21
|
-
})
|
|
25
|
+
}),
|
|
26
|
+
__metadata("design:type", String)
|
|
22
27
|
], OrderModel.prototype, "userId", void 0);
|
|
23
28
|
__decorate([
|
|
24
|
-
(0, annotations_1.attribute)()
|
|
29
|
+
(0, annotations_1.attribute)(),
|
|
30
|
+
__metadata("design:type", String)
|
|
25
31
|
], OrderModel.prototype, "orderStatus", void 0);
|
|
26
32
|
__decorate([
|
|
27
|
-
(0, annotations_1.attribute)()
|
|
33
|
+
(0, annotations_1.attribute)(),
|
|
34
|
+
__metadata("design:type", Number)
|
|
28
35
|
], OrderModel.prototype, "orderValue", void 0);
|
|
29
36
|
__decorate([
|
|
30
|
-
(0, annotations_1.attribute)()
|
|
37
|
+
(0, annotations_1.attribute)(),
|
|
38
|
+
__metadata("design:type", String)
|
|
31
39
|
], OrderModel.prototype, "razorpayOrderId", void 0);
|
|
32
40
|
__decorate([
|
|
33
|
-
(0, annotations_1.attribute)()
|
|
41
|
+
(0, annotations_1.attribute)(),
|
|
42
|
+
__metadata("design:type", Number)
|
|
34
43
|
], OrderModel.prototype, "discountAmount", void 0);
|
|
35
44
|
__decorate([
|
|
36
|
-
(0, annotations_1.attribute)()
|
|
45
|
+
(0, annotations_1.attribute)(),
|
|
46
|
+
__metadata("design:type", Number)
|
|
37
47
|
], OrderModel.prototype, "extraDiscount", void 0);
|
|
38
48
|
__decorate([
|
|
39
|
-
(0, annotations_1.attribute)()
|
|
49
|
+
(0, annotations_1.attribute)(),
|
|
50
|
+
__metadata("design:type", Number)
|
|
40
51
|
], OrderModel.prototype, "gstAmount", void 0);
|
|
41
52
|
__decorate([
|
|
42
|
-
(0, annotations_1.attribute)()
|
|
53
|
+
(0, annotations_1.attribute)(),
|
|
54
|
+
__metadata("design:type", String)
|
|
43
55
|
], OrderModel.prototype, "paymentType", void 0);
|
|
44
56
|
__decorate([
|
|
45
|
-
(0, annotations_1.attribute)()
|
|
57
|
+
(0, annotations_1.attribute)(),
|
|
58
|
+
__metadata("design:type", Number)
|
|
46
59
|
], OrderModel.prototype, "orderPlacedDate", void 0);
|
|
47
60
|
__decorate([
|
|
48
|
-
(0, annotations_1.attribute)({ type: 'Date' })
|
|
61
|
+
(0, annotations_1.attribute)({ type: 'Date' }),
|
|
62
|
+
__metadata("design:type", Date)
|
|
49
63
|
], OrderModel.prototype, "orderCompletedDate", void 0);
|
|
50
64
|
__decorate([
|
|
51
|
-
(0, annotations_1.attribute)()
|
|
65
|
+
(0, annotations_1.attribute)(),
|
|
66
|
+
__metadata("design:type", String)
|
|
52
67
|
], OrderModel.prototype, "couponId", void 0);
|
|
53
68
|
__decorate([
|
|
54
|
-
(0, annotations_1.attribute)()
|
|
69
|
+
(0, annotations_1.attribute)(),
|
|
70
|
+
__metadata("design:type", String)
|
|
55
71
|
], OrderModel.prototype, "couponCode", void 0);
|
|
56
72
|
__decorate([
|
|
57
|
-
(0, annotations_1.attribute)()
|
|
73
|
+
(0, annotations_1.attribute)(),
|
|
74
|
+
__metadata("design:type", String)
|
|
58
75
|
], OrderModel.prototype, "couponEligibilityType", void 0);
|
|
59
76
|
__decorate([
|
|
60
|
-
(0, annotations_1.attribute)()
|
|
77
|
+
(0, annotations_1.attribute)(),
|
|
78
|
+
__metadata("design:type", Number)
|
|
61
79
|
], OrderModel.prototype, "totalPriceWithoutCoupon", void 0);
|
|
62
80
|
__decorate([
|
|
63
|
-
(0, annotations_1.attribute)()
|
|
81
|
+
(0, annotations_1.attribute)(),
|
|
82
|
+
__metadata("design:type", Number)
|
|
64
83
|
], OrderModel.prototype, "dynamicPriceDiscount", void 0);
|
|
65
84
|
__decorate([
|
|
66
|
-
(0, annotations_1.attribute)()
|
|
85
|
+
(0, annotations_1.attribute)(),
|
|
86
|
+
__metadata("design:type", Number)
|
|
67
87
|
], OrderModel.prototype, "complimentaryDiscount", void 0);
|
|
68
88
|
__decorate([
|
|
69
|
-
(0, annotations_1.attribute)()
|
|
89
|
+
(0, annotations_1.attribute)(),
|
|
90
|
+
__metadata("design:type", Number)
|
|
70
91
|
], OrderModel.prototype, "totalSavedAmount", void 0);
|
|
71
92
|
__decorate([
|
|
72
|
-
(0, annotations_1.attribute)()
|
|
93
|
+
(0, annotations_1.attribute)(),
|
|
94
|
+
__metadata("design:type", Number)
|
|
73
95
|
], OrderModel.prototype, "rewardValue", void 0);
|
|
74
96
|
__decorate([
|
|
75
|
-
(0, annotations_1.attribute)()
|
|
97
|
+
(0, annotations_1.attribute)(),
|
|
98
|
+
__metadata("design:type", Number)
|
|
76
99
|
], OrderModel.prototype, "deliveryFees", void 0);
|
|
77
100
|
__decorate([
|
|
78
|
-
(0, annotations_1.attribute)()
|
|
101
|
+
(0, annotations_1.attribute)(),
|
|
102
|
+
__metadata("design:type", Number)
|
|
79
103
|
], OrderModel.prototype, "grandTotal", void 0);
|
|
80
104
|
__decorate([
|
|
81
|
-
(0, annotations_1.attribute)()
|
|
105
|
+
(0, annotations_1.attribute)(),
|
|
106
|
+
__metadata("design:type", String)
|
|
82
107
|
], OrderModel.prototype, "paymentStatus", void 0);
|
|
83
108
|
__decorate([
|
|
84
|
-
(0, annotations_1.attribute)()
|
|
109
|
+
(0, annotations_1.attribute)(),
|
|
110
|
+
__metadata("design:type", String)
|
|
85
111
|
], OrderModel.prototype, "paymentModeType", void 0);
|
|
86
112
|
__decorate([
|
|
87
|
-
(0, annotations_1.attribute)()
|
|
113
|
+
(0, annotations_1.attribute)(),
|
|
114
|
+
__metadata("design:type", String)
|
|
88
115
|
], OrderModel.prototype, "receiverName", void 0);
|
|
89
116
|
__decorate([
|
|
90
|
-
(0, annotations_1.attribute)()
|
|
117
|
+
(0, annotations_1.attribute)(),
|
|
118
|
+
__metadata("design:type", String)
|
|
91
119
|
], OrderModel.prototype, "receiverPhone", void 0);
|
|
92
120
|
__decorate([
|
|
93
|
-
(0, annotations_1.attribute)()
|
|
121
|
+
(0, annotations_1.attribute)(),
|
|
122
|
+
__metadata("design:type", Array)
|
|
94
123
|
], OrderModel.prototype, "deliveryFeesDetails", void 0);
|
|
95
124
|
__decorate([
|
|
96
|
-
(0, annotations_1.attribute)()
|
|
125
|
+
(0, annotations_1.attribute)(),
|
|
126
|
+
__metadata("design:type", Array)
|
|
97
127
|
], OrderModel.prototype, "assigneeIds", void 0);
|
|
98
128
|
__decorate([
|
|
99
|
-
(0, annotations_1.attribute)()
|
|
129
|
+
(0, annotations_1.attribute)(),
|
|
130
|
+
__metadata("design:type", String)
|
|
100
131
|
], OrderModel.prototype, "gstNumber", void 0);
|
|
101
132
|
exports.OrderModel = OrderModel = __decorate([
|
|
102
133
|
(0, annotations_1.table)("OrderTable")
|
|
@@ -105,12 +136,15 @@ class DeliveryFeesDetails {
|
|
|
105
136
|
}
|
|
106
137
|
exports.DeliveryFeesDetails = DeliveryFeesDetails;
|
|
107
138
|
__decorate([
|
|
108
|
-
(0, annotations_1.attribute)()
|
|
139
|
+
(0, annotations_1.attribute)(),
|
|
140
|
+
__metadata("design:type", String)
|
|
109
141
|
], DeliveryFeesDetails.prototype, "addressId", void 0);
|
|
110
142
|
__decorate([
|
|
111
|
-
(0, annotations_1.attribute)()
|
|
143
|
+
(0, annotations_1.attribute)(),
|
|
144
|
+
__metadata("design:type", String)
|
|
112
145
|
], DeliveryFeesDetails.prototype, "platterName", void 0);
|
|
113
146
|
__decorate([
|
|
114
|
-
(0, annotations_1.attribute)()
|
|
147
|
+
(0, annotations_1.attribute)(),
|
|
148
|
+
__metadata("design:type", Number)
|
|
115
149
|
], DeliveryFeesDetails.prototype, "deliveryFees", void 0);
|
|
116
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
150
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3JkZXItbW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvY3VzdG9tZXItdXNlci9vcmRlci1tb2R1bGUvb3JkZXIvb3JkZXItbW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7O0FBQUEsdURBQStFO0FBQy9FLG9EQUFnRDtBQUd6QyxJQUFNLFVBQVUsR0FBaEIsTUFBTSxVQUFXLFNBQVEsc0JBQVM7Q0FzRnhDLENBQUE7QUF0RlksZ0NBQVU7QUFFbkI7SUFEQyxJQUFBLGtDQUFvQixFQUFDLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxDQUFDOzsyQ0FDekI7QUFLaEI7SUFIQyxJQUFBLHVCQUFTLEVBQUM7UUFDUCxzQkFBc0IsRUFBRSxFQUFFLFdBQVcsRUFBRSxNQUFNLEVBQUUsRUFBRSxJQUFJLEVBQUUsUUFBUTtLQUNsRSxDQUFDOzswQ0FDYTtBQUdmO0lBREMsSUFBQSx1QkFBUyxHQUFFOzsrQ0FDUTtBQUdwQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7OENBQ087QUFHbkI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O21EQUNZO0FBR3hCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztrREFDVztBQUd2QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7aURBQ1U7QUFHdEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzZDQUNNO0FBR2xCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzsrQ0FDUTtBQUdwQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7bURBQ1k7QUFHeEI7SUFEQyxJQUFBLHVCQUFTLEVBQUMsRUFBRSxJQUFJLEVBQUUsTUFBTSxFQUFFLENBQUM7OEJBQ1AsSUFBSTtzREFBQztBQUcxQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7NENBQ0s7QUFHakI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzhDQUNPO0FBR25CO0lBREMsSUFBQSx1QkFBUyxHQUFFOzt5REFDa0I7QUFHOUI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzJEQUNvQjtBQUdoQztJQURDLElBQUEsdUJBQVMsR0FBRTs7d0RBQ2lCO0FBRzdCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzt5REFDa0I7QUFHOUI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O29EQUNhO0FBR3pCO0lBREMsSUFBQSx1QkFBUyxHQUFFOzsrQ0FDUTtBQUdwQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7Z0RBQ1M7QUFHckI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7OzhDQUNPO0FBR25CO0lBREMsSUFBQSx1QkFBUyxHQUFFOztpREFDVTtBQUd0QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7bURBQ1k7QUFHeEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O2dEQUNVO0FBR3RCO0lBREMsSUFBQSx1QkFBUyxHQUFFOztpREFDVztBQUd2QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7dURBQytCO0FBRzNDO0lBREMsSUFBQSx1QkFBUyxHQUFFOzsrQ0FDVztBQUd2QjtJQURDLElBQUEsdUJBQVMsR0FBRTs7NkNBQ087cUJBckZWLFVBQVU7SUFEdEIsSUFBQSxtQkFBSyxFQUFDLFlBQVksQ0FBQztHQUNQLFVBQVUsQ0FzRnRCO0FBRUQsTUFBYSxtQkFBbUI7Q0FTL0I7QUFURCxrREFTQztBQVBHO0lBREMsSUFBQSx1QkFBUyxHQUFFOztzREFDTTtBQUdsQjtJQURDLElBQUEsdUJBQVMsR0FBRTs7d0RBQ1E7QUFHcEI7SUFEQyxJQUFBLHVCQUFTLEdBQUU7O3lEQUNTIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgYXR0cmlidXRlLCBhdXRvR2VuZXJhdGVkSGFzaEtleSwgdGFibGUgfSBmcm9tIFwiQG5vdmEtb2RtL2Fubm90YXRpb25zXCI7XG5pbXBvcnQgeyBCYXNlTW9kZWwgfSBmcm9tIFwiLi4vLi4vLi4vYmFzZS1tb2RlbFwiO1xuXG5AdGFibGUoXCJPcmRlclRhYmxlXCIpXG5leHBvcnQgY2xhc3MgT3JkZXJNb2RlbCBleHRlbmRzIEJhc2VNb2RlbCB7XG4gICAgQGF1dG9HZW5lcmF0ZWRIYXNoS2V5KHsgdHlwZTogXCJTdHJpbmdcIiB9KVxuICAgIG9yZGVySWQ6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoe1xuICAgICAgICBpbmRleEtleUNvbmZpZ3VyYXRpb25zOiB7IFwidXNlckluZGV4XCI6IFwiSEFTSFwiIH0sIHR5cGU6ICdTdHJpbmcnXG4gICAgfSlcbiAgICB1c2VySWQ6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIG9yZGVyU3RhdHVzOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBvcmRlclZhbHVlOiBudW1iZXI7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICByYXpvcnBheU9yZGVySWQ6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGRpc2NvdW50QW1vdW50OiBudW1iZXI7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBleHRyYURpc2NvdW50OiBudW1iZXI7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBnc3RBbW91bnQ6IG51bWJlcjtcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHBheW1lbnRUeXBlOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICBvcmRlclBsYWNlZERhdGU6IG51bWJlcjtcblxuICAgIEBhdHRyaWJ1dGUoeyB0eXBlOiAnRGF0ZScgfSlcbiAgICBvcmRlckNvbXBsZXRlZERhdGU/OiBEYXRlO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgY291cG9uSWQ6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNvdXBvbkNvZGU6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNvdXBvbkVsaWdpYmlsaXR5VHlwZTogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgdG90YWxQcmljZVdpdGhvdXRDb3Vwb246IG51bWJlcjtcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGR5bmFtaWNQcmljZURpc2NvdW50OiBudW1iZXI7IC8vIFNwcmludCA1IG5ldyBrZXkgQWRkZWRcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGNvbXBsaW1lbnRhcnlEaXNjb3VudDogbnVtYmVyOyAvLyBTcHJpbnQgNSBuZXcga2V5IEFkZGVkXG5cbiAgICBAYXR0cmlidXRlKClcbiAgICB0b3RhbFNhdmVkQW1vdW50OiBudW1iZXI7IC8vIFNwcmludCA1IG5ldyBrZXkgQWRkZWRcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIHJld2FyZFZhbHVlOiBudW1iZXI7IC8vIFNwcmludCA1IG5ldyBrZXkgQWRkZWRcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGRlbGl2ZXJ5RmVlczogbnVtYmVyO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZ3JhbmRUb3RhbDogbnVtYmVyO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcGF5bWVudFN0YXR1czogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcGF5bWVudE1vZGVUeXBlOiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICByZWNlaXZlck5hbWU/OiBzdHJpbmc7XG5cbiAgICBAYXR0cmlidXRlKClcbiAgICByZWNlaXZlclBob25lPzogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgZGVsaXZlcnlGZWVzRGV0YWlsczogRGVsaXZlcnlGZWVzRGV0YWlsc1tdO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgYXNzaWduZWVJZHM/OiBzdHJpbmdbXTtcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGdzdE51bWJlcj86IHN0cmluZztcbn1cblxuZXhwb3J0IGNsYXNzIERlbGl2ZXJ5RmVlc0RldGFpbHMge1xuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGFkZHJlc3NJZDogc3RyaW5nO1xuXG4gICAgQGF0dHJpYnV0ZSgpXG4gICAgcGxhdHRlck5hbWU6IHN0cmluZztcblxuICAgIEBhdHRyaWJ1dGUoKVxuICAgIGRlbGl2ZXJ5RmVlczogbnVtYmVyOyAvLyBBcnJheSBvZiBJdGVtIG9iamVjdHNcbn0iXX0=
|