@experts_hub/shared 1.0.49 → 1.0.50
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/dist/modules/onboarding/pattern/pattern.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -30,6 +30,9 @@ declare const OTP_PATTERN: {
|
|
|
30
30
|
|
|
31
31
|
declare const ONBOARDING_PATTERN: {
|
|
32
32
|
handleFreelancerAccountCreation: string;
|
|
33
|
+
handleFreelancerResumeUpload: string;
|
|
34
|
+
handleFreelancerDeveloperPreference: string;
|
|
35
|
+
handleFreelancerProfileQuestion: string;
|
|
33
36
|
handleClientAccountCreation: string;
|
|
34
37
|
};
|
|
35
38
|
|
package/dist/index.d.ts
CHANGED
|
@@ -30,6 +30,9 @@ declare const OTP_PATTERN: {
|
|
|
30
30
|
|
|
31
31
|
declare const ONBOARDING_PATTERN: {
|
|
32
32
|
handleFreelancerAccountCreation: string;
|
|
33
|
+
handleFreelancerResumeUpload: string;
|
|
34
|
+
handleFreelancerDeveloperPreference: string;
|
|
35
|
+
handleFreelancerProfileQuestion: string;
|
|
33
36
|
handleClientAccountCreation: string;
|
|
34
37
|
};
|
|
35
38
|
|
package/dist/index.js
CHANGED
|
@@ -104,6 +104,9 @@ var OTP_PATTERN = {
|
|
|
104
104
|
// src/modules/onboarding/pattern/pattern.ts
|
|
105
105
|
var ONBOARDING_PATTERN = {
|
|
106
106
|
handleFreelancerAccountCreation: "handle.freelancer.account.creation",
|
|
107
|
+
handleFreelancerResumeUpload: "handle.freelancer.resume.upload",
|
|
108
|
+
handleFreelancerDeveloperPreference: "handle.freelancer.developer.preference",
|
|
109
|
+
handleFreelancerProfileQuestion: "handle.freelancer.profile.question",
|
|
107
110
|
handleClientAccountCreation: "handle.client.account.creation"
|
|
108
111
|
};
|
|
109
112
|
|
package/dist/index.mjs
CHANGED
|
@@ -62,6 +62,9 @@ var OTP_PATTERN = {
|
|
|
62
62
|
// src/modules/onboarding/pattern/pattern.ts
|
|
63
63
|
var ONBOARDING_PATTERN = {
|
|
64
64
|
handleFreelancerAccountCreation: "handle.freelancer.account.creation",
|
|
65
|
+
handleFreelancerResumeUpload: "handle.freelancer.resume.upload",
|
|
66
|
+
handleFreelancerDeveloperPreference: "handle.freelancer.developer.preference",
|
|
67
|
+
handleFreelancerProfileQuestion: "handle.freelancer.profile.question",
|
|
65
68
|
handleClientAccountCreation: "handle.client.account.creation"
|
|
66
69
|
};
|
|
67
70
|
|