@experts_hub/shared 1.0.531 → 1.0.535

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,9 +16,9 @@ export declare enum typeOfExperienceDtoEnumV2 {
16
16
  RANGE = "RANGE"
17
17
  }
18
18
  export declare class JobLocationDto {
19
- countryId: number;
20
- stateId: number;
21
- cityId: number;
19
+ countryId: number | null;
20
+ stateId: number | null;
21
+ cityId: number | null;
22
22
  }
23
23
  export declare class JobBasicInformationV2Dto {
24
24
  isDraft?: boolean;
@@ -28,9 +28,9 @@ export declare class JobBasicInformationV2Dto {
28
28
  note?: string;
29
29
  skills: string[];
30
30
  goodToHaveSkills: string[];
31
- locations: JobLocationDto[];
32
31
  openings: number;
33
32
  locationMode: JobLocationEnumV2;
33
+ locations: JobLocationDto[];
34
34
  typeOfEmployment: EmploymentTypeV2;
35
35
  currency?: string;
36
36
  expectedSalaryFrom: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.531",
3
+ "version": "1.0.535",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",