lancer-shared 1.2.317 → 1.2.319
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/schemas/account/bidder-account.d.ts +49 -49
- package/dist/schemas/account/scraper-account.d.ts +27 -27
- package/dist/schemas/agent/index.d.ts +290 -290
- package/dist/schemas/agent/proposal.d.ts +4 -4
- package/dist/schemas/bidder/bid.d.ts +2946 -2946
- package/dist/schemas/campaign/campaign-analytics.d.ts +1419 -1419
- 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 +579 -579
- 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/chat/index.d.ts +28 -28
- 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 +205 -205
- package/dist/schemas/job/job-api.d.ts +4 -4
- package/dist/schemas/job/job-details.d.ts +713 -713
- package/dist/schemas/job/job-filters.d.ts +55 -55
- package/dist/schemas/job/job-listing.d.ts +114 -114
- package/dist/schemas/job/nuxt.d.ts +130 -130
- package/dist/schemas/lead/index.d.ts +1303 -1303
- 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 +346 -346
- package/dist/schemas/logger/feed/feed-scrape.d.ts +6 -6
- package/dist/schemas/logger/log-event.d.ts +120 -120
- package/dist/schemas/logger/scraper-events.d.ts +81 -81
- 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 +120 -120
- 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 +966 -961
- package/dist/schemas/scraper/scrape-result.d.ts +228 -228
- package/dist/schemas/scraper/upwork-profile.d.ts +16 -16
- package/dist/schemas/shared.d.ts +1 -1
- package/dist/schemas/transaction/index.d.ts +20 -20
- package/dist/schemas/upwork-analytics/index.d.ts +22 -22
- package/dist/schemas/upwork-talent/index.d.ts +74 -74
- package/dist/schemas/usage/index.d.ts +17 -17
- package/dist/schemas/usage-event/index.d.ts +11 -11
- package/dist/schemas/user/index.d.ts +4 -4
- package/package.json +1 -1
|
@@ -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,8 @@ 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;
|
|
170
172
|
countries?: any;
|
|
171
173
|
earnings?: any;
|
|
172
174
|
groupRecno?: any;
|
|
@@ -178,8 +180,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
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,8 @@ 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;
|
|
193
195
|
countries?: any;
|
|
194
196
|
earnings?: any;
|
|
195
197
|
groupRecno?: any;
|
|
@@ -201,24 +203,24 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
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;
|
|
223
225
|
numberOfPositionsToHire: number;
|
|
224
226
|
category: {
|
|
@@ -249,14 +251,13 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
249
251
|
hourlyBudgetType: string | null;
|
|
250
252
|
};
|
|
251
253
|
contractorTier: number;
|
|
252
|
-
description: string;
|
|
253
254
|
segmentationData: {
|
|
254
|
-
customValue: string | null;
|
|
255
|
-
label: string;
|
|
256
|
-
name: string;
|
|
257
|
-
sortOrder: number;
|
|
258
255
|
type: string;
|
|
256
|
+
name: string;
|
|
259
257
|
value: string;
|
|
258
|
+
label: string;
|
|
259
|
+
customValue: string | null;
|
|
260
|
+
sortOrder: number;
|
|
260
261
|
skill?: any;
|
|
261
262
|
}[];
|
|
262
263
|
clientActivity: {
|
|
@@ -272,7 +273,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
272
273
|
tags: string[];
|
|
273
274
|
};
|
|
274
275
|
uid: string;
|
|
275
|
-
title: string;
|
|
276
276
|
ciphertext: string;
|
|
277
277
|
access: number;
|
|
278
278
|
createdOn: string;
|
|
@@ -292,6 +292,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
292
292
|
risingTalent: boolean;
|
|
293
293
|
shouldHavePortfolio: boolean;
|
|
294
294
|
locationCheckRequired: boolean;
|
|
295
|
+
location?: any;
|
|
296
|
+
group?: any;
|
|
295
297
|
countries?: any;
|
|
296
298
|
earnings?: any;
|
|
297
299
|
groupRecno?: any;
|
|
@@ -303,18 +305,18 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
303
305
|
states?: any;
|
|
304
306
|
tests?: any;
|
|
305
307
|
timezones?: any;
|
|
306
|
-
group?: any;
|
|
307
|
-
location?: any;
|
|
308
308
|
locations?: any;
|
|
309
309
|
};
|
|
310
310
|
questions: {
|
|
311
|
-
question: string;
|
|
312
311
|
position: number;
|
|
312
|
+
question: string;
|
|
313
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;
|
|
319
321
|
numberOfPositionsToHire: number;
|
|
320
322
|
category: {
|
|
@@ -345,14 +347,13 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
345
347
|
hourlyBudgetType: string | null;
|
|
346
348
|
};
|
|
347
349
|
contractorTier: number;
|
|
348
|
-
description: string;
|
|
349
350
|
segmentationData: {
|
|
350
|
-
customValue: string | null;
|
|
351
|
-
label: string;
|
|
352
|
-
name: string;
|
|
353
|
-
sortOrder: number;
|
|
354
351
|
type: string;
|
|
352
|
+
name: string;
|
|
355
353
|
value: string;
|
|
354
|
+
label: string;
|
|
355
|
+
customValue: string | null;
|
|
356
|
+
sortOrder: number;
|
|
356
357
|
skill?: any;
|
|
357
358
|
}[];
|
|
358
359
|
clientActivity: {
|
|
@@ -368,7 +369,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
368
369
|
tags: string[];
|
|
369
370
|
};
|
|
370
371
|
uid: string;
|
|
371
|
-
title: string;
|
|
372
372
|
ciphertext: string;
|
|
373
373
|
access: number;
|
|
374
374
|
createdOn: string;
|
|
@@ -388,6 +388,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
388
388
|
risingTalent: boolean;
|
|
389
389
|
shouldHavePortfolio: boolean;
|
|
390
390
|
locationCheckRequired: boolean;
|
|
391
|
+
location?: any;
|
|
392
|
+
group?: any;
|
|
391
393
|
countries?: any;
|
|
392
394
|
earnings?: any;
|
|
393
395
|
groupRecno?: any;
|
|
@@ -399,13 +401,11 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
399
401
|
states?: any;
|
|
400
402
|
tests?: any;
|
|
401
403
|
timezones?: any;
|
|
402
|
-
group?: any;
|
|
403
|
-
location?: any;
|
|
404
404
|
locations?: any;
|
|
405
405
|
};
|
|
406
406
|
questions: {
|
|
407
|
-
question: string;
|
|
408
407
|
position: number;
|
|
408
|
+
question: string;
|
|
409
409
|
}[];
|
|
410
410
|
durationIdV3: number;
|
|
411
411
|
durationLabel: string;
|
|
@@ -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,9 +1117,19 @@ 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
|
+
};
|
|
1120
1128
|
cache: boolean;
|
|
1121
1129
|
job: {
|
|
1122
1130
|
type: number;
|
|
1131
|
+
title: string;
|
|
1132
|
+
description: string;
|
|
1123
1133
|
status: number;
|
|
1124
1134
|
numberOfPositionsToHire: number;
|
|
1125
1135
|
category: {
|
|
@@ -1150,14 +1160,13 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1150
1160
|
hourlyBudgetType: string | null;
|
|
1151
1161
|
};
|
|
1152
1162
|
contractorTier: number;
|
|
1153
|
-
description: string;
|
|
1154
1163
|
segmentationData: {
|
|
1155
|
-
customValue: string | null;
|
|
1156
|
-
label: string;
|
|
1157
|
-
name: string;
|
|
1158
|
-
sortOrder: number;
|
|
1159
1164
|
type: string;
|
|
1165
|
+
name: string;
|
|
1160
1166
|
value: string;
|
|
1167
|
+
label: string;
|
|
1168
|
+
customValue: string | null;
|
|
1169
|
+
sortOrder: number;
|
|
1161
1170
|
skill?: any;
|
|
1162
1171
|
}[];
|
|
1163
1172
|
clientActivity: {
|
|
@@ -1173,7 +1182,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1173
1182
|
tags: string[];
|
|
1174
1183
|
};
|
|
1175
1184
|
uid: string;
|
|
1176
|
-
title: string;
|
|
1177
1185
|
ciphertext: string;
|
|
1178
1186
|
access: number;
|
|
1179
1187
|
createdOn: string;
|
|
@@ -1193,6 +1201,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1193
1201
|
risingTalent: boolean;
|
|
1194
1202
|
shouldHavePortfolio: boolean;
|
|
1195
1203
|
locationCheckRequired: boolean;
|
|
1204
|
+
location?: any;
|
|
1205
|
+
group?: any;
|
|
1196
1206
|
countries?: any;
|
|
1197
1207
|
earnings?: any;
|
|
1198
1208
|
groupRecno?: any;
|
|
@@ -1204,23 +1214,21 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1204
1214
|
states?: any;
|
|
1205
1215
|
tests?: any;
|
|
1206
1216
|
timezones?: any;
|
|
1207
|
-
group?: any;
|
|
1208
|
-
location?: any;
|
|
1209
1217
|
locations?: any;
|
|
1210
1218
|
};
|
|
1211
1219
|
questions: {
|
|
1212
|
-
question: string;
|
|
1213
1220
|
position: number;
|
|
1221
|
+
question: string;
|
|
1214
1222
|
}[];
|
|
1215
1223
|
durationIdV3: number;
|
|
1216
1224
|
durationLabel: string;
|
|
1217
1225
|
};
|
|
1218
1226
|
buyer: {
|
|
1219
1227
|
location: {
|
|
1228
|
+
country: string;
|
|
1220
1229
|
offsetFromUtcMillis: number;
|
|
1221
1230
|
countryTimezone: string;
|
|
1222
1231
|
city: string;
|
|
1223
|
-
country: string;
|
|
1224
1232
|
};
|
|
1225
1233
|
isEnterprise: boolean;
|
|
1226
1234
|
isPaymentMethodVerified: boolean;
|
|
@@ -1239,8 +1247,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1239
1247
|
name: string | null;
|
|
1240
1248
|
contractDate: string;
|
|
1241
1249
|
profile: {
|
|
1242
|
-
industry: string;
|
|
1243
1250
|
size: number;
|
|
1251
|
+
industry: string;
|
|
1244
1252
|
};
|
|
1245
1253
|
isEDCReplicated?: any;
|
|
1246
1254
|
};
|
|
@@ -1280,6 +1288,12 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1280
1288
|
isVisitor: boolean;
|
|
1281
1289
|
openJobs: any[];
|
|
1282
1290
|
workHistory: {
|
|
1291
|
+
feedback: {
|
|
1292
|
+
score: number;
|
|
1293
|
+
feedbackSuppressed: boolean;
|
|
1294
|
+
comment: string;
|
|
1295
|
+
feedback_suppressed: boolean;
|
|
1296
|
+
};
|
|
1283
1297
|
startDate: string;
|
|
1284
1298
|
endDate: string;
|
|
1285
1299
|
totalCharge: number;
|
|
@@ -1288,9 +1302,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1288
1302
|
type: number;
|
|
1289
1303
|
title: string;
|
|
1290
1304
|
access: number;
|
|
1305
|
+
id?: any;
|
|
1291
1306
|
uid?: any;
|
|
1292
1307
|
ciphertext?: any;
|
|
1293
|
-
id?: any;
|
|
1294
1308
|
};
|
|
1295
1309
|
contractorInfo: {
|
|
1296
1310
|
ciphertext: string;
|
|
@@ -1300,12 +1314,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1300
1314
|
rate: {
|
|
1301
1315
|
amount: number;
|
|
1302
1316
|
} | null;
|
|
1303
|
-
feedback: {
|
|
1304
|
-
score: number;
|
|
1305
|
-
feedbackSuppressed: boolean;
|
|
1306
|
-
comment: string;
|
|
1307
|
-
feedback_suppressed: boolean;
|
|
1308
|
-
};
|
|
1309
1317
|
feedbackToClient: {
|
|
1310
1318
|
score: number;
|
|
1311
1319
|
feedbackSuppressed: boolean;
|
|
@@ -1320,8 +1328,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1320
1328
|
similarJobs: any[];
|
|
1321
1329
|
sands: {
|
|
1322
1330
|
occupation: {
|
|
1323
|
-
uid: string;
|
|
1324
1331
|
id: string;
|
|
1332
|
+
uid: string;
|
|
1325
1333
|
freeText: string | null;
|
|
1326
1334
|
ontologyId: string;
|
|
1327
1335
|
prefLabel: string;
|
|
@@ -1333,14 +1341,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1333
1341
|
isFreeText: boolean;
|
|
1334
1342
|
}[];
|
|
1335
1343
|
};
|
|
1336
|
-
auth: {
|
|
1337
|
-
canFlagOpening: boolean;
|
|
1338
|
-
canPostJob: boolean;
|
|
1339
|
-
domestic: {
|
|
1340
|
-
country: string | null;
|
|
1341
|
-
isInfographicTooltipAvailable: boolean;
|
|
1342
|
-
};
|
|
1343
|
-
};
|
|
1344
1344
|
applicants: {
|
|
1345
1345
|
applicantsBidsStats?: any;
|
|
1346
1346
|
};
|
|
@@ -1349,8 +1349,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1349
1349
|
freelancerAllowed: boolean;
|
|
1350
1350
|
clientAllowed: boolean;
|
|
1351
1351
|
userIntentEvaluation: {
|
|
1352
|
-
isDeclined: boolean;
|
|
1353
1352
|
reason: string | null;
|
|
1353
|
+
isDeclined: boolean;
|
|
1354
1354
|
};
|
|
1355
1355
|
canApplyOnBehalfOfAgencyFreelancers: boolean;
|
|
1356
1356
|
canSubmitMoreProposals: boolean;
|
|
@@ -1358,9 +1358,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1358
1358
|
};
|
|
1359
1359
|
profileMatchServiceUid: string;
|
|
1360
1360
|
seo: {
|
|
1361
|
-
description: string;
|
|
1362
|
-
title: string;
|
|
1363
1361
|
url: string;
|
|
1362
|
+
title: string;
|
|
1363
|
+
description: string;
|
|
1364
1364
|
};
|
|
1365
1365
|
proposalPermissions: {
|
|
1366
1366
|
freelancerAllowed: boolean;
|
|
@@ -1390,9 +1390,19 @@ 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
|
+
};
|
|
1393
1401
|
cache: boolean;
|
|
1394
1402
|
job: {
|
|
1395
1403
|
type: number;
|
|
1404
|
+
title: string;
|
|
1405
|
+
description: string;
|
|
1396
1406
|
status: number;
|
|
1397
1407
|
numberOfPositionsToHire: number;
|
|
1398
1408
|
category: {
|
|
@@ -1423,14 +1433,13 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1423
1433
|
hourlyBudgetType: string | null;
|
|
1424
1434
|
};
|
|
1425
1435
|
contractorTier: number;
|
|
1426
|
-
description: string;
|
|
1427
1436
|
segmentationData: {
|
|
1428
|
-
customValue: string | null;
|
|
1429
|
-
label: string;
|
|
1430
|
-
name: string;
|
|
1431
|
-
sortOrder: number;
|
|
1432
1437
|
type: string;
|
|
1438
|
+
name: string;
|
|
1433
1439
|
value: string;
|
|
1440
|
+
label: string;
|
|
1441
|
+
customValue: string | null;
|
|
1442
|
+
sortOrder: number;
|
|
1434
1443
|
skill?: any;
|
|
1435
1444
|
}[];
|
|
1436
1445
|
clientActivity: {
|
|
@@ -1446,7 +1455,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1446
1455
|
tags: string[];
|
|
1447
1456
|
};
|
|
1448
1457
|
uid: string;
|
|
1449
|
-
title: string;
|
|
1450
1458
|
ciphertext: string;
|
|
1451
1459
|
access: number;
|
|
1452
1460
|
createdOn: string;
|
|
@@ -1466,6 +1474,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1466
1474
|
risingTalent: boolean;
|
|
1467
1475
|
shouldHavePortfolio: boolean;
|
|
1468
1476
|
locationCheckRequired: boolean;
|
|
1477
|
+
location?: any;
|
|
1478
|
+
group?: any;
|
|
1469
1479
|
countries?: any;
|
|
1470
1480
|
earnings?: any;
|
|
1471
1481
|
groupRecno?: any;
|
|
@@ -1477,23 +1487,21 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1477
1487
|
states?: any;
|
|
1478
1488
|
tests?: any;
|
|
1479
1489
|
timezones?: any;
|
|
1480
|
-
group?: any;
|
|
1481
|
-
location?: any;
|
|
1482
1490
|
locations?: any;
|
|
1483
1491
|
};
|
|
1484
1492
|
questions: {
|
|
1485
|
-
question: string;
|
|
1486
1493
|
position: number;
|
|
1494
|
+
question: string;
|
|
1487
1495
|
}[];
|
|
1488
1496
|
durationIdV3: number;
|
|
1489
1497
|
durationLabel: string;
|
|
1490
1498
|
};
|
|
1491
1499
|
buyer: {
|
|
1492
1500
|
location: {
|
|
1501
|
+
country: string;
|
|
1493
1502
|
offsetFromUtcMillis: number;
|
|
1494
1503
|
countryTimezone: string;
|
|
1495
1504
|
city: string;
|
|
1496
|
-
country: string;
|
|
1497
1505
|
};
|
|
1498
1506
|
isEnterprise: boolean;
|
|
1499
1507
|
isPaymentMethodVerified: boolean;
|
|
@@ -1512,8 +1520,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1512
1520
|
name: string | null;
|
|
1513
1521
|
contractDate: string;
|
|
1514
1522
|
profile: {
|
|
1515
|
-
industry: string;
|
|
1516
1523
|
size: number;
|
|
1524
|
+
industry: string;
|
|
1517
1525
|
};
|
|
1518
1526
|
isEDCReplicated?: any;
|
|
1519
1527
|
};
|
|
@@ -1553,6 +1561,12 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1553
1561
|
isVisitor: boolean;
|
|
1554
1562
|
openJobs: any[];
|
|
1555
1563
|
workHistory: {
|
|
1564
|
+
feedback: {
|
|
1565
|
+
score: number;
|
|
1566
|
+
feedbackSuppressed: boolean;
|
|
1567
|
+
comment: string;
|
|
1568
|
+
feedback_suppressed: boolean;
|
|
1569
|
+
};
|
|
1556
1570
|
startDate: string;
|
|
1557
1571
|
endDate: string;
|
|
1558
1572
|
totalCharge: number;
|
|
@@ -1561,9 +1575,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1561
1575
|
type: number;
|
|
1562
1576
|
title: string;
|
|
1563
1577
|
access: number;
|
|
1578
|
+
id?: any;
|
|
1564
1579
|
uid?: any;
|
|
1565
1580
|
ciphertext?: any;
|
|
1566
|
-
id?: any;
|
|
1567
1581
|
};
|
|
1568
1582
|
contractorInfo: {
|
|
1569
1583
|
ciphertext: string;
|
|
@@ -1573,12 +1587,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1573
1587
|
rate: {
|
|
1574
1588
|
amount: number;
|
|
1575
1589
|
} | null;
|
|
1576
|
-
feedback: {
|
|
1577
|
-
score: number;
|
|
1578
|
-
feedbackSuppressed: boolean;
|
|
1579
|
-
comment: string;
|
|
1580
|
-
feedback_suppressed: boolean;
|
|
1581
|
-
};
|
|
1582
1590
|
feedbackToClient: {
|
|
1583
1591
|
score: number;
|
|
1584
1592
|
feedbackSuppressed: boolean;
|
|
@@ -1593,8 +1601,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1593
1601
|
similarJobs: any[];
|
|
1594
1602
|
sands: {
|
|
1595
1603
|
occupation: {
|
|
1596
|
-
uid: string;
|
|
1597
1604
|
id: string;
|
|
1605
|
+
uid: string;
|
|
1598
1606
|
freeText: string | null;
|
|
1599
1607
|
ontologyId: string;
|
|
1600
1608
|
prefLabel: string;
|
|
@@ -1606,14 +1614,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1606
1614
|
isFreeText: boolean;
|
|
1607
1615
|
}[];
|
|
1608
1616
|
};
|
|
1609
|
-
auth: {
|
|
1610
|
-
canFlagOpening: boolean;
|
|
1611
|
-
canPostJob: boolean;
|
|
1612
|
-
domestic: {
|
|
1613
|
-
country: string | null;
|
|
1614
|
-
isInfographicTooltipAvailable: boolean;
|
|
1615
|
-
};
|
|
1616
|
-
};
|
|
1617
1617
|
applicants: {
|
|
1618
1618
|
applicantsBidsStats?: any;
|
|
1619
1619
|
};
|
|
@@ -1622,8 +1622,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1622
1622
|
freelancerAllowed: boolean;
|
|
1623
1623
|
clientAllowed: boolean;
|
|
1624
1624
|
userIntentEvaluation: {
|
|
1625
|
-
isDeclined: boolean;
|
|
1626
1625
|
reason: string | null;
|
|
1626
|
+
isDeclined: boolean;
|
|
1627
1627
|
};
|
|
1628
1628
|
canApplyOnBehalfOfAgencyFreelancers: boolean;
|
|
1629
1629
|
canSubmitMoreProposals: boolean;
|
|
@@ -1631,9 +1631,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1631
1631
|
};
|
|
1632
1632
|
profileMatchServiceUid: string;
|
|
1633
1633
|
seo: {
|
|
1634
|
-
description: string;
|
|
1635
|
-
title: string;
|
|
1636
1634
|
url: string;
|
|
1635
|
+
title: string;
|
|
1636
|
+
description: string;
|
|
1637
1637
|
};
|
|
1638
1638
|
proposalPermissions: {
|
|
1639
1639
|
freelancerAllowed: boolean;
|