@experts_hub/shared 1.0.574 → 1.0.576

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/index.d.mts CHANGED
@@ -931,6 +931,8 @@ declare const NOTIFICATION_PATTERN: {
931
931
  handleAiAssessmentLinkNotification: string;
932
932
  handleRecordingProcessingErrorNotification: string;
933
933
  handleResumeParserErrorNotification: string;
934
+ handleFreelancerExportReadyNotification: string;
935
+ handleFreelancerExportFailedNotification: string;
934
936
  };
935
937
  declare const SMS_PATTERN: {
936
938
  sendTest: string;
@@ -3006,7 +3008,7 @@ declare class MarkCandidateStatusDto {
3006
3008
  }
3007
3009
 
3008
3010
  declare class MarkCandidateStatusBulkDto {
3009
- candidatesIds: number[];
3011
+ candidateIds: number[];
3010
3012
  }
3011
3013
 
3012
3014
  declare const CMS_PATTERNS: {
package/dist/index.d.ts CHANGED
@@ -931,6 +931,8 @@ declare const NOTIFICATION_PATTERN: {
931
931
  handleAiAssessmentLinkNotification: string;
932
932
  handleRecordingProcessingErrorNotification: string;
933
933
  handleResumeParserErrorNotification: string;
934
+ handleFreelancerExportReadyNotification: string;
935
+ handleFreelancerExportFailedNotification: string;
934
936
  };
935
937
  declare const SMS_PATTERN: {
936
938
  sendTest: string;
@@ -3006,7 +3008,7 @@ declare class MarkCandidateStatusDto {
3006
3008
  }
3007
3009
 
3008
3010
  declare class MarkCandidateStatusBulkDto {
3009
- candidatesIds: number[];
3011
+ candidateIds: number[];
3010
3012
  }
3011
3013
 
3012
3014
  declare const CMS_PATTERNS: {
package/dist/index.js CHANGED
@@ -2382,7 +2382,9 @@ var NOTIFICATION_PATTERN = {
2382
2382
  handleDailyFreelancerReportToStakeHolders: "handle.daily.freelancer.report.to.stake.holders",
2383
2383
  handleAiAssessmentLinkNotification: "handle.ai.assessment.link.notification",
2384
2384
  handleRecordingProcessingErrorNotification: "handle.recording.processing.error.notification",
2385
- handleResumeParserErrorNotification: "handle.resume.parser.error.notification"
2385
+ handleResumeParserErrorNotification: "handle.resume.parser.error.notification",
2386
+ handleFreelancerExportReadyNotification: "handle.freelancer.export.ready.notification",
2387
+ handleFreelancerExportFailedNotification: "handle.freelancer.export.failed.notification"
2386
2388
  };
2387
2389
  var SMS_PATTERN = {
2388
2390
  sendTest: "sms.send.test",
@@ -7834,7 +7836,7 @@ __decorateClass([
7834
7836
  (0, import_class_validator82.IsArray)({ message: "Candidate IDs must be an array" }),
7835
7837
  (0, import_class_validator82.ArrayNotEmpty)({ message: "At least one candidate ID is required" }),
7836
7838
  (0, import_class_validator82.IsNumber)({}, { each: true, message: "Each candidate ID must be a number" })
7837
- ], MarkCandidateStatusBulkDto.prototype, "candidatesIds", 2);
7839
+ ], MarkCandidateStatusBulkDto.prototype, "candidateIds", 2);
7838
7840
 
7839
7841
  // src/modules/cms/pattern/pattern.ts
7840
7842
  var CMS_PATTERNS = {
package/dist/index.mjs CHANGED
@@ -2104,7 +2104,9 @@ var NOTIFICATION_PATTERN = {
2104
2104
  handleDailyFreelancerReportToStakeHolders: "handle.daily.freelancer.report.to.stake.holders",
2105
2105
  handleAiAssessmentLinkNotification: "handle.ai.assessment.link.notification",
2106
2106
  handleRecordingProcessingErrorNotification: "handle.recording.processing.error.notification",
2107
- handleResumeParserErrorNotification: "handle.resume.parser.error.notification"
2107
+ handleResumeParserErrorNotification: "handle.resume.parser.error.notification",
2108
+ handleFreelancerExportReadyNotification: "handle.freelancer.export.ready.notification",
2109
+ handleFreelancerExportFailedNotification: "handle.freelancer.export.failed.notification"
2108
2110
  };
2109
2111
  var SMS_PATTERN = {
2110
2112
  sendTest: "sms.send.test",
@@ -7848,7 +7850,7 @@ __decorateClass([
7848
7850
  IsArray14({ message: "Candidate IDs must be an array" }),
7849
7851
  ArrayNotEmpty8({ message: "At least one candidate ID is required" }),
7850
7852
  IsNumber12({}, { each: true, message: "Each candidate ID must be a number" })
7851
- ], MarkCandidateStatusBulkDto.prototype, "candidatesIds", 2);
7853
+ ], MarkCandidateStatusBulkDto.prototype, "candidateIds", 2);
7852
7854
 
7853
7855
  // src/modules/cms/pattern/pattern.ts
7854
7856
  var CMS_PATTERNS = {
@@ -12,6 +12,8 @@ export declare const NOTIFICATION_PATTERN: {
12
12
  handleAiAssessmentLinkNotification: string;
13
13
  handleRecordingProcessingErrorNotification: string;
14
14
  handleResumeParserErrorNotification: string;
15
+ handleFreelancerExportReadyNotification: string;
16
+ handleFreelancerExportFailedNotification: string;
15
17
  };
16
18
  export declare const SMS_PATTERN: {
17
19
  sendTest: string;
@@ -1,3 +1,3 @@
1
1
  export declare class MarkCandidateStatusBulkDto {
2
- candidatesIds: number[];
2
+ candidateIds: number[];
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.574",
3
+ "version": "1.0.576",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",