@experts_hub/shared 1.0.669 → 1.0.673

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
@@ -2308,6 +2308,7 @@ declare class CreateJobViaAIDto {
2308
2308
  stepCompleted?: StepCompletedEnumV2$1;
2309
2309
  additionalComment?: string;
2310
2310
  description: string;
2311
+ dealBreakers: object;
2311
2312
  }
2312
2313
 
2313
2314
  declare enum JobStatus {
package/dist/index.d.ts CHANGED
@@ -2308,6 +2308,7 @@ declare class CreateJobViaAIDto {
2308
2308
  stepCompleted?: StepCompletedEnumV2$1;
2309
2309
  additionalComment?: string;
2310
2310
  description: string;
2311
+ dealBreakers: object;
2311
2312
  }
2312
2313
 
2313
2314
  declare enum JobStatus {
package/dist/index.js CHANGED
@@ -7082,6 +7082,9 @@ __decorateClass([
7082
7082
  (0, import_class_validator52.IsString)({ message: "Description must be a string" }),
7083
7083
  (0, import_class_validator52.MaxLength)(5e3, { message: "Description must not exceed 5000 characters" })
7084
7084
  ], CreateJobViaAIDto.prototype, "description", 2);
7085
+ __decorateClass([
7086
+ (0, import_class_validator52.IsOptional)()
7087
+ ], CreateJobViaAIDto.prototype, "dealBreakers", 2);
7085
7088
 
7086
7089
  // src/modules/job/dto/job-status.dto.ts
7087
7090
  var import_class_validator53 = require("class-validator");
package/dist/index.mjs CHANGED
@@ -6979,6 +6979,9 @@ __decorateClass([
6979
6979
  IsString25({ message: "Description must be a string" }),
6980
6980
  MaxLength9(5e3, { message: "Description must not exceed 5000 characters" })
6981
6981
  ], CreateJobViaAIDto.prototype, "description", 2);
6982
+ __decorateClass([
6983
+ IsOptional22()
6984
+ ], CreateJobViaAIDto.prototype, "dealBreakers", 2);
6982
6985
 
6983
6986
  // src/modules/job/dto/job-status.dto.ts
6984
6987
  import { IsEnum as IsEnum17, IsNotEmpty as IsNotEmpty46 } from "class-validator";
@@ -63,5 +63,6 @@ export declare class CreateJobViaAIDto {
63
63
  stepCompleted?: StepCompletedEnumV2;
64
64
  additionalComment?: string;
65
65
  description: string;
66
+ dealBreakers: object;
66
67
  }
67
68
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.669",
3
+ "version": "1.0.673",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",