lancer-shared 1.2.323 → 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,9 +9712,12 @@ 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(),
9720
+ prevRecentEarnings: numberType().nullable(),
9717
9721
  });
9718
9722
  const upworkTalentSearchRequestSchema = objectType({
9719
9723
  page: numberType().nullable().optional(),
@@ -9722,7 +9726,10 @@ const upworkTalentSearchRequestSchema = objectType({
9722
9726
  sortOrder: z.enum(['asc', 'desc']).nullable().optional(),
9723
9727
  country: stringType().nullable().optional(),
9724
9728
  skill: stringType().nullable().optional(),
9725
- badge: z.enum(['top_rated_plus', 'top_rated', 'rising_talent']).nullable().optional(),
9729
+ badge: z
9730
+ .enum(['top_rated_plus', 'top_rated', 'rising_talent'])
9731
+ .nullable()
9732
+ .optional(),
9726
9733
  isVetted: booleanType().nullable().optional(),
9727
9734
  minEarnings: numberType().nullable().optional(),
9728
9735
  maxEarnings: numberType().nullable().optional(),
@@ -9732,6 +9739,7 @@ const upworkTalentSearchRequestSchema = objectType({
9732
9739
  maxHourlyRate: numberType().nullable().optional(),
9733
9740
  minJobSuccessScore: numberType().nullable().optional(),
9734
9741
  searchQuery: stringType().nullable().optional(),
9742
+ isPreview: booleanType().nullable().optional(),
9735
9743
  });
9736
9744
  const upworkTalentSearchResponseSchema = objectType({
9737
9745
  data: upworkTalentSchema.array(),
@@ -15857,6 +15865,7 @@ const ROUTES = {
15857
15865
  BY_ID: (id) => `upwork-talent/${id}`,
15858
15866
  COUNTRIES: 'upwork-talent/countries',
15859
15867
  SKILLS: 'upwork-talent/skills',
15868
+ BY_PROFILE_URL: 'upwork-talent/by-profile-url',
15860
15869
  },
15861
15870
  CHAT_ROOMS: {
15862
15871
  BASE: 'chat-rooms',