test-entity-library-asm 3.8.7 → 3.8.9
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.
|
@@ -29,4 +29,28 @@ export declare class LocalsCompanyInformationForTheMap {
|
|
|
29
29
|
total_requests: number;
|
|
30
30
|
total_ratings: number;
|
|
31
31
|
average_rating: number;
|
|
32
|
+
square_id: number;
|
|
33
|
+
square_name: string;
|
|
34
|
+
square_address: string;
|
|
35
|
+
square_latitude: number;
|
|
36
|
+
square_longitude: number;
|
|
37
|
+
square_details: any | null;
|
|
38
|
+
square_maximum_number_locals: number;
|
|
39
|
+
square_email: string;
|
|
40
|
+
square_phone: string;
|
|
41
|
+
square_status: number;
|
|
42
|
+
city_id: number;
|
|
43
|
+
city_name: string;
|
|
44
|
+
city_status: number;
|
|
45
|
+
region_name: string;
|
|
46
|
+
region_status: number;
|
|
47
|
+
country_code: string;
|
|
48
|
+
country_name: string;
|
|
49
|
+
country_currency: string;
|
|
50
|
+
country_prefix: string;
|
|
51
|
+
country_structure_phone: string;
|
|
52
|
+
country_legal_information: any | null;
|
|
53
|
+
country_legal_agent: string;
|
|
54
|
+
country_details: any | null;
|
|
55
|
+
country_status: number;
|
|
32
56
|
}
|
|
@@ -156,6 +156,102 @@ var LocalsCompanyInformationForTheMap = /** @class */ (function () {
|
|
|
156
156
|
(0, typeorm_1.ViewColumn)(),
|
|
157
157
|
__metadata("design:type", Number)
|
|
158
158
|
], LocalsCompanyInformationForTheMap.prototype, "average_rating", void 0);
|
|
159
|
+
__decorate([
|
|
160
|
+
(0, typeorm_1.ViewColumn)(),
|
|
161
|
+
__metadata("design:type", Number)
|
|
162
|
+
], LocalsCompanyInformationForTheMap.prototype, "square_id", void 0);
|
|
163
|
+
__decorate([
|
|
164
|
+
(0, typeorm_1.ViewColumn)(),
|
|
165
|
+
__metadata("design:type", String)
|
|
166
|
+
], LocalsCompanyInformationForTheMap.prototype, "square_name", void 0);
|
|
167
|
+
__decorate([
|
|
168
|
+
(0, typeorm_1.ViewColumn)(),
|
|
169
|
+
__metadata("design:type", String)
|
|
170
|
+
], LocalsCompanyInformationForTheMap.prototype, "square_address", void 0);
|
|
171
|
+
__decorate([
|
|
172
|
+
(0, typeorm_1.ViewColumn)(),
|
|
173
|
+
__metadata("design:type", Number)
|
|
174
|
+
], LocalsCompanyInformationForTheMap.prototype, "square_latitude", void 0);
|
|
175
|
+
__decorate([
|
|
176
|
+
(0, typeorm_1.ViewColumn)(),
|
|
177
|
+
__metadata("design:type", Number)
|
|
178
|
+
], LocalsCompanyInformationForTheMap.prototype, "square_longitude", void 0);
|
|
179
|
+
__decorate([
|
|
180
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
181
|
+
__metadata("design:type", Object)
|
|
182
|
+
], LocalsCompanyInformationForTheMap.prototype, "square_details", void 0);
|
|
183
|
+
__decorate([
|
|
184
|
+
(0, typeorm_1.ViewColumn)(),
|
|
185
|
+
__metadata("design:type", Number)
|
|
186
|
+
], LocalsCompanyInformationForTheMap.prototype, "square_maximum_number_locals", void 0);
|
|
187
|
+
__decorate([
|
|
188
|
+
(0, typeorm_1.ViewColumn)(),
|
|
189
|
+
__metadata("design:type", String)
|
|
190
|
+
], LocalsCompanyInformationForTheMap.prototype, "square_email", void 0);
|
|
191
|
+
__decorate([
|
|
192
|
+
(0, typeorm_1.ViewColumn)(),
|
|
193
|
+
__metadata("design:type", String)
|
|
194
|
+
], LocalsCompanyInformationForTheMap.prototype, "square_phone", void 0);
|
|
195
|
+
__decorate([
|
|
196
|
+
(0, typeorm_1.ViewColumn)(),
|
|
197
|
+
__metadata("design:type", Number)
|
|
198
|
+
], LocalsCompanyInformationForTheMap.prototype, "square_status", void 0);
|
|
199
|
+
__decorate([
|
|
200
|
+
(0, typeorm_1.ViewColumn)(),
|
|
201
|
+
__metadata("design:type", Number)
|
|
202
|
+
], LocalsCompanyInformationForTheMap.prototype, "city_id", void 0);
|
|
203
|
+
__decorate([
|
|
204
|
+
(0, typeorm_1.ViewColumn)(),
|
|
205
|
+
__metadata("design:type", String)
|
|
206
|
+
], LocalsCompanyInformationForTheMap.prototype, "city_name", void 0);
|
|
207
|
+
__decorate([
|
|
208
|
+
(0, typeorm_1.ViewColumn)(),
|
|
209
|
+
__metadata("design:type", Number)
|
|
210
|
+
], LocalsCompanyInformationForTheMap.prototype, "city_status", void 0);
|
|
211
|
+
__decorate([
|
|
212
|
+
(0, typeorm_1.ViewColumn)(),
|
|
213
|
+
__metadata("design:type", String)
|
|
214
|
+
], LocalsCompanyInformationForTheMap.prototype, "region_name", void 0);
|
|
215
|
+
__decorate([
|
|
216
|
+
(0, typeorm_1.ViewColumn)(),
|
|
217
|
+
__metadata("design:type", Number)
|
|
218
|
+
], LocalsCompanyInformationForTheMap.prototype, "region_status", void 0);
|
|
219
|
+
__decorate([
|
|
220
|
+
(0, typeorm_1.ViewColumn)(),
|
|
221
|
+
__metadata("design:type", String)
|
|
222
|
+
], LocalsCompanyInformationForTheMap.prototype, "country_code", void 0);
|
|
223
|
+
__decorate([
|
|
224
|
+
(0, typeorm_1.ViewColumn)(),
|
|
225
|
+
__metadata("design:type", String)
|
|
226
|
+
], LocalsCompanyInformationForTheMap.prototype, "country_name", void 0);
|
|
227
|
+
__decorate([
|
|
228
|
+
(0, typeorm_1.ViewColumn)(),
|
|
229
|
+
__metadata("design:type", String)
|
|
230
|
+
], LocalsCompanyInformationForTheMap.prototype, "country_currency", void 0);
|
|
231
|
+
__decorate([
|
|
232
|
+
(0, typeorm_1.ViewColumn)(),
|
|
233
|
+
__metadata("design:type", String)
|
|
234
|
+
], LocalsCompanyInformationForTheMap.prototype, "country_prefix", void 0);
|
|
235
|
+
__decorate([
|
|
236
|
+
(0, typeorm_1.ViewColumn)(),
|
|
237
|
+
__metadata("design:type", String)
|
|
238
|
+
], LocalsCompanyInformationForTheMap.prototype, "country_structure_phone", void 0);
|
|
239
|
+
__decorate([
|
|
240
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
241
|
+
__metadata("design:type", Object)
|
|
242
|
+
], LocalsCompanyInformationForTheMap.prototype, "country_legal_information", void 0);
|
|
243
|
+
__decorate([
|
|
244
|
+
(0, typeorm_1.ViewColumn)(),
|
|
245
|
+
__metadata("design:type", String)
|
|
246
|
+
], LocalsCompanyInformationForTheMap.prototype, "country_legal_agent", void 0);
|
|
247
|
+
__decorate([
|
|
248
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
249
|
+
__metadata("design:type", Object)
|
|
250
|
+
], LocalsCompanyInformationForTheMap.prototype, "country_details", void 0);
|
|
251
|
+
__decorate([
|
|
252
|
+
(0, typeorm_1.ViewColumn)(),
|
|
253
|
+
__metadata("design:type", Number)
|
|
254
|
+
], LocalsCompanyInformationForTheMap.prototype, "country_status", void 0);
|
|
159
255
|
LocalsCompanyInformationForTheMap = __decorate([
|
|
160
256
|
(0, typeorm_1.ViewEntity)({
|
|
161
257
|
name: "locals_company_information_for_the_map",
|
package/package.json
CHANGED
|
@@ -116,4 +116,76 @@ export class LocalsCompanyInformationForTheMap {
|
|
|
116
116
|
|
|
117
117
|
@ViewColumn()
|
|
118
118
|
average_rating: number;
|
|
119
|
+
|
|
120
|
+
@ViewColumn()
|
|
121
|
+
square_id: number;
|
|
122
|
+
|
|
123
|
+
@ViewColumn()
|
|
124
|
+
square_name: string;
|
|
125
|
+
|
|
126
|
+
@ViewColumn()
|
|
127
|
+
square_address: string;
|
|
128
|
+
|
|
129
|
+
@ViewColumn()
|
|
130
|
+
square_latitude: number;
|
|
131
|
+
|
|
132
|
+
@ViewColumn()
|
|
133
|
+
square_longitude: number;
|
|
134
|
+
|
|
135
|
+
@ViewColumn({ transformer: jsonTransformer })
|
|
136
|
+
square_details: any | null;
|
|
137
|
+
|
|
138
|
+
@ViewColumn()
|
|
139
|
+
square_maximum_number_locals: number;
|
|
140
|
+
|
|
141
|
+
@ViewColumn()
|
|
142
|
+
square_email: string;
|
|
143
|
+
|
|
144
|
+
@ViewColumn()
|
|
145
|
+
square_phone: string;
|
|
146
|
+
|
|
147
|
+
@ViewColumn()
|
|
148
|
+
square_status: number;
|
|
149
|
+
|
|
150
|
+
@ViewColumn()
|
|
151
|
+
city_id: number;
|
|
152
|
+
|
|
153
|
+
@ViewColumn()
|
|
154
|
+
city_name: string;
|
|
155
|
+
|
|
156
|
+
@ViewColumn()
|
|
157
|
+
city_status: number;
|
|
158
|
+
|
|
159
|
+
@ViewColumn()
|
|
160
|
+
region_name: string;
|
|
161
|
+
|
|
162
|
+
@ViewColumn()
|
|
163
|
+
region_status: number;
|
|
164
|
+
|
|
165
|
+
@ViewColumn()
|
|
166
|
+
country_code: string;
|
|
167
|
+
|
|
168
|
+
@ViewColumn()
|
|
169
|
+
country_name: string;
|
|
170
|
+
|
|
171
|
+
@ViewColumn()
|
|
172
|
+
country_currency: string;
|
|
173
|
+
|
|
174
|
+
@ViewColumn()
|
|
175
|
+
country_prefix: string;
|
|
176
|
+
|
|
177
|
+
@ViewColumn()
|
|
178
|
+
country_structure_phone: string;
|
|
179
|
+
|
|
180
|
+
@ViewColumn({ transformer: jsonTransformer })
|
|
181
|
+
country_legal_information: any | null;
|
|
182
|
+
|
|
183
|
+
@ViewColumn()
|
|
184
|
+
country_legal_agent: string;
|
|
185
|
+
|
|
186
|
+
@ViewColumn({ transformer: jsonTransformer })
|
|
187
|
+
country_details: any | null;
|
|
188
|
+
|
|
189
|
+
@ViewColumn()
|
|
190
|
+
country_status: number;
|
|
119
191
|
}
|