test-entity-library-asm 3.9.4 → 3.9.6
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/CustomRepository.js +21 -109
- package/dist/entities/AuthenticationCredential.js +54 -57
- package/dist/entities/Bank.js +50 -53
- package/dist/entities/BusinessType.js +47 -50
- package/dist/entities/BusinessTypeProduct.js +68 -71
- package/dist/entities/Category.js +148 -151
- package/dist/entities/CategoryDate.js +39 -42
- package/dist/entities/CategorySchedule.js +41 -44
- package/dist/entities/City.js +70 -73
- package/dist/entities/CodeRedemptionHistoryCompany.js +44 -47
- package/dist/entities/CodeRedemptionHistoryUser.js +54 -57
- package/dist/entities/Company.js +169 -172
- package/dist/entities/Configuration.d.ts +1 -1
- package/dist/entities/Configuration.js +25 -26
- package/dist/entities/Country.js +91 -94
- package/dist/entities/Day.js +38 -41
- package/dist/entities/DecorationReserve.js +46 -49
- package/dist/entities/DiscountCodeCompany.js +124 -129
- package/dist/entities/DiscountCodeUser.js +139 -142
- package/dist/entities/Gallery.js +88 -91
- package/dist/entities/Local.js +239 -242
- package/dist/entities/LocalDecorationReserve.js +64 -67
- package/dist/entities/LocalPaymentMethod.js +41 -44
- package/dist/entities/LocalPlan.js +88 -91
- package/dist/entities/LocalQualification.js +51 -54
- package/dist/entities/LocalReserve.js +177 -180
- package/dist/entities/LocalReserveStatus.js +85 -88
- package/dist/entities/LocalTable.js +163 -166
- package/dist/entities/LocalTableReserve.js +22 -25
- package/dist/entities/LocalTableReservePayment.js +156 -159
- package/dist/entities/LocalTableZone.js +84 -87
- package/dist/entities/Master.js +182 -185
- package/dist/entities/MasterNotification.js +96 -99
- package/dist/entities/MasterPermission.js +65 -68
- package/dist/entities/MasterRole.js +83 -86
- package/dist/entities/Partner.js +306 -309
- package/dist/entities/PartnerNotification.js +97 -100
- package/dist/entities/PartnerPlatform.js +66 -69
- package/dist/entities/PartnerPlatformSection.js +74 -79
- package/dist/entities/PartnerPlatformSectionPermission.js +113 -118
- package/dist/entities/PartnerPlatformSectionPermissionAssociate.js +26 -29
- package/dist/entities/PartnerRole.js +93 -96
- package/dist/entities/PartnerSession.js +94 -97
- package/dist/entities/PaymentMethod.js +91 -94
- package/dist/entities/Plan.js +86 -89
- package/dist/entities/PosSystem.js +69 -74
- package/dist/entities/Product.js +219 -222
- package/dist/entities/ProductDate.js +39 -42
- package/dist/entities/ProductGroup.js +76 -79
- package/dist/entities/ProductImage.js +33 -36
- package/dist/entities/ProductIngredient.js +54 -57
- package/dist/entities/ProductSchedule.js +41 -44
- package/dist/entities/ProductTopping.js +47 -50
- package/dist/entities/ReceiptConfig.js +184 -187
- package/dist/entities/Region.js +46 -49
- package/dist/entities/Request.js +152 -155
- package/dist/entities/RequestInvoice.js +125 -128
- package/dist/entities/RequestInvoiceCategory.js +34 -37
- package/dist/entities/RequestLocal.js +164 -169
- package/dist/entities/RequestLocalHistory.js +61 -64
- package/dist/entities/RequestLocalPayment.js +154 -157
- package/dist/entities/RequestLocalTable.js +34 -37
- package/dist/entities/RequestPrint.js +60 -63
- package/dist/entities/RequestProduct.js +58 -61
- package/dist/entities/RequestProductGroupComplement.js +51 -56
- package/dist/entities/ServiceDiscountsPlan.js +30 -33
- package/dist/entities/ServicePlan.js +84 -87
- package/dist/entities/Square.js +130 -133
- package/dist/entities/ToppingImage.js +56 -59
- package/dist/entities/TypeMeasureIngredient.js +45 -48
- package/dist/entities/User.js +234 -237
- package/dist/entities/UserAddress.js +114 -117
- package/dist/entities/UserPaymentMethod.js +118 -121
- package/dist/entities/VerificationCode.js +60 -63
- package/dist/entities/VerifyLocal.js +142 -145
- package/dist/entities/productGroupComplement.js +117 -120
- package/dist/filters/DiscountsCodeCompanyInformation.js +153 -202
- package/dist/filters/DiscountsCodeUserInformation.js +173 -220
- package/dist/filters/LocalReservesInformation.js +35 -81
- package/dist/filters/LocalsCompanyInformation.js +169 -218
- package/dist/filters/LocalsCompanyInformationForTheTable.js +157 -203
- package/dist/filters/VerifyLocalsInformation.js +131 -179
- package/dist/index.js +55 -130
- package/dist/transformers/dateTransformer.js +10 -13
- package/dist/transformers/jsonEncryptionTransformer.d.ts +2 -0
- package/dist/transformers/jsonEncryptionTransformer.js +57 -0
- package/dist/transformers/jsonTransformer.js +2 -2
- package/dist/utils.js +3 -3
- package/dist/views/DiscountsCodeUser.js +120 -123
- package/dist/views/LocalReserves.js +280 -283
- package/dist/views/LocalTableZonesFilter.js +76 -79
- package/dist/views/LocalsCompany.js +172 -175
- package/dist/views/LocalsCompanyInformationForTheMap.js +276 -279
- package/dist/views/LocalsCompanyInformationForTheTable.d.ts +1 -0
- package/dist/views/LocalsCompanyInformationForTheTable.js +384 -383
- package/dist/views/MasterNotifications.js +132 -135
- package/dist/views/PartnerNotifications.js +104 -107
- package/dist/views/Partners.js +140 -143
- package/dist/views/VerifyLocals.js +152 -155
- package/dist/views/ViewLocalsCompanies.js +100 -103
- package/package.json +2 -1
- package/src/entities/Configuration.ts +3 -1
- package/src/transformers/jsonEncryptionTransformer.ts +75 -0
- package/src/views/LocalsCompanyInformationForTheTable.ts +3 -0
- package/tsconfig.json +7 -3
|
@@ -10,146 +10,143 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.MasterNotifications = void 0;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const moment = require("moment-timezone");
|
|
15
|
+
const __1 = require("..");
|
|
16
16
|
// JSON Transformer
|
|
17
|
-
|
|
18
|
-
to:
|
|
19
|
-
from:
|
|
17
|
+
const jsonTransformer = {
|
|
18
|
+
to: (value) => JSON.stringify(value),
|
|
19
|
+
from: (value) => JSON.parse(value),
|
|
20
20
|
};
|
|
21
|
-
|
|
22
|
-
to
|
|
21
|
+
const DateTransformer = {
|
|
22
|
+
to(value) {
|
|
23
23
|
return moment.utc(value).format("YYYY-MM-DD HH:mm:ss");
|
|
24
24
|
},
|
|
25
|
-
from
|
|
25
|
+
from(value) {
|
|
26
26
|
return moment.utc(value).tz((0, __1.getTimeZone)()).format("YYYY-MM-DD HH:mm:ss");
|
|
27
27
|
},
|
|
28
28
|
};
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
32
|
-
__decorate([
|
|
33
|
-
(0, typeorm_1.ViewColumn)(),
|
|
34
|
-
__metadata("design:type", Number)
|
|
35
|
-
], MasterNotifications.prototype, "id", void 0);
|
|
36
|
-
__decorate([
|
|
37
|
-
(0, typeorm_1.ViewColumn)(),
|
|
38
|
-
__metadata("design:type", Number)
|
|
39
|
-
], MasterNotifications.prototype, "master", void 0);
|
|
40
|
-
__decorate([
|
|
41
|
-
(0, typeorm_1.ViewColumn)(),
|
|
42
|
-
__metadata("design:type", Number)
|
|
43
|
-
], MasterNotifications.prototype, "partner", void 0);
|
|
44
|
-
__decorate([
|
|
45
|
-
(0, typeorm_1.ViewColumn)(),
|
|
46
|
-
__metadata("design:type", String)
|
|
47
|
-
], MasterNotifications.prototype, "name", void 0);
|
|
48
|
-
__decorate([
|
|
49
|
-
(0, typeorm_1.ViewColumn)(),
|
|
50
|
-
__metadata("design:type", String)
|
|
51
|
-
], MasterNotifications.prototype, "description", void 0);
|
|
52
|
-
__decorate([
|
|
53
|
-
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
54
|
-
__metadata("design:type", Object)
|
|
55
|
-
], MasterNotifications.prototype, "settings", void 0);
|
|
56
|
-
__decorate([
|
|
57
|
-
(0, typeorm_1.ViewColumn)({ transformer: DateTransformer }),
|
|
58
|
-
__metadata("design:type", Date)
|
|
59
|
-
], MasterNotifications.prototype, "created", void 0);
|
|
60
|
-
__decorate([
|
|
61
|
-
(0, typeorm_1.ViewColumn)(),
|
|
62
|
-
__metadata("design:type", Number)
|
|
63
|
-
], MasterNotifications.prototype, "status", void 0);
|
|
64
|
-
__decorate([
|
|
65
|
-
(0, typeorm_1.ViewColumn)(),
|
|
66
|
-
__metadata("design:type", String)
|
|
67
|
-
], MasterNotifications.prototype, "partner_name", void 0);
|
|
68
|
-
__decorate([
|
|
69
|
-
(0, typeorm_1.ViewColumn)(),
|
|
70
|
-
__metadata("design:type", String)
|
|
71
|
-
], MasterNotifications.prototype, "partner_surname", void 0);
|
|
72
|
-
__decorate([
|
|
73
|
-
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
74
|
-
__metadata("design:type", Object)
|
|
75
|
-
], MasterNotifications.prototype, "partner_profile", void 0);
|
|
76
|
-
__decorate([
|
|
77
|
-
(0, typeorm_1.ViewColumn)(),
|
|
78
|
-
__metadata("design:type", String)
|
|
79
|
-
], MasterNotifications.prototype, "partner_email", void 0);
|
|
80
|
-
__decorate([
|
|
81
|
-
(0, typeorm_1.ViewColumn)(),
|
|
82
|
-
__metadata("design:type", String)
|
|
83
|
-
], MasterNotifications.prototype, "partner_phone", void 0);
|
|
84
|
-
__decorate([
|
|
85
|
-
(0, typeorm_1.ViewColumn)(),
|
|
86
|
-
__metadata("design:type", Number)
|
|
87
|
-
], MasterNotifications.prototype, "partner_status", void 0);
|
|
88
|
-
__decorate([
|
|
89
|
-
(0, typeorm_1.ViewColumn)(),
|
|
90
|
-
__metadata("design:type", String)
|
|
91
|
-
], MasterNotifications.prototype, "master_document", void 0);
|
|
92
|
-
__decorate([
|
|
93
|
-
(0, typeorm_1.ViewColumn)(),
|
|
94
|
-
__metadata("design:type", String)
|
|
95
|
-
], MasterNotifications.prototype, "master_name", void 0);
|
|
96
|
-
__decorate([
|
|
97
|
-
(0, typeorm_1.ViewColumn)(),
|
|
98
|
-
__metadata("design:type", String)
|
|
99
|
-
], MasterNotifications.prototype, "master_surname", void 0);
|
|
100
|
-
__decorate([
|
|
101
|
-
(0, typeorm_1.ViewColumn)(),
|
|
102
|
-
__metadata("design:type", String)
|
|
103
|
-
], MasterNotifications.prototype, "master_email", void 0);
|
|
104
|
-
__decorate([
|
|
105
|
-
(0, typeorm_1.ViewColumn)(),
|
|
106
|
-
__metadata("design:type", String)
|
|
107
|
-
], MasterNotifications.prototype, "master_phone", void 0);
|
|
108
|
-
__decorate([
|
|
109
|
-
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
110
|
-
__metadata("design:type", Object)
|
|
111
|
-
], MasterNotifications.prototype, "master_profile", void 0);
|
|
112
|
-
__decorate([
|
|
113
|
-
(0, typeorm_1.ViewColumn)(),
|
|
114
|
-
__metadata("design:type", Number)
|
|
115
|
-
], MasterNotifications.prototype, "master_status", void 0);
|
|
116
|
-
__decorate([
|
|
117
|
-
(0, typeorm_1.ViewColumn)(),
|
|
118
|
-
__metadata("design:type", Number)
|
|
119
|
-
], MasterNotifications.prototype, "verify_local_id", void 0);
|
|
120
|
-
__decorate([
|
|
121
|
-
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
122
|
-
__metadata("design:type", Object)
|
|
123
|
-
], MasterNotifications.prototype, "verify_local_local_information", void 0);
|
|
124
|
-
__decorate([
|
|
125
|
-
(0, typeorm_1.ViewColumn)(),
|
|
126
|
-
__metadata("design:type", Number)
|
|
127
|
-
], MasterNotifications.prototype, "verify_local_assigned_master", void 0);
|
|
128
|
-
__decorate([
|
|
129
|
-
(0, typeorm_1.ViewColumn)(),
|
|
130
|
-
__metadata("design:type", Number)
|
|
131
|
-
], MasterNotifications.prototype, "verify_local_status", void 0);
|
|
132
|
-
__decorate([
|
|
133
|
-
(0, typeorm_1.ViewColumn)(),
|
|
134
|
-
__metadata("design:type", Number)
|
|
135
|
-
], MasterNotifications.prototype, "master_assigned_notification", void 0);
|
|
136
|
-
__decorate([
|
|
137
|
-
(0, typeorm_1.ViewColumn)(),
|
|
138
|
-
__metadata("design:type", String)
|
|
139
|
-
], MasterNotifications.prototype, "company_name", void 0);
|
|
140
|
-
__decorate([
|
|
141
|
-
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
142
|
-
__metadata("design:type", Object)
|
|
143
|
-
], MasterNotifications.prototype, "company_profile", void 0);
|
|
144
|
-
__decorate([
|
|
145
|
-
(0, typeorm_1.ViewColumn)(),
|
|
146
|
-
__metadata("design:type", Number)
|
|
147
|
-
], MasterNotifications.prototype, "company_status", void 0);
|
|
148
|
-
MasterNotifications = __decorate([
|
|
149
|
-
(0, typeorm_1.ViewEntity)({
|
|
150
|
-
name: "master_notifications",
|
|
151
|
-
})
|
|
152
|
-
], MasterNotifications);
|
|
153
|
-
return MasterNotifications;
|
|
154
|
-
}());
|
|
29
|
+
let MasterNotifications = class MasterNotifications {
|
|
30
|
+
};
|
|
155
31
|
exports.MasterNotifications = MasterNotifications;
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, typeorm_1.ViewColumn)(),
|
|
34
|
+
__metadata("design:type", Number)
|
|
35
|
+
], MasterNotifications.prototype, "id", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, typeorm_1.ViewColumn)(),
|
|
38
|
+
__metadata("design:type", Number)
|
|
39
|
+
], MasterNotifications.prototype, "master", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, typeorm_1.ViewColumn)(),
|
|
42
|
+
__metadata("design:type", Number)
|
|
43
|
+
], MasterNotifications.prototype, "partner", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, typeorm_1.ViewColumn)(),
|
|
46
|
+
__metadata("design:type", String)
|
|
47
|
+
], MasterNotifications.prototype, "name", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, typeorm_1.ViewColumn)(),
|
|
50
|
+
__metadata("design:type", String)
|
|
51
|
+
], MasterNotifications.prototype, "description", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
54
|
+
__metadata("design:type", Object)
|
|
55
|
+
], MasterNotifications.prototype, "settings", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, typeorm_1.ViewColumn)({ transformer: DateTransformer }),
|
|
58
|
+
__metadata("design:type", Date)
|
|
59
|
+
], MasterNotifications.prototype, "created", void 0);
|
|
60
|
+
__decorate([
|
|
61
|
+
(0, typeorm_1.ViewColumn)(),
|
|
62
|
+
__metadata("design:type", Number)
|
|
63
|
+
], MasterNotifications.prototype, "status", void 0);
|
|
64
|
+
__decorate([
|
|
65
|
+
(0, typeorm_1.ViewColumn)(),
|
|
66
|
+
__metadata("design:type", String)
|
|
67
|
+
], MasterNotifications.prototype, "partner_name", void 0);
|
|
68
|
+
__decorate([
|
|
69
|
+
(0, typeorm_1.ViewColumn)(),
|
|
70
|
+
__metadata("design:type", String)
|
|
71
|
+
], MasterNotifications.prototype, "partner_surname", void 0);
|
|
72
|
+
__decorate([
|
|
73
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
74
|
+
__metadata("design:type", Object)
|
|
75
|
+
], MasterNotifications.prototype, "partner_profile", void 0);
|
|
76
|
+
__decorate([
|
|
77
|
+
(0, typeorm_1.ViewColumn)(),
|
|
78
|
+
__metadata("design:type", String)
|
|
79
|
+
], MasterNotifications.prototype, "partner_email", void 0);
|
|
80
|
+
__decorate([
|
|
81
|
+
(0, typeorm_1.ViewColumn)(),
|
|
82
|
+
__metadata("design:type", String)
|
|
83
|
+
], MasterNotifications.prototype, "partner_phone", void 0);
|
|
84
|
+
__decorate([
|
|
85
|
+
(0, typeorm_1.ViewColumn)(),
|
|
86
|
+
__metadata("design:type", Number)
|
|
87
|
+
], MasterNotifications.prototype, "partner_status", void 0);
|
|
88
|
+
__decorate([
|
|
89
|
+
(0, typeorm_1.ViewColumn)(),
|
|
90
|
+
__metadata("design:type", String)
|
|
91
|
+
], MasterNotifications.prototype, "master_document", void 0);
|
|
92
|
+
__decorate([
|
|
93
|
+
(0, typeorm_1.ViewColumn)(),
|
|
94
|
+
__metadata("design:type", String)
|
|
95
|
+
], MasterNotifications.prototype, "master_name", void 0);
|
|
96
|
+
__decorate([
|
|
97
|
+
(0, typeorm_1.ViewColumn)(),
|
|
98
|
+
__metadata("design:type", String)
|
|
99
|
+
], MasterNotifications.prototype, "master_surname", void 0);
|
|
100
|
+
__decorate([
|
|
101
|
+
(0, typeorm_1.ViewColumn)(),
|
|
102
|
+
__metadata("design:type", String)
|
|
103
|
+
], MasterNotifications.prototype, "master_email", void 0);
|
|
104
|
+
__decorate([
|
|
105
|
+
(0, typeorm_1.ViewColumn)(),
|
|
106
|
+
__metadata("design:type", String)
|
|
107
|
+
], MasterNotifications.prototype, "master_phone", void 0);
|
|
108
|
+
__decorate([
|
|
109
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
110
|
+
__metadata("design:type", Object)
|
|
111
|
+
], MasterNotifications.prototype, "master_profile", void 0);
|
|
112
|
+
__decorate([
|
|
113
|
+
(0, typeorm_1.ViewColumn)(),
|
|
114
|
+
__metadata("design:type", Number)
|
|
115
|
+
], MasterNotifications.prototype, "master_status", void 0);
|
|
116
|
+
__decorate([
|
|
117
|
+
(0, typeorm_1.ViewColumn)(),
|
|
118
|
+
__metadata("design:type", Number)
|
|
119
|
+
], MasterNotifications.prototype, "verify_local_id", void 0);
|
|
120
|
+
__decorate([
|
|
121
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
122
|
+
__metadata("design:type", Object)
|
|
123
|
+
], MasterNotifications.prototype, "verify_local_local_information", void 0);
|
|
124
|
+
__decorate([
|
|
125
|
+
(0, typeorm_1.ViewColumn)(),
|
|
126
|
+
__metadata("design:type", Number)
|
|
127
|
+
], MasterNotifications.prototype, "verify_local_assigned_master", void 0);
|
|
128
|
+
__decorate([
|
|
129
|
+
(0, typeorm_1.ViewColumn)(),
|
|
130
|
+
__metadata("design:type", Number)
|
|
131
|
+
], MasterNotifications.prototype, "verify_local_status", void 0);
|
|
132
|
+
__decorate([
|
|
133
|
+
(0, typeorm_1.ViewColumn)(),
|
|
134
|
+
__metadata("design:type", Number)
|
|
135
|
+
], MasterNotifications.prototype, "master_assigned_notification", void 0);
|
|
136
|
+
__decorate([
|
|
137
|
+
(0, typeorm_1.ViewColumn)(),
|
|
138
|
+
__metadata("design:type", String)
|
|
139
|
+
], MasterNotifications.prototype, "company_name", void 0);
|
|
140
|
+
__decorate([
|
|
141
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
142
|
+
__metadata("design:type", Object)
|
|
143
|
+
], MasterNotifications.prototype, "company_profile", void 0);
|
|
144
|
+
__decorate([
|
|
145
|
+
(0, typeorm_1.ViewColumn)(),
|
|
146
|
+
__metadata("design:type", Number)
|
|
147
|
+
], MasterNotifications.prototype, "company_status", void 0);
|
|
148
|
+
exports.MasterNotifications = MasterNotifications = __decorate([
|
|
149
|
+
(0, typeorm_1.ViewEntity)({
|
|
150
|
+
name: "master_notifications",
|
|
151
|
+
})
|
|
152
|
+
], MasterNotifications);
|
|
@@ -10,118 +10,115 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.PartnerNotifications = void 0;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const moment = require("moment-timezone");
|
|
15
|
+
const __1 = require("..");
|
|
16
16
|
// JSON Transformer
|
|
17
|
-
|
|
18
|
-
to:
|
|
19
|
-
from:
|
|
17
|
+
const jsonTransformer = {
|
|
18
|
+
to: (value) => JSON.stringify(value),
|
|
19
|
+
from: (value) => JSON.parse(value),
|
|
20
20
|
};
|
|
21
|
-
|
|
22
|
-
to
|
|
21
|
+
const DateTransformer = {
|
|
22
|
+
to(value) {
|
|
23
23
|
return moment.utc(value).format("YYYY-MM-DD HH:mm:ss");
|
|
24
24
|
},
|
|
25
|
-
from
|
|
25
|
+
from(value) {
|
|
26
26
|
return moment.utc(value).tz((0, __1.getTimeZone)()).format("YYYY-MM-DD HH:mm:ss");
|
|
27
27
|
},
|
|
28
28
|
};
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
32
|
-
__decorate([
|
|
33
|
-
(0, typeorm_1.ViewColumn)(),
|
|
34
|
-
__metadata("design:type", Number)
|
|
35
|
-
], PartnerNotifications.prototype, "id", void 0);
|
|
36
|
-
__decorate([
|
|
37
|
-
(0, typeorm_1.ViewColumn)(),
|
|
38
|
-
__metadata("design:type", Number)
|
|
39
|
-
], PartnerNotifications.prototype, "partner", void 0);
|
|
40
|
-
__decorate([
|
|
41
|
-
(0, typeorm_1.ViewColumn)(),
|
|
42
|
-
__metadata("design:type", Number)
|
|
43
|
-
], PartnerNotifications.prototype, "master", void 0);
|
|
44
|
-
__decorate([
|
|
45
|
-
(0, typeorm_1.ViewColumn)(),
|
|
46
|
-
__metadata("design:type", String)
|
|
47
|
-
], PartnerNotifications.prototype, "name", void 0);
|
|
48
|
-
__decorate([
|
|
49
|
-
(0, typeorm_1.ViewColumn)(),
|
|
50
|
-
__metadata("design:type", String)
|
|
51
|
-
], PartnerNotifications.prototype, "description", void 0);
|
|
52
|
-
__decorate([
|
|
53
|
-
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
54
|
-
__metadata("design:type", Object)
|
|
55
|
-
], PartnerNotifications.prototype, "settings", void 0);
|
|
56
|
-
__decorate([
|
|
57
|
-
(0, typeorm_1.ViewColumn)({ transformer: DateTransformer }),
|
|
58
|
-
__metadata("design:type", Date)
|
|
59
|
-
], PartnerNotifications.prototype, "created", void 0);
|
|
60
|
-
__decorate([
|
|
61
|
-
(0, typeorm_1.ViewColumn)(),
|
|
62
|
-
__metadata("design:type", Number)
|
|
63
|
-
], PartnerNotifications.prototype, "status", void 0);
|
|
64
|
-
__decorate([
|
|
65
|
-
(0, typeorm_1.ViewColumn)(),
|
|
66
|
-
__metadata("design:type", String)
|
|
67
|
-
], PartnerNotifications.prototype, "partner_name", void 0);
|
|
68
|
-
__decorate([
|
|
69
|
-
(0, typeorm_1.ViewColumn)(),
|
|
70
|
-
__metadata("design:type", String)
|
|
71
|
-
], PartnerNotifications.prototype, "partner_surname", void 0);
|
|
72
|
-
__decorate([
|
|
73
|
-
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
74
|
-
__metadata("design:type", Object)
|
|
75
|
-
], PartnerNotifications.prototype, "partner_profile", void 0);
|
|
76
|
-
__decorate([
|
|
77
|
-
(0, typeorm_1.ViewColumn)(),
|
|
78
|
-
__metadata("design:type", String)
|
|
79
|
-
], PartnerNotifications.prototype, "partner_email", void 0);
|
|
80
|
-
__decorate([
|
|
81
|
-
(0, typeorm_1.ViewColumn)(),
|
|
82
|
-
__metadata("design:type", String)
|
|
83
|
-
], PartnerNotifications.prototype, "partner_phone", void 0);
|
|
84
|
-
__decorate([
|
|
85
|
-
(0, typeorm_1.ViewColumn)(),
|
|
86
|
-
__metadata("design:type", Number)
|
|
87
|
-
], PartnerNotifications.prototype, "partner_status", void 0);
|
|
88
|
-
__decorate([
|
|
89
|
-
(0, typeorm_1.ViewColumn)(),
|
|
90
|
-
__metadata("design:type", String)
|
|
91
|
-
], PartnerNotifications.prototype, "master_document", void 0);
|
|
92
|
-
__decorate([
|
|
93
|
-
(0, typeorm_1.ViewColumn)(),
|
|
94
|
-
__metadata("design:type", String)
|
|
95
|
-
], PartnerNotifications.prototype, "master_name", void 0);
|
|
96
|
-
__decorate([
|
|
97
|
-
(0, typeorm_1.ViewColumn)(),
|
|
98
|
-
__metadata("design:type", String)
|
|
99
|
-
], PartnerNotifications.prototype, "master_surname", void 0);
|
|
100
|
-
__decorate([
|
|
101
|
-
(0, typeorm_1.ViewColumn)(),
|
|
102
|
-
__metadata("design:type", String)
|
|
103
|
-
], PartnerNotifications.prototype, "master_email", void 0);
|
|
104
|
-
__decorate([
|
|
105
|
-
(0, typeorm_1.ViewColumn)(),
|
|
106
|
-
__metadata("design:type", String)
|
|
107
|
-
], PartnerNotifications.prototype, "master_phone", void 0);
|
|
108
|
-
__decorate([
|
|
109
|
-
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
110
|
-
__metadata("design:type", Object)
|
|
111
|
-
], PartnerNotifications.prototype, "master_profile", void 0);
|
|
112
|
-
__decorate([
|
|
113
|
-
(0, typeorm_1.ViewColumn)(),
|
|
114
|
-
__metadata("design:type", Number)
|
|
115
|
-
], PartnerNotifications.prototype, "master_status", void 0);
|
|
116
|
-
__decorate([
|
|
117
|
-
(0, typeorm_1.ViewColumn)(),
|
|
118
|
-
__metadata("design:type", Number)
|
|
119
|
-
], PartnerNotifications.prototype, "partner_assigned_notification", void 0);
|
|
120
|
-
PartnerNotifications = __decorate([
|
|
121
|
-
(0, typeorm_1.ViewEntity)({
|
|
122
|
-
name: "partner_notifications",
|
|
123
|
-
})
|
|
124
|
-
], PartnerNotifications);
|
|
125
|
-
return PartnerNotifications;
|
|
126
|
-
}());
|
|
29
|
+
let PartnerNotifications = class PartnerNotifications {
|
|
30
|
+
};
|
|
127
31
|
exports.PartnerNotifications = PartnerNotifications;
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, typeorm_1.ViewColumn)(),
|
|
34
|
+
__metadata("design:type", Number)
|
|
35
|
+
], PartnerNotifications.prototype, "id", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, typeorm_1.ViewColumn)(),
|
|
38
|
+
__metadata("design:type", Number)
|
|
39
|
+
], PartnerNotifications.prototype, "partner", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, typeorm_1.ViewColumn)(),
|
|
42
|
+
__metadata("design:type", Number)
|
|
43
|
+
], PartnerNotifications.prototype, "master", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, typeorm_1.ViewColumn)(),
|
|
46
|
+
__metadata("design:type", String)
|
|
47
|
+
], PartnerNotifications.prototype, "name", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, typeorm_1.ViewColumn)(),
|
|
50
|
+
__metadata("design:type", String)
|
|
51
|
+
], PartnerNotifications.prototype, "description", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
54
|
+
__metadata("design:type", Object)
|
|
55
|
+
], PartnerNotifications.prototype, "settings", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, typeorm_1.ViewColumn)({ transformer: DateTransformer }),
|
|
58
|
+
__metadata("design:type", Date)
|
|
59
|
+
], PartnerNotifications.prototype, "created", void 0);
|
|
60
|
+
__decorate([
|
|
61
|
+
(0, typeorm_1.ViewColumn)(),
|
|
62
|
+
__metadata("design:type", Number)
|
|
63
|
+
], PartnerNotifications.prototype, "status", void 0);
|
|
64
|
+
__decorate([
|
|
65
|
+
(0, typeorm_1.ViewColumn)(),
|
|
66
|
+
__metadata("design:type", String)
|
|
67
|
+
], PartnerNotifications.prototype, "partner_name", void 0);
|
|
68
|
+
__decorate([
|
|
69
|
+
(0, typeorm_1.ViewColumn)(),
|
|
70
|
+
__metadata("design:type", String)
|
|
71
|
+
], PartnerNotifications.prototype, "partner_surname", void 0);
|
|
72
|
+
__decorate([
|
|
73
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
74
|
+
__metadata("design:type", Object)
|
|
75
|
+
], PartnerNotifications.prototype, "partner_profile", void 0);
|
|
76
|
+
__decorate([
|
|
77
|
+
(0, typeorm_1.ViewColumn)(),
|
|
78
|
+
__metadata("design:type", String)
|
|
79
|
+
], PartnerNotifications.prototype, "partner_email", void 0);
|
|
80
|
+
__decorate([
|
|
81
|
+
(0, typeorm_1.ViewColumn)(),
|
|
82
|
+
__metadata("design:type", String)
|
|
83
|
+
], PartnerNotifications.prototype, "partner_phone", void 0);
|
|
84
|
+
__decorate([
|
|
85
|
+
(0, typeorm_1.ViewColumn)(),
|
|
86
|
+
__metadata("design:type", Number)
|
|
87
|
+
], PartnerNotifications.prototype, "partner_status", void 0);
|
|
88
|
+
__decorate([
|
|
89
|
+
(0, typeorm_1.ViewColumn)(),
|
|
90
|
+
__metadata("design:type", String)
|
|
91
|
+
], PartnerNotifications.prototype, "master_document", void 0);
|
|
92
|
+
__decorate([
|
|
93
|
+
(0, typeorm_1.ViewColumn)(),
|
|
94
|
+
__metadata("design:type", String)
|
|
95
|
+
], PartnerNotifications.prototype, "master_name", void 0);
|
|
96
|
+
__decorate([
|
|
97
|
+
(0, typeorm_1.ViewColumn)(),
|
|
98
|
+
__metadata("design:type", String)
|
|
99
|
+
], PartnerNotifications.prototype, "master_surname", void 0);
|
|
100
|
+
__decorate([
|
|
101
|
+
(0, typeorm_1.ViewColumn)(),
|
|
102
|
+
__metadata("design:type", String)
|
|
103
|
+
], PartnerNotifications.prototype, "master_email", void 0);
|
|
104
|
+
__decorate([
|
|
105
|
+
(0, typeorm_1.ViewColumn)(),
|
|
106
|
+
__metadata("design:type", String)
|
|
107
|
+
], PartnerNotifications.prototype, "master_phone", void 0);
|
|
108
|
+
__decorate([
|
|
109
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
110
|
+
__metadata("design:type", Object)
|
|
111
|
+
], PartnerNotifications.prototype, "master_profile", void 0);
|
|
112
|
+
__decorate([
|
|
113
|
+
(0, typeorm_1.ViewColumn)(),
|
|
114
|
+
__metadata("design:type", Number)
|
|
115
|
+
], PartnerNotifications.prototype, "master_status", void 0);
|
|
116
|
+
__decorate([
|
|
117
|
+
(0, typeorm_1.ViewColumn)(),
|
|
118
|
+
__metadata("design:type", Number)
|
|
119
|
+
], PartnerNotifications.prototype, "partner_assigned_notification", void 0);
|
|
120
|
+
exports.PartnerNotifications = PartnerNotifications = __decorate([
|
|
121
|
+
(0, typeorm_1.ViewEntity)({
|
|
122
|
+
name: "partner_notifications",
|
|
123
|
+
})
|
|
124
|
+
], PartnerNotifications);
|