@experts_hub/shared 1.0.716 → 1.0.717

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.
@@ -53,10 +53,13 @@ export declare class FreelancerProfile extends BaseEntity {
53
53
  talentId: string;
54
54
  resumeUrl: string;
55
55
  resumeUploadedOn: Date;
56
+ resumeParsedOn: Date;
56
57
  resumeEligibility: string;
57
58
  resumeScore: string;
58
59
  mcqStatus: McqStatusEnum;
59
60
  mcqScore: number;
61
+ mcqInitiatedOn: Date;
62
+ mcqCompletedOn: Date;
60
63
  isEligibleForAiAssessment: boolean;
61
64
  aiAssessmentStatus: AiAssessmentStatusEnum;
62
65
  isDeveloper: boolean;
@@ -81,6 +84,8 @@ export declare class FreelancerProfile extends BaseEntity {
81
84
  postalCode: string;
82
85
  about: string;
83
86
  profileCompletedPercentage: Record<string, number>;
87
+ profileQuestionCompletedOn: Date;
88
+ profileCompletedOn: Date;
84
89
  originalDocumentUrl: string;
85
90
  isServiceAgreementSigned: boolean;
86
91
  serviceAgreementUrl: string;
package/dist/index.d.mts CHANGED
@@ -568,10 +568,13 @@ declare class FreelancerProfile extends BaseEntity {
568
568
  talentId: string;
569
569
  resumeUrl: string;
570
570
  resumeUploadedOn: Date;
571
+ resumeParsedOn: Date;
571
572
  resumeEligibility: string;
572
573
  resumeScore: string;
573
574
  mcqStatus: McqStatusEnum;
574
575
  mcqScore: number;
576
+ mcqInitiatedOn: Date;
577
+ mcqCompletedOn: Date;
575
578
  isEligibleForAiAssessment: boolean;
576
579
  aiAssessmentStatus: AiAssessmentStatusEnum;
577
580
  isDeveloper: boolean;
@@ -596,6 +599,8 @@ declare class FreelancerProfile extends BaseEntity {
596
599
  postalCode: string;
597
600
  about: string;
598
601
  profileCompletedPercentage: Record<string, number>;
602
+ profileQuestionCompletedOn: Date;
603
+ profileCompletedOn: Date;
599
604
  originalDocumentUrl: string;
600
605
  isServiceAgreementSigned: boolean;
601
606
  serviceAgreementUrl: string;
package/dist/index.d.ts CHANGED
@@ -568,10 +568,13 @@ declare class FreelancerProfile extends BaseEntity {
568
568
  talentId: string;
569
569
  resumeUrl: string;
570
570
  resumeUploadedOn: Date;
571
+ resumeParsedOn: Date;
571
572
  resumeEligibility: string;
572
573
  resumeScore: string;
573
574
  mcqStatus: McqStatusEnum;
574
575
  mcqScore: number;
576
+ mcqInitiatedOn: Date;
577
+ mcqCompletedOn: Date;
575
578
  isEligibleForAiAssessment: boolean;
576
579
  aiAssessmentStatus: AiAssessmentStatusEnum;
577
580
  isDeveloper: boolean;
@@ -596,6 +599,8 @@ declare class FreelancerProfile extends BaseEntity {
596
599
  postalCode: string;
597
600
  about: string;
598
601
  profileCompletedPercentage: Record<string, number>;
602
+ profileQuestionCompletedOn: Date;
603
+ profileCompletedOn: Date;
599
604
  originalDocumentUrl: string;
600
605
  isServiceAgreementSigned: boolean;
601
606
  serviceAgreementUrl: string;
package/dist/index.js CHANGED
@@ -2172,8 +2172,11 @@ __decorateClass([
2172
2172
  (0, import_typeorm9.Column)({ name: "resume_url", type: "text", nullable: true })
2173
2173
  ], FreelancerProfile.prototype, "resumeUrl", 2);
2174
2174
  __decorateClass([
2175
- (0, import_typeorm9.Column)({ name: "resume_uploaded_on", type: "timestamp with time zone", nullable: true })
2175
+ (0, import_typeorm9.Column)({ name: "resume_uploaded_on", type: "timestamp with time zone", nullable: true, comment: "The date and time when the resume was uploaded" })
2176
2176
  ], FreelancerProfile.prototype, "resumeUploadedOn", 2);
2177
+ __decorateClass([
2178
+ (0, import_typeorm9.Column)({ name: "resume_parsed_on", type: "timestamp with time zone", nullable: true, comment: "The date and time when the resume was parsed" })
2179
+ ], FreelancerProfile.prototype, "resumeParsedOn", 2);
2177
2180
  __decorateClass([
2178
2181
  (0, import_typeorm9.Column)({ name: "resume_eligibility", type: "varchar", nullable: true })
2179
2182
  ], FreelancerProfile.prototype, "resumeEligibility", 2);
@@ -2191,6 +2194,12 @@ __decorateClass([
2191
2194
  __decorateClass([
2192
2195
  (0, import_typeorm9.Column)({ name: "mcq_score", type: "float", nullable: true })
2193
2196
  ], FreelancerProfile.prototype, "mcqScore", 2);
2197
+ __decorateClass([
2198
+ (0, import_typeorm9.Column)({ name: "mcq_initiated_on", type: "timestamp with time zone", nullable: true, comment: "The date and time when the MCQ assessment was initiated" })
2199
+ ], FreelancerProfile.prototype, "mcqInitiatedOn", 2);
2200
+ __decorateClass([
2201
+ (0, import_typeorm9.Column)({ name: "mcq_completed_on", type: "timestamp with time zone", nullable: true, comment: "The date and time when the MCQ assessment was completed" })
2202
+ ], FreelancerProfile.prototype, "mcqCompletedOn", 2);
2194
2203
  __decorateClass([
2195
2204
  (0, import_typeorm9.Column)({ name: "is_eligible_for_ai_assessment", type: "boolean", nullable: true })
2196
2205
  ], FreelancerProfile.prototype, "isEligibleForAiAssessment", 2);
@@ -2316,6 +2325,12 @@ __decorateClass([
2316
2325
  }
2317
2326
  })
2318
2327
  ], FreelancerProfile.prototype, "profileCompletedPercentage", 2);
2328
+ __decorateClass([
2329
+ (0, import_typeorm9.Column)({ name: "profile_question_completed_on", type: "timestamp with time zone", nullable: true, comment: "The date and time when the profile question was completed" })
2330
+ ], FreelancerProfile.prototype, "profileQuestionCompletedOn", 2);
2331
+ __decorateClass([
2332
+ (0, import_typeorm9.Column)({ name: "profile_completed_on", type: "timestamp with time zone", nullable: true, comment: "The date and time when the profile was completed" })
2333
+ ], FreelancerProfile.prototype, "profileCompletedOn", 2);
2319
2334
  __decorateClass([
2320
2335
  (0, import_typeorm9.Column)({ name: "original_document_url", type: "varchar", nullable: true })
2321
2336
  ], FreelancerProfile.prototype, "originalDocumentUrl", 2);
package/dist/index.mjs CHANGED
@@ -1801,8 +1801,11 @@ __decorateClass([
1801
1801
  Column9({ name: "resume_url", type: "text", nullable: true })
1802
1802
  ], FreelancerProfile.prototype, "resumeUrl", 2);
1803
1803
  __decorateClass([
1804
- Column9({ name: "resume_uploaded_on", type: "timestamp with time zone", nullable: true })
1804
+ Column9({ name: "resume_uploaded_on", type: "timestamp with time zone", nullable: true, comment: "The date and time when the resume was uploaded" })
1805
1805
  ], FreelancerProfile.prototype, "resumeUploadedOn", 2);
1806
+ __decorateClass([
1807
+ Column9({ name: "resume_parsed_on", type: "timestamp with time zone", nullable: true, comment: "The date and time when the resume was parsed" })
1808
+ ], FreelancerProfile.prototype, "resumeParsedOn", 2);
1806
1809
  __decorateClass([
1807
1810
  Column9({ name: "resume_eligibility", type: "varchar", nullable: true })
1808
1811
  ], FreelancerProfile.prototype, "resumeEligibility", 2);
@@ -1820,6 +1823,12 @@ __decorateClass([
1820
1823
  __decorateClass([
1821
1824
  Column9({ name: "mcq_score", type: "float", nullable: true })
1822
1825
  ], FreelancerProfile.prototype, "mcqScore", 2);
1826
+ __decorateClass([
1827
+ Column9({ name: "mcq_initiated_on", type: "timestamp with time zone", nullable: true, comment: "The date and time when the MCQ assessment was initiated" })
1828
+ ], FreelancerProfile.prototype, "mcqInitiatedOn", 2);
1829
+ __decorateClass([
1830
+ Column9({ name: "mcq_completed_on", type: "timestamp with time zone", nullable: true, comment: "The date and time when the MCQ assessment was completed" })
1831
+ ], FreelancerProfile.prototype, "mcqCompletedOn", 2);
1823
1832
  __decorateClass([
1824
1833
  Column9({ name: "is_eligible_for_ai_assessment", type: "boolean", nullable: true })
1825
1834
  ], FreelancerProfile.prototype, "isEligibleForAiAssessment", 2);
@@ -1945,6 +1954,12 @@ __decorateClass([
1945
1954
  }
1946
1955
  })
1947
1956
  ], FreelancerProfile.prototype, "profileCompletedPercentage", 2);
1957
+ __decorateClass([
1958
+ Column9({ name: "profile_question_completed_on", type: "timestamp with time zone", nullable: true, comment: "The date and time when the profile question was completed" })
1959
+ ], FreelancerProfile.prototype, "profileQuestionCompletedOn", 2);
1960
+ __decorateClass([
1961
+ Column9({ name: "profile_completed_on", type: "timestamp with time zone", nullable: true, comment: "The date and time when the profile was completed" })
1962
+ ], FreelancerProfile.prototype, "profileCompletedOn", 2);
1948
1963
  __decorateClass([
1949
1964
  Column9({ name: "original_document_url", type: "varchar", nullable: true })
1950
1965
  ], FreelancerProfile.prototype, "originalDocumentUrl", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.716",
3
+ "version": "1.0.717",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",