lancer-shared 1.2.302 → 1.2.304
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.cjs.js +4 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +4 -0
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/account/bidder-account.d.ts +47 -40
- package/dist/schemas/account/scraper-account.d.ts +27 -27
- package/dist/schemas/agent/index.d.ts +273 -273
- package/dist/schemas/agent/proposal.d.ts +4 -4
- package/dist/schemas/bidder/bid.d.ts +2377 -2358
- package/dist/schemas/campaign/campaign-analytics.d.ts +1404 -1404
- package/dist/schemas/campaign/campaign-chat-bot.d.ts +24 -24
- package/dist/schemas/campaign/campaign-expenses.d.ts +2 -2
- package/dist/schemas/campaign/campaign-insights.d.ts +12 -12
- package/dist/schemas/campaign/campaign.d.ts +575 -566
- package/dist/schemas/campaign/sequence/boost-node.d.ts +2 -2
- package/dist/schemas/campaign/sequence/client-size-node.d.ts +8 -8
- package/dist/schemas/campaign/sequence/client-spent-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/hire-rate-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/hourly-rate-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/rating-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/suitability-node.d.ts +16 -16
- package/dist/schemas/dashboard/index.d.ts +46 -46
- package/dist/schemas/golden-dataset/sample.d.ts +12 -12
- package/dist/schemas/infrastructure/index.d.ts +8 -8
- package/dist/schemas/invoice/index.d.ts +55 -55
- package/dist/schemas/job/index.d.ts +189 -189
- package/dist/schemas/job/job-api.d.ts +4 -4
- package/dist/schemas/job/job-details.d.ts +726 -726
- package/dist/schemas/job/job-filters.d.ts +55 -55
- package/dist/schemas/job/job-listing.d.ts +96 -96
- package/dist/schemas/job/nuxt.d.ts +130 -130
- package/dist/schemas/lead/index.d.ts +1040 -1040
- package/dist/schemas/lead/lead-status.d.ts +4 -4
- package/dist/schemas/logger/feed/feed-chunk-enrich.d.ts +16 -16
- package/dist/schemas/logger/feed/feed-enrich.d.ts +12 -12
- package/dist/schemas/logger/feed/feed-job-enrich.d.ts +272 -272
- package/dist/schemas/logger/feed/feed-scrape.d.ts +6 -6
- package/dist/schemas/logger/log-event.d.ts +103 -103
- package/dist/schemas/logger/scraper-events.d.ts +73 -73
- package/dist/schemas/notifications/index.d.ts +4 -4
- package/dist/schemas/organization/billing.d.ts +2 -2
- package/dist/schemas/organization/cover-letter.d.ts +4 -4
- package/dist/schemas/organization/index.d.ts +112 -112
- package/dist/schemas/organization/onboarding.d.ts +6 -6
- package/dist/schemas/organization/organization-leads.d.ts +4 -4
- package/dist/schemas/organization/subscription.d.ts +12 -12
- package/dist/schemas/plan/index.d.ts +55 -55
- package/dist/schemas/proxy/proxy.d.ts +29 -29
- package/dist/schemas/saved-search/index.d.ts +4 -4
- package/dist/schemas/scraper/scrape-payload.d.ts +876 -876
- package/dist/schemas/scraper/scrape-result.d.ts +174 -174
- package/dist/schemas/scraper/upwork-profile.d.ts +16 -16
- package/dist/schemas/shared.d.ts +1 -1
- package/dist/schemas/talent/index.d.ts +750 -750
- package/dist/schemas/transaction/index.d.ts +20 -20
- package/dist/schemas/upwork-analytics/index.d.ts +22 -22
- package/dist/schemas/usage/index.d.ts +16 -16
- package/dist/schemas/usage-event/index.d.ts +11 -11
- package/dist/schemas/user/index.d.ts +4 -4
- package/package.json +2 -2
|
@@ -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
|
-
type: string;
|
|
77
|
-
name: string;
|
|
78
|
-
value: string;
|
|
79
|
-
label: string;
|
|
80
76
|
customValue: string | null;
|
|
77
|
+
label: string;
|
|
78
|
+
name: string;
|
|
81
79
|
sortOrder: number;
|
|
82
|
-
skill?: any;
|
|
83
|
-
}, {
|
|
84
80
|
type: string;
|
|
85
|
-
name: string;
|
|
86
81
|
value: string;
|
|
87
|
-
|
|
82
|
+
skill?: any;
|
|
83
|
+
}, {
|
|
88
84
|
customValue: string | null;
|
|
85
|
+
label: string;
|
|
86
|
+
name: string;
|
|
89
87
|
sortOrder: number;
|
|
88
|
+
type: string;
|
|
89
|
+
value: string;
|
|
90
90
|
skill?: any;
|
|
91
91
|
}>, "many">;
|
|
92
92
|
clientActivity: import("zod").ZodObject<{
|
|
@@ -167,8 +167,6 @@ 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
170
|
countries?: any;
|
|
173
171
|
earnings?: any;
|
|
174
172
|
groupRecno?: any;
|
|
@@ -180,6 +178,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
180
178
|
states?: any;
|
|
181
179
|
tests?: any;
|
|
182
180
|
timezones?: any;
|
|
181
|
+
group?: any;
|
|
182
|
+
location?: any;
|
|
183
183
|
locations?: any;
|
|
184
184
|
}, {
|
|
185
185
|
type: number;
|
|
@@ -190,8 +190,6 @@ 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
193
|
countries?: any;
|
|
196
194
|
earnings?: any;
|
|
197
195
|
groupRecno?: any;
|
|
@@ -203,24 +201,24 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
203
201
|
states?: any;
|
|
204
202
|
tests?: any;
|
|
205
203
|
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
|
-
position: number;
|
|
213
212
|
question: string;
|
|
214
|
-
}, {
|
|
215
213
|
position: number;
|
|
214
|
+
}, {
|
|
216
215
|
question: string;
|
|
216
|
+
position: number;
|
|
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;
|
|
224
222
|
status: number;
|
|
225
223
|
numberOfPositionsToHire: number;
|
|
226
224
|
category: {
|
|
@@ -251,13 +249,14 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
251
249
|
hourlyBudgetType: string | null;
|
|
252
250
|
};
|
|
253
251
|
contractorTier: number;
|
|
252
|
+
description: string;
|
|
254
253
|
segmentationData: {
|
|
255
|
-
type: string;
|
|
256
|
-
name: string;
|
|
257
|
-
value: string;
|
|
258
|
-
label: string;
|
|
259
254
|
customValue: string | null;
|
|
255
|
+
label: string;
|
|
256
|
+
name: string;
|
|
260
257
|
sortOrder: number;
|
|
258
|
+
type: string;
|
|
259
|
+
value: string;
|
|
261
260
|
skill?: any;
|
|
262
261
|
}[];
|
|
263
262
|
clientActivity: {
|
|
@@ -273,6 +272,7 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
273
272
|
tags: string[];
|
|
274
273
|
};
|
|
275
274
|
uid: string;
|
|
275
|
+
title: string;
|
|
276
276
|
ciphertext: string;
|
|
277
277
|
access: number;
|
|
278
278
|
createdOn: string;
|
|
@@ -292,8 +292,6 @@ 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;
|
|
297
295
|
countries?: any;
|
|
298
296
|
earnings?: any;
|
|
299
297
|
groupRecno?: any;
|
|
@@ -305,18 +303,18 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
305
303
|
states?: any;
|
|
306
304
|
tests?: any;
|
|
307
305
|
timezones?: any;
|
|
306
|
+
group?: any;
|
|
307
|
+
location?: any;
|
|
308
308
|
locations?: any;
|
|
309
309
|
};
|
|
310
310
|
questions: {
|
|
311
|
-
position: number;
|
|
312
311
|
question: string;
|
|
312
|
+
position: number;
|
|
313
313
|
}[];
|
|
314
314
|
durationIdV3: number;
|
|
315
315
|
durationLabel: string;
|
|
316
316
|
}, {
|
|
317
317
|
type: number;
|
|
318
|
-
title: string;
|
|
319
|
-
description: string;
|
|
320
318
|
status: number;
|
|
321
319
|
numberOfPositionsToHire: number;
|
|
322
320
|
category: {
|
|
@@ -347,13 +345,14 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
347
345
|
hourlyBudgetType: string | null;
|
|
348
346
|
};
|
|
349
347
|
contractorTier: number;
|
|
348
|
+
description: string;
|
|
350
349
|
segmentationData: {
|
|
351
|
-
type: string;
|
|
352
|
-
name: string;
|
|
353
|
-
value: string;
|
|
354
|
-
label: string;
|
|
355
350
|
customValue: string | null;
|
|
351
|
+
label: string;
|
|
352
|
+
name: string;
|
|
356
353
|
sortOrder: number;
|
|
354
|
+
type: string;
|
|
355
|
+
value: string;
|
|
357
356
|
skill?: any;
|
|
358
357
|
}[];
|
|
359
358
|
clientActivity: {
|
|
@@ -369,6 +368,7 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
369
368
|
tags: string[];
|
|
370
369
|
};
|
|
371
370
|
uid: string;
|
|
371
|
+
title: string;
|
|
372
372
|
ciphertext: string;
|
|
373
373
|
access: number;
|
|
374
374
|
createdOn: string;
|
|
@@ -388,8 +388,6 @@ 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;
|
|
393
391
|
countries?: any;
|
|
394
392
|
earnings?: any;
|
|
395
393
|
groupRecno?: any;
|
|
@@ -401,11 +399,13 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
401
399
|
states?: any;
|
|
402
400
|
tests?: any;
|
|
403
401
|
timezones?: any;
|
|
402
|
+
group?: any;
|
|
403
|
+
location?: any;
|
|
404
404
|
locations?: any;
|
|
405
405
|
};
|
|
406
406
|
questions: {
|
|
407
|
-
position: number;
|
|
408
407
|
question: string;
|
|
408
|
+
position: number;
|
|
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;
|
|
458
457
|
offsetFromUtcMillis: number;
|
|
459
458
|
countryTimezone: string;
|
|
460
459
|
city: string;
|
|
461
|
-
}, {
|
|
462
460
|
country: string;
|
|
461
|
+
}, {
|
|
463
462
|
offsetFromUtcMillis: number;
|
|
464
463
|
countryTimezone: string;
|
|
465
464
|
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
|
-
size: number;
|
|
475
474
|
industry: string;
|
|
476
|
-
}, {
|
|
477
475
|
size: number;
|
|
476
|
+
}, {
|
|
478
477
|
industry: string;
|
|
478
|
+
size: number;
|
|
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
|
-
size: number;
|
|
486
485
|
industry: string;
|
|
486
|
+
size: number;
|
|
487
487
|
};
|
|
488
488
|
isEDCReplicated?: any;
|
|
489
489
|
}, {
|
|
490
490
|
name: string | null;
|
|
491
491
|
contractDate: string;
|
|
492
492
|
profile: {
|
|
493
|
-
size: number;
|
|
494
493
|
industry: string;
|
|
494
|
+
size: number;
|
|
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;
|
|
518
517
|
offsetFromUtcMillis: number;
|
|
519
518
|
countryTimezone: string;
|
|
520
519
|
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
|
-
size: number;
|
|
540
539
|
industry: string;
|
|
540
|
+
size: number;
|
|
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;
|
|
554
553
|
offsetFromUtcMillis: number;
|
|
555
554
|
countryTimezone: string;
|
|
556
555
|
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
|
-
size: number;
|
|
576
575
|
industry: string;
|
|
576
|
+
size: number;
|
|
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;
|
|
761
760
|
uid?: any;
|
|
762
761
|
ciphertext?: any;
|
|
762
|
+
id?: any;
|
|
763
763
|
}, {
|
|
764
764
|
type: number;
|
|
765
765
|
title: string;
|
|
766
766
|
access: number;
|
|
767
|
-
id?: any;
|
|
768
767
|
uid?: any;
|
|
769
768
|
ciphertext?: any;
|
|
769
|
+
id?: any;
|
|
770
770
|
}>;
|
|
771
771
|
contractorInfo: import("zod").ZodObject<{
|
|
772
772
|
contractorName: import("zod").ZodString;
|
|
@@ -822,12 +822,6 @@ 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
|
-
};
|
|
831
825
|
startDate: string;
|
|
832
826
|
endDate: string;
|
|
833
827
|
totalCharge: number;
|
|
@@ -836,9 +830,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
836
830
|
type: number;
|
|
837
831
|
title: string;
|
|
838
832
|
access: number;
|
|
839
|
-
id?: any;
|
|
840
833
|
uid?: any;
|
|
841
834
|
ciphertext?: any;
|
|
835
|
+
id?: any;
|
|
842
836
|
};
|
|
843
837
|
contractorInfo: {
|
|
844
838
|
ciphertext: string;
|
|
@@ -848,6 +842,12 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
848
842
|
rate: {
|
|
849
843
|
amount: number;
|
|
850
844
|
} | 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,12 +859,6 @@ 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
|
-
};
|
|
868
862
|
startDate: string;
|
|
869
863
|
endDate: string;
|
|
870
864
|
totalCharge: number;
|
|
@@ -873,9 +867,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
873
867
|
type: number;
|
|
874
868
|
title: string;
|
|
875
869
|
access: number;
|
|
876
|
-
id?: any;
|
|
877
870
|
uid?: any;
|
|
878
871
|
ciphertext?: any;
|
|
872
|
+
id?: any;
|
|
879
873
|
};
|
|
880
874
|
contractorInfo: {
|
|
881
875
|
ciphertext: string;
|
|
@@ -885,6 +879,12 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
885
879
|
rate: {
|
|
886
880
|
amount: number;
|
|
887
881
|
} | 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
|
-
id: string;
|
|
909
908
|
uid: string;
|
|
909
|
+
id: string;
|
|
910
910
|
freeText: string | null;
|
|
911
911
|
ontologyId: string;
|
|
912
912
|
prefLabel: string;
|
|
913
913
|
}, {
|
|
914
|
-
id: string;
|
|
915
914
|
uid: string;
|
|
915
|
+
id: 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
|
-
id: string;
|
|
937
936
|
uid: string;
|
|
937
|
+
id: 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
|
-
id: string;
|
|
951
950
|
uid: string;
|
|
951
|
+
id: 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
|
-
reason: string | null;
|
|
1056
1055
|
isDeclined: boolean;
|
|
1057
|
-
}, {
|
|
1058
1056
|
reason: string | null;
|
|
1057
|
+
}, {
|
|
1059
1058
|
isDeclined: boolean;
|
|
1059
|
+
reason: string | null;
|
|
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
|
-
reason: string | null;
|
|
1069
1068
|
isDeclined: boolean;
|
|
1069
|
+
reason: string | null;
|
|
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
|
-
reason: string | null;
|
|
1079
1078
|
isDeclined: boolean;
|
|
1079
|
+
reason: string | null;
|
|
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
|
-
url: string;
|
|
1092
|
-
title: string;
|
|
1093
1091
|
description: string;
|
|
1094
|
-
}, {
|
|
1095
|
-
url: string;
|
|
1096
1092
|
title: string;
|
|
1093
|
+
url: string;
|
|
1094
|
+
}, {
|
|
1097
1095
|
description: string;
|
|
1096
|
+
title: string;
|
|
1097
|
+
url: string;
|
|
1098
1098
|
}>;
|
|
1099
1099
|
teamUid: import("zod").ZodNullable<import("zod").ZodAny>;
|
|
1100
1100
|
proposalPermissions: import("zod").ZodObject<{
|
|
@@ -1117,19 +1117,9 @@ 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
1120
|
cache: boolean;
|
|
1129
1121
|
job: {
|
|
1130
1122
|
type: number;
|
|
1131
|
-
title: string;
|
|
1132
|
-
description: string;
|
|
1133
1123
|
status: number;
|
|
1134
1124
|
numberOfPositionsToHire: number;
|
|
1135
1125
|
category: {
|
|
@@ -1160,13 +1150,14 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1160
1150
|
hourlyBudgetType: string | null;
|
|
1161
1151
|
};
|
|
1162
1152
|
contractorTier: number;
|
|
1153
|
+
description: string;
|
|
1163
1154
|
segmentationData: {
|
|
1164
|
-
type: string;
|
|
1165
|
-
name: string;
|
|
1166
|
-
value: string;
|
|
1167
|
-
label: string;
|
|
1168
1155
|
customValue: string | null;
|
|
1156
|
+
label: string;
|
|
1157
|
+
name: string;
|
|
1169
1158
|
sortOrder: number;
|
|
1159
|
+
type: string;
|
|
1160
|
+
value: string;
|
|
1170
1161
|
skill?: any;
|
|
1171
1162
|
}[];
|
|
1172
1163
|
clientActivity: {
|
|
@@ -1182,6 +1173,7 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1182
1173
|
tags: string[];
|
|
1183
1174
|
};
|
|
1184
1175
|
uid: string;
|
|
1176
|
+
title: string;
|
|
1185
1177
|
ciphertext: string;
|
|
1186
1178
|
access: number;
|
|
1187
1179
|
createdOn: string;
|
|
@@ -1201,8 +1193,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1201
1193
|
risingTalent: boolean;
|
|
1202
1194
|
shouldHavePortfolio: boolean;
|
|
1203
1195
|
locationCheckRequired: boolean;
|
|
1204
|
-
location?: any;
|
|
1205
|
-
group?: any;
|
|
1206
1196
|
countries?: any;
|
|
1207
1197
|
earnings?: any;
|
|
1208
1198
|
groupRecno?: any;
|
|
@@ -1214,21 +1204,23 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1214
1204
|
states?: any;
|
|
1215
1205
|
tests?: any;
|
|
1216
1206
|
timezones?: any;
|
|
1207
|
+
group?: any;
|
|
1208
|
+
location?: any;
|
|
1217
1209
|
locations?: any;
|
|
1218
1210
|
};
|
|
1219
1211
|
questions: {
|
|
1220
|
-
position: number;
|
|
1221
1212
|
question: string;
|
|
1213
|
+
position: number;
|
|
1222
1214
|
}[];
|
|
1223
1215
|
durationIdV3: number;
|
|
1224
1216
|
durationLabel: string;
|
|
1225
1217
|
};
|
|
1226
1218
|
buyer: {
|
|
1227
1219
|
location: {
|
|
1228
|
-
country: string;
|
|
1229
1220
|
offsetFromUtcMillis: number;
|
|
1230
1221
|
countryTimezone: string;
|
|
1231
1222
|
city: string;
|
|
1223
|
+
country: string;
|
|
1232
1224
|
};
|
|
1233
1225
|
isEnterprise: boolean;
|
|
1234
1226
|
isPaymentMethodVerified: boolean;
|
|
@@ -1247,8 +1239,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1247
1239
|
name: string | null;
|
|
1248
1240
|
contractDate: string;
|
|
1249
1241
|
profile: {
|
|
1250
|
-
size: number;
|
|
1251
1242
|
industry: string;
|
|
1243
|
+
size: number;
|
|
1252
1244
|
};
|
|
1253
1245
|
isEDCReplicated?: any;
|
|
1254
1246
|
};
|
|
@@ -1288,12 +1280,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1288
1280
|
isVisitor: boolean;
|
|
1289
1281
|
openJobs: any[];
|
|
1290
1282
|
workHistory: {
|
|
1291
|
-
feedback: {
|
|
1292
|
-
score: number;
|
|
1293
|
-
feedbackSuppressed: boolean;
|
|
1294
|
-
comment: string;
|
|
1295
|
-
feedback_suppressed: boolean;
|
|
1296
|
-
};
|
|
1297
1283
|
startDate: string;
|
|
1298
1284
|
endDate: string;
|
|
1299
1285
|
totalCharge: number;
|
|
@@ -1302,9 +1288,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1302
1288
|
type: number;
|
|
1303
1289
|
title: string;
|
|
1304
1290
|
access: number;
|
|
1305
|
-
id?: any;
|
|
1306
1291
|
uid?: any;
|
|
1307
1292
|
ciphertext?: any;
|
|
1293
|
+
id?: any;
|
|
1308
1294
|
};
|
|
1309
1295
|
contractorInfo: {
|
|
1310
1296
|
ciphertext: string;
|
|
@@ -1314,6 +1300,12 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1314
1300
|
rate: {
|
|
1315
1301
|
amount: number;
|
|
1316
1302
|
} | null;
|
|
1303
|
+
feedback: {
|
|
1304
|
+
score: number;
|
|
1305
|
+
feedbackSuppressed: boolean;
|
|
1306
|
+
comment: string;
|
|
1307
|
+
feedback_suppressed: boolean;
|
|
1308
|
+
};
|
|
1317
1309
|
feedbackToClient: {
|
|
1318
1310
|
score: number;
|
|
1319
1311
|
feedbackSuppressed: boolean;
|
|
@@ -1328,8 +1320,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1328
1320
|
similarJobs: any[];
|
|
1329
1321
|
sands: {
|
|
1330
1322
|
occupation: {
|
|
1331
|
-
id: string;
|
|
1332
1323
|
uid: string;
|
|
1324
|
+
id: string;
|
|
1333
1325
|
freeText: string | null;
|
|
1334
1326
|
ontologyId: string;
|
|
1335
1327
|
prefLabel: string;
|
|
@@ -1341,6 +1333,14 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1341
1333
|
isFreeText: boolean;
|
|
1342
1334
|
}[];
|
|
1343
1335
|
};
|
|
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
|
-
reason: string | null;
|
|
1353
1352
|
isDeclined: boolean;
|
|
1353
|
+
reason: string | null;
|
|
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
|
-
url: string;
|
|
1362
|
-
title: string;
|
|
1363
1361
|
description: string;
|
|
1362
|
+
title: string;
|
|
1363
|
+
url: string;
|
|
1364
1364
|
};
|
|
1365
1365
|
proposalPermissions: {
|
|
1366
1366
|
freelancerAllowed: boolean;
|
|
@@ -1390,19 +1390,9 @@ 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
1393
|
cache: boolean;
|
|
1402
1394
|
job: {
|
|
1403
1395
|
type: number;
|
|
1404
|
-
title: string;
|
|
1405
|
-
description: string;
|
|
1406
1396
|
status: number;
|
|
1407
1397
|
numberOfPositionsToHire: number;
|
|
1408
1398
|
category: {
|
|
@@ -1433,13 +1423,14 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1433
1423
|
hourlyBudgetType: string | null;
|
|
1434
1424
|
};
|
|
1435
1425
|
contractorTier: number;
|
|
1426
|
+
description: string;
|
|
1436
1427
|
segmentationData: {
|
|
1437
|
-
type: string;
|
|
1438
|
-
name: string;
|
|
1439
|
-
value: string;
|
|
1440
|
-
label: string;
|
|
1441
1428
|
customValue: string | null;
|
|
1429
|
+
label: string;
|
|
1430
|
+
name: string;
|
|
1442
1431
|
sortOrder: number;
|
|
1432
|
+
type: string;
|
|
1433
|
+
value: string;
|
|
1443
1434
|
skill?: any;
|
|
1444
1435
|
}[];
|
|
1445
1436
|
clientActivity: {
|
|
@@ -1455,6 +1446,7 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1455
1446
|
tags: string[];
|
|
1456
1447
|
};
|
|
1457
1448
|
uid: string;
|
|
1449
|
+
title: string;
|
|
1458
1450
|
ciphertext: string;
|
|
1459
1451
|
access: number;
|
|
1460
1452
|
createdOn: string;
|
|
@@ -1474,8 +1466,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1474
1466
|
risingTalent: boolean;
|
|
1475
1467
|
shouldHavePortfolio: boolean;
|
|
1476
1468
|
locationCheckRequired: boolean;
|
|
1477
|
-
location?: any;
|
|
1478
|
-
group?: any;
|
|
1479
1469
|
countries?: any;
|
|
1480
1470
|
earnings?: any;
|
|
1481
1471
|
groupRecno?: any;
|
|
@@ -1487,21 +1477,23 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1487
1477
|
states?: any;
|
|
1488
1478
|
tests?: any;
|
|
1489
1479
|
timezones?: any;
|
|
1480
|
+
group?: any;
|
|
1481
|
+
location?: any;
|
|
1490
1482
|
locations?: any;
|
|
1491
1483
|
};
|
|
1492
1484
|
questions: {
|
|
1493
|
-
position: number;
|
|
1494
1485
|
question: string;
|
|
1486
|
+
position: number;
|
|
1495
1487
|
}[];
|
|
1496
1488
|
durationIdV3: number;
|
|
1497
1489
|
durationLabel: string;
|
|
1498
1490
|
};
|
|
1499
1491
|
buyer: {
|
|
1500
1492
|
location: {
|
|
1501
|
-
country: string;
|
|
1502
1493
|
offsetFromUtcMillis: number;
|
|
1503
1494
|
countryTimezone: string;
|
|
1504
1495
|
city: string;
|
|
1496
|
+
country: string;
|
|
1505
1497
|
};
|
|
1506
1498
|
isEnterprise: boolean;
|
|
1507
1499
|
isPaymentMethodVerified: boolean;
|
|
@@ -1520,8 +1512,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1520
1512
|
name: string | null;
|
|
1521
1513
|
contractDate: string;
|
|
1522
1514
|
profile: {
|
|
1523
|
-
size: number;
|
|
1524
1515
|
industry: string;
|
|
1516
|
+
size: number;
|
|
1525
1517
|
};
|
|
1526
1518
|
isEDCReplicated?: any;
|
|
1527
1519
|
};
|
|
@@ -1561,12 +1553,6 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1561
1553
|
isVisitor: boolean;
|
|
1562
1554
|
openJobs: any[];
|
|
1563
1555
|
workHistory: {
|
|
1564
|
-
feedback: {
|
|
1565
|
-
score: number;
|
|
1566
|
-
feedbackSuppressed: boolean;
|
|
1567
|
-
comment: string;
|
|
1568
|
-
feedback_suppressed: boolean;
|
|
1569
|
-
};
|
|
1570
1556
|
startDate: string;
|
|
1571
1557
|
endDate: string;
|
|
1572
1558
|
totalCharge: number;
|
|
@@ -1575,9 +1561,9 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1575
1561
|
type: number;
|
|
1576
1562
|
title: string;
|
|
1577
1563
|
access: number;
|
|
1578
|
-
id?: any;
|
|
1579
1564
|
uid?: any;
|
|
1580
1565
|
ciphertext?: any;
|
|
1566
|
+
id?: any;
|
|
1581
1567
|
};
|
|
1582
1568
|
contractorInfo: {
|
|
1583
1569
|
ciphertext: string;
|
|
@@ -1587,6 +1573,12 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1587
1573
|
rate: {
|
|
1588
1574
|
amount: number;
|
|
1589
1575
|
} | null;
|
|
1576
|
+
feedback: {
|
|
1577
|
+
score: number;
|
|
1578
|
+
feedbackSuppressed: boolean;
|
|
1579
|
+
comment: string;
|
|
1580
|
+
feedback_suppressed: boolean;
|
|
1581
|
+
};
|
|
1590
1582
|
feedbackToClient: {
|
|
1591
1583
|
score: number;
|
|
1592
1584
|
feedbackSuppressed: boolean;
|
|
@@ -1601,8 +1593,8 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1601
1593
|
similarJobs: any[];
|
|
1602
1594
|
sands: {
|
|
1603
1595
|
occupation: {
|
|
1604
|
-
id: string;
|
|
1605
1596
|
uid: string;
|
|
1597
|
+
id: string;
|
|
1606
1598
|
freeText: string | null;
|
|
1607
1599
|
ontologyId: string;
|
|
1608
1600
|
prefLabel: string;
|
|
@@ -1614,6 +1606,14 @@ export declare const nuxtStateJobSchema: import("zod").ZodObject<{
|
|
|
1614
1606
|
isFreeText: boolean;
|
|
1615
1607
|
}[];
|
|
1616
1608
|
};
|
|
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
|
-
reason: string | null;
|
|
1626
1625
|
isDeclined: boolean;
|
|
1626
|
+
reason: string | null;
|
|
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
|
-
url: string;
|
|
1635
|
-
title: string;
|
|
1636
1634
|
description: string;
|
|
1635
|
+
title: string;
|
|
1636
|
+
url: string;
|
|
1637
1637
|
};
|
|
1638
1638
|
proposalPermissions: {
|
|
1639
1639
|
freelancerAllowed: boolean;
|