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.
@@ -9668,6 +9668,7 @@ const getTop20CategoriesByAvgHourlyRatePaidResponseSchema = z.array(z.object({
9668
9668
  const upworkTalentSkillWithRankSchema = objectType({
9669
9669
  skill: stringType(),
9670
9670
  rank: numberType(),
9671
+ countryRank: numberType().nullable(),
9671
9672
  });
9672
9673
  const upworkTalentSchema = objectType({
9673
9674
  id: stringType(),
@@ -9686,6 +9687,8 @@ const upworkTalentSchema = objectType({
9686
9687
  totalJobsWorkedRecent: numberType(),
9687
9688
  totalFixedJobs: numberType(),
9688
9689
  totalHourlyJobs: numberType(),
9690
+ totalFixedJobsRecent: numberType(),
9691
+ totalHourlyJobsRecent: numberType(),
9689
9692
  activeJobs: numberType().nullable(),
9690
9693
  hideEarnings: booleanType(),
9691
9694
  contractorEarnings: numberType(),
@@ -9713,6 +9716,8 @@ const upworkTalentSchema = objectType({
9713
9716
  recentEarningsCountryRank: numberType().nullable(),
9714
9717
  totalProjectsWorldRank: numberType().nullable(),
9715
9718
  totalProjectsCountryRank: numberType().nullable(),
9719
+ recentProjectsWorldRank: numberType().nullable(),
9720
+ recentProjectsCountryRank: numberType().nullable(),
9716
9721
  averageEarningsPerProjectWorldRank: numberType().nullable(),
9717
9722
  averageEarningsPerProjectCountryRank: numberType().nullable(),
9718
9723
  skillsWithRank: upworkTalentSkillWithRankSchema.array(),
@@ -9738,6 +9743,7 @@ const upworkTalentSearchRequestSchema = objectType({
9738
9743
  maxHourlyRate: numberType().nullable().optional(),
9739
9744
  minJobSuccessScore: numberType().nullable().optional(),
9740
9745
  searchQuery: stringType().nullable().optional(),
9746
+ isPreview: booleanType().nullable().optional(),
9741
9747
  });
9742
9748
  const upworkTalentSearchResponseSchema = objectType({
9743
9749
  data: upworkTalentSchema.array(),