lancer-shared 1.2.324 → 1.2.325

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.
@@ -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(),
@@ -9711,6 +9712,8 @@ const upworkTalentSchema = objectType({
9711
9712
  recentEarningsCountryRank: numberType().nullable(),
9712
9713
  totalProjectsWorldRank: numberType().nullable(),
9713
9714
  totalProjectsCountryRank: numberType().nullable(),
9715
+ recentProjectsWorldRank: numberType().nullable(),
9716
+ recentProjectsCountryRank: numberType().nullable(),
9714
9717
  averageEarningsPerProjectWorldRank: numberType().nullable(),
9715
9718
  averageEarningsPerProjectCountryRank: numberType().nullable(),
9716
9719
  skillsWithRank: upworkTalentSkillWithRankSchema.array(),
@@ -9736,6 +9739,7 @@ const upworkTalentSearchRequestSchema = objectType({
9736
9739
  maxHourlyRate: numberType().nullable().optional(),
9737
9740
  minJobSuccessScore: numberType().nullable().optional(),
9738
9741
  searchQuery: stringType().nullable().optional(),
9742
+ isPreview: booleanType().nullable().optional(),
9739
9743
  });
9740
9744
  const upworkTalentSearchResponseSchema = objectType({
9741
9745
  data: upworkTalentSchema.array(),