@experts_hub/shared 1.0.582 → 1.0.584

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.
@@ -16,7 +16,9 @@ export declare enum ContractStatusEnum {
16
16
  }
17
17
  export declare enum ContractTypeEnum {
18
18
  NDA = "NDA",
19
- WORK = "WORK"
19
+ WORK = "WORK",
20
+ SOW = "SOW",
21
+ MSA = "MSA"
20
22
  }
21
23
  export declare class Contract extends BaseEntity {
22
24
  contractUniqueId: string;
@@ -45,7 +45,8 @@ export declare enum JobStatusEnum {
45
45
  OPEN = "OPEN",
46
46
  DRAFT = "DRAFT",
47
47
  ONHOLD = "ONHOLD",
48
- CLOSED = "CLOSED"
48
+ CLOSED = "CLOSED",
49
+ COMPLETED = "COMPLETED"
49
50
  }
50
51
  export declare enum DurationTypeEnum {
51
52
  DAY = "DAY",
package/dist/index.d.mts CHANGED
@@ -935,6 +935,8 @@ declare const NOTIFICATION_PATTERN: {
935
935
  handleFreelancerExportFailedNotification: string;
936
936
  handleAiInterviewResultErrorNotification: string;
937
937
  handleAiInterviewRecordingErrorNotification: string;
938
+ handleAiAssessmentInterviewResultErrorNotification: string;
939
+ handleAiAssessmentInterviewRecordingErrorNotification: string;
938
940
  };
939
941
  declare const SMS_PATTERN: {
940
942
  sendTest: string;
@@ -1692,7 +1694,9 @@ declare enum ContractStatusEnum {
1692
1694
  }
1693
1695
  declare enum ContractTypeEnum {
1694
1696
  NDA = "NDA",
1695
- WORK = "WORK"
1697
+ WORK = "WORK",
1698
+ SOW = "SOW",
1699
+ MSA = "MSA"
1696
1700
  }
1697
1701
  declare class Contract extends BaseEntity {
1698
1702
  contractUniqueId: string;
@@ -1800,7 +1804,8 @@ declare enum JobStatusEnum {
1800
1804
  OPEN = "OPEN",
1801
1805
  DRAFT = "DRAFT",
1802
1806
  ONHOLD = "ONHOLD",
1803
- CLOSED = "CLOSED"
1807
+ CLOSED = "CLOSED",
1808
+ COMPLETED = "COMPLETED"
1804
1809
  }
1805
1810
  declare enum DurationTypeEnum {
1806
1811
  DAY = "DAY",
package/dist/index.d.ts CHANGED
@@ -935,6 +935,8 @@ declare const NOTIFICATION_PATTERN: {
935
935
  handleFreelancerExportFailedNotification: string;
936
936
  handleAiInterviewResultErrorNotification: string;
937
937
  handleAiInterviewRecordingErrorNotification: string;
938
+ handleAiAssessmentInterviewResultErrorNotification: string;
939
+ handleAiAssessmentInterviewRecordingErrorNotification: string;
938
940
  };
939
941
  declare const SMS_PATTERN: {
940
942
  sendTest: string;
@@ -1692,7 +1694,9 @@ declare enum ContractStatusEnum {
1692
1694
  }
1693
1695
  declare enum ContractTypeEnum {
1694
1696
  NDA = "NDA",
1695
- WORK = "WORK"
1697
+ WORK = "WORK",
1698
+ SOW = "SOW",
1699
+ MSA = "MSA"
1696
1700
  }
1697
1701
  declare class Contract extends BaseEntity {
1698
1702
  contractUniqueId: string;
@@ -1800,7 +1804,8 @@ declare enum JobStatusEnum {
1800
1804
  OPEN = "OPEN",
1801
1805
  DRAFT = "DRAFT",
1802
1806
  ONHOLD = "ONHOLD",
1803
- CLOSED = "CLOSED"
1807
+ CLOSED = "CLOSED",
1808
+ COMPLETED = "COMPLETED"
1804
1809
  }
1805
1810
  declare enum DurationTypeEnum {
1806
1811
  DAY = "DAY",
package/dist/index.js CHANGED
@@ -2387,7 +2387,9 @@ var NOTIFICATION_PATTERN = {
2387
2387
  handleFreelancerExportReadyNotification: "handle.freelancer.export.ready.notification",
2388
2388
  handleFreelancerExportFailedNotification: "handle.freelancer.export.failed.notification",
2389
2389
  handleAiInterviewResultErrorNotification: "handle.ai.interview.result.error.notification",
2390
- handleAiInterviewRecordingErrorNotification: "handle.ai.interview.recording.error.notification"
2390
+ handleAiInterviewRecordingErrorNotification: "handle.ai.interview.recording.error.notification",
2391
+ handleAiAssessmentInterviewResultErrorNotification: "handle.ai.assessment.interview.result.error.notification",
2392
+ handleAiAssessmentInterviewRecordingErrorNotification: "handle.ai.assessment.interview.recording.error.notification"
2391
2393
  };
2392
2394
  var SMS_PATTERN = {
2393
2395
  sendTest: "sms.send.test",
@@ -4778,6 +4780,8 @@ var ContractStatusEnum = /* @__PURE__ */ ((ContractStatusEnum2) => {
4778
4780
  var ContractTypeEnum = /* @__PURE__ */ ((ContractTypeEnum2) => {
4779
4781
  ContractTypeEnum2["NDA"] = "NDA";
4780
4782
  ContractTypeEnum2["WORK"] = "WORK";
4783
+ ContractTypeEnum2["SOW"] = "SOW";
4784
+ ContractTypeEnum2["MSA"] = "MSA";
4781
4785
  return ContractTypeEnum2;
4782
4786
  })(ContractTypeEnum || {});
4783
4787
  var Contract = class extends BaseEntity {
@@ -5093,6 +5097,7 @@ var JobStatusEnum = /* @__PURE__ */ ((JobStatusEnum2) => {
5093
5097
  JobStatusEnum2["DRAFT"] = "DRAFT";
5094
5098
  JobStatusEnum2["ONHOLD"] = "ONHOLD";
5095
5099
  JobStatusEnum2["CLOSED"] = "CLOSED";
5100
+ JobStatusEnum2["COMPLETED"] = "COMPLETED";
5096
5101
  return JobStatusEnum2;
5097
5102
  })(JobStatusEnum || {});
5098
5103
  var DurationTypeEnum = /* @__PURE__ */ ((DurationTypeEnum2) => {
package/dist/index.mjs CHANGED
@@ -2108,7 +2108,9 @@ var NOTIFICATION_PATTERN = {
2108
2108
  handleFreelancerExportReadyNotification: "handle.freelancer.export.ready.notification",
2109
2109
  handleFreelancerExportFailedNotification: "handle.freelancer.export.failed.notification",
2110
2110
  handleAiInterviewResultErrorNotification: "handle.ai.interview.result.error.notification",
2111
- handleAiInterviewRecordingErrorNotification: "handle.ai.interview.recording.error.notification"
2111
+ handleAiInterviewRecordingErrorNotification: "handle.ai.interview.recording.error.notification",
2112
+ handleAiAssessmentInterviewResultErrorNotification: "handle.ai.assessment.interview.result.error.notification",
2113
+ handleAiAssessmentInterviewRecordingErrorNotification: "handle.ai.assessment.interview.recording.error.notification"
2112
2114
  };
2113
2115
  var SMS_PATTERN = {
2114
2116
  sendTest: "sms.send.test",
@@ -4618,6 +4620,8 @@ var ContractStatusEnum = /* @__PURE__ */ ((ContractStatusEnum2) => {
4618
4620
  var ContractTypeEnum = /* @__PURE__ */ ((ContractTypeEnum2) => {
4619
4621
  ContractTypeEnum2["NDA"] = "NDA";
4620
4622
  ContractTypeEnum2["WORK"] = "WORK";
4623
+ ContractTypeEnum2["SOW"] = "SOW";
4624
+ ContractTypeEnum2["MSA"] = "MSA";
4621
4625
  return ContractTypeEnum2;
4622
4626
  })(ContractTypeEnum || {});
4623
4627
  var Contract = class extends BaseEntity {
@@ -4939,6 +4943,7 @@ var JobStatusEnum = /* @__PURE__ */ ((JobStatusEnum2) => {
4939
4943
  JobStatusEnum2["DRAFT"] = "DRAFT";
4940
4944
  JobStatusEnum2["ONHOLD"] = "ONHOLD";
4941
4945
  JobStatusEnum2["CLOSED"] = "CLOSED";
4946
+ JobStatusEnum2["COMPLETED"] = "COMPLETED";
4942
4947
  return JobStatusEnum2;
4943
4948
  })(JobStatusEnum || {});
4944
4949
  var DurationTypeEnum = /* @__PURE__ */ ((DurationTypeEnum2) => {
@@ -16,6 +16,8 @@ export declare const NOTIFICATION_PATTERN: {
16
16
  handleFreelancerExportFailedNotification: string;
17
17
  handleAiInterviewResultErrorNotification: string;
18
18
  handleAiInterviewRecordingErrorNotification: string;
19
+ handleAiAssessmentInterviewResultErrorNotification: string;
20
+ handleAiAssessmentInterviewRecordingErrorNotification: string;
19
21
  };
20
22
  export declare const SMS_PATTERN: {
21
23
  sendTest: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.582",
3
+ "version": "1.0.584",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",