@tudopz/model 2.24.0 → 2.25.0

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.
package/README.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Changelogs
4
4
 
5
+ ### v2.25.0
6
+
7
+ - Add `fbclid` and `gclid` to `Lead`
8
+
5
9
  ### v2.24.0
6
10
 
7
11
  - Add `SUBJECT` and `StaffSubjectTag`
@@ -40,4 +40,6 @@ export declare class Lead {
40
40
  adPosition: string;
41
41
  adGroup: string;
42
42
  quality: LEAD_QUALITY;
43
+ fbclid: string;
44
+ gclid: string;
43
45
  }
package/lib/model/lead.js CHANGED
@@ -142,6 +142,14 @@ tslib_1.__decorate([
142
142
  typeorm_1.Column({ type: 'int', default: LEAD_QUALITY.UNSORTED }),
143
143
  tslib_1.__metadata("design:type", Number)
144
144
  ], Lead.prototype, "quality", void 0);
145
+ tslib_1.__decorate([
146
+ typeorm_1.Column({ type: 'varchar', length: 255 }),
147
+ tslib_1.__metadata("design:type", String)
148
+ ], Lead.prototype, "fbclid", void 0);
149
+ tslib_1.__decorate([
150
+ typeorm_1.Column({ type: 'varchar', length: 255 }),
151
+ tslib_1.__metadata("design:type", String)
152
+ ], Lead.prototype, "gclid", void 0);
145
153
  Lead = tslib_1.__decorate([
146
154
  typeorm_1.Entity({ name: 'leads' })
147
155
  ], Lead);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tudopz/model",
3
- "version": "2.24.0",
3
+ "version": "2.25.0",
4
4
  "description": "PZ Models",
5
5
  "author": "Tu Do <angelwing1001@gmail.com>",
6
6
  "homepage": "",