@experts_hub/shared 1.0.600 → 1.0.603

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.
@@ -1,2 +1,3 @@
1
1
  export * from './create-cms.dto';
2
+ export * from './update-cms-status.dto';
2
3
  export * from './update-cms.dto';
@@ -0,0 +1,3 @@
1
+ export declare class UpdateCmsStatusDto {
2
+ isActive: boolean;
3
+ }
@@ -4,4 +4,5 @@ export declare const CMS_PATTERNS: {
4
4
  updateCms: string;
5
5
  deleteCms: string;
6
6
  findCmsById: string;
7
+ updateCmsStatus: string;
7
8
  };
@@ -1,8 +1,3 @@
1
- export declare enum NatureOfWorkDto {
2
- FREELANCE = "FREELANCE",
3
- FTE = "FTE",
4
- BOTH = "BOTH"
5
- }
6
1
  declare enum NatureOfWorkEnum {
7
2
  FTE = "FTE",
8
3
  FREELANCE = "FREELANCE",
@@ -14,34 +9,34 @@ declare enum ModeOfWorkEnum {
14
9
  HYBRID = "HYBRID"
15
10
  }
16
11
  export declare class CreateFreelancerDto {
17
- fullName: string;
18
- email: string;
19
- mobileCode: string;
20
- mobile: string;
21
- password: string;
12
+ fullName?: string;
13
+ email?: string;
14
+ mobileCode?: string;
15
+ mobile?: string;
16
+ address: string;
17
+ addressLine?: string;
18
+ countryId?: number;
19
+ stateId?: number;
20
+ cityId?: number;
21
+ postalCode?: string;
22
+ about?: string;
23
+ designation?: string;
24
+ experience?: number;
25
+ password?: string;
22
26
  confirmPassword: string;
23
- developer: boolean;
24
- natureOfWork: NatureOfWorkEnum;
25
- expectedHourlyCompensation: string;
26
- expectedAnnualCompensation: string;
27
+ developer?: boolean;
28
+ natureOfWork?: NatureOfWorkEnum;
29
+ expectedHourlyCompensation?: number;
30
+ expectedAnnualCompensation?: number;
27
31
  numberOfHours?: number;
28
- modeOfWork: ModeOfWorkEnum;
29
- isImmediateJoiner: boolean;
30
- availabilityToJoin: string;
32
+ modeOfWork?: ModeOfWorkEnum;
33
+ isImmediateJoiner?: boolean;
34
+ availabilityToJoin?: string;
31
35
  linkedinProfileLink?: string;
32
36
  kaggleProfileLink?: string;
33
37
  githubProfileLink?: string;
34
38
  stackOverflowProfileLink?: string;
35
39
  portfolioLink?: string;
36
40
  file?: any;
37
- designation?: string;
38
- experience?: number;
39
- address?: string;
40
- addressLine?: string;
41
- postalCode?: string;
42
- about?: string;
43
- countryId?: number;
44
- stateId?: number;
45
- cityId?: number;
46
41
  }
47
42
  export {};
@@ -15,14 +15,18 @@ export declare class UpdateFreelancerDto {
15
15
  mobile?: string;
16
16
  address: string;
17
17
  addressLine?: string;
18
- countryId: number;
19
- stateId: number;
20
- cityId: number;
18
+ countryId?: number;
19
+ stateId?: number;
20
+ cityId?: number;
21
+ postalCode?: string;
22
+ about?: string;
23
+ designation?: string;
24
+ experience?: number;
21
25
  password?: string;
22
26
  developer?: boolean;
23
27
  natureOfWork?: NatureOfWorkEnum;
24
- expectedHourlyCompensation: string;
25
- expectedAnnualCompensation: string;
28
+ expectedHourlyCompensation?: number;
29
+ expectedAnnualCompensation?: number;
26
30
  numberOfHours?: number;
27
31
  modeOfWork?: ModeOfWorkEnum;
28
32
  isImmediateJoiner?: boolean;
@@ -18,6 +18,7 @@ export declare const NOTIFICATION_PATTERN: {
18
18
  handleAiInterviewRecordingErrorNotification: string;
19
19
  handleAiAssessmentInterviewResultErrorNotification: string;
20
20
  handleAiAssessmentInterviewRecordingErrorNotification: string;
21
+ handleSubAdminAccountCreatedNotification: string;
21
22
  };
22
23
  export declare const SMS_PATTERN: {
23
24
  sendTest: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.600",
3
+ "version": "1.0.603",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",