test-entity-library-asm 3.9.49 → 3.9.50

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.
@@ -56,6 +56,22 @@ export declare class LocalsCompanyInformationForTheTable {
56
56
  country_prefix: string;
57
57
  country_status: number;
58
58
  country_structure_phone: string;
59
+ created_by_id: number;
60
+ created_by_code: string;
61
+ created_by_document: string | null;
62
+ created_by_name: string;
63
+ created_by_surname: string;
64
+ created_by_full_name: string;
65
+ created_by_phone: string | null;
66
+ created_by_owner: number;
67
+ created_by_email: string;
68
+ created_by_city: string | null;
69
+ created_by_address: string | null;
70
+ created_by_profile: any | null;
71
+ created_by_status: number;
72
+ created_by_visible: number;
73
+ created_by_created: Date;
74
+ created_by_updated: Date;
59
75
  partner_id: number;
60
76
  partner_code: string;
61
77
  partner_document: string | null;
@@ -254,6 +254,70 @@ __decorate([
254
254
  (0, typeorm_1.ViewColumn)(),
255
255
  __metadata("design:type", String)
256
256
  ], LocalsCompanyInformationForTheTable.prototype, "country_structure_phone", void 0);
257
+ __decorate([
258
+ (0, typeorm_1.ViewColumn)(),
259
+ __metadata("design:type", Number)
260
+ ], LocalsCompanyInformationForTheTable.prototype, "created_by_id", void 0);
261
+ __decorate([
262
+ (0, typeorm_1.ViewColumn)(),
263
+ __metadata("design:type", String)
264
+ ], LocalsCompanyInformationForTheTable.prototype, "created_by_code", void 0);
265
+ __decorate([
266
+ (0, typeorm_1.ViewColumn)(),
267
+ __metadata("design:type", Object)
268
+ ], LocalsCompanyInformationForTheTable.prototype, "created_by_document", void 0);
269
+ __decorate([
270
+ (0, typeorm_1.ViewColumn)(),
271
+ __metadata("design:type", String)
272
+ ], LocalsCompanyInformationForTheTable.prototype, "created_by_name", void 0);
273
+ __decorate([
274
+ (0, typeorm_1.ViewColumn)(),
275
+ __metadata("design:type", String)
276
+ ], LocalsCompanyInformationForTheTable.prototype, "created_by_surname", void 0);
277
+ __decorate([
278
+ (0, typeorm_1.ViewColumn)(),
279
+ __metadata("design:type", String)
280
+ ], LocalsCompanyInformationForTheTable.prototype, "created_by_full_name", void 0);
281
+ __decorate([
282
+ (0, typeorm_1.ViewColumn)(),
283
+ __metadata("design:type", Object)
284
+ ], LocalsCompanyInformationForTheTable.prototype, "created_by_phone", void 0);
285
+ __decorate([
286
+ (0, typeorm_1.ViewColumn)(),
287
+ __metadata("design:type", Number)
288
+ ], LocalsCompanyInformationForTheTable.prototype, "created_by_owner", void 0);
289
+ __decorate([
290
+ (0, typeorm_1.ViewColumn)(),
291
+ __metadata("design:type", String)
292
+ ], LocalsCompanyInformationForTheTable.prototype, "created_by_email", void 0);
293
+ __decorate([
294
+ (0, typeorm_1.ViewColumn)(),
295
+ __metadata("design:type", Object)
296
+ ], LocalsCompanyInformationForTheTable.prototype, "created_by_city", void 0);
297
+ __decorate([
298
+ (0, typeorm_1.ViewColumn)(),
299
+ __metadata("design:type", Object)
300
+ ], LocalsCompanyInformationForTheTable.prototype, "created_by_address", void 0);
301
+ __decorate([
302
+ (0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
303
+ __metadata("design:type", Object)
304
+ ], LocalsCompanyInformationForTheTable.prototype, "created_by_profile", void 0);
305
+ __decorate([
306
+ (0, typeorm_1.ViewColumn)(),
307
+ __metadata("design:type", Number)
308
+ ], LocalsCompanyInformationForTheTable.prototype, "created_by_status", void 0);
309
+ __decorate([
310
+ (0, typeorm_1.ViewColumn)(),
311
+ __metadata("design:type", Number)
312
+ ], LocalsCompanyInformationForTheTable.prototype, "created_by_visible", void 0);
313
+ __decorate([
314
+ (0, typeorm_1.ViewColumn)(),
315
+ __metadata("design:type", Date)
316
+ ], LocalsCompanyInformationForTheTable.prototype, "created_by_created", void 0);
317
+ __decorate([
318
+ (0, typeorm_1.ViewColumn)(),
319
+ __metadata("design:type", Date)
320
+ ], LocalsCompanyInformationForTheTable.prototype, "created_by_updated", void 0);
257
321
  __decorate([
258
322
  (0, typeorm_1.ViewColumn)(),
259
323
  __metadata("design:type", Number)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "3.9.49",
3
+ "version": "3.9.50",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -187,6 +187,54 @@ export class LocalsCompanyInformationForTheTable {
187
187
  @ViewColumn()
188
188
  country_structure_phone: string;
189
189
 
190
+ @ViewColumn()
191
+ created_by_id: number;
192
+
193
+ @ViewColumn()
194
+ created_by_code: string;
195
+
196
+ @ViewColumn()
197
+ created_by_document: string | null;
198
+
199
+ @ViewColumn()
200
+ created_by_name: string;
201
+
202
+ @ViewColumn()
203
+ created_by_surname: string;
204
+
205
+ @ViewColumn()
206
+ created_by_full_name: string;
207
+
208
+ @ViewColumn()
209
+ created_by_phone: string | null;
210
+
211
+ @ViewColumn()
212
+ created_by_owner: number;
213
+
214
+ @ViewColumn()
215
+ created_by_email: string;
216
+
217
+ @ViewColumn()
218
+ created_by_city: string | null;
219
+
220
+ @ViewColumn()
221
+ created_by_address: string | null;
222
+
223
+ @ViewColumn({ transformer: jsonTransformer })
224
+ created_by_profile: any | null;
225
+
226
+ @ViewColumn()
227
+ created_by_status: number;
228
+
229
+ @ViewColumn()
230
+ created_by_visible: number;
231
+
232
+ @ViewColumn()
233
+ created_by_created: Date;
234
+
235
+ @ViewColumn()
236
+ created_by_updated: Date;
237
+
190
238
  @ViewColumn()
191
239
  partner_id: number;
192
240