test-entity-library-asm 2.6.21 → 2.6.23
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.
|
@@ -7,12 +7,12 @@ export declare class DiscountsCodeUser {
|
|
|
7
7
|
type: number;
|
|
8
8
|
single_use: number;
|
|
9
9
|
use_limit: number;
|
|
10
|
-
created:
|
|
10
|
+
created: any;
|
|
11
11
|
start: string;
|
|
12
12
|
expiration: string;
|
|
13
13
|
repeat_days: any;
|
|
14
14
|
updated_by: number;
|
|
15
|
-
updated:
|
|
15
|
+
updated: any;
|
|
16
16
|
status: number;
|
|
17
17
|
local_id: number;
|
|
18
18
|
local_name: string;
|
|
@@ -24,5 +24,5 @@ export declare class DiscountsCodeUser {
|
|
|
24
24
|
partner_surname: string;
|
|
25
25
|
partner_profile: any;
|
|
26
26
|
partner_status: number;
|
|
27
|
-
|
|
27
|
+
number_of_times_used: number;
|
|
28
28
|
}
|
|
@@ -71,7 +71,7 @@ var DiscountsCodeUser = /** @class */ (function () {
|
|
|
71
71
|
], DiscountsCodeUser.prototype, "use_limit", void 0);
|
|
72
72
|
__decorate([
|
|
73
73
|
(0, typeorm_1.ViewColumn)({ transformer: DateTransformer }),
|
|
74
|
-
__metadata("design:type",
|
|
74
|
+
__metadata("design:type", Object)
|
|
75
75
|
], DiscountsCodeUser.prototype, "created", void 0);
|
|
76
76
|
__decorate([
|
|
77
77
|
(0, typeorm_1.ViewColumn)(),
|
|
@@ -91,7 +91,7 @@ var DiscountsCodeUser = /** @class */ (function () {
|
|
|
91
91
|
], DiscountsCodeUser.prototype, "updated_by", void 0);
|
|
92
92
|
__decorate([
|
|
93
93
|
(0, typeorm_1.ViewColumn)({ transformer: DateTransformer }),
|
|
94
|
-
__metadata("design:type",
|
|
94
|
+
__metadata("design:type", Object)
|
|
95
95
|
], DiscountsCodeUser.prototype, "updated", void 0);
|
|
96
96
|
__decorate([
|
|
97
97
|
(0, typeorm_1.ViewColumn)(),
|
|
@@ -140,7 +140,7 @@ var DiscountsCodeUser = /** @class */ (function () {
|
|
|
140
140
|
__decorate([
|
|
141
141
|
(0, typeorm_1.ViewColumn)(),
|
|
142
142
|
__metadata("design:type", Number)
|
|
143
|
-
], DiscountsCodeUser.prototype, "
|
|
143
|
+
], DiscountsCodeUser.prototype, "number_of_times_used", void 0);
|
|
144
144
|
DiscountsCodeUser = __decorate([
|
|
145
145
|
(0, typeorm_1.ViewEntity)({
|
|
146
146
|
name: 'discounts_code_user',
|
package/package.json
CHANGED
|
@@ -54,7 +54,7 @@ export class DiscountsCodeUser {
|
|
|
54
54
|
use_limit: number
|
|
55
55
|
|
|
56
56
|
@ViewColumn({ transformer: DateTransformer })
|
|
57
|
-
created:
|
|
57
|
+
created: any
|
|
58
58
|
|
|
59
59
|
@ViewColumn()
|
|
60
60
|
start: string
|
|
@@ -69,7 +69,7 @@ export class DiscountsCodeUser {
|
|
|
69
69
|
updated_by: number
|
|
70
70
|
|
|
71
71
|
@ViewColumn({ transformer: DateTransformer })
|
|
72
|
-
updated:
|
|
72
|
+
updated: any
|
|
73
73
|
|
|
74
74
|
@ViewColumn()
|
|
75
75
|
status: number
|
|
@@ -105,5 +105,5 @@ export class DiscountsCodeUser {
|
|
|
105
105
|
partner_status: number
|
|
106
106
|
|
|
107
107
|
@ViewColumn()
|
|
108
|
-
|
|
108
|
+
number_of_times_used: number
|
|
109
109
|
}
|