lancer-shared 1.2.302 → 1.2.304
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 +4 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +4 -0
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/account/bidder-account.d.ts +47 -40
- package/dist/schemas/account/scraper-account.d.ts +27 -27
- package/dist/schemas/agent/index.d.ts +273 -273
- package/dist/schemas/agent/proposal.d.ts +4 -4
- package/dist/schemas/bidder/bid.d.ts +2377 -2358
- package/dist/schemas/campaign/campaign-analytics.d.ts +1404 -1404
- package/dist/schemas/campaign/campaign-chat-bot.d.ts +24 -24
- package/dist/schemas/campaign/campaign-expenses.d.ts +2 -2
- package/dist/schemas/campaign/campaign-insights.d.ts +12 -12
- package/dist/schemas/campaign/campaign.d.ts +575 -566
- package/dist/schemas/campaign/sequence/boost-node.d.ts +2 -2
- package/dist/schemas/campaign/sequence/client-size-node.d.ts +8 -8
- package/dist/schemas/campaign/sequence/client-spent-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/hire-rate-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/hourly-rate-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/rating-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/suitability-node.d.ts +16 -16
- package/dist/schemas/dashboard/index.d.ts +46 -46
- package/dist/schemas/golden-dataset/sample.d.ts +12 -12
- package/dist/schemas/infrastructure/index.d.ts +8 -8
- package/dist/schemas/invoice/index.d.ts +55 -55
- package/dist/schemas/job/index.d.ts +189 -189
- package/dist/schemas/job/job-api.d.ts +4 -4
- package/dist/schemas/job/job-details.d.ts +726 -726
- package/dist/schemas/job/job-filters.d.ts +55 -55
- package/dist/schemas/job/job-listing.d.ts +96 -96
- package/dist/schemas/job/nuxt.d.ts +130 -130
- package/dist/schemas/lead/index.d.ts +1040 -1040
- package/dist/schemas/lead/lead-status.d.ts +4 -4
- package/dist/schemas/logger/feed/feed-chunk-enrich.d.ts +16 -16
- package/dist/schemas/logger/feed/feed-enrich.d.ts +12 -12
- package/dist/schemas/logger/feed/feed-job-enrich.d.ts +272 -272
- package/dist/schemas/logger/feed/feed-scrape.d.ts +6 -6
- package/dist/schemas/logger/log-event.d.ts +103 -103
- package/dist/schemas/logger/scraper-events.d.ts +73 -73
- package/dist/schemas/notifications/index.d.ts +4 -4
- package/dist/schemas/organization/billing.d.ts +2 -2
- package/dist/schemas/organization/cover-letter.d.ts +4 -4
- package/dist/schemas/organization/index.d.ts +112 -112
- package/dist/schemas/organization/onboarding.d.ts +6 -6
- package/dist/schemas/organization/organization-leads.d.ts +4 -4
- package/dist/schemas/organization/subscription.d.ts +12 -12
- package/dist/schemas/plan/index.d.ts +55 -55
- package/dist/schemas/proxy/proxy.d.ts +29 -29
- package/dist/schemas/saved-search/index.d.ts +4 -4
- package/dist/schemas/scraper/scrape-payload.d.ts +876 -876
- package/dist/schemas/scraper/scrape-result.d.ts +174 -174
- package/dist/schemas/scraper/upwork-profile.d.ts +16 -16
- package/dist/schemas/shared.d.ts +1 -1
- package/dist/schemas/talent/index.d.ts +750 -750
- package/dist/schemas/transaction/index.d.ts +20 -20
- package/dist/schemas/upwork-analytics/index.d.ts +22 -22
- package/dist/schemas/usage/index.d.ts +16 -16
- package/dist/schemas/usage-event/index.d.ts +11 -11
- package/dist/schemas/user/index.d.ts +4 -4
- package/package.json +2 -2
|
@@ -29,32 +29,32 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
29
29
|
min: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
30
30
|
max: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
31
31
|
}, "strip", import("zod").ZodTypeAny, {
|
|
32
|
-
max: number | null;
|
|
33
32
|
min: number | null;
|
|
34
|
-
}, {
|
|
35
33
|
max: number | null;
|
|
34
|
+
}, {
|
|
36
35
|
min: number | null;
|
|
36
|
+
max: number | null;
|
|
37
37
|
}>>;
|
|
38
38
|
paymentType: import("zod").ZodNullable<import("zod").ZodString>;
|
|
39
39
|
fixedPrice: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
40
40
|
}, "strip", import("zod").ZodTypeAny, {
|
|
41
41
|
hours: string | null;
|
|
42
42
|
duration: string | null;
|
|
43
|
+
experienceLevel: string | null;
|
|
43
44
|
hourlyRate: {
|
|
44
|
-
max: number | null;
|
|
45
45
|
min: number | null;
|
|
46
|
+
max: number | null;
|
|
46
47
|
} | null;
|
|
47
|
-
experienceLevel: string | null;
|
|
48
48
|
paymentType: string | null;
|
|
49
49
|
fixedPrice: number | null;
|
|
50
50
|
}, {
|
|
51
51
|
hours: string | null;
|
|
52
52
|
duration: string | null;
|
|
53
|
+
experienceLevel: string | null;
|
|
53
54
|
hourlyRate: {
|
|
54
|
-
max: number | null;
|
|
55
55
|
min: number | null;
|
|
56
|
+
max: number | null;
|
|
56
57
|
} | null;
|
|
57
|
-
experienceLevel: string | null;
|
|
58
58
|
paymentType: string | null;
|
|
59
59
|
fixedPrice: number | null;
|
|
60
60
|
}>>;
|
|
@@ -78,17 +78,17 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
78
78
|
avgHourlyRatePaid: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
79
79
|
companyId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
80
80
|
}, "strip", import("zod").ZodTypeAny, {
|
|
81
|
-
country: string | null;
|
|
82
|
-
region: string | null;
|
|
83
|
-
openJobs: number | null;
|
|
84
|
-
isPhoneVerified: boolean | null;
|
|
85
81
|
isPaymentVerified: boolean | null;
|
|
82
|
+
isPhoneVerified: boolean | null;
|
|
86
83
|
numberOfReviews: number | null;
|
|
87
84
|
rating: number | null;
|
|
85
|
+
country: string | null;
|
|
86
|
+
region: string | null;
|
|
88
87
|
jobsPosted: number | null;
|
|
89
88
|
totalSpent: number | null;
|
|
90
89
|
numberOfHires: number | null;
|
|
91
90
|
activeEngagements: number | null;
|
|
91
|
+
openJobs: number | null;
|
|
92
92
|
hireRate: number | null;
|
|
93
93
|
memberSince: string | null;
|
|
94
94
|
companyIndustry: string | null;
|
|
@@ -97,17 +97,17 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
97
97
|
avgHourlyRatePaid: number | null;
|
|
98
98
|
companyId: string | null;
|
|
99
99
|
}, {
|
|
100
|
-
country: string | null;
|
|
101
|
-
region: string | null;
|
|
102
|
-
openJobs: number | null;
|
|
103
|
-
isPhoneVerified: boolean | null;
|
|
104
100
|
isPaymentVerified: boolean | null;
|
|
101
|
+
isPhoneVerified: boolean | null;
|
|
105
102
|
numberOfReviews: number | null;
|
|
106
103
|
rating: number | null;
|
|
104
|
+
country: string | null;
|
|
105
|
+
region: string | null;
|
|
107
106
|
jobsPosted: number | null;
|
|
108
107
|
totalSpent: number | null;
|
|
109
108
|
numberOfHires: number | null;
|
|
110
109
|
activeEngagements: number | null;
|
|
110
|
+
openJobs: number | null;
|
|
111
111
|
hireRate: number | null;
|
|
112
112
|
memberSince: string | null;
|
|
113
113
|
companyIndustry: string | null;
|
|
@@ -125,14 +125,14 @@ 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
|
-
talentType: "
|
|
128
|
+
talentType: "Agency" | "Independent" | "unspecified" | null;
|
|
129
129
|
englishLevel: string | null;
|
|
130
130
|
minimumEarnings: number | null;
|
|
131
131
|
jobSuccessScore: string | null;
|
|
132
132
|
includeRisingTalent: string | null;
|
|
133
133
|
}, {
|
|
134
134
|
location: string | null;
|
|
135
|
-
talentType: "
|
|
135
|
+
talentType: "Agency" | "Independent" | "unspecified" | null;
|
|
136
136
|
englishLevel: string | null;
|
|
137
137
|
minimumEarnings: number | null;
|
|
138
138
|
jobSuccessScore: string | null;
|
|
@@ -155,9 +155,9 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
155
155
|
totalBilled: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
156
156
|
}, "strip", import("zod").ZodTypeAny, {
|
|
157
157
|
hourlyRate: number | null;
|
|
158
|
-
jobTitle: string | null;
|
|
159
158
|
paymentType: string | null;
|
|
160
159
|
fixedPrice: number | null;
|
|
160
|
+
jobTitle: string | null;
|
|
161
161
|
freelancerName: string | null;
|
|
162
162
|
freelancerRating: number | null;
|
|
163
163
|
freelancerFeedback: string | null;
|
|
@@ -168,9 +168,9 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
168
168
|
totalBilled: number | null;
|
|
169
169
|
}, {
|
|
170
170
|
hourlyRate: number | null;
|
|
171
|
-
jobTitle: string | null;
|
|
172
171
|
paymentType: string | null;
|
|
173
172
|
fixedPrice: number | null;
|
|
173
|
+
jobTitle: string | null;
|
|
174
174
|
freelancerName: string | null;
|
|
175
175
|
freelancerRating: number | null;
|
|
176
176
|
freelancerFeedback: string | null;
|
|
@@ -187,23 +187,23 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
187
187
|
low: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
188
188
|
}, "strip", import("zod").ZodTypeAny, {
|
|
189
189
|
high: number | null;
|
|
190
|
-
low: number | null;
|
|
191
190
|
avg: number | null;
|
|
191
|
+
low: number | null;
|
|
192
192
|
}, {
|
|
193
193
|
high: number | null;
|
|
194
|
-
low: number | null;
|
|
195
194
|
avg: number | null;
|
|
195
|
+
low: number | null;
|
|
196
196
|
}>>;
|
|
197
197
|
jobActivity: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
198
198
|
proposals: import("zod").ZodObject<{
|
|
199
199
|
min: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
200
200
|
max: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
201
201
|
}, "strip", import("zod").ZodTypeAny, {
|
|
202
|
-
max: number | null;
|
|
203
202
|
min: number | null;
|
|
204
|
-
}, {
|
|
205
203
|
max: number | null;
|
|
204
|
+
}, {
|
|
206
205
|
min: number | null;
|
|
206
|
+
max: number | null;
|
|
207
207
|
}>;
|
|
208
208
|
lastViewedByClient: import("zod").ZodNullable<import("zod").ZodString>;
|
|
209
209
|
lastViewedByClientTimestamp: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
@@ -213,29 +213,29 @@ 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
|
-
unansweredInvites: number | null;
|
|
217
|
-
updatedAt: number | null;
|
|
218
216
|
proposals: {
|
|
219
|
-
max: number | null;
|
|
220
217
|
min: number | null;
|
|
218
|
+
max: number | null;
|
|
221
219
|
};
|
|
222
220
|
lastViewedByClient: string | null;
|
|
223
221
|
lastViewedByClientTimestamp: number | null;
|
|
224
222
|
hires: number | null;
|
|
225
223
|
interviewing: number | null;
|
|
226
224
|
invitesSent: number | null;
|
|
227
|
-
}, {
|
|
228
225
|
unansweredInvites: number | null;
|
|
229
226
|
updatedAt: number | null;
|
|
227
|
+
}, {
|
|
230
228
|
proposals: {
|
|
231
|
-
max: number | null;
|
|
232
229
|
min: number | null;
|
|
230
|
+
max: number | null;
|
|
233
231
|
};
|
|
234
232
|
lastViewedByClient: string | null;
|
|
235
233
|
lastViewedByClientTimestamp: number | null;
|
|
236
234
|
hires: number | null;
|
|
237
235
|
interviewing: number | null;
|
|
238
236
|
invitesSent: number | null;
|
|
237
|
+
unansweredInvites: number | null;
|
|
238
|
+
updatedAt: number | null;
|
|
239
239
|
}>>;
|
|
240
240
|
occupation: import("zod").ZodNullable<import("zod").ZodString>;
|
|
241
241
|
activityUpdates: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodLiteral<1>, import("zod").ZodLiteral<2>, import("zod").ZodLiteral<3>]>>;
|
|
@@ -244,11 +244,11 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
244
244
|
min: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
245
245
|
max: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
246
246
|
}, "strip", import("zod").ZodTypeAny, {
|
|
247
|
-
max: number | null;
|
|
248
247
|
min: number | null;
|
|
249
|
-
}, {
|
|
250
248
|
max: number | null;
|
|
249
|
+
}, {
|
|
251
250
|
min: number | null;
|
|
251
|
+
max: number | null;
|
|
252
252
|
}>;
|
|
253
253
|
lastViewedByClient: import("zod").ZodNullable<import("zod").ZodString>;
|
|
254
254
|
lastViewedByClientTimestamp: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
@@ -258,29 +258,29 @@ 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
|
-
unansweredInvites: number | null;
|
|
262
|
-
updatedAt: number | null;
|
|
263
261
|
proposals: {
|
|
264
|
-
max: number | null;
|
|
265
262
|
min: number | null;
|
|
263
|
+
max: number | null;
|
|
266
264
|
};
|
|
267
265
|
lastViewedByClient: string | null;
|
|
268
266
|
lastViewedByClientTimestamp: number | null;
|
|
269
267
|
hires: number | null;
|
|
270
268
|
interviewing: number | null;
|
|
271
269
|
invitesSent: number | null;
|
|
272
|
-
}, {
|
|
273
270
|
unansweredInvites: number | null;
|
|
274
271
|
updatedAt: number | null;
|
|
272
|
+
}, {
|
|
275
273
|
proposals: {
|
|
276
|
-
max: number | null;
|
|
277
274
|
min: number | null;
|
|
275
|
+
max: number | null;
|
|
278
276
|
};
|
|
279
277
|
lastViewedByClient: string | null;
|
|
280
278
|
lastViewedByClientTimestamp: number | null;
|
|
281
279
|
hires: number | null;
|
|
282
280
|
interviewing: number | null;
|
|
283
281
|
invitesSent: number | null;
|
|
282
|
+
unansweredInvites: number | null;
|
|
283
|
+
updatedAt: number | null;
|
|
284
284
|
}>>>>;
|
|
285
285
|
activityDelta: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
286
286
|
proposals: import("zod").ZodNumber;
|
|
@@ -289,60 +289,59 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
289
289
|
invitesSent: import("zod").ZodNumber;
|
|
290
290
|
unansweredInvites: import("zod").ZodNumber;
|
|
291
291
|
}, "strip", import("zod").ZodTypeAny, {
|
|
292
|
-
unansweredInvites: number;
|
|
293
292
|
proposals: number;
|
|
294
293
|
hires: number;
|
|
295
294
|
interviewing: number;
|
|
296
295
|
invitesSent: number;
|
|
297
|
-
}, {
|
|
298
296
|
unansweredInvites: number;
|
|
297
|
+
}, {
|
|
299
298
|
proposals: number;
|
|
300
299
|
hires: number;
|
|
301
300
|
interviewing: number;
|
|
302
301
|
invitesSent: number;
|
|
302
|
+
unansweredInvites: number;
|
|
303
303
|
}>>>;
|
|
304
304
|
}, "strip", import("zod").ZodTypeAny, {
|
|
305
305
|
id: string | null;
|
|
306
|
+
uid: string | null;
|
|
307
|
+
createdAt: number | null;
|
|
306
308
|
title: string | null;
|
|
309
|
+
category: string | null;
|
|
310
|
+
skills: {
|
|
311
|
+
name: string;
|
|
312
|
+
}[] | null;
|
|
313
|
+
datetime: number | null;
|
|
314
|
+
description: string | null;
|
|
315
|
+
descriptionLength: number | null;
|
|
316
|
+
connectsRequired: number | null;
|
|
317
|
+
projectType: string | null;
|
|
318
|
+
projectDuration: string | null;
|
|
319
|
+
questions: string[] | null;
|
|
320
|
+
jobUrl: string | null;
|
|
307
321
|
metadata: {
|
|
308
322
|
hours: string | null;
|
|
309
323
|
duration: string | null;
|
|
324
|
+
experienceLevel: string | null;
|
|
310
325
|
hourlyRate: {
|
|
311
|
-
max: number | null;
|
|
312
326
|
min: number | null;
|
|
327
|
+
max: number | null;
|
|
313
328
|
} | null;
|
|
314
|
-
experienceLevel: string | null;
|
|
315
329
|
paymentType: string | null;
|
|
316
330
|
fixedPrice: number | null;
|
|
317
331
|
} | null;
|
|
318
|
-
description: string | null;
|
|
319
332
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
320
|
-
datetime: number | null;
|
|
321
|
-
category: string | null;
|
|
322
|
-
uid: string | null;
|
|
323
|
-
questions: string[] | null;
|
|
324
|
-
occupation: string | null;
|
|
325
|
-
createdAt: number | null;
|
|
326
|
-
skills: {
|
|
327
|
-
name: string;
|
|
328
|
-
}[] | null;
|
|
329
|
-
descriptionLength: number | null;
|
|
330
|
-
connectsRequired: number | null;
|
|
331
|
-
projectType: string | null;
|
|
332
|
-
projectDuration: string | null;
|
|
333
|
-
jobUrl: string | null;
|
|
334
333
|
clientInfo: {
|
|
335
|
-
country: string | null;
|
|
336
|
-
region: string | null;
|
|
337
|
-
openJobs: number | null;
|
|
338
|
-
isPhoneVerified: boolean | null;
|
|
339
334
|
isPaymentVerified: boolean | null;
|
|
335
|
+
isPhoneVerified: boolean | null;
|
|
340
336
|
numberOfReviews: number | null;
|
|
341
337
|
rating: number | null;
|
|
338
|
+
country: string | null;
|
|
339
|
+
region: string | null;
|
|
342
340
|
jobsPosted: number | null;
|
|
343
341
|
totalSpent: number | null;
|
|
344
342
|
numberOfHires: number | null;
|
|
345
343
|
activeEngagements: number | null;
|
|
344
|
+
openJobs: number | null;
|
|
346
345
|
hireRate: number | null;
|
|
347
346
|
memberSince: string | null;
|
|
348
347
|
companyIndustry: string | null;
|
|
@@ -353,7 +352,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
353
352
|
} | null;
|
|
354
353
|
vendorQualifications: {
|
|
355
354
|
location: string | null;
|
|
356
|
-
talentType: "
|
|
355
|
+
talentType: "Agency" | "Independent" | "unspecified" | null;
|
|
357
356
|
englishLevel: string | null;
|
|
358
357
|
minimumEarnings: number | null;
|
|
359
358
|
jobSuccessScore: string | null;
|
|
@@ -363,9 +362,9 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
363
362
|
isFeatured: boolean | null;
|
|
364
363
|
clientReviews: {
|
|
365
364
|
hourlyRate: number | null;
|
|
366
|
-
jobTitle: string | null;
|
|
367
365
|
paymentType: string | null;
|
|
368
366
|
fixedPrice: number | null;
|
|
367
|
+
jobTitle: string | null;
|
|
369
368
|
freelancerName: string | null;
|
|
370
369
|
freelancerRating: number | null;
|
|
371
370
|
freelancerFeedback: string | null;
|
|
@@ -377,85 +376,85 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
377
376
|
}[] | null;
|
|
378
377
|
bidRange: {
|
|
379
378
|
high: number | null;
|
|
380
|
-
low: number | null;
|
|
381
379
|
avg: number | null;
|
|
380
|
+
low: number | null;
|
|
382
381
|
} | null;
|
|
383
382
|
jobActivity: {
|
|
384
|
-
unansweredInvites: number | null;
|
|
385
|
-
updatedAt: number | null;
|
|
386
383
|
proposals: {
|
|
387
|
-
max: number | null;
|
|
388
384
|
min: number | null;
|
|
385
|
+
max: number | null;
|
|
389
386
|
};
|
|
390
387
|
lastViewedByClient: string | null;
|
|
391
388
|
lastViewedByClientTimestamp: number | null;
|
|
392
389
|
hires: number | null;
|
|
393
390
|
interviewing: number | null;
|
|
394
391
|
invitesSent: number | null;
|
|
395
|
-
} | null;
|
|
396
|
-
activityUpdates: 2 | 1 | 3 | null;
|
|
397
|
-
activity?: Partial<Record<"4h" | "24h", {
|
|
398
392
|
unansweredInvites: number | null;
|
|
399
393
|
updatedAt: number | null;
|
|
394
|
+
} | null;
|
|
395
|
+
occupation: string | null;
|
|
396
|
+
activityUpdates: 1 | 2 | 3 | null;
|
|
397
|
+
activity?: Partial<Record<"4h" | "24h", {
|
|
400
398
|
proposals: {
|
|
401
|
-
max: number | null;
|
|
402
399
|
min: number | null;
|
|
400
|
+
max: number | null;
|
|
403
401
|
};
|
|
404
402
|
lastViewedByClient: string | null;
|
|
405
403
|
lastViewedByClientTimestamp: number | null;
|
|
406
404
|
hires: number | null;
|
|
407
405
|
interviewing: number | null;
|
|
408
406
|
invitesSent: number | null;
|
|
407
|
+
unansweredInvites: number | null;
|
|
408
|
+
updatedAt: number | null;
|
|
409
409
|
}>> | null | undefined;
|
|
410
410
|
activityDelta?: {
|
|
411
|
-
unansweredInvites: number;
|
|
412
411
|
proposals: number;
|
|
413
412
|
hires: number;
|
|
414
413
|
interviewing: number;
|
|
415
414
|
invitesSent: number;
|
|
415
|
+
unansweredInvites: number;
|
|
416
416
|
} | null | undefined;
|
|
417
417
|
}, {
|
|
418
418
|
id: string | null;
|
|
419
|
+
uid: string | null;
|
|
420
|
+
createdAt: number | null;
|
|
419
421
|
title: string | null;
|
|
422
|
+
category: string | null;
|
|
423
|
+
skills: {
|
|
424
|
+
name: string;
|
|
425
|
+
}[] | null;
|
|
426
|
+
datetime: number | null;
|
|
427
|
+
description: string | null;
|
|
428
|
+
descriptionLength: number | null;
|
|
429
|
+
connectsRequired: number | null;
|
|
430
|
+
projectType: string | null;
|
|
431
|
+
projectDuration: string | null;
|
|
432
|
+
questions: string[] | null;
|
|
433
|
+
jobUrl: string | null;
|
|
420
434
|
metadata: {
|
|
421
435
|
hours: string | null;
|
|
422
436
|
duration: string | null;
|
|
437
|
+
experienceLevel: string | null;
|
|
423
438
|
hourlyRate: {
|
|
424
|
-
max: number | null;
|
|
425
439
|
min: number | null;
|
|
440
|
+
max: number | null;
|
|
426
441
|
} | null;
|
|
427
|
-
experienceLevel: string | null;
|
|
428
442
|
paymentType: string | null;
|
|
429
443
|
fixedPrice: number | null;
|
|
430
444
|
} | null;
|
|
431
|
-
description: string | null;
|
|
432
445
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
433
|
-
datetime: number | null;
|
|
434
|
-
category: string | null;
|
|
435
|
-
uid: string | null;
|
|
436
|
-
questions: string[] | null;
|
|
437
|
-
occupation: string | null;
|
|
438
|
-
createdAt: number | null;
|
|
439
|
-
skills: {
|
|
440
|
-
name: string;
|
|
441
|
-
}[] | null;
|
|
442
|
-
descriptionLength: number | null;
|
|
443
|
-
connectsRequired: number | null;
|
|
444
|
-
projectType: string | null;
|
|
445
|
-
projectDuration: string | null;
|
|
446
|
-
jobUrl: string | null;
|
|
447
446
|
clientInfo: {
|
|
448
|
-
country: string | null;
|
|
449
|
-
region: string | null;
|
|
450
|
-
openJobs: number | null;
|
|
451
|
-
isPhoneVerified: boolean | null;
|
|
452
447
|
isPaymentVerified: boolean | null;
|
|
448
|
+
isPhoneVerified: boolean | null;
|
|
453
449
|
numberOfReviews: number | null;
|
|
454
450
|
rating: number | null;
|
|
451
|
+
country: string | null;
|
|
452
|
+
region: string | null;
|
|
455
453
|
jobsPosted: number | null;
|
|
456
454
|
totalSpent: number | null;
|
|
457
455
|
numberOfHires: number | null;
|
|
458
456
|
activeEngagements: number | null;
|
|
457
|
+
openJobs: number | null;
|
|
459
458
|
hireRate: number | null;
|
|
460
459
|
memberSince: string | null;
|
|
461
460
|
companyIndustry: string | null;
|
|
@@ -466,7 +465,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
466
465
|
} | null;
|
|
467
466
|
vendorQualifications: {
|
|
468
467
|
location: string | null;
|
|
469
|
-
talentType: "
|
|
468
|
+
talentType: "Agency" | "Independent" | "unspecified" | null;
|
|
470
469
|
englishLevel: string | null;
|
|
471
470
|
minimumEarnings: number | null;
|
|
472
471
|
jobSuccessScore: string | null;
|
|
@@ -476,9 +475,9 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
476
475
|
isFeatured: boolean | null;
|
|
477
476
|
clientReviews: {
|
|
478
477
|
hourlyRate: number | null;
|
|
479
|
-
jobTitle: string | null;
|
|
480
478
|
paymentType: string | null;
|
|
481
479
|
fixedPrice: number | null;
|
|
480
|
+
jobTitle: string | null;
|
|
482
481
|
freelancerName: string | null;
|
|
483
482
|
freelancerRating: number | null;
|
|
484
483
|
freelancerFeedback: string | null;
|
|
@@ -490,91 +489,90 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
490
489
|
}[] | null;
|
|
491
490
|
bidRange: {
|
|
492
491
|
high: number | null;
|
|
493
|
-
low: number | null;
|
|
494
492
|
avg: number | null;
|
|
493
|
+
low: number | null;
|
|
495
494
|
} | null;
|
|
496
495
|
jobActivity: {
|
|
497
|
-
unansweredInvites: number | null;
|
|
498
|
-
updatedAt: number | null;
|
|
499
496
|
proposals: {
|
|
500
|
-
max: number | null;
|
|
501
497
|
min: number | null;
|
|
498
|
+
max: number | null;
|
|
502
499
|
};
|
|
503
500
|
lastViewedByClient: string | null;
|
|
504
501
|
lastViewedByClientTimestamp: number | null;
|
|
505
502
|
hires: number | null;
|
|
506
503
|
interviewing: number | null;
|
|
507
504
|
invitesSent: number | null;
|
|
508
|
-
} | null;
|
|
509
|
-
activityUpdates: 2 | 1 | 3 | null;
|
|
510
|
-
activity?: Partial<Record<"4h" | "24h", {
|
|
511
505
|
unansweredInvites: number | null;
|
|
512
506
|
updatedAt: number | null;
|
|
507
|
+
} | null;
|
|
508
|
+
occupation: string | null;
|
|
509
|
+
activityUpdates: 1 | 2 | 3 | null;
|
|
510
|
+
activity?: Partial<Record<"4h" | "24h", {
|
|
513
511
|
proposals: {
|
|
514
|
-
max: number | null;
|
|
515
512
|
min: number | null;
|
|
513
|
+
max: number | null;
|
|
516
514
|
};
|
|
517
515
|
lastViewedByClient: string | null;
|
|
518
516
|
lastViewedByClientTimestamp: number | null;
|
|
519
517
|
hires: number | null;
|
|
520
518
|
interviewing: number | null;
|
|
521
519
|
invitesSent: number | null;
|
|
520
|
+
unansweredInvites: number | null;
|
|
521
|
+
updatedAt: number | null;
|
|
522
522
|
}>> | null | undefined;
|
|
523
523
|
activityDelta?: {
|
|
524
|
-
unansweredInvites: number;
|
|
525
524
|
proposals: number;
|
|
526
525
|
hires: number;
|
|
527
526
|
interviewing: number;
|
|
528
527
|
invitesSent: number;
|
|
528
|
+
unansweredInvites: number;
|
|
529
529
|
} | null | undefined;
|
|
530
530
|
}>, "many">;
|
|
531
531
|
region: import("zod").ZodUnion<[import("zod").ZodLiteral<"USOnly">, import("zod").ZodLiteral<"UKOnly">, import("zod").ZodLiteral<"Worldwide">, import("zod").ZodLiteral<"All">]>;
|
|
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: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
536
535
|
jobs: {
|
|
537
536
|
id: string | null;
|
|
537
|
+
uid: string | null;
|
|
538
|
+
createdAt: number | null;
|
|
538
539
|
title: string | null;
|
|
540
|
+
category: string | null;
|
|
541
|
+
skills: {
|
|
542
|
+
name: string;
|
|
543
|
+
}[] | null;
|
|
544
|
+
datetime: number | null;
|
|
545
|
+
description: string | null;
|
|
546
|
+
descriptionLength: number | null;
|
|
547
|
+
connectsRequired: number | null;
|
|
548
|
+
projectType: string | null;
|
|
549
|
+
projectDuration: string | null;
|
|
550
|
+
questions: string[] | null;
|
|
551
|
+
jobUrl: string | null;
|
|
539
552
|
metadata: {
|
|
540
553
|
hours: string | null;
|
|
541
554
|
duration: string | null;
|
|
555
|
+
experienceLevel: string | null;
|
|
542
556
|
hourlyRate: {
|
|
543
|
-
max: number | null;
|
|
544
557
|
min: number | null;
|
|
558
|
+
max: number | null;
|
|
545
559
|
} | null;
|
|
546
|
-
experienceLevel: string | null;
|
|
547
560
|
paymentType: string | null;
|
|
548
561
|
fixedPrice: number | null;
|
|
549
562
|
} | null;
|
|
550
|
-
description: string | null;
|
|
551
563
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
552
|
-
datetime: number | null;
|
|
553
|
-
category: string | null;
|
|
554
|
-
uid: string | null;
|
|
555
|
-
questions: string[] | null;
|
|
556
|
-
occupation: string | null;
|
|
557
|
-
createdAt: number | null;
|
|
558
|
-
skills: {
|
|
559
|
-
name: string;
|
|
560
|
-
}[] | null;
|
|
561
|
-
descriptionLength: number | null;
|
|
562
|
-
connectsRequired: number | null;
|
|
563
|
-
projectType: string | null;
|
|
564
|
-
projectDuration: string | null;
|
|
565
|
-
jobUrl: string | null;
|
|
566
564
|
clientInfo: {
|
|
567
|
-
country: string | null;
|
|
568
|
-
region: string | null;
|
|
569
|
-
openJobs: number | null;
|
|
570
|
-
isPhoneVerified: boolean | null;
|
|
571
565
|
isPaymentVerified: boolean | null;
|
|
566
|
+
isPhoneVerified: boolean | null;
|
|
572
567
|
numberOfReviews: number | null;
|
|
573
568
|
rating: number | null;
|
|
569
|
+
country: string | null;
|
|
570
|
+
region: string | null;
|
|
574
571
|
jobsPosted: number | null;
|
|
575
572
|
totalSpent: number | null;
|
|
576
573
|
numberOfHires: number | null;
|
|
577
574
|
activeEngagements: number | null;
|
|
575
|
+
openJobs: number | null;
|
|
578
576
|
hireRate: number | null;
|
|
579
577
|
memberSince: string | null;
|
|
580
578
|
companyIndustry: string | null;
|
|
@@ -585,7 +583,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
585
583
|
} | null;
|
|
586
584
|
vendorQualifications: {
|
|
587
585
|
location: string | null;
|
|
588
|
-
talentType: "
|
|
586
|
+
talentType: "Agency" | "Independent" | "unspecified" | null;
|
|
589
587
|
englishLevel: string | null;
|
|
590
588
|
minimumEarnings: number | null;
|
|
591
589
|
jobSuccessScore: string | null;
|
|
@@ -595,9 +593,9 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
595
593
|
isFeatured: boolean | null;
|
|
596
594
|
clientReviews: {
|
|
597
595
|
hourlyRate: number | null;
|
|
598
|
-
jobTitle: string | null;
|
|
599
596
|
paymentType: string | null;
|
|
600
597
|
fixedPrice: number | null;
|
|
598
|
+
jobTitle: string | null;
|
|
601
599
|
freelancerName: string | null;
|
|
602
600
|
freelancerRating: number | null;
|
|
603
601
|
freelancerFeedback: string | null;
|
|
@@ -609,90 +607,90 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
609
607
|
}[] | null;
|
|
610
608
|
bidRange: {
|
|
611
609
|
high: number | null;
|
|
612
|
-
low: number | null;
|
|
613
610
|
avg: number | null;
|
|
611
|
+
low: number | null;
|
|
614
612
|
} | null;
|
|
615
613
|
jobActivity: {
|
|
616
|
-
unansweredInvites: number | null;
|
|
617
|
-
updatedAt: number | null;
|
|
618
614
|
proposals: {
|
|
619
|
-
max: number | null;
|
|
620
615
|
min: number | null;
|
|
616
|
+
max: number | null;
|
|
621
617
|
};
|
|
622
618
|
lastViewedByClient: string | null;
|
|
623
619
|
lastViewedByClientTimestamp: number | null;
|
|
624
620
|
hires: number | null;
|
|
625
621
|
interviewing: number | null;
|
|
626
622
|
invitesSent: number | null;
|
|
627
|
-
} | null;
|
|
628
|
-
activityUpdates: 2 | 1 | 3 | null;
|
|
629
|
-
activity?: Partial<Record<"4h" | "24h", {
|
|
630
623
|
unansweredInvites: number | null;
|
|
631
624
|
updatedAt: number | null;
|
|
625
|
+
} | null;
|
|
626
|
+
occupation: string | null;
|
|
627
|
+
activityUpdates: 1 | 2 | 3 | null;
|
|
628
|
+
activity?: Partial<Record<"4h" | "24h", {
|
|
632
629
|
proposals: {
|
|
633
|
-
max: number | null;
|
|
634
630
|
min: number | null;
|
|
631
|
+
max: number | null;
|
|
635
632
|
};
|
|
636
633
|
lastViewedByClient: string | null;
|
|
637
634
|
lastViewedByClientTimestamp: number | null;
|
|
638
635
|
hires: number | null;
|
|
639
636
|
interviewing: number | null;
|
|
640
637
|
invitesSent: number | null;
|
|
638
|
+
unansweredInvites: number | null;
|
|
639
|
+
updatedAt: number | null;
|
|
641
640
|
}>> | null | undefined;
|
|
642
641
|
activityDelta?: {
|
|
643
|
-
unansweredInvites: number;
|
|
644
642
|
proposals: number;
|
|
645
643
|
hires: number;
|
|
646
644
|
interviewing: number;
|
|
647
645
|
invitesSent: number;
|
|
646
|
+
unansweredInvites: number;
|
|
648
647
|
} | null | undefined;
|
|
649
648
|
}[];
|
|
649
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
650
650
|
usAccountCookies?: any[] | undefined;
|
|
651
651
|
ukAccountCookies?: any[] | undefined;
|
|
652
652
|
}, {
|
|
653
|
-
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
654
653
|
jobs: {
|
|
655
654
|
id: string | null;
|
|
655
|
+
uid: string | null;
|
|
656
|
+
createdAt: number | null;
|
|
656
657
|
title: string | null;
|
|
658
|
+
category: string | null;
|
|
659
|
+
skills: {
|
|
660
|
+
name: string;
|
|
661
|
+
}[] | null;
|
|
662
|
+
datetime: number | null;
|
|
663
|
+
description: string | null;
|
|
664
|
+
descriptionLength: number | null;
|
|
665
|
+
connectsRequired: number | null;
|
|
666
|
+
projectType: string | null;
|
|
667
|
+
projectDuration: string | null;
|
|
668
|
+
questions: string[] | null;
|
|
669
|
+
jobUrl: string | null;
|
|
657
670
|
metadata: {
|
|
658
671
|
hours: string | null;
|
|
659
672
|
duration: string | null;
|
|
673
|
+
experienceLevel: string | null;
|
|
660
674
|
hourlyRate: {
|
|
661
|
-
max: number | null;
|
|
662
675
|
min: number | null;
|
|
676
|
+
max: number | null;
|
|
663
677
|
} | null;
|
|
664
|
-
experienceLevel: string | null;
|
|
665
678
|
paymentType: string | null;
|
|
666
679
|
fixedPrice: number | null;
|
|
667
680
|
} | null;
|
|
668
|
-
description: string | null;
|
|
669
681
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
670
|
-
datetime: number | null;
|
|
671
|
-
category: string | null;
|
|
672
|
-
uid: string | null;
|
|
673
|
-
questions: string[] | null;
|
|
674
|
-
occupation: string | null;
|
|
675
|
-
createdAt: number | null;
|
|
676
|
-
skills: {
|
|
677
|
-
name: string;
|
|
678
|
-
}[] | null;
|
|
679
|
-
descriptionLength: number | null;
|
|
680
|
-
connectsRequired: number | null;
|
|
681
|
-
projectType: string | null;
|
|
682
|
-
projectDuration: string | null;
|
|
683
|
-
jobUrl: string | null;
|
|
684
682
|
clientInfo: {
|
|
685
|
-
country: string | null;
|
|
686
|
-
region: string | null;
|
|
687
|
-
openJobs: number | null;
|
|
688
|
-
isPhoneVerified: boolean | null;
|
|
689
683
|
isPaymentVerified: boolean | null;
|
|
684
|
+
isPhoneVerified: boolean | null;
|
|
690
685
|
numberOfReviews: number | null;
|
|
691
686
|
rating: number | null;
|
|
687
|
+
country: string | null;
|
|
688
|
+
region: string | null;
|
|
692
689
|
jobsPosted: number | null;
|
|
693
690
|
totalSpent: number | null;
|
|
694
691
|
numberOfHires: number | null;
|
|
695
692
|
activeEngagements: number | null;
|
|
693
|
+
openJobs: number | null;
|
|
696
694
|
hireRate: number | null;
|
|
697
695
|
memberSince: string | null;
|
|
698
696
|
companyIndustry: string | null;
|
|
@@ -703,7 +701,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
703
701
|
} | null;
|
|
704
702
|
vendorQualifications: {
|
|
705
703
|
location: string | null;
|
|
706
|
-
talentType: "
|
|
704
|
+
talentType: "Agency" | "Independent" | "unspecified" | null;
|
|
707
705
|
englishLevel: string | null;
|
|
708
706
|
minimumEarnings: number | null;
|
|
709
707
|
jobSuccessScore: string | null;
|
|
@@ -713,9 +711,9 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
713
711
|
isFeatured: boolean | null;
|
|
714
712
|
clientReviews: {
|
|
715
713
|
hourlyRate: number | null;
|
|
716
|
-
jobTitle: string | null;
|
|
717
714
|
paymentType: string | null;
|
|
718
715
|
fixedPrice: number | null;
|
|
716
|
+
jobTitle: string | null;
|
|
719
717
|
freelancerName: string | null;
|
|
720
718
|
freelancerRating: number | null;
|
|
721
719
|
freelancerFeedback: string | null;
|
|
@@ -727,44 +725,46 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
727
725
|
}[] | null;
|
|
728
726
|
bidRange: {
|
|
729
727
|
high: number | null;
|
|
730
|
-
low: number | null;
|
|
731
728
|
avg: number | null;
|
|
729
|
+
low: number | null;
|
|
732
730
|
} | null;
|
|
733
731
|
jobActivity: {
|
|
734
|
-
unansweredInvites: number | null;
|
|
735
|
-
updatedAt: number | null;
|
|
736
732
|
proposals: {
|
|
737
|
-
max: number | null;
|
|
738
733
|
min: number | null;
|
|
734
|
+
max: number | null;
|
|
739
735
|
};
|
|
740
736
|
lastViewedByClient: string | null;
|
|
741
737
|
lastViewedByClientTimestamp: number | null;
|
|
742
738
|
hires: number | null;
|
|
743
739
|
interviewing: number | null;
|
|
744
740
|
invitesSent: number | null;
|
|
745
|
-
} | null;
|
|
746
|
-
activityUpdates: 2 | 1 | 3 | null;
|
|
747
|
-
activity?: Partial<Record<"4h" | "24h", {
|
|
748
741
|
unansweredInvites: number | null;
|
|
749
742
|
updatedAt: number | null;
|
|
743
|
+
} | null;
|
|
744
|
+
occupation: string | null;
|
|
745
|
+
activityUpdates: 1 | 2 | 3 | null;
|
|
746
|
+
activity?: Partial<Record<"4h" | "24h", {
|
|
750
747
|
proposals: {
|
|
751
|
-
max: number | null;
|
|
752
748
|
min: number | null;
|
|
749
|
+
max: number | null;
|
|
753
750
|
};
|
|
754
751
|
lastViewedByClient: string | null;
|
|
755
752
|
lastViewedByClientTimestamp: number | null;
|
|
756
753
|
hires: number | null;
|
|
757
754
|
interviewing: number | null;
|
|
758
755
|
invitesSent: number | null;
|
|
756
|
+
unansweredInvites: number | null;
|
|
757
|
+
updatedAt: number | null;
|
|
759
758
|
}>> | null | undefined;
|
|
760
759
|
activityDelta?: {
|
|
761
|
-
unansweredInvites: number;
|
|
762
760
|
proposals: number;
|
|
763
761
|
hires: number;
|
|
764
762
|
interviewing: number;
|
|
765
763
|
invitesSent: number;
|
|
764
|
+
unansweredInvites: number;
|
|
766
765
|
} | null | undefined;
|
|
767
766
|
}[];
|
|
767
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
768
768
|
usAccountCookies?: any[] | undefined;
|
|
769
769
|
ukAccountCookies?: any[] | undefined;
|
|
770
770
|
}>;
|
|
@@ -777,18 +777,18 @@ export declare const feedScrapeResultSchema: import("zod").ZodObject<{
|
|
|
777
777
|
isFeatured: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
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
|
+
uid: string | null;
|
|
780
781
|
title: string | null;
|
|
781
|
-
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
782
782
|
datetime: string | null;
|
|
783
|
-
uid: string | null;
|
|
784
783
|
jobUrl: string | null;
|
|
784
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
785
785
|
isFeatured: boolean | null;
|
|
786
786
|
}, {
|
|
787
|
+
uid: string | null;
|
|
787
788
|
title: string | null;
|
|
788
|
-
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
789
789
|
datetime: string | null;
|
|
790
|
-
uid: string | null;
|
|
791
790
|
jobUrl: string | null;
|
|
791
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
792
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">]>;
|
|
@@ -797,11 +797,11 @@ export declare const feedScrapeResultSchema: import("zod").ZodObject<{
|
|
|
797
797
|
}, "strip", import("zod").ZodTypeAny, {
|
|
798
798
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
799
799
|
listings: {
|
|
800
|
+
uid: string | null;
|
|
800
801
|
title: string | null;
|
|
801
|
-
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
802
802
|
datetime: string | null;
|
|
803
|
-
uid: string | null;
|
|
804
803
|
jobUrl: string | null;
|
|
804
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
805
805
|
isFeatured: boolean | null;
|
|
806
806
|
}[];
|
|
807
807
|
usAccountCookies?: any[] | undefined;
|
|
@@ -809,11 +809,11 @@ export declare const feedScrapeResultSchema: import("zod").ZodObject<{
|
|
|
809
809
|
}, {
|
|
810
810
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
811
811
|
listings: {
|
|
812
|
+
uid: string | null;
|
|
812
813
|
title: string | null;
|
|
813
|
-
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
814
814
|
datetime: string | null;
|
|
815
|
-
uid: string | null;
|
|
816
815
|
jobUrl: string | null;
|
|
816
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
817
817
|
isFeatured: boolean | null;
|
|
818
818
|
}[];
|
|
819
819
|
usAccountCookies?: any[] | undefined;
|