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.
|
@@ -343,6 +343,7 @@ export declare const ROUTES: {
|
|
|
343
343
|
readonly BY_ID: (id: string) => string;
|
|
344
344
|
readonly COUNTRIES: "upwork-talent/countries";
|
|
345
345
|
readonly SKILLS: "upwork-talent/skills";
|
|
346
|
+
readonly BY_PROFILE_URL: "upwork-talent/by-profile-url";
|
|
346
347
|
};
|
|
347
348
|
readonly CHAT_ROOMS: {
|
|
348
349
|
readonly BASE: "chat-rooms";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { z } from
|
|
1
|
+
import { z } from 'zod';
|
|
2
2
|
export declare const upworkTalentSkillWithRankSchema: z.ZodObject<{
|
|
3
3
|
skill: z.ZodString;
|
|
4
4
|
rank: z.ZodNumber;
|
|
@@ -65,6 +65,7 @@ export declare const upworkTalentSchema: z.ZodObject<{
|
|
|
65
65
|
skill: string;
|
|
66
66
|
rank: number;
|
|
67
67
|
}>, "many">;
|
|
68
|
+
prevRecentEarnings: z.ZodNullable<z.ZodNumber>;
|
|
68
69
|
}, "strip", z.ZodTypeAny, {
|
|
69
70
|
id: string;
|
|
70
71
|
name: string;
|
|
@@ -115,6 +116,7 @@ export declare const upworkTalentSchema: z.ZodObject<{
|
|
|
115
116
|
skill: string;
|
|
116
117
|
rank: number;
|
|
117
118
|
}[];
|
|
119
|
+
prevRecentEarnings: number | null;
|
|
118
120
|
}, {
|
|
119
121
|
id: string;
|
|
120
122
|
name: string;
|
|
@@ -165,6 +167,7 @@ export declare const upworkTalentSchema: z.ZodObject<{
|
|
|
165
167
|
skill: string;
|
|
166
168
|
rank: number;
|
|
167
169
|
}[];
|
|
170
|
+
prevRecentEarnings: number | null;
|
|
168
171
|
}>;
|
|
169
172
|
export type UpworkTalent = z.infer<typeof upworkTalentSchema>;
|
|
170
173
|
export declare const upworkTalentSearchRequestSchema: z.ZodObject<{
|
|
@@ -277,6 +280,7 @@ export declare const upworkTalentSearchResponseSchema: z.ZodObject<{
|
|
|
277
280
|
skill: string;
|
|
278
281
|
rank: number;
|
|
279
282
|
}>, "many">;
|
|
283
|
+
prevRecentEarnings: z.ZodNullable<z.ZodNumber>;
|
|
280
284
|
}, "strip", z.ZodTypeAny, {
|
|
281
285
|
id: string;
|
|
282
286
|
name: string;
|
|
@@ -327,6 +331,7 @@ export declare const upworkTalentSearchResponseSchema: z.ZodObject<{
|
|
|
327
331
|
skill: string;
|
|
328
332
|
rank: number;
|
|
329
333
|
}[];
|
|
334
|
+
prevRecentEarnings: number | null;
|
|
330
335
|
}, {
|
|
331
336
|
id: string;
|
|
332
337
|
name: string;
|
|
@@ -377,6 +382,7 @@ export declare const upworkTalentSearchResponseSchema: z.ZodObject<{
|
|
|
377
382
|
skill: string;
|
|
378
383
|
rank: number;
|
|
379
384
|
}[];
|
|
385
|
+
prevRecentEarnings: number | null;
|
|
380
386
|
}>, "many">;
|
|
381
387
|
pagination: z.ZodObject<{
|
|
382
388
|
page: z.ZodNumber;
|
|
@@ -445,6 +451,7 @@ export declare const upworkTalentSearchResponseSchema: z.ZodObject<{
|
|
|
445
451
|
skill: string;
|
|
446
452
|
rank: number;
|
|
447
453
|
}[];
|
|
454
|
+
prevRecentEarnings: number | null;
|
|
448
455
|
}[];
|
|
449
456
|
pagination: {
|
|
450
457
|
total: number;
|
|
@@ -503,6 +510,7 @@ export declare const upworkTalentSearchResponseSchema: z.ZodObject<{
|
|
|
503
510
|
skill: string;
|
|
504
511
|
rank: number;
|
|
505
512
|
}[];
|
|
513
|
+
prevRecentEarnings: number | null;
|
|
506
514
|
}[];
|
|
507
515
|
pagination: {
|
|
508
516
|
total: number;
|