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