@experts_hub/shared 1.0.667 → 1.0.669
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 +24 -5
- package/dist/index.d.ts +24 -5
- package/dist/index.js +1131 -1077
- package/dist/index.mjs +566 -504
- package/dist/modules/job/dto/create-job-via-ai.dto..d.ts +5 -0
- package/dist/modules/user/client-profile/dto/index.d.ts +2 -2
- package/dist/modules/user/client-profile/dto/request-password-change-otp-client.dto.d.ts +4 -0
- package/dist/modules/user/client-profile/dto/verify-password-change-otp-client.dto.d.ts +4 -0
- package/dist/modules/user/client-profile/pattern/pattern.d.ts +3 -2
- package/dist/modules/user/freelancer-profile/dto/index.d.ts +2 -0
- package/dist/modules/user/freelancer-profile/dto/request-password-change-otp-freelancer.dto.d.ts +4 -0
- package/dist/modules/user/freelancer-profile/dto/verify-password-change-otp-freelancer.dto.d.ts +4 -0
- package/dist/modules/user/freelancer-profile/pattern/pattern.d.ts +3 -0
- package/package.json +1 -1
- package/dist/modules/user/client-profile/dto/request-password-change-otp.dto.d.ts +0 -4
- package/dist/modules/user/client-profile/dto/verify-password-change-otp.dto.d.ts +0 -4
|
@@ -11,6 +11,10 @@ declare enum EmploymentTypeV2 {
|
|
|
11
11
|
FREELANCE = "FREELANCE",
|
|
12
12
|
FTE = "FTE"
|
|
13
13
|
}
|
|
14
|
+
declare enum BillingCycleEnumV2 {
|
|
15
|
+
WEEKLY = "WEEKLY",
|
|
16
|
+
DELIVERABLE = "DELIVERABLE"
|
|
17
|
+
}
|
|
14
18
|
declare enum StepCompletedEnumV2 {
|
|
15
19
|
BASIC_INFORMATION = "BASIC_INFORMATION",
|
|
16
20
|
JOB_DESCRIPTION = "JOB_DESCRIPTION"
|
|
@@ -36,6 +40,7 @@ export declare class CreateJobViaAIDto {
|
|
|
36
40
|
locationMode: JobLocationEnumV2;
|
|
37
41
|
locations: JobLocationDto[];
|
|
38
42
|
typeOfEmployment: EmploymentTypeV2;
|
|
43
|
+
billingCycle: BillingCycleEnumV2;
|
|
39
44
|
currency?: string;
|
|
40
45
|
expectedSalaryFrom: number;
|
|
41
46
|
hideExpectedSalaryFrom: boolean;
|
|
@@ -3,5 +3,5 @@ export * from './client-change-password.dto';
|
|
|
3
3
|
export * from './client-service-agreement-upload.dto';
|
|
4
4
|
export * from './client-e-signature.dto';
|
|
5
5
|
export * from './fetch-freelancer-info-for-chat.dto';
|
|
6
|
-
export * from './request-password-change-otp.dto';
|
|
7
|
-
export * from './verify-password-change-otp.dto';
|
|
6
|
+
export * from './request-password-change-otp-client.dto';
|
|
7
|
+
export * from './verify-password-change-otp-client.dto';
|
|
@@ -19,6 +19,7 @@ export declare const CLIENT_PROFILE_PATTERN: {
|
|
|
19
19
|
fetchFreelancerInfoForChat: string;
|
|
20
20
|
fetchClientAndFreelancerDetailsForChatChannelCreation: string;
|
|
21
21
|
fetchCustomeResume: string;
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
requestPasswordChangeOtpForClient: string;
|
|
23
|
+
verifyPasswordChangeOtpForClient: string;
|
|
24
|
+
isPasswordSetForClient: string;
|
|
24
25
|
};
|
|
@@ -3,3 +3,5 @@ export * from './update-freelancer-profile.dto';
|
|
|
3
3
|
export * from './freelancer-e-signature.dto';
|
|
4
4
|
export * from './fetch-client-info-for-chat.dto';
|
|
5
5
|
export * from './capture-ai-assessment-result.dto';
|
|
6
|
+
export * from './request-password-change-otp-freelancer.dto';
|
|
7
|
+
export * from './verify-password-change-otp-freelancer.dto';
|
|
@@ -32,6 +32,9 @@ export declare const PROFILE_PATTERN: {
|
|
|
32
32
|
fetchClientInfoForChat: string;
|
|
33
33
|
fetchAiAssessmentDetails: string;
|
|
34
34
|
captureAiAssessmentResult: string;
|
|
35
|
+
requestPasswordChangeOtpForFreelancer: string;
|
|
36
|
+
verifyPasswordChangeOtpForFreelancer: string;
|
|
37
|
+
isPasswordSetForFreelancer: string;
|
|
35
38
|
};
|
|
36
39
|
export declare const FREELANCER_ASSESSMENT_REQUEST_PATTERN: {
|
|
37
40
|
fetchAssessmentRequestsForFreelancer: string;
|
package/package.json
CHANGED