lancer-shared 1.0.156 → 1.0.158
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.
- package/dist/constants/collections.d.ts +1 -0
- package/dist/constants/collections.js +1 -0
- package/dist/schemas/account/bidder-account.d.ts +35 -35
- package/dist/schemas/account/scraper-account.d.ts +29 -29
- package/dist/schemas/bid/bid.d.ts +26 -26
- package/dist/schemas/campaign/campaign-analytics.d.ts +14 -14
- package/dist/schemas/campaign/campaign.d.ts +252 -252
- package/dist/schemas/index.d.ts +11 -10
- package/dist/schemas/index.js +11 -10
- package/dist/schemas/job-filters/job-filters.d.ts +36 -36
- package/dist/schemas/lead/lead-note.d.ts +4 -4
- package/dist/schemas/lead/lead.d.ts +270 -270
- package/dist/schemas/proxy/index.d.ts +1 -0
- package/dist/schemas/proxy/index.js +17 -0
- package/dist/schemas/proxy/proxy.d.ts +31 -0
- package/dist/schemas/proxy/proxy.js +15 -0
- package/dist/schemas/saved-search/index.d.ts +2 -2
- package/dist/schemas/scraper/scrape-payload.d.ts +6 -6
- package/dist/schemas/scraper/scrape-result.d.ts +84 -84
- package/package.json +1 -1
|
@@ -15,18 +15,18 @@ export declare const vendorQualificationSchema: z.ZodObject<{
|
|
|
15
15
|
includeRisingTalent: z.ZodNullable<z.ZodString>;
|
|
16
16
|
}, "strip", z.ZodTypeAny, {
|
|
17
17
|
location: string | null;
|
|
18
|
-
|
|
18
|
+
includeRisingTalent: string | null;
|
|
19
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
19
20
|
englishLevel: string | null;
|
|
20
21
|
minimumEarnings: number | null;
|
|
21
22
|
jobSuccessScore: string | null;
|
|
22
|
-
includeRisingTalent: string | null;
|
|
23
23
|
}, {
|
|
24
24
|
location: string | null;
|
|
25
|
-
|
|
25
|
+
includeRisingTalent: string | null;
|
|
26
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
26
27
|
englishLevel: string | null;
|
|
27
28
|
minimumEarnings: number | null;
|
|
28
29
|
jobSuccessScore: string | null;
|
|
29
|
-
includeRisingTalent: string | null;
|
|
30
30
|
}>;
|
|
31
31
|
export declare const clientInfoSchema: z.ZodObject<{
|
|
32
32
|
isPaymentVerified: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -51,8 +51,10 @@ export declare const clientInfoSchema: z.ZodObject<{
|
|
|
51
51
|
region: string | null;
|
|
52
52
|
isPaymentVerified: boolean | null;
|
|
53
53
|
isPhoneVerified: boolean | null;
|
|
54
|
-
|
|
54
|
+
enterpriseClient: boolean | null;
|
|
55
|
+
companySize: string | null;
|
|
55
56
|
rating: number | null;
|
|
57
|
+
numberOfReviews: number | null;
|
|
56
58
|
jobsPosted: number | null;
|
|
57
59
|
totalSpent: number | null;
|
|
58
60
|
numberOfHires: number | null;
|
|
@@ -61,16 +63,16 @@ export declare const clientInfoSchema: z.ZodObject<{
|
|
|
61
63
|
hireRate: number | null;
|
|
62
64
|
memberSince: string | null;
|
|
63
65
|
companyIndustry: string | null;
|
|
64
|
-
companySize: string | null;
|
|
65
|
-
enterpriseClient: boolean | null;
|
|
66
66
|
avgHourlyRatePaid: number | null;
|
|
67
67
|
}, {
|
|
68
68
|
country: string | null;
|
|
69
69
|
region: string | null;
|
|
70
70
|
isPaymentVerified: boolean | null;
|
|
71
71
|
isPhoneVerified: boolean | null;
|
|
72
|
-
|
|
72
|
+
enterpriseClient: boolean | null;
|
|
73
|
+
companySize: string | null;
|
|
73
74
|
rating: number | null;
|
|
75
|
+
numberOfReviews: number | null;
|
|
74
76
|
jobsPosted: number | null;
|
|
75
77
|
totalSpent: number | null;
|
|
76
78
|
numberOfHires: number | null;
|
|
@@ -79,8 +81,6 @@ export declare const clientInfoSchema: z.ZodObject<{
|
|
|
79
81
|
hireRate: number | null;
|
|
80
82
|
memberSince: string | null;
|
|
81
83
|
companyIndustry: string | null;
|
|
82
|
-
companySize: string | null;
|
|
83
|
-
enterpriseClient: boolean | null;
|
|
84
84
|
avgHourlyRatePaid: number | null;
|
|
85
85
|
}>;
|
|
86
86
|
export declare const clientReviewSchema: z.ZodObject<{
|
|
@@ -97,9 +97,9 @@ export declare const clientReviewSchema: z.ZodObject<{
|
|
|
97
97
|
numHours: z.ZodNullable<z.ZodNumber>;
|
|
98
98
|
totalBilled: z.ZodNullable<z.ZodNumber>;
|
|
99
99
|
}, "strip", z.ZodTypeAny, {
|
|
100
|
+
paymentType: string | null;
|
|
100
101
|
jobTitle: string | null;
|
|
101
102
|
hourlyRate: number | null;
|
|
102
|
-
paymentType: string | null;
|
|
103
103
|
fixedPrice: number | null;
|
|
104
104
|
freelancerName: string | null;
|
|
105
105
|
freelancerRating: number | null;
|
|
@@ -110,9 +110,9 @@ export declare const clientReviewSchema: z.ZodObject<{
|
|
|
110
110
|
numHours: number | null;
|
|
111
111
|
totalBilled: number | null;
|
|
112
112
|
}, {
|
|
113
|
+
paymentType: string | null;
|
|
113
114
|
jobTitle: string | null;
|
|
114
115
|
hourlyRate: number | null;
|
|
115
|
-
paymentType: string | null;
|
|
116
116
|
fixedPrice: number | null;
|
|
117
117
|
freelancerName: string | null;
|
|
118
118
|
freelancerRating: number | null;
|
|
@@ -195,22 +195,22 @@ export declare const metadataSchema: z.ZodObject<{
|
|
|
195
195
|
}, "strip", z.ZodTypeAny, {
|
|
196
196
|
hours: string | null;
|
|
197
197
|
duration: string | null;
|
|
198
|
+
paymentType: string | null;
|
|
198
199
|
experienceLevel: string | null;
|
|
199
200
|
hourlyRate: {
|
|
200
201
|
max: number | null;
|
|
201
202
|
min: number | null;
|
|
202
203
|
} | null;
|
|
203
|
-
paymentType: string | null;
|
|
204
204
|
fixedPrice: number | null;
|
|
205
205
|
}, {
|
|
206
206
|
hours: string | null;
|
|
207
207
|
duration: string | null;
|
|
208
|
+
paymentType: string | null;
|
|
208
209
|
experienceLevel: string | null;
|
|
209
210
|
hourlyRate: {
|
|
210
211
|
max: number | null;
|
|
211
212
|
min: number | null;
|
|
212
213
|
} | null;
|
|
213
|
-
paymentType: string | null;
|
|
214
214
|
fixedPrice: number | null;
|
|
215
215
|
}>;
|
|
216
216
|
export declare const upworkJobSchema: z.ZodObject<{
|
|
@@ -252,22 +252,22 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
252
252
|
}, "strip", z.ZodTypeAny, {
|
|
253
253
|
hours: string | null;
|
|
254
254
|
duration: string | null;
|
|
255
|
+
paymentType: string | null;
|
|
255
256
|
experienceLevel: string | null;
|
|
256
257
|
hourlyRate: {
|
|
257
258
|
max: number | null;
|
|
258
259
|
min: number | null;
|
|
259
260
|
} | null;
|
|
260
|
-
paymentType: string | null;
|
|
261
261
|
fixedPrice: number | null;
|
|
262
262
|
}, {
|
|
263
263
|
hours: string | null;
|
|
264
264
|
duration: string | null;
|
|
265
|
+
paymentType: string | null;
|
|
265
266
|
experienceLevel: string | null;
|
|
266
267
|
hourlyRate: {
|
|
267
268
|
max: number | null;
|
|
268
269
|
min: number | null;
|
|
269
270
|
} | null;
|
|
270
|
-
paymentType: string | null;
|
|
271
271
|
fixedPrice: number | null;
|
|
272
272
|
}>>;
|
|
273
273
|
clientInfo: z.ZodNullable<z.ZodObject<{
|
|
@@ -293,8 +293,10 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
293
293
|
region: string | null;
|
|
294
294
|
isPaymentVerified: boolean | null;
|
|
295
295
|
isPhoneVerified: boolean | null;
|
|
296
|
-
|
|
296
|
+
enterpriseClient: boolean | null;
|
|
297
|
+
companySize: string | null;
|
|
297
298
|
rating: number | null;
|
|
299
|
+
numberOfReviews: number | null;
|
|
298
300
|
jobsPosted: number | null;
|
|
299
301
|
totalSpent: number | null;
|
|
300
302
|
numberOfHires: number | null;
|
|
@@ -303,16 +305,16 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
303
305
|
hireRate: number | null;
|
|
304
306
|
memberSince: string | null;
|
|
305
307
|
companyIndustry: string | null;
|
|
306
|
-
companySize: string | null;
|
|
307
|
-
enterpriseClient: boolean | null;
|
|
308
308
|
avgHourlyRatePaid: number | null;
|
|
309
309
|
}, {
|
|
310
310
|
country: string | null;
|
|
311
311
|
region: string | null;
|
|
312
312
|
isPaymentVerified: boolean | null;
|
|
313
313
|
isPhoneVerified: boolean | null;
|
|
314
|
-
|
|
314
|
+
enterpriseClient: boolean | null;
|
|
315
|
+
companySize: string | null;
|
|
315
316
|
rating: number | null;
|
|
317
|
+
numberOfReviews: number | null;
|
|
316
318
|
jobsPosted: number | null;
|
|
317
319
|
totalSpent: number | null;
|
|
318
320
|
numberOfHires: number | null;
|
|
@@ -321,8 +323,6 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
321
323
|
hireRate: number | null;
|
|
322
324
|
memberSince: string | null;
|
|
323
325
|
companyIndustry: string | null;
|
|
324
|
-
companySize: string | null;
|
|
325
|
-
enterpriseClient: boolean | null;
|
|
326
326
|
avgHourlyRatePaid: number | null;
|
|
327
327
|
}>>;
|
|
328
328
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
@@ -334,18 +334,18 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
334
334
|
includeRisingTalent: z.ZodNullable<z.ZodString>;
|
|
335
335
|
}, "strip", z.ZodTypeAny, {
|
|
336
336
|
location: string | null;
|
|
337
|
-
|
|
337
|
+
includeRisingTalent: string | null;
|
|
338
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
338
339
|
englishLevel: string | null;
|
|
339
340
|
minimumEarnings: number | null;
|
|
340
341
|
jobSuccessScore: string | null;
|
|
341
|
-
includeRisingTalent: string | null;
|
|
342
342
|
}, {
|
|
343
343
|
location: string | null;
|
|
344
|
-
|
|
344
|
+
includeRisingTalent: string | null;
|
|
345
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
345
346
|
englishLevel: string | null;
|
|
346
347
|
minimumEarnings: number | null;
|
|
347
348
|
jobSuccessScore: string | null;
|
|
348
|
-
includeRisingTalent: string | null;
|
|
349
349
|
}>>;
|
|
350
350
|
processed: z.ZodNullable<z.ZodBoolean>;
|
|
351
351
|
isFeatured: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -363,9 +363,9 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
363
363
|
numHours: z.ZodNullable<z.ZodNumber>;
|
|
364
364
|
totalBilled: z.ZodNullable<z.ZodNumber>;
|
|
365
365
|
}, "strip", z.ZodTypeAny, {
|
|
366
|
+
paymentType: string | null;
|
|
366
367
|
jobTitle: string | null;
|
|
367
368
|
hourlyRate: number | null;
|
|
368
|
-
paymentType: string | null;
|
|
369
369
|
fixedPrice: number | null;
|
|
370
370
|
freelancerName: string | null;
|
|
371
371
|
freelancerRating: number | null;
|
|
@@ -376,9 +376,9 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
376
376
|
numHours: number | null;
|
|
377
377
|
totalBilled: number | null;
|
|
378
378
|
}, {
|
|
379
|
+
paymentType: string | null;
|
|
379
380
|
jobTitle: string | null;
|
|
380
381
|
hourlyRate: number | null;
|
|
381
|
-
paymentType: string | null;
|
|
382
382
|
fixedPrice: number | null;
|
|
383
383
|
freelancerName: string | null;
|
|
384
384
|
freelancerRating: number | null;
|
|
@@ -450,35 +450,30 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
450
450
|
metadata: {
|
|
451
451
|
hours: string | null;
|
|
452
452
|
duration: string | null;
|
|
453
|
+
paymentType: string | null;
|
|
453
454
|
experienceLevel: string | null;
|
|
454
455
|
hourlyRate: {
|
|
455
456
|
max: number | null;
|
|
456
457
|
min: number | null;
|
|
457
458
|
} | null;
|
|
458
|
-
paymentType: string | null;
|
|
459
459
|
fixedPrice: number | null;
|
|
460
460
|
} | null;
|
|
461
461
|
description: string | null;
|
|
462
|
-
region: "
|
|
462
|
+
region: "Worldwide" | "UKOnly" | "USOnly" | null;
|
|
463
463
|
datetime: number | null;
|
|
464
464
|
createdAt: number | null;
|
|
465
|
-
|
|
466
|
-
name: string;
|
|
467
|
-
}[] | null;
|
|
468
|
-
category: string | null;
|
|
469
|
-
descriptionLength: number | null;
|
|
470
|
-
connectsRequired: number | null;
|
|
471
|
-
projectType: string | null;
|
|
465
|
+
isFeatured: boolean | null;
|
|
472
466
|
projectDuration: string | null;
|
|
473
467
|
questions: string[] | null;
|
|
474
|
-
jobUrl: string | null;
|
|
475
468
|
clientInfo: {
|
|
476
469
|
country: string | null;
|
|
477
470
|
region: string | null;
|
|
478
471
|
isPaymentVerified: boolean | null;
|
|
479
472
|
isPhoneVerified: boolean | null;
|
|
480
|
-
|
|
473
|
+
enterpriseClient: boolean | null;
|
|
474
|
+
companySize: string | null;
|
|
481
475
|
rating: number | null;
|
|
476
|
+
numberOfReviews: number | null;
|
|
482
477
|
jobsPosted: number | null;
|
|
483
478
|
totalSpent: number | null;
|
|
484
479
|
numberOfHires: number | null;
|
|
@@ -487,24 +482,29 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
487
482
|
hireRate: number | null;
|
|
488
483
|
memberSince: string | null;
|
|
489
484
|
companyIndustry: string | null;
|
|
490
|
-
companySize: string | null;
|
|
491
|
-
enterpriseClient: boolean | null;
|
|
492
485
|
avgHourlyRatePaid: number | null;
|
|
493
486
|
} | null;
|
|
494
487
|
vendorQualifications: {
|
|
495
488
|
location: string | null;
|
|
496
|
-
|
|
489
|
+
includeRisingTalent: string | null;
|
|
490
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
497
491
|
englishLevel: string | null;
|
|
498
492
|
minimumEarnings: number | null;
|
|
499
493
|
jobSuccessScore: string | null;
|
|
500
|
-
includeRisingTalent: string | null;
|
|
501
494
|
} | null;
|
|
495
|
+
jobUrl: string | null;
|
|
496
|
+
skills: {
|
|
497
|
+
name: string;
|
|
498
|
+
}[] | null;
|
|
499
|
+
category: string | null;
|
|
500
|
+
descriptionLength: number | null;
|
|
501
|
+
connectsRequired: number | null;
|
|
502
|
+
projectType: string | null;
|
|
502
503
|
processed: boolean | null;
|
|
503
|
-
isFeatured: boolean | null;
|
|
504
504
|
clientReviews: {
|
|
505
|
+
paymentType: string | null;
|
|
505
506
|
jobTitle: string | null;
|
|
506
507
|
hourlyRate: number | null;
|
|
507
|
-
paymentType: string | null;
|
|
508
508
|
fixedPrice: number | null;
|
|
509
509
|
freelancerName: string | null;
|
|
510
510
|
freelancerRating: number | null;
|
|
@@ -539,35 +539,30 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
539
539
|
metadata: {
|
|
540
540
|
hours: string | null;
|
|
541
541
|
duration: string | null;
|
|
542
|
+
paymentType: string | null;
|
|
542
543
|
experienceLevel: string | null;
|
|
543
544
|
hourlyRate: {
|
|
544
545
|
max: number | null;
|
|
545
546
|
min: number | null;
|
|
546
547
|
} | null;
|
|
547
|
-
paymentType: string | null;
|
|
548
548
|
fixedPrice: number | null;
|
|
549
549
|
} | null;
|
|
550
550
|
description: string | null;
|
|
551
|
-
region: "
|
|
551
|
+
region: "Worldwide" | "UKOnly" | "USOnly" | null;
|
|
552
552
|
datetime: number | null;
|
|
553
553
|
createdAt: number | null;
|
|
554
|
-
|
|
555
|
-
name: string;
|
|
556
|
-
}[] | null;
|
|
557
|
-
category: string | null;
|
|
558
|
-
descriptionLength: number | null;
|
|
559
|
-
connectsRequired: number | null;
|
|
560
|
-
projectType: string | null;
|
|
554
|
+
isFeatured: boolean | null;
|
|
561
555
|
projectDuration: string | null;
|
|
562
556
|
questions: string[] | null;
|
|
563
|
-
jobUrl: string | null;
|
|
564
557
|
clientInfo: {
|
|
565
558
|
country: string | null;
|
|
566
559
|
region: string | null;
|
|
567
560
|
isPaymentVerified: boolean | null;
|
|
568
561
|
isPhoneVerified: boolean | null;
|
|
569
|
-
|
|
562
|
+
enterpriseClient: boolean | null;
|
|
563
|
+
companySize: string | null;
|
|
570
564
|
rating: number | null;
|
|
565
|
+
numberOfReviews: number | null;
|
|
571
566
|
jobsPosted: number | null;
|
|
572
567
|
totalSpent: number | null;
|
|
573
568
|
numberOfHires: number | null;
|
|
@@ -576,24 +571,29 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
576
571
|
hireRate: number | null;
|
|
577
572
|
memberSince: string | null;
|
|
578
573
|
companyIndustry: string | null;
|
|
579
|
-
companySize: string | null;
|
|
580
|
-
enterpriseClient: boolean | null;
|
|
581
574
|
avgHourlyRatePaid: number | null;
|
|
582
575
|
} | null;
|
|
583
576
|
vendorQualifications: {
|
|
584
577
|
location: string | null;
|
|
585
|
-
|
|
578
|
+
includeRisingTalent: string | null;
|
|
579
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
586
580
|
englishLevel: string | null;
|
|
587
581
|
minimumEarnings: number | null;
|
|
588
582
|
jobSuccessScore: string | null;
|
|
589
|
-
includeRisingTalent: string | null;
|
|
590
583
|
} | null;
|
|
584
|
+
jobUrl: string | null;
|
|
585
|
+
skills: {
|
|
586
|
+
name: string;
|
|
587
|
+
}[] | null;
|
|
588
|
+
category: string | null;
|
|
589
|
+
descriptionLength: number | null;
|
|
590
|
+
connectsRequired: number | null;
|
|
591
|
+
projectType: string | null;
|
|
591
592
|
processed: boolean | null;
|
|
592
|
-
isFeatured: boolean | null;
|
|
593
593
|
clientReviews: {
|
|
594
|
+
paymentType: string | null;
|
|
594
595
|
jobTitle: string | null;
|
|
595
596
|
hourlyRate: number | null;
|
|
596
|
-
paymentType: string | null;
|
|
597
597
|
fixedPrice: number | null;
|
|
598
598
|
freelancerName: string | null;
|
|
599
599
|
freelancerRating: number | null;
|
|
@@ -662,22 +662,22 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
662
662
|
}, "strip", z.ZodTypeAny, {
|
|
663
663
|
hours: string | null;
|
|
664
664
|
duration: string | null;
|
|
665
|
+
paymentType: string | null;
|
|
665
666
|
experienceLevel: string | null;
|
|
666
667
|
hourlyRate: {
|
|
667
668
|
max: number | null;
|
|
668
669
|
min: number | null;
|
|
669
670
|
} | null;
|
|
670
|
-
paymentType: string | null;
|
|
671
671
|
fixedPrice: number | null;
|
|
672
672
|
}, {
|
|
673
673
|
hours: string | null;
|
|
674
674
|
duration: string | null;
|
|
675
|
+
paymentType: string | null;
|
|
675
676
|
experienceLevel: string | null;
|
|
676
677
|
hourlyRate: {
|
|
677
678
|
max: number | null;
|
|
678
679
|
min: number | null;
|
|
679
680
|
} | null;
|
|
680
|
-
paymentType: string | null;
|
|
681
681
|
fixedPrice: number | null;
|
|
682
682
|
}>>;
|
|
683
683
|
clientInfo: z.ZodNullable<z.ZodObject<{
|
|
@@ -703,8 +703,10 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
703
703
|
region: string | null;
|
|
704
704
|
isPaymentVerified: boolean | null;
|
|
705
705
|
isPhoneVerified: boolean | null;
|
|
706
|
-
|
|
706
|
+
enterpriseClient: boolean | null;
|
|
707
|
+
companySize: string | null;
|
|
707
708
|
rating: number | null;
|
|
709
|
+
numberOfReviews: number | null;
|
|
708
710
|
jobsPosted: number | null;
|
|
709
711
|
totalSpent: number | null;
|
|
710
712
|
numberOfHires: number | null;
|
|
@@ -713,16 +715,16 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
713
715
|
hireRate: number | null;
|
|
714
716
|
memberSince: string | null;
|
|
715
717
|
companyIndustry: string | null;
|
|
716
|
-
companySize: string | null;
|
|
717
|
-
enterpriseClient: boolean | null;
|
|
718
718
|
avgHourlyRatePaid: number | null;
|
|
719
719
|
}, {
|
|
720
720
|
country: string | null;
|
|
721
721
|
region: string | null;
|
|
722
722
|
isPaymentVerified: boolean | null;
|
|
723
723
|
isPhoneVerified: boolean | null;
|
|
724
|
-
|
|
724
|
+
enterpriseClient: boolean | null;
|
|
725
|
+
companySize: string | null;
|
|
725
726
|
rating: number | null;
|
|
727
|
+
numberOfReviews: number | null;
|
|
726
728
|
jobsPosted: number | null;
|
|
727
729
|
totalSpent: number | null;
|
|
728
730
|
numberOfHires: number | null;
|
|
@@ -731,8 +733,6 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
731
733
|
hireRate: number | null;
|
|
732
734
|
memberSince: string | null;
|
|
733
735
|
companyIndustry: string | null;
|
|
734
|
-
companySize: string | null;
|
|
735
|
-
enterpriseClient: boolean | null;
|
|
736
736
|
avgHourlyRatePaid: number | null;
|
|
737
737
|
}>>;
|
|
738
738
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
@@ -744,18 +744,18 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
744
744
|
includeRisingTalent: z.ZodNullable<z.ZodString>;
|
|
745
745
|
}, "strip", z.ZodTypeAny, {
|
|
746
746
|
location: string | null;
|
|
747
|
-
|
|
747
|
+
includeRisingTalent: string | null;
|
|
748
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
748
749
|
englishLevel: string | null;
|
|
749
750
|
minimumEarnings: number | null;
|
|
750
751
|
jobSuccessScore: string | null;
|
|
751
|
-
includeRisingTalent: string | null;
|
|
752
752
|
}, {
|
|
753
753
|
location: string | null;
|
|
754
|
-
|
|
754
|
+
includeRisingTalent: string | null;
|
|
755
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
755
756
|
englishLevel: string | null;
|
|
756
757
|
minimumEarnings: number | null;
|
|
757
758
|
jobSuccessScore: string | null;
|
|
758
|
-
includeRisingTalent: string | null;
|
|
759
759
|
}>>;
|
|
760
760
|
processed: z.ZodNullable<z.ZodBoolean>;
|
|
761
761
|
isFeatured: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -773,9 +773,9 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
773
773
|
numHours: z.ZodNullable<z.ZodNumber>;
|
|
774
774
|
totalBilled: z.ZodNullable<z.ZodNumber>;
|
|
775
775
|
}, "strip", z.ZodTypeAny, {
|
|
776
|
+
paymentType: string | null;
|
|
776
777
|
jobTitle: string | null;
|
|
777
778
|
hourlyRate: number | null;
|
|
778
|
-
paymentType: string | null;
|
|
779
779
|
fixedPrice: number | null;
|
|
780
780
|
freelancerName: string | null;
|
|
781
781
|
freelancerRating: number | null;
|
|
@@ -786,9 +786,9 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
786
786
|
numHours: number | null;
|
|
787
787
|
totalBilled: number | null;
|
|
788
788
|
}, {
|
|
789
|
+
paymentType: string | null;
|
|
789
790
|
jobTitle: string | null;
|
|
790
791
|
hourlyRate: number | null;
|
|
791
|
-
paymentType: string | null;
|
|
792
792
|
fixedPrice: number | null;
|
|
793
793
|
freelancerName: string | null;
|
|
794
794
|
freelancerRating: number | null;
|
|
@@ -884,18 +884,18 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
884
884
|
id: string;
|
|
885
885
|
content: string;
|
|
886
886
|
order: number;
|
|
887
|
-
jobId: string;
|
|
888
|
-
bgColor: string;
|
|
889
887
|
createdAt: number;
|
|
890
888
|
updatedAt: number;
|
|
889
|
+
jobId: string;
|
|
890
|
+
bgColor: string;
|
|
891
891
|
}, {
|
|
892
892
|
id: string;
|
|
893
893
|
content: string;
|
|
894
894
|
order: number;
|
|
895
|
-
jobId: string;
|
|
896
|
-
bgColor: string;
|
|
897
895
|
createdAt: number;
|
|
898
896
|
updatedAt: number;
|
|
897
|
+
jobId: string;
|
|
898
|
+
bgColor: string;
|
|
899
899
|
}>, "many">>;
|
|
900
900
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
901
901
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -908,42 +908,31 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
908
908
|
metadata: {
|
|
909
909
|
hours: string | null;
|
|
910
910
|
duration: string | null;
|
|
911
|
+
paymentType: string | null;
|
|
911
912
|
experienceLevel: string | null;
|
|
912
913
|
hourlyRate: {
|
|
913
914
|
max: number | null;
|
|
914
915
|
min: number | null;
|
|
915
916
|
} | null;
|
|
916
|
-
paymentType: string | null;
|
|
917
917
|
fixedPrice: number | null;
|
|
918
918
|
} | null;
|
|
919
919
|
description: string | null;
|
|
920
|
-
region: "
|
|
920
|
+
region: "Worldwide" | "UKOnly" | "USOnly" | null;
|
|
921
921
|
datetime: number | null;
|
|
922
|
-
jobId: string;
|
|
923
922
|
createdAt: number | null;
|
|
924
923
|
updatedAt: number | null;
|
|
925
|
-
|
|
926
|
-
answer: string;
|
|
927
|
-
question: string;
|
|
928
|
-
}[] | null;
|
|
929
|
-
proposal: string | null;
|
|
930
|
-
skills: {
|
|
931
|
-
name: string;
|
|
932
|
-
}[] | null;
|
|
933
|
-
category: string | null;
|
|
934
|
-
descriptionLength: number | null;
|
|
935
|
-
connectsRequired: number | null;
|
|
936
|
-
projectType: string | null;
|
|
924
|
+
isFeatured: boolean | null;
|
|
937
925
|
projectDuration: string | null;
|
|
938
926
|
questions: string[] | null;
|
|
939
|
-
jobUrl: string | null;
|
|
940
927
|
clientInfo: {
|
|
941
928
|
country: string | null;
|
|
942
929
|
region: string | null;
|
|
943
930
|
isPaymentVerified: boolean | null;
|
|
944
931
|
isPhoneVerified: boolean | null;
|
|
945
|
-
|
|
932
|
+
enterpriseClient: boolean | null;
|
|
933
|
+
companySize: string | null;
|
|
946
934
|
rating: number | null;
|
|
935
|
+
numberOfReviews: number | null;
|
|
947
936
|
jobsPosted: number | null;
|
|
948
937
|
totalSpent: number | null;
|
|
949
938
|
numberOfHires: number | null;
|
|
@@ -952,23 +941,37 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
952
941
|
hireRate: number | null;
|
|
953
942
|
memberSince: string | null;
|
|
954
943
|
companyIndustry: string | null;
|
|
955
|
-
companySize: string | null;
|
|
956
|
-
enterpriseClient: boolean | null;
|
|
957
944
|
avgHourlyRatePaid: number | null;
|
|
958
945
|
} | null;
|
|
959
946
|
vendorQualifications: {
|
|
960
947
|
location: string | null;
|
|
961
|
-
|
|
948
|
+
includeRisingTalent: string | null;
|
|
949
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
962
950
|
englishLevel: string | null;
|
|
963
951
|
minimumEarnings: number | null;
|
|
964
952
|
jobSuccessScore: string | null;
|
|
965
|
-
includeRisingTalent: string | null;
|
|
966
953
|
} | null;
|
|
967
|
-
|
|
954
|
+
questionAnswerPairs: {
|
|
955
|
+
answer: string;
|
|
956
|
+
question: string;
|
|
957
|
+
}[] | null;
|
|
958
|
+
proposal: string | null;
|
|
959
|
+
jobUrl: string | null;
|
|
960
|
+
biddingAmount: number | null;
|
|
961
|
+
boosted: boolean | null;
|
|
962
|
+
boostingAmount: number | null;
|
|
963
|
+
jobId: string;
|
|
964
|
+
skills: {
|
|
965
|
+
name: string;
|
|
966
|
+
}[] | null;
|
|
967
|
+
category: string | null;
|
|
968
|
+
descriptionLength: number | null;
|
|
969
|
+
connectsRequired: number | null;
|
|
970
|
+
projectType: string | null;
|
|
968
971
|
clientReviews: {
|
|
972
|
+
paymentType: string | null;
|
|
969
973
|
jobTitle: string | null;
|
|
970
974
|
hourlyRate: number | null;
|
|
971
|
-
paymentType: string | null;
|
|
972
975
|
fixedPrice: number | null;
|
|
973
976
|
freelancerName: string | null;
|
|
974
977
|
freelancerRating: number | null;
|
|
@@ -1005,14 +1008,11 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
1005
1008
|
id: string;
|
|
1006
1009
|
content: string;
|
|
1007
1010
|
order: number;
|
|
1008
|
-
jobId: string;
|
|
1009
|
-
bgColor: string;
|
|
1010
1011
|
createdAt: number;
|
|
1011
1012
|
updatedAt: number;
|
|
1013
|
+
jobId: string;
|
|
1014
|
+
bgColor: string;
|
|
1012
1015
|
}[] | null;
|
|
1013
|
-
biddingAmount: number | null;
|
|
1014
|
-
boosted: boolean | null;
|
|
1015
|
-
boostingAmount: number | null;
|
|
1016
1016
|
biddingTaskScheduled: boolean | null;
|
|
1017
1017
|
scheduledBiddingTime: number | null;
|
|
1018
1018
|
}, {
|
|
@@ -1021,42 +1021,31 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
1021
1021
|
metadata: {
|
|
1022
1022
|
hours: string | null;
|
|
1023
1023
|
duration: string | null;
|
|
1024
|
+
paymentType: string | null;
|
|
1024
1025
|
experienceLevel: string | null;
|
|
1025
1026
|
hourlyRate: {
|
|
1026
1027
|
max: number | null;
|
|
1027
1028
|
min: number | null;
|
|
1028
1029
|
} | null;
|
|
1029
|
-
paymentType: string | null;
|
|
1030
1030
|
fixedPrice: number | null;
|
|
1031
1031
|
} | null;
|
|
1032
1032
|
description: string | null;
|
|
1033
|
-
region: "
|
|
1033
|
+
region: "Worldwide" | "UKOnly" | "USOnly" | null;
|
|
1034
1034
|
datetime: number | null;
|
|
1035
|
-
jobId: string;
|
|
1036
1035
|
createdAt: number | null;
|
|
1037
1036
|
updatedAt: number | null;
|
|
1038
|
-
|
|
1039
|
-
answer: string;
|
|
1040
|
-
question: string;
|
|
1041
|
-
}[] | null;
|
|
1042
|
-
proposal: string | null;
|
|
1043
|
-
skills: {
|
|
1044
|
-
name: string;
|
|
1045
|
-
}[] | null;
|
|
1046
|
-
category: string | null;
|
|
1047
|
-
descriptionLength: number | null;
|
|
1048
|
-
connectsRequired: number | null;
|
|
1049
|
-
projectType: string | null;
|
|
1037
|
+
isFeatured: boolean | null;
|
|
1050
1038
|
projectDuration: string | null;
|
|
1051
1039
|
questions: string[] | null;
|
|
1052
|
-
jobUrl: string | null;
|
|
1053
1040
|
clientInfo: {
|
|
1054
1041
|
country: string | null;
|
|
1055
1042
|
region: string | null;
|
|
1056
1043
|
isPaymentVerified: boolean | null;
|
|
1057
1044
|
isPhoneVerified: boolean | null;
|
|
1058
|
-
|
|
1045
|
+
enterpriseClient: boolean | null;
|
|
1046
|
+
companySize: string | null;
|
|
1059
1047
|
rating: number | null;
|
|
1048
|
+
numberOfReviews: number | null;
|
|
1060
1049
|
jobsPosted: number | null;
|
|
1061
1050
|
totalSpent: number | null;
|
|
1062
1051
|
numberOfHires: number | null;
|
|
@@ -1065,23 +1054,37 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
1065
1054
|
hireRate: number | null;
|
|
1066
1055
|
memberSince: string | null;
|
|
1067
1056
|
companyIndustry: string | null;
|
|
1068
|
-
companySize: string | null;
|
|
1069
|
-
enterpriseClient: boolean | null;
|
|
1070
1057
|
avgHourlyRatePaid: number | null;
|
|
1071
1058
|
} | null;
|
|
1072
1059
|
vendorQualifications: {
|
|
1073
1060
|
location: string | null;
|
|
1074
|
-
|
|
1061
|
+
includeRisingTalent: string | null;
|
|
1062
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
1075
1063
|
englishLevel: string | null;
|
|
1076
1064
|
minimumEarnings: number | null;
|
|
1077
1065
|
jobSuccessScore: string | null;
|
|
1078
|
-
includeRisingTalent: string | null;
|
|
1079
1066
|
} | null;
|
|
1080
|
-
|
|
1067
|
+
questionAnswerPairs: {
|
|
1068
|
+
answer: string;
|
|
1069
|
+
question: string;
|
|
1070
|
+
}[] | null;
|
|
1071
|
+
proposal: string | null;
|
|
1072
|
+
jobUrl: string | null;
|
|
1073
|
+
biddingAmount: number | null;
|
|
1074
|
+
boosted: boolean | null;
|
|
1075
|
+
boostingAmount: number | null;
|
|
1076
|
+
jobId: string;
|
|
1077
|
+
skills: {
|
|
1078
|
+
name: string;
|
|
1079
|
+
}[] | null;
|
|
1080
|
+
category: string | null;
|
|
1081
|
+
descriptionLength: number | null;
|
|
1082
|
+
connectsRequired: number | null;
|
|
1083
|
+
projectType: string | null;
|
|
1081
1084
|
clientReviews: {
|
|
1085
|
+
paymentType: string | null;
|
|
1082
1086
|
jobTitle: string | null;
|
|
1083
1087
|
hourlyRate: number | null;
|
|
1084
|
-
paymentType: string | null;
|
|
1085
1088
|
fixedPrice: number | null;
|
|
1086
1089
|
freelancerName: string | null;
|
|
1087
1090
|
freelancerRating: number | null;
|
|
@@ -1118,14 +1121,11 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
1118
1121
|
id: string;
|
|
1119
1122
|
content: string;
|
|
1120
1123
|
order: number;
|
|
1121
|
-
jobId: string;
|
|
1122
|
-
bgColor: string;
|
|
1123
1124
|
createdAt: number;
|
|
1124
1125
|
updatedAt: number;
|
|
1126
|
+
jobId: string;
|
|
1127
|
+
bgColor: string;
|
|
1125
1128
|
}[] | null;
|
|
1126
|
-
biddingAmount: number | null;
|
|
1127
|
-
boosted: boolean | null;
|
|
1128
|
-
boostingAmount: number | null;
|
|
1129
1129
|
biddingTaskScheduled: boolean | null;
|
|
1130
1130
|
scheduledBiddingTime: number | null;
|
|
1131
1131
|
}>;
|
|
@@ -1137,16 +1137,16 @@ export declare const jobListItemSchema: z.ZodObject<{
|
|
|
1137
1137
|
region: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>>;
|
|
1138
1138
|
}, "strip", z.ZodTypeAny, {
|
|
1139
1139
|
title: string | null;
|
|
1140
|
-
region: "
|
|
1140
|
+
region: "Worldwide" | "UKOnly" | "USOnly" | null;
|
|
1141
1141
|
datetime: string | null;
|
|
1142
|
-
jobUrl: string | null;
|
|
1143
1142
|
isFeatured: boolean | null;
|
|
1143
|
+
jobUrl: string | null;
|
|
1144
1144
|
}, {
|
|
1145
1145
|
title: string | null;
|
|
1146
|
-
region: "
|
|
1146
|
+
region: "Worldwide" | "UKOnly" | "USOnly" | null;
|
|
1147
1147
|
datetime: string | null;
|
|
1148
|
-
jobUrl: string | null;
|
|
1149
1148
|
isFeatured: boolean | null;
|
|
1149
|
+
jobUrl: string | null;
|
|
1150
1150
|
}>;
|
|
1151
1151
|
export declare const leadResponseSchema: z.ZodObject<{
|
|
1152
1152
|
leads: z.ZodArray<z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
@@ -1188,22 +1188,22 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1188
1188
|
}, "strip", z.ZodTypeAny, {
|
|
1189
1189
|
hours: string | null;
|
|
1190
1190
|
duration: string | null;
|
|
1191
|
+
paymentType: string | null;
|
|
1191
1192
|
experienceLevel: string | null;
|
|
1192
1193
|
hourlyRate: {
|
|
1193
1194
|
max: number | null;
|
|
1194
1195
|
min: number | null;
|
|
1195
1196
|
} | null;
|
|
1196
|
-
paymentType: string | null;
|
|
1197
1197
|
fixedPrice: number | null;
|
|
1198
1198
|
}, {
|
|
1199
1199
|
hours: string | null;
|
|
1200
1200
|
duration: string | null;
|
|
1201
|
+
paymentType: string | null;
|
|
1201
1202
|
experienceLevel: string | null;
|
|
1202
1203
|
hourlyRate: {
|
|
1203
1204
|
max: number | null;
|
|
1204
1205
|
min: number | null;
|
|
1205
1206
|
} | null;
|
|
1206
|
-
paymentType: string | null;
|
|
1207
1207
|
fixedPrice: number | null;
|
|
1208
1208
|
}>>;
|
|
1209
1209
|
clientInfo: z.ZodNullable<z.ZodObject<{
|
|
@@ -1229,8 +1229,10 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1229
1229
|
region: string | null;
|
|
1230
1230
|
isPaymentVerified: boolean | null;
|
|
1231
1231
|
isPhoneVerified: boolean | null;
|
|
1232
|
-
|
|
1232
|
+
enterpriseClient: boolean | null;
|
|
1233
|
+
companySize: string | null;
|
|
1233
1234
|
rating: number | null;
|
|
1235
|
+
numberOfReviews: number | null;
|
|
1234
1236
|
jobsPosted: number | null;
|
|
1235
1237
|
totalSpent: number | null;
|
|
1236
1238
|
numberOfHires: number | null;
|
|
@@ -1239,16 +1241,16 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1239
1241
|
hireRate: number | null;
|
|
1240
1242
|
memberSince: string | null;
|
|
1241
1243
|
companyIndustry: string | null;
|
|
1242
|
-
companySize: string | null;
|
|
1243
|
-
enterpriseClient: boolean | null;
|
|
1244
1244
|
avgHourlyRatePaid: number | null;
|
|
1245
1245
|
}, {
|
|
1246
1246
|
country: string | null;
|
|
1247
1247
|
region: string | null;
|
|
1248
1248
|
isPaymentVerified: boolean | null;
|
|
1249
1249
|
isPhoneVerified: boolean | null;
|
|
1250
|
-
|
|
1250
|
+
enterpriseClient: boolean | null;
|
|
1251
|
+
companySize: string | null;
|
|
1251
1252
|
rating: number | null;
|
|
1253
|
+
numberOfReviews: number | null;
|
|
1252
1254
|
jobsPosted: number | null;
|
|
1253
1255
|
totalSpent: number | null;
|
|
1254
1256
|
numberOfHires: number | null;
|
|
@@ -1257,8 +1259,6 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1257
1259
|
hireRate: number | null;
|
|
1258
1260
|
memberSince: string | null;
|
|
1259
1261
|
companyIndustry: string | null;
|
|
1260
|
-
companySize: string | null;
|
|
1261
|
-
enterpriseClient: boolean | null;
|
|
1262
1262
|
avgHourlyRatePaid: number | null;
|
|
1263
1263
|
}>>;
|
|
1264
1264
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
@@ -1270,18 +1270,18 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1270
1270
|
includeRisingTalent: z.ZodNullable<z.ZodString>;
|
|
1271
1271
|
}, "strip", z.ZodTypeAny, {
|
|
1272
1272
|
location: string | null;
|
|
1273
|
-
|
|
1273
|
+
includeRisingTalent: string | null;
|
|
1274
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
1274
1275
|
englishLevel: string | null;
|
|
1275
1276
|
minimumEarnings: number | null;
|
|
1276
1277
|
jobSuccessScore: string | null;
|
|
1277
|
-
includeRisingTalent: string | null;
|
|
1278
1278
|
}, {
|
|
1279
1279
|
location: string | null;
|
|
1280
|
-
|
|
1280
|
+
includeRisingTalent: string | null;
|
|
1281
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
1281
1282
|
englishLevel: string | null;
|
|
1282
1283
|
minimumEarnings: number | null;
|
|
1283
1284
|
jobSuccessScore: string | null;
|
|
1284
|
-
includeRisingTalent: string | null;
|
|
1285
1285
|
}>>;
|
|
1286
1286
|
processed: z.ZodNullable<z.ZodBoolean>;
|
|
1287
1287
|
isFeatured: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -1299,9 +1299,9 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1299
1299
|
numHours: z.ZodNullable<z.ZodNumber>;
|
|
1300
1300
|
totalBilled: z.ZodNullable<z.ZodNumber>;
|
|
1301
1301
|
}, "strip", z.ZodTypeAny, {
|
|
1302
|
+
paymentType: string | null;
|
|
1302
1303
|
jobTitle: string | null;
|
|
1303
1304
|
hourlyRate: number | null;
|
|
1304
|
-
paymentType: string | null;
|
|
1305
1305
|
fixedPrice: number | null;
|
|
1306
1306
|
freelancerName: string | null;
|
|
1307
1307
|
freelancerRating: number | null;
|
|
@@ -1312,9 +1312,9 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1312
1312
|
numHours: number | null;
|
|
1313
1313
|
totalBilled: number | null;
|
|
1314
1314
|
}, {
|
|
1315
|
+
paymentType: string | null;
|
|
1315
1316
|
jobTitle: string | null;
|
|
1316
1317
|
hourlyRate: number | null;
|
|
1317
|
-
paymentType: string | null;
|
|
1318
1318
|
fixedPrice: number | null;
|
|
1319
1319
|
freelancerName: string | null;
|
|
1320
1320
|
freelancerRating: number | null;
|
|
@@ -1410,18 +1410,18 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1410
1410
|
id: string;
|
|
1411
1411
|
content: string;
|
|
1412
1412
|
order: number;
|
|
1413
|
-
jobId: string;
|
|
1414
|
-
bgColor: string;
|
|
1415
1413
|
createdAt: number;
|
|
1416
1414
|
updatedAt: number;
|
|
1415
|
+
jobId: string;
|
|
1416
|
+
bgColor: string;
|
|
1417
1417
|
}, {
|
|
1418
1418
|
id: string;
|
|
1419
1419
|
content: string;
|
|
1420
1420
|
order: number;
|
|
1421
|
-
jobId: string;
|
|
1422
|
-
bgColor: string;
|
|
1423
1421
|
createdAt: number;
|
|
1424
1422
|
updatedAt: number;
|
|
1423
|
+
jobId: string;
|
|
1424
|
+
bgColor: string;
|
|
1425
1425
|
}>, "many">>;
|
|
1426
1426
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1427
1427
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -1434,42 +1434,31 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1434
1434
|
metadata: {
|
|
1435
1435
|
hours: string | null;
|
|
1436
1436
|
duration: string | null;
|
|
1437
|
+
paymentType: string | null;
|
|
1437
1438
|
experienceLevel: string | null;
|
|
1438
1439
|
hourlyRate: {
|
|
1439
1440
|
max: number | null;
|
|
1440
1441
|
min: number | null;
|
|
1441
1442
|
} | null;
|
|
1442
|
-
paymentType: string | null;
|
|
1443
1443
|
fixedPrice: number | null;
|
|
1444
1444
|
} | null;
|
|
1445
1445
|
description: string | null;
|
|
1446
|
-
region: "
|
|
1446
|
+
region: "Worldwide" | "UKOnly" | "USOnly" | null;
|
|
1447
1447
|
datetime: number | null;
|
|
1448
|
-
jobId: string;
|
|
1449
1448
|
createdAt: number | null;
|
|
1450
1449
|
updatedAt: number | null;
|
|
1451
|
-
|
|
1452
|
-
answer: string;
|
|
1453
|
-
question: string;
|
|
1454
|
-
}[] | null;
|
|
1455
|
-
proposal: string | null;
|
|
1456
|
-
skills: {
|
|
1457
|
-
name: string;
|
|
1458
|
-
}[] | null;
|
|
1459
|
-
category: string | null;
|
|
1460
|
-
descriptionLength: number | null;
|
|
1461
|
-
connectsRequired: number | null;
|
|
1462
|
-
projectType: string | null;
|
|
1450
|
+
isFeatured: boolean | null;
|
|
1463
1451
|
projectDuration: string | null;
|
|
1464
1452
|
questions: string[] | null;
|
|
1465
|
-
jobUrl: string | null;
|
|
1466
1453
|
clientInfo: {
|
|
1467
1454
|
country: string | null;
|
|
1468
1455
|
region: string | null;
|
|
1469
1456
|
isPaymentVerified: boolean | null;
|
|
1470
1457
|
isPhoneVerified: boolean | null;
|
|
1471
|
-
|
|
1458
|
+
enterpriseClient: boolean | null;
|
|
1459
|
+
companySize: string | null;
|
|
1472
1460
|
rating: number | null;
|
|
1461
|
+
numberOfReviews: number | null;
|
|
1473
1462
|
jobsPosted: number | null;
|
|
1474
1463
|
totalSpent: number | null;
|
|
1475
1464
|
numberOfHires: number | null;
|
|
@@ -1478,23 +1467,37 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1478
1467
|
hireRate: number | null;
|
|
1479
1468
|
memberSince: string | null;
|
|
1480
1469
|
companyIndustry: string | null;
|
|
1481
|
-
companySize: string | null;
|
|
1482
|
-
enterpriseClient: boolean | null;
|
|
1483
1470
|
avgHourlyRatePaid: number | null;
|
|
1484
1471
|
} | null;
|
|
1485
1472
|
vendorQualifications: {
|
|
1486
1473
|
location: string | null;
|
|
1487
|
-
|
|
1474
|
+
includeRisingTalent: string | null;
|
|
1475
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
1488
1476
|
englishLevel: string | null;
|
|
1489
1477
|
minimumEarnings: number | null;
|
|
1490
1478
|
jobSuccessScore: string | null;
|
|
1491
|
-
includeRisingTalent: string | null;
|
|
1492
1479
|
} | null;
|
|
1493
|
-
|
|
1480
|
+
questionAnswerPairs: {
|
|
1481
|
+
answer: string;
|
|
1482
|
+
question: string;
|
|
1483
|
+
}[] | null;
|
|
1484
|
+
proposal: string | null;
|
|
1485
|
+
jobUrl: string | null;
|
|
1486
|
+
biddingAmount: number | null;
|
|
1487
|
+
boosted: boolean | null;
|
|
1488
|
+
boostingAmount: number | null;
|
|
1489
|
+
jobId: string;
|
|
1490
|
+
skills: {
|
|
1491
|
+
name: string;
|
|
1492
|
+
}[] | null;
|
|
1493
|
+
category: string | null;
|
|
1494
|
+
descriptionLength: number | null;
|
|
1495
|
+
connectsRequired: number | null;
|
|
1496
|
+
projectType: string | null;
|
|
1494
1497
|
clientReviews: {
|
|
1498
|
+
paymentType: string | null;
|
|
1495
1499
|
jobTitle: string | null;
|
|
1496
1500
|
hourlyRate: number | null;
|
|
1497
|
-
paymentType: string | null;
|
|
1498
1501
|
fixedPrice: number | null;
|
|
1499
1502
|
freelancerName: string | null;
|
|
1500
1503
|
freelancerRating: number | null;
|
|
@@ -1531,14 +1534,11 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1531
1534
|
id: string;
|
|
1532
1535
|
content: string;
|
|
1533
1536
|
order: number;
|
|
1534
|
-
jobId: string;
|
|
1535
|
-
bgColor: string;
|
|
1536
1537
|
createdAt: number;
|
|
1537
1538
|
updatedAt: number;
|
|
1539
|
+
jobId: string;
|
|
1540
|
+
bgColor: string;
|
|
1538
1541
|
}[] | null;
|
|
1539
|
-
biddingAmount: number | null;
|
|
1540
|
-
boosted: boolean | null;
|
|
1541
|
-
boostingAmount: number | null;
|
|
1542
1542
|
biddingTaskScheduled: boolean | null;
|
|
1543
1543
|
scheduledBiddingTime: number | null;
|
|
1544
1544
|
}, {
|
|
@@ -1547,42 +1547,31 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1547
1547
|
metadata: {
|
|
1548
1548
|
hours: string | null;
|
|
1549
1549
|
duration: string | null;
|
|
1550
|
+
paymentType: string | null;
|
|
1550
1551
|
experienceLevel: string | null;
|
|
1551
1552
|
hourlyRate: {
|
|
1552
1553
|
max: number | null;
|
|
1553
1554
|
min: number | null;
|
|
1554
1555
|
} | null;
|
|
1555
|
-
paymentType: string | null;
|
|
1556
1556
|
fixedPrice: number | null;
|
|
1557
1557
|
} | null;
|
|
1558
1558
|
description: string | null;
|
|
1559
|
-
region: "
|
|
1559
|
+
region: "Worldwide" | "UKOnly" | "USOnly" | null;
|
|
1560
1560
|
datetime: number | null;
|
|
1561
|
-
jobId: string;
|
|
1562
1561
|
createdAt: number | null;
|
|
1563
1562
|
updatedAt: number | null;
|
|
1564
|
-
|
|
1565
|
-
answer: string;
|
|
1566
|
-
question: string;
|
|
1567
|
-
}[] | null;
|
|
1568
|
-
proposal: string | null;
|
|
1569
|
-
skills: {
|
|
1570
|
-
name: string;
|
|
1571
|
-
}[] | null;
|
|
1572
|
-
category: string | null;
|
|
1573
|
-
descriptionLength: number | null;
|
|
1574
|
-
connectsRequired: number | null;
|
|
1575
|
-
projectType: string | null;
|
|
1563
|
+
isFeatured: boolean | null;
|
|
1576
1564
|
projectDuration: string | null;
|
|
1577
1565
|
questions: string[] | null;
|
|
1578
|
-
jobUrl: string | null;
|
|
1579
1566
|
clientInfo: {
|
|
1580
1567
|
country: string | null;
|
|
1581
1568
|
region: string | null;
|
|
1582
1569
|
isPaymentVerified: boolean | null;
|
|
1583
1570
|
isPhoneVerified: boolean | null;
|
|
1584
|
-
|
|
1571
|
+
enterpriseClient: boolean | null;
|
|
1572
|
+
companySize: string | null;
|
|
1585
1573
|
rating: number | null;
|
|
1574
|
+
numberOfReviews: number | null;
|
|
1586
1575
|
jobsPosted: number | null;
|
|
1587
1576
|
totalSpent: number | null;
|
|
1588
1577
|
numberOfHires: number | null;
|
|
@@ -1591,23 +1580,37 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1591
1580
|
hireRate: number | null;
|
|
1592
1581
|
memberSince: string | null;
|
|
1593
1582
|
companyIndustry: string | null;
|
|
1594
|
-
companySize: string | null;
|
|
1595
|
-
enterpriseClient: boolean | null;
|
|
1596
1583
|
avgHourlyRatePaid: number | null;
|
|
1597
1584
|
} | null;
|
|
1598
1585
|
vendorQualifications: {
|
|
1599
1586
|
location: string | null;
|
|
1600
|
-
|
|
1587
|
+
includeRisingTalent: string | null;
|
|
1588
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
1601
1589
|
englishLevel: string | null;
|
|
1602
1590
|
minimumEarnings: number | null;
|
|
1603
1591
|
jobSuccessScore: string | null;
|
|
1604
|
-
includeRisingTalent: string | null;
|
|
1605
1592
|
} | null;
|
|
1606
|
-
|
|
1593
|
+
questionAnswerPairs: {
|
|
1594
|
+
answer: string;
|
|
1595
|
+
question: string;
|
|
1596
|
+
}[] | null;
|
|
1597
|
+
proposal: string | null;
|
|
1598
|
+
jobUrl: string | null;
|
|
1599
|
+
biddingAmount: number | null;
|
|
1600
|
+
boosted: boolean | null;
|
|
1601
|
+
boostingAmount: number | null;
|
|
1602
|
+
jobId: string;
|
|
1603
|
+
skills: {
|
|
1604
|
+
name: string;
|
|
1605
|
+
}[] | null;
|
|
1606
|
+
category: string | null;
|
|
1607
|
+
descriptionLength: number | null;
|
|
1608
|
+
connectsRequired: number | null;
|
|
1609
|
+
projectType: string | null;
|
|
1607
1610
|
clientReviews: {
|
|
1611
|
+
paymentType: string | null;
|
|
1608
1612
|
jobTitle: string | null;
|
|
1609
1613
|
hourlyRate: number | null;
|
|
1610
|
-
paymentType: string | null;
|
|
1611
1614
|
fixedPrice: number | null;
|
|
1612
1615
|
freelancerName: string | null;
|
|
1613
1616
|
freelancerRating: number | null;
|
|
@@ -1644,14 +1647,11 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1644
1647
|
id: string;
|
|
1645
1648
|
content: string;
|
|
1646
1649
|
order: number;
|
|
1647
|
-
jobId: string;
|
|
1648
|
-
bgColor: string;
|
|
1649
1650
|
createdAt: number;
|
|
1650
1651
|
updatedAt: number;
|
|
1652
|
+
jobId: string;
|
|
1653
|
+
bgColor: string;
|
|
1651
1654
|
}[] | null;
|
|
1652
|
-
biddingAmount: number | null;
|
|
1653
|
-
boosted: boolean | null;
|
|
1654
|
-
boostingAmount: number | null;
|
|
1655
1655
|
biddingTaskScheduled: boolean | null;
|
|
1656
1656
|
scheduledBiddingTime: number | null;
|
|
1657
1657
|
}>, "many">;
|
|
@@ -1665,42 +1665,31 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1665
1665
|
metadata: {
|
|
1666
1666
|
hours: string | null;
|
|
1667
1667
|
duration: string | null;
|
|
1668
|
+
paymentType: string | null;
|
|
1668
1669
|
experienceLevel: string | null;
|
|
1669
1670
|
hourlyRate: {
|
|
1670
1671
|
max: number | null;
|
|
1671
1672
|
min: number | null;
|
|
1672
1673
|
} | null;
|
|
1673
|
-
paymentType: string | null;
|
|
1674
1674
|
fixedPrice: number | null;
|
|
1675
1675
|
} | null;
|
|
1676
1676
|
description: string | null;
|
|
1677
|
-
region: "
|
|
1677
|
+
region: "Worldwide" | "UKOnly" | "USOnly" | null;
|
|
1678
1678
|
datetime: number | null;
|
|
1679
|
-
jobId: string;
|
|
1680
1679
|
createdAt: number | null;
|
|
1681
1680
|
updatedAt: number | null;
|
|
1682
|
-
|
|
1683
|
-
answer: string;
|
|
1684
|
-
question: string;
|
|
1685
|
-
}[] | null;
|
|
1686
|
-
proposal: string | null;
|
|
1687
|
-
skills: {
|
|
1688
|
-
name: string;
|
|
1689
|
-
}[] | null;
|
|
1690
|
-
category: string | null;
|
|
1691
|
-
descriptionLength: number | null;
|
|
1692
|
-
connectsRequired: number | null;
|
|
1693
|
-
projectType: string | null;
|
|
1681
|
+
isFeatured: boolean | null;
|
|
1694
1682
|
projectDuration: string | null;
|
|
1695
1683
|
questions: string[] | null;
|
|
1696
|
-
jobUrl: string | null;
|
|
1697
1684
|
clientInfo: {
|
|
1698
1685
|
country: string | null;
|
|
1699
1686
|
region: string | null;
|
|
1700
1687
|
isPaymentVerified: boolean | null;
|
|
1701
1688
|
isPhoneVerified: boolean | null;
|
|
1702
|
-
|
|
1689
|
+
enterpriseClient: boolean | null;
|
|
1690
|
+
companySize: string | null;
|
|
1703
1691
|
rating: number | null;
|
|
1692
|
+
numberOfReviews: number | null;
|
|
1704
1693
|
jobsPosted: number | null;
|
|
1705
1694
|
totalSpent: number | null;
|
|
1706
1695
|
numberOfHires: number | null;
|
|
@@ -1709,23 +1698,37 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1709
1698
|
hireRate: number | null;
|
|
1710
1699
|
memberSince: string | null;
|
|
1711
1700
|
companyIndustry: string | null;
|
|
1712
|
-
companySize: string | null;
|
|
1713
|
-
enterpriseClient: boolean | null;
|
|
1714
1701
|
avgHourlyRatePaid: number | null;
|
|
1715
1702
|
} | null;
|
|
1716
1703
|
vendorQualifications: {
|
|
1717
1704
|
location: string | null;
|
|
1718
|
-
|
|
1705
|
+
includeRisingTalent: string | null;
|
|
1706
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
1719
1707
|
englishLevel: string | null;
|
|
1720
1708
|
minimumEarnings: number | null;
|
|
1721
1709
|
jobSuccessScore: string | null;
|
|
1722
|
-
includeRisingTalent: string | null;
|
|
1723
1710
|
} | null;
|
|
1724
|
-
|
|
1711
|
+
questionAnswerPairs: {
|
|
1712
|
+
answer: string;
|
|
1713
|
+
question: string;
|
|
1714
|
+
}[] | null;
|
|
1715
|
+
proposal: string | null;
|
|
1716
|
+
jobUrl: string | null;
|
|
1717
|
+
biddingAmount: number | null;
|
|
1718
|
+
boosted: boolean | null;
|
|
1719
|
+
boostingAmount: number | null;
|
|
1720
|
+
jobId: string;
|
|
1721
|
+
skills: {
|
|
1722
|
+
name: string;
|
|
1723
|
+
}[] | null;
|
|
1724
|
+
category: string | null;
|
|
1725
|
+
descriptionLength: number | null;
|
|
1726
|
+
connectsRequired: number | null;
|
|
1727
|
+
projectType: string | null;
|
|
1725
1728
|
clientReviews: {
|
|
1729
|
+
paymentType: string | null;
|
|
1726
1730
|
jobTitle: string | null;
|
|
1727
1731
|
hourlyRate: number | null;
|
|
1728
|
-
paymentType: string | null;
|
|
1729
1732
|
fixedPrice: number | null;
|
|
1730
1733
|
freelancerName: string | null;
|
|
1731
1734
|
freelancerRating: number | null;
|
|
@@ -1762,14 +1765,11 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1762
1765
|
id: string;
|
|
1763
1766
|
content: string;
|
|
1764
1767
|
order: number;
|
|
1765
|
-
jobId: string;
|
|
1766
|
-
bgColor: string;
|
|
1767
1768
|
createdAt: number;
|
|
1768
1769
|
updatedAt: number;
|
|
1770
|
+
jobId: string;
|
|
1771
|
+
bgColor: string;
|
|
1769
1772
|
}[] | null;
|
|
1770
|
-
biddingAmount: number | null;
|
|
1771
|
-
boosted: boolean | null;
|
|
1772
|
-
boostingAmount: number | null;
|
|
1773
1773
|
biddingTaskScheduled: boolean | null;
|
|
1774
1774
|
scheduledBiddingTime: number | null;
|
|
1775
1775
|
}[];
|
|
@@ -1783,42 +1783,31 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1783
1783
|
metadata: {
|
|
1784
1784
|
hours: string | null;
|
|
1785
1785
|
duration: string | null;
|
|
1786
|
+
paymentType: string | null;
|
|
1786
1787
|
experienceLevel: string | null;
|
|
1787
1788
|
hourlyRate: {
|
|
1788
1789
|
max: number | null;
|
|
1789
1790
|
min: number | null;
|
|
1790
1791
|
} | null;
|
|
1791
|
-
paymentType: string | null;
|
|
1792
1792
|
fixedPrice: number | null;
|
|
1793
1793
|
} | null;
|
|
1794
1794
|
description: string | null;
|
|
1795
|
-
region: "
|
|
1795
|
+
region: "Worldwide" | "UKOnly" | "USOnly" | null;
|
|
1796
1796
|
datetime: number | null;
|
|
1797
|
-
jobId: string;
|
|
1798
1797
|
createdAt: number | null;
|
|
1799
1798
|
updatedAt: number | null;
|
|
1800
|
-
|
|
1801
|
-
answer: string;
|
|
1802
|
-
question: string;
|
|
1803
|
-
}[] | null;
|
|
1804
|
-
proposal: string | null;
|
|
1805
|
-
skills: {
|
|
1806
|
-
name: string;
|
|
1807
|
-
}[] | null;
|
|
1808
|
-
category: string | null;
|
|
1809
|
-
descriptionLength: number | null;
|
|
1810
|
-
connectsRequired: number | null;
|
|
1811
|
-
projectType: string | null;
|
|
1799
|
+
isFeatured: boolean | null;
|
|
1812
1800
|
projectDuration: string | null;
|
|
1813
1801
|
questions: string[] | null;
|
|
1814
|
-
jobUrl: string | null;
|
|
1815
1802
|
clientInfo: {
|
|
1816
1803
|
country: string | null;
|
|
1817
1804
|
region: string | null;
|
|
1818
1805
|
isPaymentVerified: boolean | null;
|
|
1819
1806
|
isPhoneVerified: boolean | null;
|
|
1820
|
-
|
|
1807
|
+
enterpriseClient: boolean | null;
|
|
1808
|
+
companySize: string | null;
|
|
1821
1809
|
rating: number | null;
|
|
1810
|
+
numberOfReviews: number | null;
|
|
1822
1811
|
jobsPosted: number | null;
|
|
1823
1812
|
totalSpent: number | null;
|
|
1824
1813
|
numberOfHires: number | null;
|
|
@@ -1827,23 +1816,37 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1827
1816
|
hireRate: number | null;
|
|
1828
1817
|
memberSince: string | null;
|
|
1829
1818
|
companyIndustry: string | null;
|
|
1830
|
-
companySize: string | null;
|
|
1831
|
-
enterpriseClient: boolean | null;
|
|
1832
1819
|
avgHourlyRatePaid: number | null;
|
|
1833
1820
|
} | null;
|
|
1834
1821
|
vendorQualifications: {
|
|
1835
1822
|
location: string | null;
|
|
1836
|
-
|
|
1823
|
+
includeRisingTalent: string | null;
|
|
1824
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
1837
1825
|
englishLevel: string | null;
|
|
1838
1826
|
minimumEarnings: number | null;
|
|
1839
1827
|
jobSuccessScore: string | null;
|
|
1840
|
-
includeRisingTalent: string | null;
|
|
1841
1828
|
} | null;
|
|
1842
|
-
|
|
1829
|
+
questionAnswerPairs: {
|
|
1830
|
+
answer: string;
|
|
1831
|
+
question: string;
|
|
1832
|
+
}[] | null;
|
|
1833
|
+
proposal: string | null;
|
|
1834
|
+
jobUrl: string | null;
|
|
1835
|
+
biddingAmount: number | null;
|
|
1836
|
+
boosted: boolean | null;
|
|
1837
|
+
boostingAmount: number | null;
|
|
1838
|
+
jobId: string;
|
|
1839
|
+
skills: {
|
|
1840
|
+
name: string;
|
|
1841
|
+
}[] | null;
|
|
1842
|
+
category: string | null;
|
|
1843
|
+
descriptionLength: number | null;
|
|
1844
|
+
connectsRequired: number | null;
|
|
1845
|
+
projectType: string | null;
|
|
1843
1846
|
clientReviews: {
|
|
1847
|
+
paymentType: string | null;
|
|
1844
1848
|
jobTitle: string | null;
|
|
1845
1849
|
hourlyRate: number | null;
|
|
1846
|
-
paymentType: string | null;
|
|
1847
1850
|
fixedPrice: number | null;
|
|
1848
1851
|
freelancerName: string | null;
|
|
1849
1852
|
freelancerRating: number | null;
|
|
@@ -1880,14 +1883,11 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1880
1883
|
id: string;
|
|
1881
1884
|
content: string;
|
|
1882
1885
|
order: number;
|
|
1883
|
-
jobId: string;
|
|
1884
|
-
bgColor: string;
|
|
1885
1886
|
createdAt: number;
|
|
1886
1887
|
updatedAt: number;
|
|
1888
|
+
jobId: string;
|
|
1889
|
+
bgColor: string;
|
|
1887
1890
|
}[] | null;
|
|
1888
|
-
biddingAmount: number | null;
|
|
1889
|
-
boosted: boolean | null;
|
|
1890
|
-
boostingAmount: number | null;
|
|
1891
1891
|
biddingTaskScheduled: boolean | null;
|
|
1892
1892
|
scheduledBiddingTime: number | null;
|
|
1893
1893
|
}[];
|