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
|
@@ -73,20 +73,20 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
73
73
|
value: import("zod").ZodString;
|
|
74
74
|
skill: import("zod").ZodNullable<import("zod").ZodAny>;
|
|
75
75
|
}, "strip", import("zod").ZodTypeAny, {
|
|
76
|
-
customValue: string | null;
|
|
77
|
-
label: string;
|
|
78
|
-
name: string;
|
|
79
|
-
sortOrder: number;
|
|
80
76
|
type: string;
|
|
77
|
+
name: string;
|
|
81
78
|
value: string;
|
|
82
|
-
skill?: any;
|
|
83
|
-
}, {
|
|
84
|
-
customValue: string | null;
|
|
85
79
|
label: string;
|
|
86
|
-
|
|
80
|
+
customValue: string | null;
|
|
87
81
|
sortOrder: number;
|
|
82
|
+
skill?: any;
|
|
83
|
+
}, {
|
|
88
84
|
type: string;
|
|
85
|
+
name: string;
|
|
89
86
|
value: string;
|
|
87
|
+
label: string;
|
|
88
|
+
customValue: string | null;
|
|
89
|
+
sortOrder: number;
|
|
90
90
|
skill?: any;
|
|
91
91
|
}>, "many">;
|
|
92
92
|
clientActivity: import("zod").ZodObject<{
|
|
@@ -167,6 +167,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
167
167
|
risingTalent: boolean;
|
|
168
168
|
shouldHavePortfolio: boolean;
|
|
169
169
|
locationCheckRequired: boolean;
|
|
170
|
+
location?: any;
|
|
171
|
+
group?: any;
|
|
172
|
+
regions?: any;
|
|
170
173
|
countries?: any;
|
|
171
174
|
earnings?: any;
|
|
172
175
|
groupRecno?: any;
|
|
@@ -174,12 +177,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
174
177
|
localDescription?: any;
|
|
175
178
|
localFlexibilityDescription?: any;
|
|
176
179
|
onSiteType?: any;
|
|
177
|
-
regions?: any;
|
|
178
180
|
states?: any;
|
|
179
181
|
tests?: any;
|
|
180
182
|
timezones?: any;
|
|
181
|
-
group?: any;
|
|
182
|
-
location?: any;
|
|
183
183
|
locations?: any;
|
|
184
184
|
}, {
|
|
185
185
|
type: number;
|
|
@@ -190,6 +190,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
190
190
|
risingTalent: boolean;
|
|
191
191
|
shouldHavePortfolio: boolean;
|
|
192
192
|
locationCheckRequired: boolean;
|
|
193
|
+
location?: any;
|
|
194
|
+
group?: any;
|
|
195
|
+
regions?: any;
|
|
193
196
|
countries?: any;
|
|
194
197
|
earnings?: any;
|
|
195
198
|
groupRecno?: any;
|
|
@@ -197,29 +200,32 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
197
200
|
localDescription?: any;
|
|
198
201
|
localFlexibilityDescription?: any;
|
|
199
202
|
onSiteType?: any;
|
|
200
|
-
regions?: any;
|
|
201
203
|
states?: any;
|
|
202
204
|
tests?: any;
|
|
203
205
|
timezones?: any;
|
|
204
|
-
group?: any;
|
|
205
|
-
location?: any;
|
|
206
206
|
locations?: any;
|
|
207
207
|
}>;
|
|
208
208
|
questions: import("zod").ZodArray<import("zod").ZodObject<{
|
|
209
209
|
question: import("zod").ZodString;
|
|
210
210
|
position: import("zod").ZodNumber;
|
|
211
211
|
}, "strip", import("zod").ZodTypeAny, {
|
|
212
|
-
question: string;
|
|
213
212
|
position: number;
|
|
214
|
-
}, {
|
|
215
213
|
question: string;
|
|
214
|
+
}, {
|
|
216
215
|
position: number;
|
|
216
|
+
question: string;
|
|
217
217
|
}>, "many">;
|
|
218
218
|
durationIdV3: import("zod").ZodNumber;
|
|
219
219
|
durationLabel: import("zod").ZodString;
|
|
220
220
|
}, "strip", import("zod").ZodTypeAny, {
|
|
221
221
|
type: number;
|
|
222
|
+
title: string;
|
|
223
|
+
description: string;
|
|
222
224
|
status: number;
|
|
225
|
+
questions: {
|
|
226
|
+
position: number;
|
|
227
|
+
question: string;
|
|
228
|
+
}[];
|
|
223
229
|
numberOfPositionsToHire: number;
|
|
224
230
|
category: {
|
|
225
231
|
name: string;
|
|
@@ -249,14 +255,13 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
249
255
|
hourlyBudgetType: string | null;
|
|
250
256
|
};
|
|
251
257
|
contractorTier: number;
|
|
252
|
-
description: string;
|
|
253
258
|
segmentationData: {
|
|
254
|
-
customValue: string | null;
|
|
255
|
-
label: string;
|
|
256
|
-
name: string;
|
|
257
|
-
sortOrder: number;
|
|
258
259
|
type: string;
|
|
260
|
+
name: string;
|
|
259
261
|
value: string;
|
|
262
|
+
label: string;
|
|
263
|
+
customValue: string | null;
|
|
264
|
+
sortOrder: number;
|
|
260
265
|
skill?: any;
|
|
261
266
|
}[];
|
|
262
267
|
clientActivity: {
|
|
@@ -272,7 +277,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
272
277
|
tags: string[];
|
|
273
278
|
};
|
|
274
279
|
uid: string;
|
|
275
|
-
title: string;
|
|
276
280
|
ciphertext: string;
|
|
277
281
|
access: number;
|
|
278
282
|
createdOn: string;
|
|
@@ -292,6 +296,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
292
296
|
risingTalent: boolean;
|
|
293
297
|
shouldHavePortfolio: boolean;
|
|
294
298
|
locationCheckRequired: boolean;
|
|
299
|
+
location?: any;
|
|
300
|
+
group?: any;
|
|
301
|
+
regions?: any;
|
|
295
302
|
countries?: any;
|
|
296
303
|
earnings?: any;
|
|
297
304
|
groupRecno?: any;
|
|
@@ -299,23 +306,22 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
299
306
|
localDescription?: any;
|
|
300
307
|
localFlexibilityDescription?: any;
|
|
301
308
|
onSiteType?: any;
|
|
302
|
-
regions?: any;
|
|
303
309
|
states?: any;
|
|
304
310
|
tests?: any;
|
|
305
311
|
timezones?: any;
|
|
306
|
-
group?: any;
|
|
307
|
-
location?: any;
|
|
308
312
|
locations?: any;
|
|
309
313
|
};
|
|
310
|
-
questions: {
|
|
311
|
-
question: string;
|
|
312
|
-
position: number;
|
|
313
|
-
}[];
|
|
314
314
|
durationIdV3: number;
|
|
315
315
|
durationLabel: string;
|
|
316
316
|
}, {
|
|
317
317
|
type: number;
|
|
318
|
+
title: string;
|
|
319
|
+
description: string;
|
|
318
320
|
status: number;
|
|
321
|
+
questions: {
|
|
322
|
+
position: number;
|
|
323
|
+
question: string;
|
|
324
|
+
}[];
|
|
319
325
|
numberOfPositionsToHire: number;
|
|
320
326
|
category: {
|
|
321
327
|
name: string;
|
|
@@ -345,14 +351,13 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
345
351
|
hourlyBudgetType: string | null;
|
|
346
352
|
};
|
|
347
353
|
contractorTier: number;
|
|
348
|
-
description: string;
|
|
349
354
|
segmentationData: {
|
|
350
|
-
customValue: string | null;
|
|
351
|
-
label: string;
|
|
352
|
-
name: string;
|
|
353
|
-
sortOrder: number;
|
|
354
355
|
type: string;
|
|
356
|
+
name: string;
|
|
355
357
|
value: string;
|
|
358
|
+
label: string;
|
|
359
|
+
customValue: string | null;
|
|
360
|
+
sortOrder: number;
|
|
356
361
|
skill?: any;
|
|
357
362
|
}[];
|
|
358
363
|
clientActivity: {
|
|
@@ -368,7 +373,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
368
373
|
tags: string[];
|
|
369
374
|
};
|
|
370
375
|
uid: string;
|
|
371
|
-
title: string;
|
|
372
376
|
ciphertext: string;
|
|
373
377
|
access: number;
|
|
374
378
|
createdOn: string;
|
|
@@ -388,6 +392,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
388
392
|
risingTalent: boolean;
|
|
389
393
|
shouldHavePortfolio: boolean;
|
|
390
394
|
locationCheckRequired: boolean;
|
|
395
|
+
location?: any;
|
|
396
|
+
group?: any;
|
|
397
|
+
regions?: any;
|
|
391
398
|
countries?: any;
|
|
392
399
|
earnings?: any;
|
|
393
400
|
groupRecno?: any;
|
|
@@ -395,18 +402,11 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
395
402
|
localDescription?: any;
|
|
396
403
|
localFlexibilityDescription?: any;
|
|
397
404
|
onSiteType?: any;
|
|
398
|
-
regions?: any;
|
|
399
405
|
states?: any;
|
|
400
406
|
tests?: any;
|
|
401
407
|
timezones?: any;
|
|
402
|
-
group?: any;
|
|
403
|
-
location?: any;
|
|
404
408
|
locations?: any;
|
|
405
409
|
};
|
|
406
|
-
questions: {
|
|
407
|
-
question: string;
|
|
408
|
-
position: number;
|
|
409
|
-
}[];
|
|
410
410
|
durationIdV3: number;
|
|
411
411
|
durationLabel: string;
|
|
412
412
|
}>;
|
|
@@ -454,15 +454,15 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
454
454
|
city: import("zod").ZodString;
|
|
455
455
|
country: import("zod").ZodString;
|
|
456
456
|
}, "strip", import("zod").ZodTypeAny, {
|
|
457
|
+
country: string;
|
|
457
458
|
offsetFromUtcMillis: number;
|
|
458
459
|
countryTimezone: string;
|
|
459
460
|
city: string;
|
|
460
|
-
country: string;
|
|
461
461
|
}, {
|
|
462
|
+
country: string;
|
|
462
463
|
offsetFromUtcMillis: number;
|
|
463
464
|
countryTimezone: string;
|
|
464
465
|
city: string;
|
|
465
|
-
country: string;
|
|
466
466
|
}>;
|
|
467
467
|
company: import("zod").ZodObject<{
|
|
468
468
|
isEDCReplicated: import("zod").ZodNullable<import("zod").ZodAny>;
|
|
@@ -471,27 +471,27 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
471
471
|
industry: import("zod").ZodString;
|
|
472
472
|
size: import("zod").ZodNumber;
|
|
473
473
|
}, "strip", import("zod").ZodTypeAny, {
|
|
474
|
-
industry: string;
|
|
475
474
|
size: number;
|
|
476
|
-
}, {
|
|
477
475
|
industry: string;
|
|
476
|
+
}, {
|
|
478
477
|
size: number;
|
|
478
|
+
industry: string;
|
|
479
479
|
}>;
|
|
480
480
|
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
481
481
|
}, "strip", import("zod").ZodTypeAny, {
|
|
482
482
|
name: string | null;
|
|
483
483
|
contractDate: string;
|
|
484
484
|
profile: {
|
|
485
|
-
industry: string;
|
|
486
485
|
size: number;
|
|
486
|
+
industry: string;
|
|
487
487
|
};
|
|
488
488
|
isEDCReplicated?: any;
|
|
489
489
|
}, {
|
|
490
490
|
name: string | null;
|
|
491
491
|
contractDate: string;
|
|
492
492
|
profile: {
|
|
493
|
-
industry: string;
|
|
494
493
|
size: number;
|
|
494
|
+
industry: string;
|
|
495
495
|
};
|
|
496
496
|
isEDCReplicated?: any;
|
|
497
497
|
}>;
|
|
@@ -514,10 +514,10 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
514
514
|
}>>;
|
|
515
515
|
}, "strip", import("zod").ZodTypeAny, {
|
|
516
516
|
location: {
|
|
517
|
+
country: string;
|
|
517
518
|
offsetFromUtcMillis: number;
|
|
518
519
|
countryTimezone: string;
|
|
519
520
|
city: string;
|
|
520
|
-
country: string;
|
|
521
521
|
};
|
|
522
522
|
isEnterprise: boolean;
|
|
523
523
|
isPaymentMethodVerified: boolean;
|
|
@@ -536,8 +536,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
536
536
|
name: string | null;
|
|
537
537
|
contractDate: string;
|
|
538
538
|
profile: {
|
|
539
|
-
industry: string;
|
|
540
539
|
size: number;
|
|
540
|
+
industry: string;
|
|
541
541
|
};
|
|
542
542
|
isEDCReplicated?: any;
|
|
543
543
|
};
|
|
@@ -550,10 +550,10 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
550
550
|
} | null;
|
|
551
551
|
}, {
|
|
552
552
|
location: {
|
|
553
|
+
country: string;
|
|
553
554
|
offsetFromUtcMillis: number;
|
|
554
555
|
countryTimezone: string;
|
|
555
556
|
city: string;
|
|
556
|
-
country: string;
|
|
557
557
|
};
|
|
558
558
|
isEnterprise: boolean;
|
|
559
559
|
isPaymentMethodVerified: boolean;
|
|
@@ -572,8 +572,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
572
572
|
name: string | null;
|
|
573
573
|
contractDate: string;
|
|
574
574
|
profile: {
|
|
575
|
-
industry: string;
|
|
576
575
|
size: number;
|
|
576
|
+
industry: string;
|
|
577
577
|
};
|
|
578
578
|
isEDCReplicated?: any;
|
|
579
579
|
};
|
|
@@ -757,16 +757,16 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
757
757
|
type: number;
|
|
758
758
|
title: string;
|
|
759
759
|
access: number;
|
|
760
|
+
id?: any;
|
|
760
761
|
uid?: any;
|
|
761
762
|
ciphertext?: any;
|
|
762
|
-
id?: any;
|
|
763
763
|
}, {
|
|
764
764
|
type: number;
|
|
765
765
|
title: string;
|
|
766
766
|
access: number;
|
|
767
|
+
id?: any;
|
|
767
768
|
uid?: any;
|
|
768
769
|
ciphertext?: any;
|
|
769
|
-
id?: any;
|
|
770
770
|
}>;
|
|
771
771
|
contractorInfo: import("zod").ZodObject<{
|
|
772
772
|
contractorName: import("zod").ZodString;
|
|
@@ -822,6 +822,12 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
822
822
|
}>;
|
|
823
823
|
isEDCPublic: import("zod").ZodBoolean;
|
|
824
824
|
}, "strip", import("zod").ZodTypeAny, {
|
|
825
|
+
feedback: {
|
|
826
|
+
score: number;
|
|
827
|
+
feedbackSuppressed: boolean;
|
|
828
|
+
comment: string;
|
|
829
|
+
feedback_suppressed: boolean;
|
|
830
|
+
};
|
|
825
831
|
startDate: string;
|
|
826
832
|
endDate: string;
|
|
827
833
|
totalCharge: number;
|
|
@@ -830,9 +836,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
830
836
|
type: number;
|
|
831
837
|
title: string;
|
|
832
838
|
access: number;
|
|
839
|
+
id?: any;
|
|
833
840
|
uid?: any;
|
|
834
841
|
ciphertext?: any;
|
|
835
|
-
id?: any;
|
|
836
842
|
};
|
|
837
843
|
contractorInfo: {
|
|
838
844
|
ciphertext: string;
|
|
@@ -842,12 +848,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
842
848
|
rate: {
|
|
843
849
|
amount: number;
|
|
844
850
|
} | null;
|
|
845
|
-
feedback: {
|
|
846
|
-
score: number;
|
|
847
|
-
feedbackSuppressed: boolean;
|
|
848
|
-
comment: string;
|
|
849
|
-
feedback_suppressed: boolean;
|
|
850
|
-
};
|
|
851
851
|
feedbackToClient: {
|
|
852
852
|
score: number;
|
|
853
853
|
feedbackSuppressed: boolean;
|
|
@@ -859,6 +859,12 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
859
859
|
isEDCReplicated?: any;
|
|
860
860
|
isPtcJob?: any;
|
|
861
861
|
}, {
|
|
862
|
+
feedback: {
|
|
863
|
+
score: number;
|
|
864
|
+
feedbackSuppressed: boolean;
|
|
865
|
+
comment: string;
|
|
866
|
+
feedback_suppressed: boolean;
|
|
867
|
+
};
|
|
862
868
|
startDate: string;
|
|
863
869
|
endDate: string;
|
|
864
870
|
totalCharge: number;
|
|
@@ -867,9 +873,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
867
873
|
type: number;
|
|
868
874
|
title: string;
|
|
869
875
|
access: number;
|
|
876
|
+
id?: any;
|
|
870
877
|
uid?: any;
|
|
871
878
|
ciphertext?: any;
|
|
872
|
-
id?: any;
|
|
873
879
|
};
|
|
874
880
|
contractorInfo: {
|
|
875
881
|
ciphertext: string;
|
|
@@ -879,12 +885,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
879
885
|
rate: {
|
|
880
886
|
amount: number;
|
|
881
887
|
} | null;
|
|
882
|
-
feedback: {
|
|
883
|
-
score: number;
|
|
884
|
-
feedbackSuppressed: boolean;
|
|
885
|
-
comment: string;
|
|
886
|
-
feedback_suppressed: boolean;
|
|
887
|
-
};
|
|
888
888
|
feedbackToClient: {
|
|
889
889
|
score: number;
|
|
890
890
|
feedbackSuppressed: boolean;
|
|
@@ -905,14 +905,14 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
905
905
|
id: import("zod").ZodString;
|
|
906
906
|
uid: import("zod").ZodString;
|
|
907
907
|
}, "strip", import("zod").ZodTypeAny, {
|
|
908
|
-
uid: string;
|
|
909
908
|
id: string;
|
|
909
|
+
uid: string;
|
|
910
910
|
freeText: string | null;
|
|
911
911
|
ontologyId: string;
|
|
912
912
|
prefLabel: string;
|
|
913
913
|
}, {
|
|
914
|
-
uid: string;
|
|
915
914
|
id: string;
|
|
915
|
+
uid: string;
|
|
916
916
|
freeText: string | null;
|
|
917
917
|
ontologyId: string;
|
|
918
918
|
prefLabel: string;
|
|
@@ -933,8 +933,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
933
933
|
}>, "many">;
|
|
934
934
|
}, "strip", import("zod").ZodTypeAny, {
|
|
935
935
|
occupation: {
|
|
936
|
-
uid: string;
|
|
937
936
|
id: string;
|
|
937
|
+
uid: string;
|
|
938
938
|
freeText: string | null;
|
|
939
939
|
ontologyId: string;
|
|
940
940
|
prefLabel: string;
|
|
@@ -947,8 +947,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
947
947
|
}[];
|
|
948
948
|
}, {
|
|
949
949
|
occupation: {
|
|
950
|
-
uid: string;
|
|
951
950
|
id: string;
|
|
951
|
+
uid: string;
|
|
952
952
|
freeText: string | null;
|
|
953
953
|
ontologyId: string;
|
|
954
954
|
prefLabel: string;
|
|
@@ -1052,11 +1052,11 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1052
1052
|
isDeclined: import("zod").ZodBoolean;
|
|
1053
1053
|
reason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1054
1054
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1055
|
-
isDeclined: boolean;
|
|
1056
1055
|
reason: string | null;
|
|
1057
|
-
}, {
|
|
1058
1056
|
isDeclined: boolean;
|
|
1057
|
+
}, {
|
|
1059
1058
|
reason: string | null;
|
|
1059
|
+
isDeclined: boolean;
|
|
1060
1060
|
}>;
|
|
1061
1061
|
canApplyOnBehalfOfAgencyFreelancers: import("zod").ZodBoolean;
|
|
1062
1062
|
canSubmitMoreProposals: import("zod").ZodBoolean;
|
|
@@ -1065,8 +1065,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1065
1065
|
freelancerAllowed: boolean;
|
|
1066
1066
|
clientAllowed: boolean;
|
|
1067
1067
|
userIntentEvaluation: {
|
|
1068
|
-
isDeclined: boolean;
|
|
1069
1068
|
reason: string | null;
|
|
1069
|
+
isDeclined: boolean;
|
|
1070
1070
|
};
|
|
1071
1071
|
canApplyOnBehalfOfAgencyFreelancers: boolean;
|
|
1072
1072
|
canSubmitMoreProposals: boolean;
|
|
@@ -1075,8 +1075,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1075
1075
|
freelancerAllowed: boolean;
|
|
1076
1076
|
clientAllowed: boolean;
|
|
1077
1077
|
userIntentEvaluation: {
|
|
1078
|
-
isDeclined: boolean;
|
|
1079
1078
|
reason: string | null;
|
|
1079
|
+
isDeclined: boolean;
|
|
1080
1080
|
};
|
|
1081
1081
|
canApplyOnBehalfOfAgencyFreelancers: boolean;
|
|
1082
1082
|
canSubmitMoreProposals: boolean;
|
|
@@ -1088,13 +1088,13 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1088
1088
|
description: import("zod").ZodString;
|
|
1089
1089
|
url: import("zod").ZodString;
|
|
1090
1090
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1091
|
-
description: string;
|
|
1092
|
-
title: string;
|
|
1093
1091
|
url: string;
|
|
1094
|
-
}, {
|
|
1095
|
-
description: string;
|
|
1096
1092
|
title: string;
|
|
1093
|
+
description: string;
|
|
1094
|
+
}, {
|
|
1097
1095
|
url: string;
|
|
1096
|
+
title: string;
|
|
1097
|
+
description: string;
|
|
1098
1098
|
}>;
|
|
1099
1099
|
teamUid: import("zod").ZodNullable<import("zod").ZodAny>;
|
|
1100
1100
|
proposalPermissions: import("zod").ZodObject<{
|
|
@@ -1117,10 +1117,25 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1117
1117
|
hasAiInterview: import("zod").ZodBoolean;
|
|
1118
1118
|
talentFeePromotion: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
1119
1119
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1120
|
+
auth: {
|
|
1121
|
+
canFlagOpening: boolean;
|
|
1122
|
+
canPostJob: boolean;
|
|
1123
|
+
domestic: {
|
|
1124
|
+
country: string | null;
|
|
1125
|
+
isInfographicTooltipAvailable: boolean;
|
|
1126
|
+
};
|
|
1127
|
+
};
|
|
1128
|
+
isPhoneVerified: boolean;
|
|
1120
1129
|
cache: boolean;
|
|
1121
1130
|
job: {
|
|
1122
1131
|
type: number;
|
|
1132
|
+
title: string;
|
|
1133
|
+
description: string;
|
|
1123
1134
|
status: number;
|
|
1135
|
+
questions: {
|
|
1136
|
+
position: number;
|
|
1137
|
+
question: string;
|
|
1138
|
+
}[];
|
|
1124
1139
|
numberOfPositionsToHire: number;
|
|
1125
1140
|
category: {
|
|
1126
1141
|
name: string;
|
|
@@ -1150,14 +1165,13 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1150
1165
|
hourlyBudgetType: string | null;
|
|
1151
1166
|
};
|
|
1152
1167
|
contractorTier: number;
|
|
1153
|
-
description: string;
|
|
1154
1168
|
segmentationData: {
|
|
1155
|
-
customValue: string | null;
|
|
1156
|
-
label: string;
|
|
1157
|
-
name: string;
|
|
1158
|
-
sortOrder: number;
|
|
1159
1169
|
type: string;
|
|
1170
|
+
name: string;
|
|
1160
1171
|
value: string;
|
|
1172
|
+
label: string;
|
|
1173
|
+
customValue: string | null;
|
|
1174
|
+
sortOrder: number;
|
|
1161
1175
|
skill?: any;
|
|
1162
1176
|
}[];
|
|
1163
1177
|
clientActivity: {
|
|
@@ -1173,7 +1187,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1173
1187
|
tags: string[];
|
|
1174
1188
|
};
|
|
1175
1189
|
uid: string;
|
|
1176
|
-
title: string;
|
|
1177
1190
|
ciphertext: string;
|
|
1178
1191
|
access: number;
|
|
1179
1192
|
createdOn: string;
|
|
@@ -1193,6 +1206,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1193
1206
|
risingTalent: boolean;
|
|
1194
1207
|
shouldHavePortfolio: boolean;
|
|
1195
1208
|
locationCheckRequired: boolean;
|
|
1209
|
+
location?: any;
|
|
1210
|
+
group?: any;
|
|
1211
|
+
regions?: any;
|
|
1196
1212
|
countries?: any;
|
|
1197
1213
|
earnings?: any;
|
|
1198
1214
|
groupRecno?: any;
|
|
@@ -1200,27 +1216,20 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1200
1216
|
localDescription?: any;
|
|
1201
1217
|
localFlexibilityDescription?: any;
|
|
1202
1218
|
onSiteType?: any;
|
|
1203
|
-
regions?: any;
|
|
1204
1219
|
states?: any;
|
|
1205
1220
|
tests?: any;
|
|
1206
1221
|
timezones?: any;
|
|
1207
|
-
group?: any;
|
|
1208
|
-
location?: any;
|
|
1209
1222
|
locations?: any;
|
|
1210
1223
|
};
|
|
1211
|
-
questions: {
|
|
1212
|
-
question: string;
|
|
1213
|
-
position: number;
|
|
1214
|
-
}[];
|
|
1215
1224
|
durationIdV3: number;
|
|
1216
1225
|
durationLabel: string;
|
|
1217
1226
|
};
|
|
1218
1227
|
buyer: {
|
|
1219
1228
|
location: {
|
|
1229
|
+
country: string;
|
|
1220
1230
|
offsetFromUtcMillis: number;
|
|
1221
1231
|
countryTimezone: string;
|
|
1222
1232
|
city: string;
|
|
1223
|
-
country: string;
|
|
1224
1233
|
};
|
|
1225
1234
|
isEnterprise: boolean;
|
|
1226
1235
|
isPaymentMethodVerified: boolean;
|
|
@@ -1239,8 +1248,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1239
1248
|
name: string | null;
|
|
1240
1249
|
contractDate: string;
|
|
1241
1250
|
profile: {
|
|
1242
|
-
industry: string;
|
|
1243
1251
|
size: number;
|
|
1252
|
+
industry: string;
|
|
1244
1253
|
};
|
|
1245
1254
|
isEDCReplicated?: any;
|
|
1246
1255
|
};
|
|
@@ -1280,6 +1289,12 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1280
1289
|
isVisitor: boolean;
|
|
1281
1290
|
openJobs: any[];
|
|
1282
1291
|
workHistory: {
|
|
1292
|
+
feedback: {
|
|
1293
|
+
score: number;
|
|
1294
|
+
feedbackSuppressed: boolean;
|
|
1295
|
+
comment: string;
|
|
1296
|
+
feedback_suppressed: boolean;
|
|
1297
|
+
};
|
|
1283
1298
|
startDate: string;
|
|
1284
1299
|
endDate: string;
|
|
1285
1300
|
totalCharge: number;
|
|
@@ -1288,9 +1303,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1288
1303
|
type: number;
|
|
1289
1304
|
title: string;
|
|
1290
1305
|
access: number;
|
|
1306
|
+
id?: any;
|
|
1291
1307
|
uid?: any;
|
|
1292
1308
|
ciphertext?: any;
|
|
1293
|
-
id?: any;
|
|
1294
1309
|
};
|
|
1295
1310
|
contractorInfo: {
|
|
1296
1311
|
ciphertext: string;
|
|
@@ -1300,12 +1315,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1300
1315
|
rate: {
|
|
1301
1316
|
amount: number;
|
|
1302
1317
|
} | null;
|
|
1303
|
-
feedback: {
|
|
1304
|
-
score: number;
|
|
1305
|
-
feedbackSuppressed: boolean;
|
|
1306
|
-
comment: string;
|
|
1307
|
-
feedback_suppressed: boolean;
|
|
1308
|
-
};
|
|
1309
1318
|
feedbackToClient: {
|
|
1310
1319
|
score: number;
|
|
1311
1320
|
feedbackSuppressed: boolean;
|
|
@@ -1320,8 +1329,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1320
1329
|
similarJobs: any[];
|
|
1321
1330
|
sands: {
|
|
1322
1331
|
occupation: {
|
|
1323
|
-
uid: string;
|
|
1324
1332
|
id: string;
|
|
1333
|
+
uid: string;
|
|
1325
1334
|
freeText: string | null;
|
|
1326
1335
|
ontologyId: string;
|
|
1327
1336
|
prefLabel: string;
|
|
@@ -1333,14 +1342,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1333
1342
|
isFreeText: boolean;
|
|
1334
1343
|
}[];
|
|
1335
1344
|
};
|
|
1336
|
-
auth: {
|
|
1337
|
-
canFlagOpening: boolean;
|
|
1338
|
-
canPostJob: boolean;
|
|
1339
|
-
domestic: {
|
|
1340
|
-
country: string | null;
|
|
1341
|
-
isInfographicTooltipAvailable: boolean;
|
|
1342
|
-
};
|
|
1343
|
-
};
|
|
1344
1345
|
applicants: {
|
|
1345
1346
|
applicantsBidsStats?: any;
|
|
1346
1347
|
};
|
|
@@ -1349,8 +1350,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1349
1350
|
freelancerAllowed: boolean;
|
|
1350
1351
|
clientAllowed: boolean;
|
|
1351
1352
|
userIntentEvaluation: {
|
|
1352
|
-
isDeclined: boolean;
|
|
1353
1353
|
reason: string | null;
|
|
1354
|
+
isDeclined: boolean;
|
|
1354
1355
|
};
|
|
1355
1356
|
canApplyOnBehalfOfAgencyFreelancers: boolean;
|
|
1356
1357
|
canSubmitMoreProposals: boolean;
|
|
@@ -1358,16 +1359,15 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1358
1359
|
};
|
|
1359
1360
|
profileMatchServiceUid: string;
|
|
1360
1361
|
seo: {
|
|
1361
|
-
description: string;
|
|
1362
|
-
title: string;
|
|
1363
1362
|
url: string;
|
|
1363
|
+
title: string;
|
|
1364
|
+
description: string;
|
|
1364
1365
|
};
|
|
1365
1366
|
proposalPermissions: {
|
|
1366
1367
|
freelancerAllowed: boolean;
|
|
1367
1368
|
clientAllowed: boolean;
|
|
1368
1369
|
};
|
|
1369
1370
|
isGroupOpportunity: boolean;
|
|
1370
|
-
isPhoneVerified: boolean;
|
|
1371
1371
|
isApplyBlocked: boolean;
|
|
1372
1372
|
hasAiInterview: boolean;
|
|
1373
1373
|
connects?: {
|
|
@@ -1390,10 +1390,25 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1390
1390
|
errorResponse?: any;
|
|
1391
1391
|
talentFeePromotion?: boolean | null | undefined;
|
|
1392
1392
|
}, {
|
|
1393
|
+
auth: {
|
|
1394
|
+
canFlagOpening: boolean;
|
|
1395
|
+
canPostJob: boolean;
|
|
1396
|
+
domestic: {
|
|
1397
|
+
country: string | null;
|
|
1398
|
+
isInfographicTooltipAvailable: boolean;
|
|
1399
|
+
};
|
|
1400
|
+
};
|
|
1401
|
+
isPhoneVerified: boolean;
|
|
1393
1402
|
cache: boolean;
|
|
1394
1403
|
job: {
|
|
1395
1404
|
type: number;
|
|
1405
|
+
title: string;
|
|
1406
|
+
description: string;
|
|
1396
1407
|
status: number;
|
|
1408
|
+
questions: {
|
|
1409
|
+
position: number;
|
|
1410
|
+
question: string;
|
|
1411
|
+
}[];
|
|
1397
1412
|
numberOfPositionsToHire: number;
|
|
1398
1413
|
category: {
|
|
1399
1414
|
name: string;
|
|
@@ -1423,14 +1438,13 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1423
1438
|
hourlyBudgetType: string | null;
|
|
1424
1439
|
};
|
|
1425
1440
|
contractorTier: number;
|
|
1426
|
-
description: string;
|
|
1427
1441
|
segmentationData: {
|
|
1428
|
-
customValue: string | null;
|
|
1429
|
-
label: string;
|
|
1430
|
-
name: string;
|
|
1431
|
-
sortOrder: number;
|
|
1432
1442
|
type: string;
|
|
1443
|
+
name: string;
|
|
1433
1444
|
value: string;
|
|
1445
|
+
label: string;
|
|
1446
|
+
customValue: string | null;
|
|
1447
|
+
sortOrder: number;
|
|
1434
1448
|
skill?: any;
|
|
1435
1449
|
}[];
|
|
1436
1450
|
clientActivity: {
|
|
@@ -1446,7 +1460,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1446
1460
|
tags: string[];
|
|
1447
1461
|
};
|
|
1448
1462
|
uid: string;
|
|
1449
|
-
title: string;
|
|
1450
1463
|
ciphertext: string;
|
|
1451
1464
|
access: number;
|
|
1452
1465
|
createdOn: string;
|
|
@@ -1466,6 +1479,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1466
1479
|
risingTalent: boolean;
|
|
1467
1480
|
shouldHavePortfolio: boolean;
|
|
1468
1481
|
locationCheckRequired: boolean;
|
|
1482
|
+
location?: any;
|
|
1483
|
+
group?: any;
|
|
1484
|
+
regions?: any;
|
|
1469
1485
|
countries?: any;
|
|
1470
1486
|
earnings?: any;
|
|
1471
1487
|
groupRecno?: any;
|
|
@@ -1473,27 +1489,20 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1473
1489
|
localDescription?: any;
|
|
1474
1490
|
localFlexibilityDescription?: any;
|
|
1475
1491
|
onSiteType?: any;
|
|
1476
|
-
regions?: any;
|
|
1477
1492
|
states?: any;
|
|
1478
1493
|
tests?: any;
|
|
1479
1494
|
timezones?: any;
|
|
1480
|
-
group?: any;
|
|
1481
|
-
location?: any;
|
|
1482
1495
|
locations?: any;
|
|
1483
1496
|
};
|
|
1484
|
-
questions: {
|
|
1485
|
-
question: string;
|
|
1486
|
-
position: number;
|
|
1487
|
-
}[];
|
|
1488
1497
|
durationIdV3: number;
|
|
1489
1498
|
durationLabel: string;
|
|
1490
1499
|
};
|
|
1491
1500
|
buyer: {
|
|
1492
1501
|
location: {
|
|
1502
|
+
country: string;
|
|
1493
1503
|
offsetFromUtcMillis: number;
|
|
1494
1504
|
countryTimezone: string;
|
|
1495
1505
|
city: string;
|
|
1496
|
-
country: string;
|
|
1497
1506
|
};
|
|
1498
1507
|
isEnterprise: boolean;
|
|
1499
1508
|
isPaymentMethodVerified: boolean;
|
|
@@ -1512,8 +1521,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1512
1521
|
name: string | null;
|
|
1513
1522
|
contractDate: string;
|
|
1514
1523
|
profile: {
|
|
1515
|
-
industry: string;
|
|
1516
1524
|
size: number;
|
|
1525
|
+
industry: string;
|
|
1517
1526
|
};
|
|
1518
1527
|
isEDCReplicated?: any;
|
|
1519
1528
|
};
|
|
@@ -1553,6 +1562,12 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1553
1562
|
isVisitor: boolean;
|
|
1554
1563
|
openJobs: any[];
|
|
1555
1564
|
workHistory: {
|
|
1565
|
+
feedback: {
|
|
1566
|
+
score: number;
|
|
1567
|
+
feedbackSuppressed: boolean;
|
|
1568
|
+
comment: string;
|
|
1569
|
+
feedback_suppressed: boolean;
|
|
1570
|
+
};
|
|
1556
1571
|
startDate: string;
|
|
1557
1572
|
endDate: string;
|
|
1558
1573
|
totalCharge: number;
|
|
@@ -1561,9 +1576,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1561
1576
|
type: number;
|
|
1562
1577
|
title: string;
|
|
1563
1578
|
access: number;
|
|
1579
|
+
id?: any;
|
|
1564
1580
|
uid?: any;
|
|
1565
1581
|
ciphertext?: any;
|
|
1566
|
-
id?: any;
|
|
1567
1582
|
};
|
|
1568
1583
|
contractorInfo: {
|
|
1569
1584
|
ciphertext: string;
|
|
@@ -1573,12 +1588,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1573
1588
|
rate: {
|
|
1574
1589
|
amount: number;
|
|
1575
1590
|
} | null;
|
|
1576
|
-
feedback: {
|
|
1577
|
-
score: number;
|
|
1578
|
-
feedbackSuppressed: boolean;
|
|
1579
|
-
comment: string;
|
|
1580
|
-
feedback_suppressed: boolean;
|
|
1581
|
-
};
|
|
1582
1591
|
feedbackToClient: {
|
|
1583
1592
|
score: number;
|
|
1584
1593
|
feedbackSuppressed: boolean;
|
|
@@ -1593,8 +1602,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1593
1602
|
similarJobs: any[];
|
|
1594
1603
|
sands: {
|
|
1595
1604
|
occupation: {
|
|
1596
|
-
uid: string;
|
|
1597
1605
|
id: string;
|
|
1606
|
+
uid: string;
|
|
1598
1607
|
freeText: string | null;
|
|
1599
1608
|
ontologyId: string;
|
|
1600
1609
|
prefLabel: string;
|
|
@@ -1606,14 +1615,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1606
1615
|
isFreeText: boolean;
|
|
1607
1616
|
}[];
|
|
1608
1617
|
};
|
|
1609
|
-
auth: {
|
|
1610
|
-
canFlagOpening: boolean;
|
|
1611
|
-
canPostJob: boolean;
|
|
1612
|
-
domestic: {
|
|
1613
|
-
country: string | null;
|
|
1614
|
-
isInfographicTooltipAvailable: boolean;
|
|
1615
|
-
};
|
|
1616
|
-
};
|
|
1617
1618
|
applicants: {
|
|
1618
1619
|
applicantsBidsStats?: any;
|
|
1619
1620
|
};
|
|
@@ -1622,8 +1623,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1622
1623
|
freelancerAllowed: boolean;
|
|
1623
1624
|
clientAllowed: boolean;
|
|
1624
1625
|
userIntentEvaluation: {
|
|
1625
|
-
isDeclined: boolean;
|
|
1626
1626
|
reason: string | null;
|
|
1627
|
+
isDeclined: boolean;
|
|
1627
1628
|
};
|
|
1628
1629
|
canApplyOnBehalfOfAgencyFreelancers: boolean;
|
|
1629
1630
|
canSubmitMoreProposals: boolean;
|
|
@@ -1631,16 +1632,15 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1631
1632
|
};
|
|
1632
1633
|
profileMatchServiceUid: string;
|
|
1633
1634
|
seo: {
|
|
1634
|
-
description: string;
|
|
1635
|
-
title: string;
|
|
1636
1635
|
url: string;
|
|
1636
|
+
title: string;
|
|
1637
|
+
description: string;
|
|
1637
1638
|
};
|
|
1638
1639
|
proposalPermissions: {
|
|
1639
1640
|
freelancerAllowed: boolean;
|
|
1640
1641
|
clientAllowed: boolean;
|
|
1641
1642
|
};
|
|
1642
1643
|
isGroupOpportunity: boolean;
|
|
1643
|
-
isPhoneVerified: boolean;
|
|
1644
1644
|
isApplyBlocked: boolean;
|
|
1645
1645
|
hasAiInterview: boolean;
|
|
1646
1646
|
connects?: {
|