lancer-shared 1.2.270 → 1.2.272
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/bundle.cjs.js +13 -6
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +13 -7
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/routes.d.ts +1 -1
- package/dist/schemas/account/bidder-account.d.ts +20 -20
- package/dist/schemas/account/scraper-account.d.ts +22 -22
- package/dist/schemas/agent/index.d.ts +216 -216
- package/dist/schemas/agent/proposal.d.ts +2 -2
- package/dist/schemas/bidder/bid.d.ts +2062 -2043
- package/dist/schemas/campaign/campaign-analytics.d.ts +840 -784
- package/dist/schemas/campaign/campaign-chat-bot.d.ts +9 -9
- package/dist/schemas/campaign/campaign.d.ts +378 -378
- package/dist/schemas/dashboard/index.d.ts +12 -12
- package/dist/schemas/golden-dataset/sample.d.ts +8 -8
- package/dist/schemas/invoice/index.d.ts +4 -4
- package/dist/schemas/job/index.d.ts +112 -112
- package/dist/schemas/job/job-api.d.ts +6 -6
- package/dist/schemas/job/job-details.d.ts +74 -74
- package/dist/schemas/job/job-filters.d.ts +47 -47
- package/dist/schemas/job/job-listing.d.ts +22 -22
- package/dist/schemas/job/nuxt.d.ts +24 -24
- package/dist/schemas/lead/index.d.ts +845 -844
- package/dist/schemas/lead/insufficient-connects-action.d.ts +3 -0
- package/dist/schemas/lead/lead-status.d.ts +10 -10
- package/dist/schemas/logger/feed/feed-chunk-enrich.d.ts +6 -6
- package/dist/schemas/logger/feed/feed-enrich.d.ts +6 -6
- package/dist/schemas/logger/feed/feed-job-enrich.d.ts +140 -140
- package/dist/schemas/logger/feed/feed-scrape.d.ts +6 -6
- package/dist/schemas/logger/log-event.d.ts +72 -72
- package/dist/schemas/logger/scraper-events.d.ts +28 -28
- package/dist/schemas/notifications/index.d.ts +4 -4
- package/dist/schemas/organization/billing.d.ts +2 -2
- package/dist/schemas/organization/index.d.ts +86 -66
- package/dist/schemas/organization/organization-leads.d.ts +4 -4
- package/dist/schemas/organization/subscription.d.ts +15 -9
- package/dist/schemas/plan/index.d.ts +22 -22
- package/dist/schemas/proxy/proxy.d.ts +2 -2
- package/dist/schemas/scraper/scrape-payload.d.ts +514 -495
- package/dist/schemas/scraper/scrape-result.d.ts +136 -136
- package/dist/schemas/talent/index.d.ts +148 -148
- package/dist/schemas/transaction/index.d.ts +2 -2
- package/dist/schemas/usage/index.d.ts +2 -2
- package/dist/schemas/usage-event/index.d.ts +8 -8
- package/package.json +1 -1
|
@@ -40,22 +40,22 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
40
40
|
}, "strip", import("zod").ZodTypeAny, {
|
|
41
41
|
hours: string | null;
|
|
42
42
|
duration: string | null;
|
|
43
|
-
paymentType: string | null;
|
|
44
|
-
experienceLevel: string | null;
|
|
45
43
|
hourlyRate: {
|
|
46
44
|
max: number | null;
|
|
47
45
|
min: number | null;
|
|
48
46
|
} | null;
|
|
47
|
+
experienceLevel: string | null;
|
|
48
|
+
paymentType: string | null;
|
|
49
49
|
fixedPrice: number | null;
|
|
50
50
|
}, {
|
|
51
51
|
hours: string | null;
|
|
52
52
|
duration: string | null;
|
|
53
|
-
paymentType: string | null;
|
|
54
|
-
experienceLevel: string | null;
|
|
55
53
|
hourlyRate: {
|
|
56
54
|
max: number | null;
|
|
57
55
|
min: number | null;
|
|
58
56
|
} | null;
|
|
57
|
+
experienceLevel: string | null;
|
|
58
|
+
paymentType: string | null;
|
|
59
59
|
fixedPrice: number | null;
|
|
60
60
|
}>>;
|
|
61
61
|
clientInfo: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
@@ -80,39 +80,39 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
80
80
|
}, "strip", import("zod").ZodTypeAny, {
|
|
81
81
|
country: string | null;
|
|
82
82
|
region: string | null;
|
|
83
|
-
isPaymentVerified: boolean | null;
|
|
84
|
-
isPhoneVerified: boolean | null;
|
|
85
|
-
enterpriseClient: boolean | null;
|
|
86
|
-
companySize: string | null;
|
|
87
83
|
openJobs: number | null;
|
|
88
|
-
|
|
84
|
+
isPhoneVerified: boolean | null;
|
|
85
|
+
isPaymentVerified: boolean | null;
|
|
89
86
|
numberOfReviews: number | null;
|
|
90
87
|
rating: number | null;
|
|
91
88
|
jobsPosted: number | null;
|
|
89
|
+
totalSpent: number | null;
|
|
92
90
|
numberOfHires: number | null;
|
|
93
91
|
activeEngagements: number | null;
|
|
94
92
|
hireRate: number | null;
|
|
95
93
|
memberSince: string | null;
|
|
96
94
|
companyIndustry: string | null;
|
|
95
|
+
companySize: string | null;
|
|
96
|
+
enterpriseClient: boolean | null;
|
|
97
97
|
avgHourlyRatePaid: number | null;
|
|
98
98
|
companyId: string | null;
|
|
99
99
|
}, {
|
|
100
100
|
country: string | null;
|
|
101
101
|
region: string | null;
|
|
102
|
-
isPaymentVerified: boolean | null;
|
|
103
|
-
isPhoneVerified: boolean | null;
|
|
104
|
-
enterpriseClient: boolean | null;
|
|
105
|
-
companySize: string | null;
|
|
106
102
|
openJobs: number | null;
|
|
107
|
-
|
|
103
|
+
isPhoneVerified: boolean | null;
|
|
104
|
+
isPaymentVerified: boolean | null;
|
|
108
105
|
numberOfReviews: number | null;
|
|
109
106
|
rating: number | null;
|
|
110
107
|
jobsPosted: number | null;
|
|
108
|
+
totalSpent: number | null;
|
|
111
109
|
numberOfHires: number | null;
|
|
112
110
|
activeEngagements: number | null;
|
|
113
111
|
hireRate: number | null;
|
|
114
112
|
memberSince: string | null;
|
|
115
113
|
companyIndustry: string | null;
|
|
114
|
+
companySize: string | null;
|
|
115
|
+
enterpriseClient: boolean | null;
|
|
116
116
|
avgHourlyRatePaid: number | null;
|
|
117
117
|
companyId: string | null;
|
|
118
118
|
}>>;
|
|
@@ -125,18 +125,18 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
125
125
|
includeRisingTalent: import("zod").ZodNullable<import("zod").ZodString>;
|
|
126
126
|
}, "strip", import("zod").ZodTypeAny, {
|
|
127
127
|
location: string | null;
|
|
128
|
-
includeRisingTalent: string | null;
|
|
129
128
|
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
130
129
|
englishLevel: string | null;
|
|
131
130
|
minimumEarnings: number | null;
|
|
132
131
|
jobSuccessScore: string | null;
|
|
132
|
+
includeRisingTalent: string | null;
|
|
133
133
|
}, {
|
|
134
134
|
location: string | null;
|
|
135
|
-
includeRisingTalent: string | null;
|
|
136
135
|
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
137
136
|
englishLevel: string | null;
|
|
138
137
|
minimumEarnings: number | null;
|
|
139
138
|
jobSuccessScore: string | null;
|
|
139
|
+
includeRisingTalent: string | null;
|
|
140
140
|
}>>;
|
|
141
141
|
processed: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
142
142
|
isFeatured: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
@@ -154,29 +154,29 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
154
154
|
numHours: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
155
155
|
totalBilled: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
156
156
|
}, "strip", import("zod").ZodTypeAny, {
|
|
157
|
-
paymentType: string | null;
|
|
158
157
|
hourlyRate: number | null;
|
|
159
158
|
jobTitle: string | null;
|
|
159
|
+
paymentType: string | null;
|
|
160
|
+
fixedPrice: number | null;
|
|
160
161
|
freelancerName: string | null;
|
|
161
162
|
freelancerRating: number | null;
|
|
162
163
|
freelancerFeedback: string | null;
|
|
163
164
|
clientFeedback: string | null;
|
|
164
165
|
clientFeedbackRating: number | null;
|
|
165
166
|
dateRange: string | null;
|
|
166
|
-
fixedPrice: number | null;
|
|
167
167
|
numHours: number | null;
|
|
168
168
|
totalBilled: number | null;
|
|
169
169
|
}, {
|
|
170
|
-
paymentType: string | null;
|
|
171
170
|
hourlyRate: number | null;
|
|
172
171
|
jobTitle: string | null;
|
|
172
|
+
paymentType: string | null;
|
|
173
|
+
fixedPrice: number | null;
|
|
173
174
|
freelancerName: string | null;
|
|
174
175
|
freelancerRating: number | null;
|
|
175
176
|
freelancerFeedback: string | null;
|
|
176
177
|
clientFeedback: string | null;
|
|
177
178
|
clientFeedbackRating: number | null;
|
|
178
179
|
dateRange: string | null;
|
|
179
|
-
fixedPrice: number | null;
|
|
180
180
|
numHours: number | null;
|
|
181
181
|
totalBilled: number | null;
|
|
182
182
|
}>, "many">>;
|
|
@@ -213,8 +213,8 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
213
213
|
unansweredInvites: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
214
214
|
updatedAt: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
215
215
|
}, "strip", import("zod").ZodTypeAny, {
|
|
216
|
-
updatedAt: number | null;
|
|
217
216
|
unansweredInvites: number | null;
|
|
217
|
+
updatedAt: number | null;
|
|
218
218
|
proposals: {
|
|
219
219
|
max: number | null;
|
|
220
220
|
min: number | null;
|
|
@@ -225,8 +225,8 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
225
225
|
interviewing: number | null;
|
|
226
226
|
invitesSent: number | null;
|
|
227
227
|
}, {
|
|
228
|
-
updatedAt: number | null;
|
|
229
228
|
unansweredInvites: number | null;
|
|
229
|
+
updatedAt: number | null;
|
|
230
230
|
proposals: {
|
|
231
231
|
max: number | null;
|
|
232
232
|
min: number | null;
|
|
@@ -258,8 +258,8 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
258
258
|
unansweredInvites: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
259
259
|
updatedAt: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
260
260
|
}, "strip", import("zod").ZodTypeAny, {
|
|
261
|
-
updatedAt: number | null;
|
|
262
261
|
unansweredInvites: number | null;
|
|
262
|
+
updatedAt: number | null;
|
|
263
263
|
proposals: {
|
|
264
264
|
max: number | null;
|
|
265
265
|
min: number | null;
|
|
@@ -270,8 +270,8 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
270
270
|
interviewing: number | null;
|
|
271
271
|
invitesSent: number | null;
|
|
272
272
|
}, {
|
|
273
|
-
updatedAt: number | null;
|
|
274
273
|
unansweredInvites: number | null;
|
|
274
|
+
updatedAt: number | null;
|
|
275
275
|
proposals: {
|
|
276
276
|
max: number | null;
|
|
277
277
|
min: number | null;
|
|
@@ -307,71 +307,71 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
307
307
|
metadata: {
|
|
308
308
|
hours: string | null;
|
|
309
309
|
duration: string | null;
|
|
310
|
-
paymentType: string | null;
|
|
311
|
-
experienceLevel: string | null;
|
|
312
310
|
hourlyRate: {
|
|
313
311
|
max: number | null;
|
|
314
312
|
min: number | null;
|
|
315
313
|
} | null;
|
|
314
|
+
experienceLevel: string | null;
|
|
315
|
+
paymentType: string | null;
|
|
316
316
|
fixedPrice: number | null;
|
|
317
317
|
} | null;
|
|
318
318
|
description: string | null;
|
|
319
|
-
region: "
|
|
319
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
320
320
|
datetime: number | null;
|
|
321
|
+
category: string | null;
|
|
322
|
+
uid: string | null;
|
|
323
|
+
questions: string[] | null;
|
|
324
|
+
occupation: string | null;
|
|
321
325
|
createdAt: number | null;
|
|
322
|
-
|
|
326
|
+
skills: {
|
|
327
|
+
name: string;
|
|
328
|
+
}[] | null;
|
|
329
|
+
descriptionLength: number | null;
|
|
330
|
+
connectsRequired: number | null;
|
|
331
|
+
projectType: string | null;
|
|
323
332
|
projectDuration: string | null;
|
|
324
|
-
|
|
333
|
+
jobUrl: string | null;
|
|
325
334
|
clientInfo: {
|
|
326
335
|
country: string | null;
|
|
327
336
|
region: string | null;
|
|
328
|
-
isPaymentVerified: boolean | null;
|
|
329
|
-
isPhoneVerified: boolean | null;
|
|
330
|
-
enterpriseClient: boolean | null;
|
|
331
|
-
companySize: string | null;
|
|
332
337
|
openJobs: number | null;
|
|
333
|
-
|
|
338
|
+
isPhoneVerified: boolean | null;
|
|
339
|
+
isPaymentVerified: boolean | null;
|
|
334
340
|
numberOfReviews: number | null;
|
|
335
341
|
rating: number | null;
|
|
336
342
|
jobsPosted: number | null;
|
|
343
|
+
totalSpent: number | null;
|
|
337
344
|
numberOfHires: number | null;
|
|
338
345
|
activeEngagements: number | null;
|
|
339
346
|
hireRate: number | null;
|
|
340
347
|
memberSince: string | null;
|
|
341
348
|
companyIndustry: string | null;
|
|
349
|
+
companySize: string | null;
|
|
350
|
+
enterpriseClient: boolean | null;
|
|
342
351
|
avgHourlyRatePaid: number | null;
|
|
343
352
|
companyId: string | null;
|
|
344
353
|
} | null;
|
|
345
354
|
vendorQualifications: {
|
|
346
355
|
location: string | null;
|
|
347
|
-
includeRisingTalent: string | null;
|
|
348
356
|
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
349
357
|
englishLevel: string | null;
|
|
350
358
|
minimumEarnings: number | null;
|
|
351
359
|
jobSuccessScore: string | null;
|
|
360
|
+
includeRisingTalent: string | null;
|
|
352
361
|
} | null;
|
|
353
|
-
category: string | null;
|
|
354
|
-
uid: string | null;
|
|
355
|
-
occupation: string | null;
|
|
356
|
-
jobUrl: string | null;
|
|
357
|
-
skills: {
|
|
358
|
-
name: string;
|
|
359
|
-
}[] | null;
|
|
360
|
-
descriptionLength: number | null;
|
|
361
|
-
connectsRequired: number | null;
|
|
362
|
-
projectType: string | null;
|
|
363
362
|
processed: boolean | null;
|
|
363
|
+
isFeatured: boolean | null;
|
|
364
364
|
clientReviews: {
|
|
365
|
-
paymentType: string | null;
|
|
366
365
|
hourlyRate: number | null;
|
|
367
366
|
jobTitle: string | null;
|
|
367
|
+
paymentType: string | null;
|
|
368
|
+
fixedPrice: number | null;
|
|
368
369
|
freelancerName: string | null;
|
|
369
370
|
freelancerRating: number | null;
|
|
370
371
|
freelancerFeedback: string | null;
|
|
371
372
|
clientFeedback: string | null;
|
|
372
373
|
clientFeedbackRating: number | null;
|
|
373
374
|
dateRange: string | null;
|
|
374
|
-
fixedPrice: number | null;
|
|
375
375
|
numHours: number | null;
|
|
376
376
|
totalBilled: number | null;
|
|
377
377
|
}[] | null;
|
|
@@ -381,8 +381,8 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
381
381
|
avg: number | null;
|
|
382
382
|
} | null;
|
|
383
383
|
jobActivity: {
|
|
384
|
-
updatedAt: number | null;
|
|
385
384
|
unansweredInvites: number | null;
|
|
385
|
+
updatedAt: number | null;
|
|
386
386
|
proposals: {
|
|
387
387
|
max: number | null;
|
|
388
388
|
min: number | null;
|
|
@@ -395,8 +395,8 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
395
395
|
} | null;
|
|
396
396
|
activityUpdates: 2 | 1 | 3 | null;
|
|
397
397
|
activity?: Partial<Record<"4h" | "24h", {
|
|
398
|
-
updatedAt: number | null;
|
|
399
398
|
unansweredInvites: number | null;
|
|
399
|
+
updatedAt: number | null;
|
|
400
400
|
proposals: {
|
|
401
401
|
max: number | null;
|
|
402
402
|
min: number | null;
|
|
@@ -420,71 +420,71 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
420
420
|
metadata: {
|
|
421
421
|
hours: string | null;
|
|
422
422
|
duration: string | null;
|
|
423
|
-
paymentType: string | null;
|
|
424
|
-
experienceLevel: string | null;
|
|
425
423
|
hourlyRate: {
|
|
426
424
|
max: number | null;
|
|
427
425
|
min: number | null;
|
|
428
426
|
} | null;
|
|
427
|
+
experienceLevel: string | null;
|
|
428
|
+
paymentType: string | null;
|
|
429
429
|
fixedPrice: number | null;
|
|
430
430
|
} | null;
|
|
431
431
|
description: string | null;
|
|
432
|
-
region: "
|
|
432
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
433
433
|
datetime: number | null;
|
|
434
|
+
category: string | null;
|
|
435
|
+
uid: string | null;
|
|
436
|
+
questions: string[] | null;
|
|
437
|
+
occupation: string | null;
|
|
434
438
|
createdAt: number | null;
|
|
435
|
-
|
|
439
|
+
skills: {
|
|
440
|
+
name: string;
|
|
441
|
+
}[] | null;
|
|
442
|
+
descriptionLength: number | null;
|
|
443
|
+
connectsRequired: number | null;
|
|
444
|
+
projectType: string | null;
|
|
436
445
|
projectDuration: string | null;
|
|
437
|
-
|
|
446
|
+
jobUrl: string | null;
|
|
438
447
|
clientInfo: {
|
|
439
448
|
country: string | null;
|
|
440
449
|
region: string | null;
|
|
441
|
-
isPaymentVerified: boolean | null;
|
|
442
|
-
isPhoneVerified: boolean | null;
|
|
443
|
-
enterpriseClient: boolean | null;
|
|
444
|
-
companySize: string | null;
|
|
445
450
|
openJobs: number | null;
|
|
446
|
-
|
|
451
|
+
isPhoneVerified: boolean | null;
|
|
452
|
+
isPaymentVerified: boolean | null;
|
|
447
453
|
numberOfReviews: number | null;
|
|
448
454
|
rating: number | null;
|
|
449
455
|
jobsPosted: number | null;
|
|
456
|
+
totalSpent: number | null;
|
|
450
457
|
numberOfHires: number | null;
|
|
451
458
|
activeEngagements: number | null;
|
|
452
459
|
hireRate: number | null;
|
|
453
460
|
memberSince: string | null;
|
|
454
461
|
companyIndustry: string | null;
|
|
462
|
+
companySize: string | null;
|
|
463
|
+
enterpriseClient: boolean | null;
|
|
455
464
|
avgHourlyRatePaid: number | null;
|
|
456
465
|
companyId: string | null;
|
|
457
466
|
} | null;
|
|
458
467
|
vendorQualifications: {
|
|
459
468
|
location: string | null;
|
|
460
|
-
includeRisingTalent: string | null;
|
|
461
469
|
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
462
470
|
englishLevel: string | null;
|
|
463
471
|
minimumEarnings: number | null;
|
|
464
472
|
jobSuccessScore: string | null;
|
|
473
|
+
includeRisingTalent: string | null;
|
|
465
474
|
} | null;
|
|
466
|
-
category: string | null;
|
|
467
|
-
uid: string | null;
|
|
468
|
-
occupation: string | null;
|
|
469
|
-
jobUrl: string | null;
|
|
470
|
-
skills: {
|
|
471
|
-
name: string;
|
|
472
|
-
}[] | null;
|
|
473
|
-
descriptionLength: number | null;
|
|
474
|
-
connectsRequired: number | null;
|
|
475
|
-
projectType: string | null;
|
|
476
475
|
processed: boolean | null;
|
|
476
|
+
isFeatured: boolean | null;
|
|
477
477
|
clientReviews: {
|
|
478
|
-
paymentType: string | null;
|
|
479
478
|
hourlyRate: number | null;
|
|
480
479
|
jobTitle: string | null;
|
|
480
|
+
paymentType: string | null;
|
|
481
|
+
fixedPrice: number | null;
|
|
481
482
|
freelancerName: string | null;
|
|
482
483
|
freelancerRating: number | null;
|
|
483
484
|
freelancerFeedback: string | null;
|
|
484
485
|
clientFeedback: string | null;
|
|
485
486
|
clientFeedbackRating: number | null;
|
|
486
487
|
dateRange: string | null;
|
|
487
|
-
fixedPrice: number | null;
|
|
488
488
|
numHours: number | null;
|
|
489
489
|
totalBilled: number | null;
|
|
490
490
|
}[] | null;
|
|
@@ -494,8 +494,8 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
494
494
|
avg: number | null;
|
|
495
495
|
} | null;
|
|
496
496
|
jobActivity: {
|
|
497
|
-
updatedAt: number | null;
|
|
498
497
|
unansweredInvites: number | null;
|
|
498
|
+
updatedAt: number | null;
|
|
499
499
|
proposals: {
|
|
500
500
|
max: number | null;
|
|
501
501
|
min: number | null;
|
|
@@ -508,8 +508,8 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
508
508
|
} | null;
|
|
509
509
|
activityUpdates: 2 | 1 | 3 | null;
|
|
510
510
|
activity?: Partial<Record<"4h" | "24h", {
|
|
511
|
-
updatedAt: number | null;
|
|
512
511
|
unansweredInvites: number | null;
|
|
512
|
+
updatedAt: number | null;
|
|
513
513
|
proposals: {
|
|
514
514
|
max: number | null;
|
|
515
515
|
min: number | null;
|
|
@@ -532,78 +532,78 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
532
532
|
usAccountCookies: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
533
533
|
ukAccountCookies: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
534
534
|
}, "strip", import("zod").ZodTypeAny, {
|
|
535
|
-
region: "
|
|
535
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
536
536
|
jobs: {
|
|
537
537
|
id: string | null;
|
|
538
538
|
title: string | null;
|
|
539
539
|
metadata: {
|
|
540
540
|
hours: string | null;
|
|
541
541
|
duration: string | null;
|
|
542
|
-
paymentType: string | null;
|
|
543
|
-
experienceLevel: string | null;
|
|
544
542
|
hourlyRate: {
|
|
545
543
|
max: number | null;
|
|
546
544
|
min: number | null;
|
|
547
545
|
} | null;
|
|
546
|
+
experienceLevel: string | null;
|
|
547
|
+
paymentType: string | null;
|
|
548
548
|
fixedPrice: number | null;
|
|
549
549
|
} | null;
|
|
550
550
|
description: string | null;
|
|
551
|
-
region: "
|
|
551
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
552
552
|
datetime: number | null;
|
|
553
|
+
category: string | null;
|
|
554
|
+
uid: string | null;
|
|
555
|
+
questions: string[] | null;
|
|
556
|
+
occupation: string | null;
|
|
553
557
|
createdAt: number | null;
|
|
554
|
-
|
|
558
|
+
skills: {
|
|
559
|
+
name: string;
|
|
560
|
+
}[] | null;
|
|
561
|
+
descriptionLength: number | null;
|
|
562
|
+
connectsRequired: number | null;
|
|
563
|
+
projectType: string | null;
|
|
555
564
|
projectDuration: string | null;
|
|
556
|
-
|
|
565
|
+
jobUrl: string | null;
|
|
557
566
|
clientInfo: {
|
|
558
567
|
country: string | null;
|
|
559
568
|
region: string | null;
|
|
560
|
-
isPaymentVerified: boolean | null;
|
|
561
|
-
isPhoneVerified: boolean | null;
|
|
562
|
-
enterpriseClient: boolean | null;
|
|
563
|
-
companySize: string | null;
|
|
564
569
|
openJobs: number | null;
|
|
565
|
-
|
|
570
|
+
isPhoneVerified: boolean | null;
|
|
571
|
+
isPaymentVerified: boolean | null;
|
|
566
572
|
numberOfReviews: number | null;
|
|
567
573
|
rating: number | null;
|
|
568
574
|
jobsPosted: number | null;
|
|
575
|
+
totalSpent: number | null;
|
|
569
576
|
numberOfHires: number | null;
|
|
570
577
|
activeEngagements: number | null;
|
|
571
578
|
hireRate: number | null;
|
|
572
579
|
memberSince: string | null;
|
|
573
580
|
companyIndustry: string | null;
|
|
581
|
+
companySize: string | null;
|
|
582
|
+
enterpriseClient: boolean | null;
|
|
574
583
|
avgHourlyRatePaid: number | null;
|
|
575
584
|
companyId: string | null;
|
|
576
585
|
} | null;
|
|
577
586
|
vendorQualifications: {
|
|
578
587
|
location: string | null;
|
|
579
|
-
includeRisingTalent: string | null;
|
|
580
588
|
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
581
589
|
englishLevel: string | null;
|
|
582
590
|
minimumEarnings: number | null;
|
|
583
591
|
jobSuccessScore: string | null;
|
|
592
|
+
includeRisingTalent: string | null;
|
|
584
593
|
} | null;
|
|
585
|
-
category: string | null;
|
|
586
|
-
uid: string | null;
|
|
587
|
-
occupation: string | null;
|
|
588
|
-
jobUrl: string | null;
|
|
589
|
-
skills: {
|
|
590
|
-
name: string;
|
|
591
|
-
}[] | null;
|
|
592
|
-
descriptionLength: number | null;
|
|
593
|
-
connectsRequired: number | null;
|
|
594
|
-
projectType: string | null;
|
|
595
594
|
processed: boolean | null;
|
|
595
|
+
isFeatured: boolean | null;
|
|
596
596
|
clientReviews: {
|
|
597
|
-
paymentType: string | null;
|
|
598
597
|
hourlyRate: number | null;
|
|
599
598
|
jobTitle: string | null;
|
|
599
|
+
paymentType: string | null;
|
|
600
|
+
fixedPrice: number | null;
|
|
600
601
|
freelancerName: string | null;
|
|
601
602
|
freelancerRating: number | null;
|
|
602
603
|
freelancerFeedback: string | null;
|
|
603
604
|
clientFeedback: string | null;
|
|
604
605
|
clientFeedbackRating: number | null;
|
|
605
606
|
dateRange: string | null;
|
|
606
|
-
fixedPrice: number | null;
|
|
607
607
|
numHours: number | null;
|
|
608
608
|
totalBilled: number | null;
|
|
609
609
|
}[] | null;
|
|
@@ -613,8 +613,8 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
613
613
|
avg: number | null;
|
|
614
614
|
} | null;
|
|
615
615
|
jobActivity: {
|
|
616
|
-
updatedAt: number | null;
|
|
617
616
|
unansweredInvites: number | null;
|
|
617
|
+
updatedAt: number | null;
|
|
618
618
|
proposals: {
|
|
619
619
|
max: number | null;
|
|
620
620
|
min: number | null;
|
|
@@ -627,8 +627,8 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
627
627
|
} | null;
|
|
628
628
|
activityUpdates: 2 | 1 | 3 | null;
|
|
629
629
|
activity?: Partial<Record<"4h" | "24h", {
|
|
630
|
-
updatedAt: number | null;
|
|
631
630
|
unansweredInvites: number | null;
|
|
631
|
+
updatedAt: number | null;
|
|
632
632
|
proposals: {
|
|
633
633
|
max: number | null;
|
|
634
634
|
min: number | null;
|
|
@@ -650,78 +650,78 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
650
650
|
usAccountCookies?: any[] | undefined;
|
|
651
651
|
ukAccountCookies?: any[] | undefined;
|
|
652
652
|
}, {
|
|
653
|
-
region: "
|
|
653
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
654
654
|
jobs: {
|
|
655
655
|
id: string | null;
|
|
656
656
|
title: string | null;
|
|
657
657
|
metadata: {
|
|
658
658
|
hours: string | null;
|
|
659
659
|
duration: string | null;
|
|
660
|
-
paymentType: string | null;
|
|
661
|
-
experienceLevel: string | null;
|
|
662
660
|
hourlyRate: {
|
|
663
661
|
max: number | null;
|
|
664
662
|
min: number | null;
|
|
665
663
|
} | null;
|
|
664
|
+
experienceLevel: string | null;
|
|
665
|
+
paymentType: string | null;
|
|
666
666
|
fixedPrice: number | null;
|
|
667
667
|
} | null;
|
|
668
668
|
description: string | null;
|
|
669
|
-
region: "
|
|
669
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
670
670
|
datetime: number | null;
|
|
671
|
+
category: string | null;
|
|
672
|
+
uid: string | null;
|
|
673
|
+
questions: string[] | null;
|
|
674
|
+
occupation: string | null;
|
|
671
675
|
createdAt: number | null;
|
|
672
|
-
|
|
676
|
+
skills: {
|
|
677
|
+
name: string;
|
|
678
|
+
}[] | null;
|
|
679
|
+
descriptionLength: number | null;
|
|
680
|
+
connectsRequired: number | null;
|
|
681
|
+
projectType: string | null;
|
|
673
682
|
projectDuration: string | null;
|
|
674
|
-
|
|
683
|
+
jobUrl: string | null;
|
|
675
684
|
clientInfo: {
|
|
676
685
|
country: string | null;
|
|
677
686
|
region: string | null;
|
|
678
|
-
isPaymentVerified: boolean | null;
|
|
679
|
-
isPhoneVerified: boolean | null;
|
|
680
|
-
enterpriseClient: boolean | null;
|
|
681
|
-
companySize: string | null;
|
|
682
687
|
openJobs: number | null;
|
|
683
|
-
|
|
688
|
+
isPhoneVerified: boolean | null;
|
|
689
|
+
isPaymentVerified: boolean | null;
|
|
684
690
|
numberOfReviews: number | null;
|
|
685
691
|
rating: number | null;
|
|
686
692
|
jobsPosted: number | null;
|
|
693
|
+
totalSpent: number | null;
|
|
687
694
|
numberOfHires: number | null;
|
|
688
695
|
activeEngagements: number | null;
|
|
689
696
|
hireRate: number | null;
|
|
690
697
|
memberSince: string | null;
|
|
691
698
|
companyIndustry: string | null;
|
|
699
|
+
companySize: string | null;
|
|
700
|
+
enterpriseClient: boolean | null;
|
|
692
701
|
avgHourlyRatePaid: number | null;
|
|
693
702
|
companyId: string | null;
|
|
694
703
|
} | null;
|
|
695
704
|
vendorQualifications: {
|
|
696
705
|
location: string | null;
|
|
697
|
-
includeRisingTalent: string | null;
|
|
698
706
|
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
699
707
|
englishLevel: string | null;
|
|
700
708
|
minimumEarnings: number | null;
|
|
701
709
|
jobSuccessScore: string | null;
|
|
710
|
+
includeRisingTalent: string | null;
|
|
702
711
|
} | null;
|
|
703
|
-
category: string | null;
|
|
704
|
-
uid: string | null;
|
|
705
|
-
occupation: string | null;
|
|
706
|
-
jobUrl: string | null;
|
|
707
|
-
skills: {
|
|
708
|
-
name: string;
|
|
709
|
-
}[] | null;
|
|
710
|
-
descriptionLength: number | null;
|
|
711
|
-
connectsRequired: number | null;
|
|
712
|
-
projectType: string | null;
|
|
713
712
|
processed: boolean | null;
|
|
713
|
+
isFeatured: boolean | null;
|
|
714
714
|
clientReviews: {
|
|
715
|
-
paymentType: string | null;
|
|
716
715
|
hourlyRate: number | null;
|
|
717
716
|
jobTitle: string | null;
|
|
717
|
+
paymentType: string | null;
|
|
718
|
+
fixedPrice: number | null;
|
|
718
719
|
freelancerName: string | null;
|
|
719
720
|
freelancerRating: number | null;
|
|
720
721
|
freelancerFeedback: string | null;
|
|
721
722
|
clientFeedback: string | null;
|
|
722
723
|
clientFeedbackRating: number | null;
|
|
723
724
|
dateRange: string | null;
|
|
724
|
-
fixedPrice: number | null;
|
|
725
725
|
numHours: number | null;
|
|
726
726
|
totalBilled: number | null;
|
|
727
727
|
}[] | null;
|
|
@@ -731,8 +731,8 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
731
731
|
avg: number | null;
|
|
732
732
|
} | null;
|
|
733
733
|
jobActivity: {
|
|
734
|
-
updatedAt: number | null;
|
|
735
734
|
unansweredInvites: number | null;
|
|
735
|
+
updatedAt: number | null;
|
|
736
736
|
proposals: {
|
|
737
737
|
max: number | null;
|
|
738
738
|
min: number | null;
|
|
@@ -745,8 +745,8 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
745
745
|
} | null;
|
|
746
746
|
activityUpdates: 2 | 1 | 3 | null;
|
|
747
747
|
activity?: Partial<Record<"4h" | "24h", {
|
|
748
|
-
updatedAt: number | null;
|
|
749
748
|
unansweredInvites: number | null;
|
|
749
|
+
updatedAt: number | null;
|
|
750
750
|
proposals: {
|
|
751
751
|
max: number | null;
|
|
752
752
|
min: number | null;
|
|
@@ -778,43 +778,43 @@ export declare const feedScrapeResultSchema: import("zod").ZodObject<{
|
|
|
778
778
|
region: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodLiteral<"USOnly">, import("zod").ZodLiteral<"UKOnly">, import("zod").ZodLiteral<"Worldwide">, import("zod").ZodLiteral<"All">]>>;
|
|
779
779
|
}, "strip", import("zod").ZodTypeAny, {
|
|
780
780
|
title: string | null;
|
|
781
|
-
region: "
|
|
781
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
782
782
|
datetime: string | null;
|
|
783
|
-
isFeatured: boolean | null;
|
|
784
783
|
uid: string | null;
|
|
785
784
|
jobUrl: string | null;
|
|
785
|
+
isFeatured: boolean | null;
|
|
786
786
|
}, {
|
|
787
787
|
title: string | null;
|
|
788
|
-
region: "
|
|
788
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
789
789
|
datetime: string | null;
|
|
790
|
-
isFeatured: boolean | null;
|
|
791
790
|
uid: string | null;
|
|
792
791
|
jobUrl: string | null;
|
|
792
|
+
isFeatured: boolean | null;
|
|
793
793
|
}>, "many">;
|
|
794
794
|
region: import("zod").ZodUnion<[import("zod").ZodLiteral<"USOnly">, import("zod").ZodLiteral<"UKOnly">, import("zod").ZodLiteral<"Worldwide">, import("zod").ZodLiteral<"All">]>;
|
|
795
795
|
usAccountCookies: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
796
796
|
ukAccountCookies: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
797
797
|
}, "strip", import("zod").ZodTypeAny, {
|
|
798
|
-
region: "
|
|
798
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
799
799
|
listings: {
|
|
800
800
|
title: string | null;
|
|
801
|
-
region: "
|
|
801
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
802
802
|
datetime: string | null;
|
|
803
|
-
isFeatured: boolean | null;
|
|
804
803
|
uid: string | null;
|
|
805
804
|
jobUrl: string | null;
|
|
805
|
+
isFeatured: boolean | null;
|
|
806
806
|
}[];
|
|
807
807
|
usAccountCookies?: any[] | undefined;
|
|
808
808
|
ukAccountCookies?: any[] | undefined;
|
|
809
809
|
}, {
|
|
810
|
-
region: "
|
|
810
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
811
811
|
listings: {
|
|
812
812
|
title: string | null;
|
|
813
|
-
region: "
|
|
813
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
814
814
|
datetime: string | null;
|
|
815
|
-
isFeatured: boolean | null;
|
|
816
815
|
uid: string | null;
|
|
817
816
|
jobUrl: string | null;
|
|
817
|
+
isFeatured: boolean | null;
|
|
818
818
|
}[];
|
|
819
819
|
usAccountCookies?: any[] | undefined;
|
|
820
820
|
ukAccountCookies?: any[] | undefined;
|