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