@experts_hub/shared 1.0.641 → 1.0.644

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.
@@ -39,6 +39,7 @@ export declare class CompanyProfile extends BaseEntity {
39
39
  webSite: string;
40
40
  aboutCompany: string;
41
41
  isServiceAgreementSigned: boolean;
42
+ skipServiceAgreement: boolean;
42
43
  isJobPostingRestricted: boolean;
43
44
  originalDocumentUrl: string;
44
45
  serviceAgreementUrl: string;
package/dist/index.d.mts CHANGED
@@ -422,6 +422,7 @@ declare class CompanyProfile extends BaseEntity {
422
422
  webSite: string;
423
423
  aboutCompany: string;
424
424
  isServiceAgreementSigned: boolean;
425
+ skipServiceAgreement: boolean;
425
426
  isJobPostingRestricted: boolean;
426
427
  originalDocumentUrl: string;
427
428
  serviceAgreementUrl: string;
@@ -3481,6 +3482,7 @@ declare const INTERVIEW_PATTERN: {
3481
3482
  markInterviewAsPublished: string;
3482
3483
  deleteInterview: string;
3483
3484
  fetchInterviewCountAsPerStatus: string;
3485
+ fetchCompletedAiAndF2FInterviewForClient: string;
3484
3486
  };
3485
3487
 
3486
3488
  declare enum CandidateType {
package/dist/index.d.ts CHANGED
@@ -422,6 +422,7 @@ declare class CompanyProfile extends BaseEntity {
422
422
  webSite: string;
423
423
  aboutCompany: string;
424
424
  isServiceAgreementSigned: boolean;
425
+ skipServiceAgreement: boolean;
425
426
  isJobPostingRestricted: boolean;
426
427
  originalDocumentUrl: string;
427
428
  serviceAgreementUrl: string;
@@ -3481,6 +3482,7 @@ declare const INTERVIEW_PATTERN: {
3481
3482
  markInterviewAsPublished: string;
3482
3483
  deleteInterview: string;
3483
3484
  fetchInterviewCountAsPerStatus: string;
3485
+ fetchCompletedAiAndF2FInterviewForClient: string;
3484
3486
  };
3485
3487
 
3486
3488
  declare enum CandidateType {
package/dist/index.js CHANGED
@@ -1573,6 +1573,13 @@ __decorateClass([
1573
1573
  default: false
1574
1574
  })
1575
1575
  ], CompanyProfile.prototype, "isServiceAgreementSigned", 2);
1576
+ __decorateClass([
1577
+ (0, import_typeorm5.Column)({
1578
+ name: "skip_service_agreement",
1579
+ type: "boolean",
1580
+ default: false
1581
+ })
1582
+ ], CompanyProfile.prototype, "skipServiceAgreement", 2);
1576
1583
  __decorateClass([
1577
1584
  (0, import_typeorm5.Column)({
1578
1585
  name: "is_job_posting_restricted",
@@ -9487,7 +9494,8 @@ var INTERVIEW_PATTERN = {
9487
9494
  updateInterviewSetting: "update.interview.setting",
9488
9495
  markInterviewAsPublished: "mark.interview.as.published",
9489
9496
  deleteInterview: "delete.interview",
9490
- fetchInterviewCountAsPerStatus: "fetch.interview.count.as.per.status"
9497
+ fetchInterviewCountAsPerStatus: "fetch.interview.count.as.per.status",
9498
+ fetchCompletedAiAndF2FInterviewForClient: "fetch.completed.ai.and.f2f.interview.for.client"
9491
9499
  };
9492
9500
 
9493
9501
  // src/modules/interview/dto/interview-invite.dto.ts
package/dist/index.mjs CHANGED
@@ -1269,6 +1269,13 @@ __decorateClass([
1269
1269
  default: false
1270
1270
  })
1271
1271
  ], CompanyProfile.prototype, "isServiceAgreementSigned", 2);
1272
+ __decorateClass([
1273
+ Column5({
1274
+ name: "skip_service_agreement",
1275
+ type: "boolean",
1276
+ default: false
1277
+ })
1278
+ ], CompanyProfile.prototype, "skipServiceAgreement", 2);
1272
1279
  __decorateClass([
1273
1280
  Column5({
1274
1281
  name: "is_job_posting_restricted",
@@ -9528,7 +9535,8 @@ var INTERVIEW_PATTERN = {
9528
9535
  updateInterviewSetting: "update.interview.setting",
9529
9536
  markInterviewAsPublished: "mark.interview.as.published",
9530
9537
  deleteInterview: "delete.interview",
9531
- fetchInterviewCountAsPerStatus: "fetch.interview.count.as.per.status"
9538
+ fetchInterviewCountAsPerStatus: "fetch.interview.count.as.per.status",
9539
+ fetchCompletedAiAndF2FInterviewForClient: "fetch.completed.ai.and.f2f.interview.for.client"
9532
9540
  };
9533
9541
 
9534
9542
  // src/modules/interview/dto/interview-invite.dto.ts
@@ -66,4 +66,5 @@ export declare const INTERVIEW_PATTERN: {
66
66
  markInterviewAsPublished: string;
67
67
  deleteInterview: string;
68
68
  fetchInterviewCountAsPerStatus: string;
69
+ fetchCompletedAiAndF2FInterviewForClient: string;
69
70
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.641",
3
+ "version": "1.0.644",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",