test-entity-library-asm 3.8.8 → 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.
@@ -39,4 +39,18 @@ 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;
42
56
  }
@@ -196,6 +196,62 @@ 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);
199
255
  LocalsCompanyInformationForTheMap = __decorate([
200
256
  (0, typeorm_1.ViewEntity)({
201
257
  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.8.9",
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,46 @@ 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;
149
191
  }