@experts_hub/shared 1.0.492 → 1.0.493

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
@@ -477,6 +477,7 @@ declare enum EmploymentType {
477
477
  declare class JobBasicInformationDto {
478
478
  isDraft?: boolean;
479
479
  jobRole: string;
480
+ jobRoleCanonicalName?: string;
480
481
  projectName?: string;
481
482
  note?: string;
482
483
  skills: string[];
package/dist/index.d.ts CHANGED
@@ -477,6 +477,7 @@ declare enum EmploymentType {
477
477
  declare class JobBasicInformationDto {
478
478
  isDraft?: boolean;
479
479
  jobRole: string;
480
+ jobRoleCanonicalName?: string;
480
481
  projectName?: string;
481
482
  note?: string;
482
483
  skills: string[];
package/dist/index.js CHANGED
@@ -1224,6 +1224,9 @@ __decorateClass([
1224
1224
  (0, import_class_validator33.IsNotEmpty)({ message: "Please enter job role" }),
1225
1225
  (0, import_class_validator33.IsString)({ message: "Job role must be a string" })
1226
1226
  ], JobBasicInformationDto.prototype, "jobRole", 2);
1227
+ __decorateClass([
1228
+ (0, import_class_validator33.IsOptional)()
1229
+ ], JobBasicInformationDto.prototype, "jobRoleCanonicalName", 2);
1227
1230
  __decorateClass([
1228
1231
  (0, import_class_validator33.IsOptional)(),
1229
1232
  (0, import_class_validator33.IsString)({ message: "Project name must be a string" })
package/dist/index.mjs CHANGED
@@ -1005,6 +1005,9 @@ __decorateClass([
1005
1005
  IsNotEmpty29({ message: "Please enter job role" }),
1006
1006
  IsString12({ message: "Job role must be a string" })
1007
1007
  ], JobBasicInformationDto.prototype, "jobRole", 2);
1008
+ __decorateClass([
1009
+ IsOptional12()
1010
+ ], JobBasicInformationDto.prototype, "jobRoleCanonicalName", 2);
1008
1011
  __decorateClass([
1009
1012
  IsOptional12(),
1010
1013
  IsString12({ message: "Project name must be a string" })
@@ -14,6 +14,7 @@ export declare enum EmploymentType {
14
14
  export declare class JobBasicInformationDto {
15
15
  isDraft?: boolean;
16
16
  jobRole: string;
17
+ jobRoleCanonicalName?: string;
17
18
  projectName?: string;
18
19
  note?: string;
19
20
  skills: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.492",
3
+ "version": "1.0.493",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",