test-entity-library-asm 3.9.49 → 3.9.51

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