@experts_hub/shared 1.0.410 → 1.0.411
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/company-profile.entity.d.ts +4 -1
- package/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +11 -0
- package/dist/index.mjs +11 -0
- package/package.json +1 -1
|
@@ -3,7 +3,9 @@ import { User } from "./user.entity";
|
|
|
3
3
|
export declare enum KindOfHire {
|
|
4
4
|
FULLTIME = "FULLTIME",
|
|
5
5
|
PARTTIME = "PARTTIME",
|
|
6
|
-
BOTH = "BOTH"
|
|
6
|
+
BOTH = "BOTH",
|
|
7
|
+
HOURLY = "HOURLY",
|
|
8
|
+
FTE = "FTE"
|
|
7
9
|
}
|
|
8
10
|
export declare enum ModeOfHire {
|
|
9
11
|
ONSITE = "ONSITE",
|
|
@@ -35,6 +37,7 @@ export declare class CompanyProfile extends BaseEntity {
|
|
|
35
37
|
skills: string[];
|
|
36
38
|
requiredFreelancer: string;
|
|
37
39
|
kindOfHiring: KindOfHire;
|
|
40
|
+
numberOfHours: number;
|
|
38
41
|
modeOfHire: ModeOfHire;
|
|
39
42
|
foundUsOn: FromUsOn;
|
|
40
43
|
foundUsOnDetail: string;
|
package/dist/index.d.mts
CHANGED
|
@@ -794,7 +794,9 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
794
794
|
declare enum KindOfHire {
|
|
795
795
|
FULLTIME = "FULLTIME",
|
|
796
796
|
PARTTIME = "PARTTIME",
|
|
797
|
-
BOTH = "BOTH"
|
|
797
|
+
BOTH = "BOTH",
|
|
798
|
+
HOURLY = "HOURLY",
|
|
799
|
+
FTE = "FTE"
|
|
798
800
|
}
|
|
799
801
|
declare enum ModeOfHire {
|
|
800
802
|
ONSITE = "ONSITE",
|
|
@@ -826,6 +828,7 @@ declare class CompanyProfile extends BaseEntity {
|
|
|
826
828
|
skills: string[];
|
|
827
829
|
requiredFreelancer: string;
|
|
828
830
|
kindOfHiring: KindOfHire;
|
|
831
|
+
numberOfHours: number;
|
|
829
832
|
modeOfHire: ModeOfHire;
|
|
830
833
|
foundUsOn: FromUsOn;
|
|
831
834
|
foundUsOnDetail: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -794,7 +794,9 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
794
794
|
declare enum KindOfHire {
|
|
795
795
|
FULLTIME = "FULLTIME",
|
|
796
796
|
PARTTIME = "PARTTIME",
|
|
797
|
-
BOTH = "BOTH"
|
|
797
|
+
BOTH = "BOTH",
|
|
798
|
+
HOURLY = "HOURLY",
|
|
799
|
+
FTE = "FTE"
|
|
798
800
|
}
|
|
799
801
|
declare enum ModeOfHire {
|
|
800
802
|
ONSITE = "ONSITE",
|
|
@@ -826,6 +828,7 @@ declare class CompanyProfile extends BaseEntity {
|
|
|
826
828
|
skills: string[];
|
|
827
829
|
requiredFreelancer: string;
|
|
828
830
|
kindOfHiring: KindOfHire;
|
|
831
|
+
numberOfHours: number;
|
|
829
832
|
modeOfHire: ModeOfHire;
|
|
830
833
|
foundUsOn: FromUsOn;
|
|
831
834
|
foundUsOnDetail: string;
|
package/dist/index.js
CHANGED
|
@@ -2190,6 +2190,8 @@ var KindOfHire = /* @__PURE__ */ ((KindOfHire2) => {
|
|
|
2190
2190
|
KindOfHire2["FULLTIME"] = "FULLTIME";
|
|
2191
2191
|
KindOfHire2["PARTTIME"] = "PARTTIME";
|
|
2192
2192
|
KindOfHire2["BOTH"] = "BOTH";
|
|
2193
|
+
KindOfHire2["HOURLY"] = "HOURLY";
|
|
2194
|
+
KindOfHire2["FTE"] = "FTE";
|
|
2193
2195
|
return KindOfHire2;
|
|
2194
2196
|
})(KindOfHire || {});
|
|
2195
2197
|
var ModeOfHire = /* @__PURE__ */ ((ModeOfHire2) => {
|
|
@@ -2266,6 +2268,15 @@ __decorateClass([
|
|
|
2266
2268
|
nullable: true
|
|
2267
2269
|
})
|
|
2268
2270
|
], CompanyProfile.prototype, "kindOfHiring", 2);
|
|
2271
|
+
__decorateClass([
|
|
2272
|
+
(0, import_typeorm9.Column)({
|
|
2273
|
+
name: "number_of_hours",
|
|
2274
|
+
type: "decimal",
|
|
2275
|
+
precision: 4,
|
|
2276
|
+
scale: 2,
|
|
2277
|
+
default: 0
|
|
2278
|
+
})
|
|
2279
|
+
], CompanyProfile.prototype, "numberOfHours", 2);
|
|
2269
2280
|
__decorateClass([
|
|
2270
2281
|
(0, import_typeorm9.Column)({
|
|
2271
2282
|
name: "mode_of_hire",
|
package/dist/index.mjs
CHANGED
|
@@ -2075,6 +2075,8 @@ var KindOfHire = /* @__PURE__ */ ((KindOfHire2) => {
|
|
|
2075
2075
|
KindOfHire2["FULLTIME"] = "FULLTIME";
|
|
2076
2076
|
KindOfHire2["PARTTIME"] = "PARTTIME";
|
|
2077
2077
|
KindOfHire2["BOTH"] = "BOTH";
|
|
2078
|
+
KindOfHire2["HOURLY"] = "HOURLY";
|
|
2079
|
+
KindOfHire2["FTE"] = "FTE";
|
|
2078
2080
|
return KindOfHire2;
|
|
2079
2081
|
})(KindOfHire || {});
|
|
2080
2082
|
var ModeOfHire = /* @__PURE__ */ ((ModeOfHire2) => {
|
|
@@ -2151,6 +2153,15 @@ __decorateClass([
|
|
|
2151
2153
|
nullable: true
|
|
2152
2154
|
})
|
|
2153
2155
|
], CompanyProfile.prototype, "kindOfHiring", 2);
|
|
2156
|
+
__decorateClass([
|
|
2157
|
+
Column9({
|
|
2158
|
+
name: "number_of_hours",
|
|
2159
|
+
type: "decimal",
|
|
2160
|
+
precision: 4,
|
|
2161
|
+
scale: 2,
|
|
2162
|
+
default: 0
|
|
2163
|
+
})
|
|
2164
|
+
], CompanyProfile.prototype, "numberOfHours", 2);
|
|
2154
2165
|
__decorateClass([
|
|
2155
2166
|
Column9({
|
|
2156
2167
|
name: "mode_of_hire",
|