test-entity-library-asm 2.7.12 → 2.7.13
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.
|
@@ -4,17 +4,17 @@ export declare class ViewLocalsCompanies {
|
|
|
4
4
|
created_local: string;
|
|
5
5
|
updated_local: string;
|
|
6
6
|
status: number;
|
|
7
|
-
has_square:
|
|
7
|
+
has_square: number;
|
|
8
8
|
pos_system_name: string;
|
|
9
9
|
city_name: string;
|
|
10
10
|
region_name: string;
|
|
11
11
|
country_name: string;
|
|
12
|
+
prefix: string;
|
|
12
13
|
country_code: string;
|
|
13
|
-
square_name: string;
|
|
14
14
|
total_partners: number;
|
|
15
|
-
|
|
15
|
+
cellphone: string;
|
|
16
|
+
email: string;
|
|
16
17
|
address: string;
|
|
17
18
|
visible: number;
|
|
18
19
|
company: number;
|
|
19
|
-
prefix: string;
|
|
20
20
|
}
|
|
@@ -51,7 +51,7 @@ var ViewLocalsCompanies = /** @class */ (function () {
|
|
|
51
51
|
], ViewLocalsCompanies.prototype, "status", void 0);
|
|
52
52
|
__decorate([
|
|
53
53
|
(0, typeorm_1.ViewColumn)(),
|
|
54
|
-
__metadata("design:type",
|
|
54
|
+
__metadata("design:type", Number)
|
|
55
55
|
], ViewLocalsCompanies.prototype, "has_square", void 0);
|
|
56
56
|
__decorate([
|
|
57
57
|
(0, typeorm_1.ViewColumn)(),
|
|
@@ -72,19 +72,23 @@ var ViewLocalsCompanies = /** @class */ (function () {
|
|
|
72
72
|
__decorate([
|
|
73
73
|
(0, typeorm_1.ViewColumn)(),
|
|
74
74
|
__metadata("design:type", String)
|
|
75
|
-
], ViewLocalsCompanies.prototype, "
|
|
75
|
+
], ViewLocalsCompanies.prototype, "prefix", void 0);
|
|
76
76
|
__decorate([
|
|
77
77
|
(0, typeorm_1.ViewColumn)(),
|
|
78
78
|
__metadata("design:type", String)
|
|
79
|
-
], ViewLocalsCompanies.prototype, "
|
|
79
|
+
], ViewLocalsCompanies.prototype, "country_code", void 0);
|
|
80
80
|
__decorate([
|
|
81
81
|
(0, typeorm_1.ViewColumn)(),
|
|
82
82
|
__metadata("design:type", Number)
|
|
83
83
|
], ViewLocalsCompanies.prototype, "total_partners", void 0);
|
|
84
84
|
__decorate([
|
|
85
|
-
(0, typeorm_1.ViewColumn)(
|
|
86
|
-
__metadata("design:type",
|
|
87
|
-
], ViewLocalsCompanies.prototype, "
|
|
85
|
+
(0, typeorm_1.ViewColumn)(),
|
|
86
|
+
__metadata("design:type", String)
|
|
87
|
+
], ViewLocalsCompanies.prototype, "cellphone", void 0);
|
|
88
|
+
__decorate([
|
|
89
|
+
(0, typeorm_1.ViewColumn)(),
|
|
90
|
+
__metadata("design:type", String)
|
|
91
|
+
], ViewLocalsCompanies.prototype, "email", void 0);
|
|
88
92
|
__decorate([
|
|
89
93
|
(0, typeorm_1.ViewColumn)(),
|
|
90
94
|
__metadata("design:type", String)
|
|
@@ -97,10 +101,6 @@ var ViewLocalsCompanies = /** @class */ (function () {
|
|
|
97
101
|
(0, typeorm_1.ViewColumn)(),
|
|
98
102
|
__metadata("design:type", Number)
|
|
99
103
|
], ViewLocalsCompanies.prototype, "company", void 0);
|
|
100
|
-
__decorate([
|
|
101
|
-
(0, typeorm_1.ViewColumn)(),
|
|
102
|
-
__metadata("design:type", String)
|
|
103
|
-
], ViewLocalsCompanies.prototype, "prefix", void 0);
|
|
104
104
|
ViewLocalsCompanies = __decorate([
|
|
105
105
|
(0, typeorm_1.ViewEntity)({
|
|
106
106
|
name: 'view_locals_companies',
|
package/package.json
CHANGED
|
@@ -23,8 +23,10 @@ const DateTransformer = {
|
|
|
23
23
|
export class ViewLocalsCompanies {
|
|
24
24
|
@ViewColumn()
|
|
25
25
|
id_local: number
|
|
26
|
+
|
|
26
27
|
@ViewColumn()
|
|
27
28
|
name_local: string
|
|
29
|
+
|
|
28
30
|
@ViewColumn({ transformer: DateTransformer })
|
|
29
31
|
created_local: string
|
|
30
32
|
|
|
@@ -35,7 +37,7 @@ export class ViewLocalsCompanies {
|
|
|
35
37
|
status: number
|
|
36
38
|
|
|
37
39
|
@ViewColumn()
|
|
38
|
-
has_square:
|
|
40
|
+
has_square: number
|
|
39
41
|
|
|
40
42
|
@ViewColumn()
|
|
41
43
|
pos_system_name: string
|
|
@@ -50,16 +52,19 @@ export class ViewLocalsCompanies {
|
|
|
50
52
|
country_name: string
|
|
51
53
|
|
|
52
54
|
@ViewColumn()
|
|
53
|
-
|
|
55
|
+
prefix: string
|
|
54
56
|
|
|
55
57
|
@ViewColumn()
|
|
56
|
-
|
|
58
|
+
country_code: string
|
|
57
59
|
|
|
58
60
|
@ViewColumn()
|
|
59
61
|
total_partners: number
|
|
60
62
|
|
|
61
|
-
@ViewColumn(
|
|
62
|
-
|
|
63
|
+
@ViewColumn()
|
|
64
|
+
cellphone: string
|
|
65
|
+
|
|
66
|
+
@ViewColumn()
|
|
67
|
+
email: string
|
|
63
68
|
|
|
64
69
|
@ViewColumn()
|
|
65
70
|
address: string
|
|
@@ -69,7 +74,5 @@ export class ViewLocalsCompanies {
|
|
|
69
74
|
|
|
70
75
|
@ViewColumn()
|
|
71
76
|
company: number
|
|
72
|
-
|
|
73
|
-
@ViewColumn()
|
|
74
|
-
prefix: string
|
|
77
|
+
|
|
75
78
|
}
|