test-entity-library-asm 3.8.8 → 3.9.0

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.
@@ -39,4 +39,29 @@ export declare class LocalsCompanyInformationForTheMap {
39
39
  square_email: string;
40
40
  square_phone: string;
41
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;
56
+ partner_document: string;
57
+ partner_name: string;
58
+ partner_surname: string;
59
+ partner_email: string;
60
+ partner_phone: string;
61
+ partner_city: string;
62
+ partner_address: string;
63
+ partner_profile: any | null;
64
+ partner_owner: number;
65
+ partner_status: number;
66
+ partner_visible: number;
42
67
  }
@@ -196,6 +196,106 @@ var LocalsCompanyInformationForTheMap = /** @class */ (function () {
196
196
  (0, typeorm_1.ViewColumn)(),
197
197
  __metadata("design:type", Number)
198
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);
255
+ __decorate([
256
+ (0, typeorm_1.ViewColumn)(),
257
+ __metadata("design:type", String)
258
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_document", void 0);
259
+ __decorate([
260
+ (0, typeorm_1.ViewColumn)(),
261
+ __metadata("design:type", String)
262
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_name", void 0);
263
+ __decorate([
264
+ (0, typeorm_1.ViewColumn)(),
265
+ __metadata("design:type", String)
266
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_surname", void 0);
267
+ __decorate([
268
+ (0, typeorm_1.ViewColumn)(),
269
+ __metadata("design:type", String)
270
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_email", void 0);
271
+ __decorate([
272
+ (0, typeorm_1.ViewColumn)(),
273
+ __metadata("design:type", String)
274
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_phone", void 0);
275
+ __decorate([
276
+ (0, typeorm_1.ViewColumn)(),
277
+ __metadata("design:type", String)
278
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_city", void 0);
279
+ __decorate([
280
+ (0, typeorm_1.ViewColumn)(),
281
+ __metadata("design:type", String)
282
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_address", void 0);
283
+ __decorate([
284
+ (0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
285
+ __metadata("design:type", Object)
286
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_profile", void 0);
287
+ __decorate([
288
+ (0, typeorm_1.ViewColumn)(),
289
+ __metadata("design:type", Number)
290
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_owner", void 0);
291
+ __decorate([
292
+ (0, typeorm_1.ViewColumn)(),
293
+ __metadata("design:type", Number)
294
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_status", void 0);
295
+ __decorate([
296
+ (0, typeorm_1.ViewColumn)(),
297
+ __metadata("design:type", Number)
298
+ ], LocalsCompanyInformationForTheMap.prototype, "partner_visible", void 0);
199
299
  LocalsCompanyInformationForTheMap = __decorate([
200
300
  (0, typeorm_1.ViewEntity)({
201
301
  name: "locals_company_information_for_the_map",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "3.8.8",
3
+ "version": "3.9.0",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -146,4 +146,79 @@ export class LocalsCompanyInformationForTheMap {
146
146
 
147
147
  @ViewColumn()
148
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;
191
+
192
+ @ViewColumn()
193
+ partner_document: string;
194
+
195
+ @ViewColumn()
196
+ partner_name: string;
197
+
198
+ @ViewColumn()
199
+ partner_surname: string;
200
+
201
+ @ViewColumn()
202
+ partner_email: string;
203
+
204
+ @ViewColumn()
205
+ partner_phone: string;
206
+
207
+ @ViewColumn()
208
+ partner_city: string;
209
+
210
+ @ViewColumn()
211
+ partner_address: string;
212
+
213
+ @ViewColumn({ transformer: jsonTransformer })
214
+ partner_profile: any | null;
215
+
216
+ @ViewColumn()
217
+ partner_owner: number;
218
+
219
+ @ViewColumn()
220
+ partner_status: number;
221
+
222
+ @ViewColumn()
223
+ partner_visible: number;
149
224
  }