@experts_hub/shared 1.0.185 → 1.0.187
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/entities/freelancer-profile.entity.d.ts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -1
- package/dist/index.mjs +4 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1421,6 +1421,9 @@ __decorateClass([
|
|
|
1421
1421
|
__decorateClass([
|
|
1422
1422
|
(0, import_typeorm5.Column)({ name: "about", type: "varchar", nullable: true })
|
|
1423
1423
|
], FreelancerProfile.prototype, "about", 2);
|
|
1424
|
+
__decorateClass([
|
|
1425
|
+
(0, import_typeorm5.Column)({ name: "profile_completed_percentage", type: "integer", default: 0 })
|
|
1426
|
+
], FreelancerProfile.prototype, "profileCompletedPercentage", 2);
|
|
1424
1427
|
FreelancerProfile = __decorateClass([
|
|
1425
1428
|
(0, import_typeorm5.Entity)("freelancer_profiles")
|
|
1426
1429
|
], FreelancerProfile);
|
|
@@ -2493,7 +2496,7 @@ __decorateClass([
|
|
|
2493
2496
|
(0, import_typeorm28.Column)({ name: "mobile_code", type: "varchar", nullable: true })
|
|
2494
2497
|
], User.prototype, "mobileCode", 2);
|
|
2495
2498
|
__decorateClass([
|
|
2496
|
-
(0, import_typeorm28.Column)({ name: "mobile", type: "varchar",
|
|
2499
|
+
(0, import_typeorm28.Column)({ name: "mobile", type: "varchar", nullable: true })
|
|
2497
2500
|
], User.prototype, "mobile", 2);
|
|
2498
2501
|
__decorateClass([
|
|
2499
2502
|
(0, import_typeorm28.Column)({ name: "password", type: "varchar", nullable: true })
|
package/dist/index.mjs
CHANGED
|
@@ -1392,6 +1392,9 @@ __decorateClass([
|
|
|
1392
1392
|
__decorateClass([
|
|
1393
1393
|
Column5({ name: "about", type: "varchar", nullable: true })
|
|
1394
1394
|
], FreelancerProfile.prototype, "about", 2);
|
|
1395
|
+
__decorateClass([
|
|
1396
|
+
Column5({ name: "profile_completed_percentage", type: "integer", default: 0 })
|
|
1397
|
+
], FreelancerProfile.prototype, "profileCompletedPercentage", 2);
|
|
1395
1398
|
FreelancerProfile = __decorateClass([
|
|
1396
1399
|
Entity4("freelancer_profiles")
|
|
1397
1400
|
], FreelancerProfile);
|
|
@@ -2569,7 +2572,7 @@ __decorateClass([
|
|
|
2569
2572
|
Column28({ name: "mobile_code", type: "varchar", nullable: true })
|
|
2570
2573
|
], User.prototype, "mobileCode", 2);
|
|
2571
2574
|
__decorateClass([
|
|
2572
|
-
Column28({ name: "mobile", type: "varchar",
|
|
2575
|
+
Column28({ name: "mobile", type: "varchar", nullable: true })
|
|
2573
2576
|
], User.prototype, "mobile", 2);
|
|
2574
2577
|
__decorateClass([
|
|
2575
2578
|
Column28({ name: "password", type: "varchar", nullable: true })
|