@experts_hub/shared 1.0.540 → 1.0.541
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 +9 -0
- package/dist/index.mjs +9 -0
- package/package.json +1 -1
|
@@ -64,6 +64,7 @@ export declare class FreelancerProfile extends BaseEntity {
|
|
|
64
64
|
numberOfHours: number;
|
|
65
65
|
currency: string;
|
|
66
66
|
expectedHourlyCompensation: number;
|
|
67
|
+
expectedAnnualCompensation: number;
|
|
67
68
|
modeOfWork: ModeOfWork;
|
|
68
69
|
availabilityToJoin: string;
|
|
69
70
|
isImmediateJoiner: boolean;
|
package/dist/index.d.mts
CHANGED
|
@@ -912,6 +912,7 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
912
912
|
numberOfHours: number;
|
|
913
913
|
currency: string;
|
|
914
914
|
expectedHourlyCompensation: number;
|
|
915
|
+
expectedAnnualCompensation: number;
|
|
915
916
|
modeOfWork: ModeOfWork;
|
|
916
917
|
availabilityToJoin: string;
|
|
917
918
|
isImmediateJoiner: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -912,6 +912,7 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
912
912
|
numberOfHours: number;
|
|
913
913
|
currency: string;
|
|
914
914
|
expectedHourlyCompensation: number;
|
|
915
|
+
expectedAnnualCompensation: number;
|
|
915
916
|
modeOfWork: ModeOfWork;
|
|
916
917
|
availabilityToJoin: string;
|
|
917
918
|
isImmediateJoiner: boolean;
|
package/dist/index.js
CHANGED
|
@@ -2597,6 +2597,15 @@ __decorateClass([
|
|
|
2597
2597
|
nullable: true
|
|
2598
2598
|
})
|
|
2599
2599
|
], FreelancerProfile.prototype, "expectedHourlyCompensation", 2);
|
|
2600
|
+
__decorateClass([
|
|
2601
|
+
(0, import_typeorm9.Column)({
|
|
2602
|
+
name: "expected_annual_compensation",
|
|
2603
|
+
type: "numeric",
|
|
2604
|
+
precision: 10,
|
|
2605
|
+
scale: 2,
|
|
2606
|
+
nullable: true
|
|
2607
|
+
})
|
|
2608
|
+
], FreelancerProfile.prototype, "expectedAnnualCompensation", 2);
|
|
2600
2609
|
__decorateClass([
|
|
2601
2610
|
(0, import_typeorm9.Column)({
|
|
2602
2611
|
name: "mode_of_work",
|
package/dist/index.mjs
CHANGED
|
@@ -2453,6 +2453,15 @@ __decorateClass([
|
|
|
2453
2453
|
nullable: true
|
|
2454
2454
|
})
|
|
2455
2455
|
], FreelancerProfile.prototype, "expectedHourlyCompensation", 2);
|
|
2456
|
+
__decorateClass([
|
|
2457
|
+
Column9({
|
|
2458
|
+
name: "expected_annual_compensation",
|
|
2459
|
+
type: "numeric",
|
|
2460
|
+
precision: 10,
|
|
2461
|
+
scale: 2,
|
|
2462
|
+
nullable: true
|
|
2463
|
+
})
|
|
2464
|
+
], FreelancerProfile.prototype, "expectedAnnualCompensation", 2);
|
|
2456
2465
|
__decorateClass([
|
|
2457
2466
|
Column9({
|
|
2458
2467
|
name: "mode_of_work",
|