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