lancer-shared 1.2.324 → 1.2.326
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/bundle.esm.js
CHANGED
|
@@ -9666,6 +9666,7 @@ const getTop20CategoriesByAvgHourlyRatePaidResponseSchema = z.array(z.object({
|
|
|
9666
9666
|
const upworkTalentSkillWithRankSchema = objectType({
|
|
9667
9667
|
skill: stringType(),
|
|
9668
9668
|
rank: numberType(),
|
|
9669
|
+
countryRank: numberType().nullable(),
|
|
9669
9670
|
});
|
|
9670
9671
|
const upworkTalentSchema = objectType({
|
|
9671
9672
|
id: stringType(),
|
|
@@ -9684,6 +9685,8 @@ const upworkTalentSchema = objectType({
|
|
|
9684
9685
|
totalJobsWorkedRecent: numberType(),
|
|
9685
9686
|
totalFixedJobs: numberType(),
|
|
9686
9687
|
totalHourlyJobs: numberType(),
|
|
9688
|
+
totalFixedJobsRecent: numberType(),
|
|
9689
|
+
totalHourlyJobsRecent: numberType(),
|
|
9687
9690
|
activeJobs: numberType().nullable(),
|
|
9688
9691
|
hideEarnings: booleanType(),
|
|
9689
9692
|
contractorEarnings: numberType(),
|
|
@@ -9711,6 +9714,8 @@ const upworkTalentSchema = objectType({
|
|
|
9711
9714
|
recentEarningsCountryRank: numberType().nullable(),
|
|
9712
9715
|
totalProjectsWorldRank: numberType().nullable(),
|
|
9713
9716
|
totalProjectsCountryRank: numberType().nullable(),
|
|
9717
|
+
recentProjectsWorldRank: numberType().nullable(),
|
|
9718
|
+
recentProjectsCountryRank: numberType().nullable(),
|
|
9714
9719
|
averageEarningsPerProjectWorldRank: numberType().nullable(),
|
|
9715
9720
|
averageEarningsPerProjectCountryRank: numberType().nullable(),
|
|
9716
9721
|
skillsWithRank: upworkTalentSkillWithRankSchema.array(),
|
|
@@ -9736,6 +9741,7 @@ const upworkTalentSearchRequestSchema = objectType({
|
|
|
9736
9741
|
maxHourlyRate: numberType().nullable().optional(),
|
|
9737
9742
|
minJobSuccessScore: numberType().nullable().optional(),
|
|
9738
9743
|
searchQuery: stringType().nullable().optional(),
|
|
9744
|
+
isPreview: booleanType().nullable().optional(),
|
|
9739
9745
|
});
|
|
9740
9746
|
const upworkTalentSearchResponseSchema = objectType({
|
|
9741
9747
|
data: upworkTalentSchema.array(),
|