lancer-shared 1.2.323 → 1.2.324

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.
@@ -9716,6 +9716,7 @@ const upworkTalentSchema = objectType({
9716
9716
  averageEarningsPerProjectWorldRank: numberType().nullable(),
9717
9717
  averageEarningsPerProjectCountryRank: numberType().nullable(),
9718
9718
  skillsWithRank: upworkTalentSkillWithRankSchema.array(),
9719
+ prevRecentEarnings: numberType().nullable(),
9719
9720
  });
9720
9721
  const upworkTalentSearchRequestSchema = objectType({
9721
9722
  page: numberType().nullable().optional(),
@@ -9724,7 +9725,10 @@ const upworkTalentSearchRequestSchema = objectType({
9724
9725
  sortOrder: z.enum(['asc', 'desc']).nullable().optional(),
9725
9726
  country: stringType().nullable().optional(),
9726
9727
  skill: stringType().nullable().optional(),
9727
- badge: z.enum(['top_rated_plus', 'top_rated', 'rising_talent']).nullable().optional(),
9728
+ badge: z
9729
+ .enum(['top_rated_plus', 'top_rated', 'rising_talent'])
9730
+ .nullable()
9731
+ .optional(),
9728
9732
  isVetted: booleanType().nullable().optional(),
9729
9733
  minEarnings: numberType().nullable().optional(),
9730
9734
  maxEarnings: numberType().nullable().optional(),
@@ -15859,6 +15863,7 @@ const ROUTES = {
15859
15863
  BY_ID: (id) => `upwork-talent/${id}`,
15860
15864
  COUNTRIES: 'upwork-talent/countries',
15861
15865
  SKILLS: 'upwork-talent/skills',
15866
+ BY_PROFILE_URL: 'upwork-talent/by-profile-url',
15862
15867
  },
15863
15868
  CHAT_ROOMS: {
15864
15869
  BASE: 'chat-rooms',