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.
|
@@ -296,6 +296,7 @@ export declare const ROUTES: {
|
|
|
296
296
|
readonly TOP_10_CATEGORIES_BY_CLIENT_HIRE_RATE: "upwork-analytics/top-10-categories-by-client-hire-rate";
|
|
297
297
|
readonly TOP_10_CATEGORIES_BY_AVG_HOURLY_BUDGET: "upwork-analytics/top-10-categories-by-avg-hourly-budget";
|
|
298
298
|
readonly TOP_10_CATEGORIES_BY_AVG_PAID_PER_PROJECT: "upwork-analytics/top-10-categories-by-avg-paid-per-project";
|
|
299
|
+
readonly TOP_20_CATEGORIES_BY_AVG_HOURLY_RATE_PAID: "upwork-analytics/top-20-categories-by-avg-hourly-rate-paid";
|
|
299
300
|
};
|
|
300
301
|
readonly BIDDER_INSTANCES: {
|
|
301
302
|
readonly BASE: "bidder-instances";
|
|
@@ -198,3 +198,14 @@ export declare const getTop10CategoriesByAvgPaidPerProjectResponseSchema: z.ZodA
|
|
|
198
198
|
avgPaidPerProject: number;
|
|
199
199
|
}>, "many">;
|
|
200
200
|
export type GetTop10CategoriesByAvgPaidPerProjectResponse = z.infer<typeof getTop10CategoriesByAvgPaidPerProjectResponseSchema>;
|
|
201
|
+
export declare const getTop20CategoriesByAvgHourlyRatePaidResponseSchema: z.ZodArray<z.ZodObject<{
|
|
202
|
+
category: z.ZodString;
|
|
203
|
+
avgHourlyRatePaid: z.ZodNumber;
|
|
204
|
+
}, "strip", z.ZodTypeAny, {
|
|
205
|
+
category: string;
|
|
206
|
+
avgHourlyRatePaid: number;
|
|
207
|
+
}, {
|
|
208
|
+
category: string;
|
|
209
|
+
avgHourlyRatePaid: number;
|
|
210
|
+
}>, "many">;
|
|
211
|
+
export type GetTop20CategoriesByAvgHourlyRatePaidResponse = z.infer<typeof getTop20CategoriesByAvgHourlyRatePaidResponseSchema>;
|