@experts_hub/shared 1.0.569 → 1.0.570

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
@@ -680,7 +680,7 @@ declare class CloseJobDto {
680
680
  }
681
681
 
682
682
  declare class CreateJobApplicationDto {
683
- jobId: number;
683
+ jobId: string;
684
684
  isCta?: boolean;
685
685
  }
686
686
 
package/dist/index.d.ts CHANGED
@@ -680,7 +680,7 @@ declare class CloseJobDto {
680
680
  }
681
681
 
682
682
  declare class CreateJobApplicationDto {
683
- jobId: number;
683
+ jobId: string;
684
684
  isCta?: boolean;
685
685
  }
686
686
 
package/dist/index.js CHANGED
@@ -1787,7 +1787,7 @@ var CreateJobApplicationDto = class {
1787
1787
  };
1788
1788
  __decorateClass([
1789
1789
  (0, import_class_validator40.IsNotEmpty)({ message: "Job ID is required" }),
1790
- (0, import_class_validator40.IsNumber)({}, { message: "Job ID must be a number" })
1790
+ (0, import_class_validator40.IsString)({ message: "Job ID must be a string" })
1791
1791
  ], CreateJobApplicationDto.prototype, "jobId", 2);
1792
1792
  __decorateClass([
1793
1793
  (0, import_class_validator40.IsOptional)(),