@experts_hub/shared 1.0.215 → 1.0.216
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/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4423,10 +4423,10 @@ __decorateClass([
|
|
|
4423
4423
|
(0, import_typeorm41.Column)({ name: "mobile_code", type: "varchar", nullable: true })
|
|
4424
4424
|
], Lead.prototype, "mobileCode", 2);
|
|
4425
4425
|
__decorateClass([
|
|
4426
|
-
(0, import_typeorm41.Column)({ name: "mobile", type: "varchar",
|
|
4426
|
+
(0, import_typeorm41.Column)({ name: "mobile", type: "varchar", nullable: true })
|
|
4427
4427
|
], Lead.prototype, "mobile", 2);
|
|
4428
4428
|
__decorateClass([
|
|
4429
|
-
(0, import_typeorm41.Column)({ name: "email", type: "varchar",
|
|
4429
|
+
(0, import_typeorm41.Column)({ name: "email", type: "varchar", nullable: true })
|
|
4430
4430
|
], Lead.prototype, "email", 2);
|
|
4431
4431
|
__decorateClass([
|
|
4432
4432
|
(0, import_typeorm41.Column)({ name: "description", type: "varchar", nullable: true })
|
package/dist/index.mjs
CHANGED
|
@@ -4573,10 +4573,10 @@ __decorateClass([
|
|
|
4573
4573
|
Column41({ name: "mobile_code", type: "varchar", nullable: true })
|
|
4574
4574
|
], Lead.prototype, "mobileCode", 2);
|
|
4575
4575
|
__decorateClass([
|
|
4576
|
-
Column41({ name: "mobile", type: "varchar",
|
|
4576
|
+
Column41({ name: "mobile", type: "varchar", nullable: true })
|
|
4577
4577
|
], Lead.prototype, "mobile", 2);
|
|
4578
4578
|
__decorateClass([
|
|
4579
|
-
Column41({ name: "email", type: "varchar",
|
|
4579
|
+
Column41({ name: "email", type: "varchar", nullable: true })
|
|
4580
4580
|
], Lead.prototype, "email", 2);
|
|
4581
4581
|
__decorateClass([
|
|
4582
4582
|
Column41({ name: "description", type: "varchar", nullable: true })
|