@experts_hub/shared 1.0.107 → 1.0.109
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 +2 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
|
@@ -11,6 +11,8 @@ export declare enum ModeOfWork {
|
|
|
11
11
|
BOTH = "BOTH"
|
|
12
12
|
}
|
|
13
13
|
export declare enum OnboardingStepEnum {
|
|
14
|
+
SIGN_UP = "SIGN_UP",
|
|
15
|
+
OTP_VERIFIED = "OTP_VERIFIED",
|
|
14
16
|
UPLOAD_RESUME = "UPLOAD_RESUME",
|
|
15
17
|
AI_VIDEO_ASSESMENT = "AI_VIDEO_ASSESMENT",
|
|
16
18
|
CODING_CHALLENGE = "CODING_CHALLENGE",
|
package/dist/index.d.mts
CHANGED
|
@@ -278,6 +278,8 @@ declare enum ModeOfWork {
|
|
|
278
278
|
BOTH = "BOTH"
|
|
279
279
|
}
|
|
280
280
|
declare enum OnboardingStepEnum {
|
|
281
|
+
SIGN_UP = "SIGN_UP",
|
|
282
|
+
OTP_VERIFIED = "OTP_VERIFIED",
|
|
281
283
|
UPLOAD_RESUME = "UPLOAD_RESUME",
|
|
282
284
|
AI_VIDEO_ASSESMENT = "AI_VIDEO_ASSESMENT",
|
|
283
285
|
CODING_CHALLENGE = "CODING_CHALLENGE",
|
package/dist/index.d.ts
CHANGED
|
@@ -278,6 +278,8 @@ declare enum ModeOfWork {
|
|
|
278
278
|
BOTH = "BOTH"
|
|
279
279
|
}
|
|
280
280
|
declare enum OnboardingStepEnum {
|
|
281
|
+
SIGN_UP = "SIGN_UP",
|
|
282
|
+
OTP_VERIFIED = "OTP_VERIFIED",
|
|
281
283
|
UPLOAD_RESUME = "UPLOAD_RESUME",
|
|
282
284
|
AI_VIDEO_ASSESMENT = "AI_VIDEO_ASSESMENT",
|
|
283
285
|
CODING_CHALLENGE = "CODING_CHALLENGE",
|
package/dist/index.js
CHANGED
|
@@ -666,6 +666,8 @@ var ModeOfWork = /* @__PURE__ */ ((ModeOfWork2) => {
|
|
|
666
666
|
return ModeOfWork2;
|
|
667
667
|
})(ModeOfWork || {});
|
|
668
668
|
var OnboardingStepEnum = /* @__PURE__ */ ((OnboardingStepEnum2) => {
|
|
669
|
+
OnboardingStepEnum2["SIGN_UP"] = "SIGN_UP";
|
|
670
|
+
OnboardingStepEnum2["OTP_VERIFIED"] = "OTP_VERIFIED";
|
|
669
671
|
OnboardingStepEnum2["UPLOAD_RESUME"] = "UPLOAD_RESUME";
|
|
670
672
|
OnboardingStepEnum2["AI_VIDEO_ASSESMENT"] = "AI_VIDEO_ASSESMENT";
|
|
671
673
|
OnboardingStepEnum2["CODING_CHALLENGE"] = "CODING_CHALLENGE";
|
|
@@ -680,7 +682,7 @@ __decorateClass([
|
|
|
680
682
|
(0, import_typeorm5.Index)()
|
|
681
683
|
], FreelancerProfile.prototype, "userId", 2);
|
|
682
684
|
__decorateClass([
|
|
683
|
-
(0, import_typeorm5.ManyToOne)(() => User, (user) => user.
|
|
685
|
+
(0, import_typeorm5.ManyToOne)(() => User, (user) => user.freelancerProfile),
|
|
684
686
|
(0, import_typeorm5.JoinColumn)({ name: "user_id" })
|
|
685
687
|
], FreelancerProfile.prototype, "user", 2);
|
|
686
688
|
__decorateClass([
|
package/dist/index.mjs
CHANGED
|
@@ -651,6 +651,8 @@ var ModeOfWork = /* @__PURE__ */ ((ModeOfWork2) => {
|
|
|
651
651
|
return ModeOfWork2;
|
|
652
652
|
})(ModeOfWork || {});
|
|
653
653
|
var OnboardingStepEnum = /* @__PURE__ */ ((OnboardingStepEnum2) => {
|
|
654
|
+
OnboardingStepEnum2["SIGN_UP"] = "SIGN_UP";
|
|
655
|
+
OnboardingStepEnum2["OTP_VERIFIED"] = "OTP_VERIFIED";
|
|
654
656
|
OnboardingStepEnum2["UPLOAD_RESUME"] = "UPLOAD_RESUME";
|
|
655
657
|
OnboardingStepEnum2["AI_VIDEO_ASSESMENT"] = "AI_VIDEO_ASSESMENT";
|
|
656
658
|
OnboardingStepEnum2["CODING_CHALLENGE"] = "CODING_CHALLENGE";
|
|
@@ -665,7 +667,7 @@ __decorateClass([
|
|
|
665
667
|
Index2()
|
|
666
668
|
], FreelancerProfile.prototype, "userId", 2);
|
|
667
669
|
__decorateClass([
|
|
668
|
-
ManyToOne4(() => User, (user) => user.
|
|
670
|
+
ManyToOne4(() => User, (user) => user.freelancerProfile),
|
|
669
671
|
JoinColumn4({ name: "user_id" })
|
|
670
672
|
], FreelancerProfile.prototype, "user", 2);
|
|
671
673
|
__decorateClass([
|