lancer-shared 1.2.297 → 1.2.298

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.
@@ -9624,6 +9624,10 @@ const getTop10CategoriesByAvgPaidPerProjectResponseSchema = z.array(z.object({
9624
9624
  category: z.string(),
9625
9625
  avgPaidPerProject: z.number(),
9626
9626
  }));
9627
+ const getTop20CategoriesByAvgHourlyRatePaidResponseSchema = z.array(z.object({
9628
+ category: z.string(),
9629
+ avgHourlyRatePaid: z.number(),
9630
+ }));
9627
9631
 
9628
9632
  const breakdownSchema = objectType({
9629
9633
  suitability: numberType(),
@@ -15680,6 +15684,7 @@ const ROUTES = {
15680
15684
  TOP_10_CATEGORIES_BY_CLIENT_HIRE_RATE: 'upwork-analytics/top-10-categories-by-client-hire-rate',
15681
15685
  TOP_10_CATEGORIES_BY_AVG_HOURLY_BUDGET: 'upwork-analytics/top-10-categories-by-avg-hourly-budget',
15682
15686
  TOP_10_CATEGORIES_BY_AVG_PAID_PER_PROJECT: 'upwork-analytics/top-10-categories-by-avg-paid-per-project',
15687
+ TOP_20_CATEGORIES_BY_AVG_HOURLY_RATE_PAID: 'upwork-analytics/top-20-categories-by-avg-hourly-rate-paid',
15683
15688
  },
15684
15689
  BIDDER_INSTANCES: {
15685
15690
  BASE: 'bidder-instances',
@@ -24511,6 +24516,7 @@ exports.getTop10CountriesByClientHireRateResponseSchema = getTop10CountriesByCli
24511
24516
  exports.getTop10CountriesByClientTotalSpentResponseSchema = getTop10CountriesByClientTotalSpentResponseSchema;
24512
24517
  exports.getTop10CountriesByJobsPostedResponseSchema = getTop10CountriesByJobsPostedResponseSchema;
24513
24518
  exports.getTop10SkillsResponseSchema = getTop10SkillsResponseSchema;
24519
+ exports.getTop20CategoriesByAvgHourlyRatePaidResponseSchema = getTop20CategoriesByAvgHourlyRatePaidResponseSchema;
24514
24520
  exports.goToUrlException = goToUrlException;
24515
24521
  exports.hasQuestionsEnum = hasQuestionsEnum;
24516
24522
  exports.incorrectSecurityQuestionAnswerException = incorrectSecurityQuestionAnswerException;