@experts_hub/shared 1.0.650 → 1.0.652

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.
@@ -15,6 +15,10 @@ declare enum StepCompletedEnumV2 {
15
15
  BASIC_INFORMATION = "BASIC_INFORMATION",
16
16
  JOB_DESCRIPTION = "JOB_DESCRIPTION"
17
17
  }
18
+ declare enum BillingCycleEnumV2 {
19
+ WEEKLY = "WEEKLY",
20
+ DELIVERABLE = "DELIVERABLE"
21
+ }
18
22
  export declare class JobLocationDto {
19
23
  countryId: number | null;
20
24
  stateId: number | null;
@@ -35,6 +39,7 @@ export declare class JobBasicInformationV2Dto {
35
39
  locationMode: JobLocationEnumV2;
36
40
  locations: JobLocationDto[];
37
41
  typeOfEmployment: EmploymentTypeV2;
42
+ billingCycle: BillingCycleEnumV2;
38
43
  currency?: string;
39
44
  expectedSalaryFrom: number;
40
45
  hideExpectedSalaryFrom: boolean;
@@ -19,6 +19,10 @@ declare enum AdminStepCompletedEnumV2 {
19
19
  BASIC_INFORMATION = "BASIC_INFORMATION",
20
20
  JOB_DESCRIPTION = "JOB_DESCRIPTION"
21
21
  }
22
+ declare enum BillingCycleEnumV2 {
23
+ WEEKLY = "WEEKLY",
24
+ DELIVERABLE = "DELIVERABLE"
25
+ }
22
26
  export declare class JobLocationAdminDto {
23
27
  countryId: number;
24
28
  stateId: number;
@@ -33,6 +37,7 @@ export declare class AdminJobBasicInformationV2Dto {
33
37
  openings: number;
34
38
  location: JobLocationAdminEnumDto;
35
39
  typeOfEmployment: EmploymentTypeAdminEnumDto;
40
+ billingCycle: BillingCycleEnumV2;
36
41
  expectedSalaryFrom?: number;
37
42
  expectedSalaryTo?: number;
38
43
  locations: JobLocationAdminDto[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.650",
3
+ "version": "1.0.652",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",