test-entity-library-asm 2.7.12 → 2.7.14
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,19 @@ 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;
|
|
17
|
+
isVerifyPhone: number;
|
|
18
|
+
isVerifyEmail: number;
|
|
16
19
|
address: string;
|
|
17
20
|
visible: number;
|
|
18
21
|
company: number;
|
|
19
|
-
prefix: string;
|
|
20
22
|
}
|
|
@@ -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,35 +72,43 @@ 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
88
|
__decorate([
|
|
89
89
|
(0, typeorm_1.ViewColumn)(),
|
|
90
90
|
__metadata("design:type", String)
|
|
91
|
-
], ViewLocalsCompanies.prototype, "
|
|
91
|
+
], ViewLocalsCompanies.prototype, "email", void 0);
|
|
92
92
|
__decorate([
|
|
93
93
|
(0, typeorm_1.ViewColumn)(),
|
|
94
94
|
__metadata("design:type", Number)
|
|
95
|
-
], ViewLocalsCompanies.prototype, "
|
|
95
|
+
], ViewLocalsCompanies.prototype, "isVerifyPhone", void 0);
|
|
96
96
|
__decorate([
|
|
97
97
|
(0, typeorm_1.ViewColumn)(),
|
|
98
98
|
__metadata("design:type", Number)
|
|
99
|
-
], ViewLocalsCompanies.prototype, "
|
|
99
|
+
], ViewLocalsCompanies.prototype, "isVerifyEmail", void 0);
|
|
100
100
|
__decorate([
|
|
101
101
|
(0, typeorm_1.ViewColumn)(),
|
|
102
102
|
__metadata("design:type", String)
|
|
103
|
-
], ViewLocalsCompanies.prototype, "
|
|
103
|
+
], ViewLocalsCompanies.prototype, "address", void 0);
|
|
104
|
+
__decorate([
|
|
105
|
+
(0, typeorm_1.ViewColumn)(),
|
|
106
|
+
__metadata("design:type", Number)
|
|
107
|
+
], ViewLocalsCompanies.prototype, "visible", void 0);
|
|
108
|
+
__decorate([
|
|
109
|
+
(0, typeorm_1.ViewColumn)(),
|
|
110
|
+
__metadata("design:type", Number)
|
|
111
|
+
], ViewLocalsCompanies.prototype, "company", void 0);
|
|
104
112
|
ViewLocalsCompanies = __decorate([
|
|
105
113
|
(0, typeorm_1.ViewEntity)({
|
|
106
114
|
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,25 @@ 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
|
|
68
|
+
|
|
69
|
+
@ViewColumn()
|
|
70
|
+
isVerifyPhone: number
|
|
71
|
+
|
|
72
|
+
@ViewColumn()
|
|
73
|
+
isVerifyEmail: number
|
|
63
74
|
|
|
64
75
|
@ViewColumn()
|
|
65
76
|
address: string
|
|
@@ -69,7 +80,4 @@ export class ViewLocalsCompanies {
|
|
|
69
80
|
|
|
70
81
|
@ViewColumn()
|
|
71
82
|
company: number
|
|
72
|
-
|
|
73
|
-
@ViewColumn()
|
|
74
|
-
prefix: string
|
|
75
83
|
}
|