@uniorganization/uni-lib 3.0.0 → 4.0.1

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.
@@ -28,7 +28,6 @@ export declare class Evaluations {
28
28
  waiverReason: string;
29
29
  outcomeReason: string;
30
30
  feedbackId: number;
31
- isSale: string;
32
31
  agent: Users;
33
32
  evaluator: Users;
34
33
  disputedBy: Users;
@@ -108,10 +108,6 @@ __decorate([
108
108
  (0, typeorm_1.Column)({ name: 'feedback_id' }),
109
109
  __metadata("design:type", Number)
110
110
  ], Evaluations.prototype, "feedbackId", void 0);
111
- __decorate([
112
- (0, typeorm_1.Column)({ name: 'is_sale' }),
113
- __metadata("design:type", String)
114
- ], Evaluations.prototype, "isSale", void 0);
115
111
  __decorate([
116
112
  (0, typeorm_1.ManyToOne)(() => usr_entity_1.Users),
117
113
  (0, typeorm_1.JoinColumn)({ name: 'agent_id' }),
@@ -17,4 +17,5 @@ export declare class FormFields {
17
17
  usage: string;
18
18
  dependency: string;
19
19
  dependencyValue: Record<string, any>;
20
+ config: Record<string, any>;
20
21
  }
@@ -82,6 +82,10 @@ __decorate([
82
82
  (0, typeorm_1.Column)({ name: 'dependency_value', type: "json" }),
83
83
  __metadata("design:type", Object)
84
84
  ], FormFields.prototype, "dependencyValue", void 0);
85
+ __decorate([
86
+ (0, typeorm_1.Column)({ name: 'config', type: "json" }),
87
+ __metadata("design:type", Object)
88
+ ], FormFields.prototype, "config", void 0);
85
89
  exports.FormFields = FormFields = __decorate([
86
90
  (0, typeorm_1.Entity)('form_fields', { schema: 'tracking' })
87
91
  ], FormFields);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniorganization/uni-lib",
3
- "version": "3.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "UNI Library",
5
5
  "author": "Jhomiguel",
6
6
  "main": "dist/index.js",