@experts_hub/shared 1.0.164 → 1.0.165
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 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +4 -1
- package/dist/index.mjs +4 -1
- package/package.json +1 -1
|
@@ -12,8 +12,8 @@ export declare enum ModeOfWork {
|
|
|
12
12
|
}
|
|
13
13
|
export declare enum OnboardingStepEnum {
|
|
14
14
|
SIGN_UP = "SIGN_UP",
|
|
15
|
-
OTP_VERIFIED = "OTP_VERIFIED",
|
|
16
15
|
UPLOAD_RESUME = "UPLOAD_RESUME",
|
|
16
|
+
PARSE_RESUME = "PARSE_RESUME",
|
|
17
17
|
AI_VIDEO_ASSESMENT = "AI_VIDEO_ASSESMENT",
|
|
18
18
|
CODING_CHALLENGE = "CODING_CHALLENGE",
|
|
19
19
|
PROFILE_COMPLETION = "PROFILE_COMPLETION"
|
|
@@ -21,6 +21,7 @@ export declare enum OnboardingStepEnum {
|
|
|
21
21
|
export declare class FreelancerProfile extends BaseEntity {
|
|
22
22
|
userId: number;
|
|
23
23
|
user: User;
|
|
24
|
+
talentId: string;
|
|
24
25
|
resumeUrl: string;
|
|
25
26
|
resumeData: string;
|
|
26
27
|
isDeveloper: boolean;
|
package/dist/index.d.mts
CHANGED
|
@@ -591,8 +591,8 @@ declare enum ModeOfWork {
|
|
|
591
591
|
}
|
|
592
592
|
declare enum OnboardingStepEnum {
|
|
593
593
|
SIGN_UP = "SIGN_UP",
|
|
594
|
-
OTP_VERIFIED = "OTP_VERIFIED",
|
|
595
594
|
UPLOAD_RESUME = "UPLOAD_RESUME",
|
|
595
|
+
PARSE_RESUME = "PARSE_RESUME",
|
|
596
596
|
AI_VIDEO_ASSESMENT = "AI_VIDEO_ASSESMENT",
|
|
597
597
|
CODING_CHALLENGE = "CODING_CHALLENGE",
|
|
598
598
|
PROFILE_COMPLETION = "PROFILE_COMPLETION"
|
|
@@ -600,6 +600,7 @@ declare enum OnboardingStepEnum {
|
|
|
600
600
|
declare class FreelancerProfile extends BaseEntity {
|
|
601
601
|
userId: number;
|
|
602
602
|
user: User;
|
|
603
|
+
talentId: string;
|
|
603
604
|
resumeUrl: string;
|
|
604
605
|
resumeData: string;
|
|
605
606
|
isDeveloper: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -591,8 +591,8 @@ declare enum ModeOfWork {
|
|
|
591
591
|
}
|
|
592
592
|
declare enum OnboardingStepEnum {
|
|
593
593
|
SIGN_UP = "SIGN_UP",
|
|
594
|
-
OTP_VERIFIED = "OTP_VERIFIED",
|
|
595
594
|
UPLOAD_RESUME = "UPLOAD_RESUME",
|
|
595
|
+
PARSE_RESUME = "PARSE_RESUME",
|
|
596
596
|
AI_VIDEO_ASSESMENT = "AI_VIDEO_ASSESMENT",
|
|
597
597
|
CODING_CHALLENGE = "CODING_CHALLENGE",
|
|
598
598
|
PROFILE_COMPLETION = "PROFILE_COMPLETION"
|
|
@@ -600,6 +600,7 @@ declare enum OnboardingStepEnum {
|
|
|
600
600
|
declare class FreelancerProfile extends BaseEntity {
|
|
601
601
|
userId: number;
|
|
602
602
|
user: User;
|
|
603
|
+
talentId: string;
|
|
603
604
|
resumeUrl: string;
|
|
604
605
|
resumeData: string;
|
|
605
606
|
isDeveloper: boolean;
|
package/dist/index.js
CHANGED
|
@@ -1270,8 +1270,8 @@ var ModeOfWork = /* @__PURE__ */ ((ModeOfWork2) => {
|
|
|
1270
1270
|
})(ModeOfWork || {});
|
|
1271
1271
|
var OnboardingStepEnum = /* @__PURE__ */ ((OnboardingStepEnum2) => {
|
|
1272
1272
|
OnboardingStepEnum2["SIGN_UP"] = "SIGN_UP";
|
|
1273
|
-
OnboardingStepEnum2["OTP_VERIFIED"] = "OTP_VERIFIED";
|
|
1274
1273
|
OnboardingStepEnum2["UPLOAD_RESUME"] = "UPLOAD_RESUME";
|
|
1274
|
+
OnboardingStepEnum2["PARSE_RESUME"] = "PARSE_RESUME";
|
|
1275
1275
|
OnboardingStepEnum2["AI_VIDEO_ASSESMENT"] = "AI_VIDEO_ASSESMENT";
|
|
1276
1276
|
OnboardingStepEnum2["CODING_CHALLENGE"] = "CODING_CHALLENGE";
|
|
1277
1277
|
OnboardingStepEnum2["PROFILE_COMPLETION"] = "PROFILE_COMPLETION";
|
|
@@ -1288,6 +1288,9 @@ __decorateClass([
|
|
|
1288
1288
|
(0, import_typeorm5.ManyToOne)(() => User, (user) => user.freelancerProfile),
|
|
1289
1289
|
(0, import_typeorm5.JoinColumn)({ name: "user_id" })
|
|
1290
1290
|
], FreelancerProfile.prototype, "user", 2);
|
|
1291
|
+
__decorateClass([
|
|
1292
|
+
(0, import_typeorm5.Column)({ name: "talent_id", type: "varchar", nullable: true })
|
|
1293
|
+
], FreelancerProfile.prototype, "talentId", 2);
|
|
1291
1294
|
__decorateClass([
|
|
1292
1295
|
(0, import_typeorm5.Column)({ name: "resume_url", type: "text", nullable: true })
|
|
1293
1296
|
], FreelancerProfile.prototype, "resumeUrl", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -1250,8 +1250,8 @@ var ModeOfWork = /* @__PURE__ */ ((ModeOfWork2) => {
|
|
|
1250
1250
|
})(ModeOfWork || {});
|
|
1251
1251
|
var OnboardingStepEnum = /* @__PURE__ */ ((OnboardingStepEnum2) => {
|
|
1252
1252
|
OnboardingStepEnum2["SIGN_UP"] = "SIGN_UP";
|
|
1253
|
-
OnboardingStepEnum2["OTP_VERIFIED"] = "OTP_VERIFIED";
|
|
1254
1253
|
OnboardingStepEnum2["UPLOAD_RESUME"] = "UPLOAD_RESUME";
|
|
1254
|
+
OnboardingStepEnum2["PARSE_RESUME"] = "PARSE_RESUME";
|
|
1255
1255
|
OnboardingStepEnum2["AI_VIDEO_ASSESMENT"] = "AI_VIDEO_ASSESMENT";
|
|
1256
1256
|
OnboardingStepEnum2["CODING_CHALLENGE"] = "CODING_CHALLENGE";
|
|
1257
1257
|
OnboardingStepEnum2["PROFILE_COMPLETION"] = "PROFILE_COMPLETION";
|
|
@@ -1268,6 +1268,9 @@ __decorateClass([
|
|
|
1268
1268
|
ManyToOne4(() => User, (user) => user.freelancerProfile),
|
|
1269
1269
|
JoinColumn4({ name: "user_id" })
|
|
1270
1270
|
], FreelancerProfile.prototype, "user", 2);
|
|
1271
|
+
__decorateClass([
|
|
1272
|
+
Column5({ name: "talent_id", type: "varchar", nullable: true })
|
|
1273
|
+
], FreelancerProfile.prototype, "talentId", 2);
|
|
1271
1274
|
__decorateClass([
|
|
1272
1275
|
Column5({ name: "resume_url", type: "text", nullable: true })
|
|
1273
1276
|
], FreelancerProfile.prototype, "resumeUrl", 2);
|