lancer-shared 1.2.241 → 1.2.242
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.map +1 -0
- 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 +285 -285
- 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 +1022 -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 +8 -6
|
@@ -70,15 +70,15 @@ export declare const jobListingSchema: z.ZodObject<{
|
|
|
70
70
|
highlighted: z.ZodBoolean;
|
|
71
71
|
}, "strip", z.ZodTypeAny, {
|
|
72
72
|
uid: string;
|
|
73
|
-
parentSkillUid: string | null;
|
|
74
73
|
prefLabel: string;
|
|
74
|
+
parentSkillUid: string | null;
|
|
75
75
|
prettyName: string;
|
|
76
76
|
highlighted: boolean;
|
|
77
77
|
freeText?: any;
|
|
78
78
|
}, {
|
|
79
79
|
uid: string;
|
|
80
|
-
parentSkillUid: string | null;
|
|
81
80
|
prefLabel: string;
|
|
81
|
+
parentSkillUid: string | null;
|
|
82
82
|
prettyName: string;
|
|
83
83
|
highlighted: boolean;
|
|
84
84
|
freeText?: any;
|
|
@@ -87,11 +87,11 @@ export declare const jobListingSchema: z.ZodObject<{
|
|
|
87
87
|
min: z.ZodNumber;
|
|
88
88
|
max: z.ZodNumber;
|
|
89
89
|
}, "strip", z.ZodTypeAny, {
|
|
90
|
-
min: number;
|
|
91
90
|
max: number;
|
|
92
|
-
}, {
|
|
93
91
|
min: number;
|
|
92
|
+
}, {
|
|
94
93
|
max: number;
|
|
94
|
+
min: number;
|
|
95
95
|
}>;
|
|
96
96
|
weeklyBudget: z.ZodObject<{
|
|
97
97
|
amount: z.ZodNumber;
|
|
@@ -103,17 +103,18 @@ export declare const jobListingSchema: z.ZodObject<{
|
|
|
103
103
|
isSTSVectorSearchResult: z.ZodBoolean;
|
|
104
104
|
}, "strip", z.ZodTypeAny, {
|
|
105
105
|
type: number;
|
|
106
|
-
|
|
106
|
+
title: string;
|
|
107
|
+
description: string;
|
|
108
|
+
premium: boolean;
|
|
107
109
|
amount: {
|
|
108
110
|
amount: number;
|
|
109
111
|
};
|
|
112
|
+
uid: string;
|
|
110
113
|
ciphertext: string;
|
|
111
|
-
title: string;
|
|
112
|
-
description: string;
|
|
113
114
|
createdOn: string;
|
|
115
|
+
durationLabel: string | null;
|
|
114
116
|
publishedOn: string;
|
|
115
117
|
renewedOn: string | null;
|
|
116
|
-
durationLabel: string | null;
|
|
117
118
|
engagement: string | null;
|
|
118
119
|
connectPrice: number | null;
|
|
119
120
|
client: {
|
|
@@ -132,18 +133,17 @@ export declare const jobListingSchema: z.ZodObject<{
|
|
|
132
133
|
tierText: string | null;
|
|
133
134
|
isApplied: boolean;
|
|
134
135
|
proposalsTier: string | null;
|
|
135
|
-
premium: boolean;
|
|
136
136
|
attrs: {
|
|
137
137
|
uid: string;
|
|
138
|
-
parentSkillUid: string | null;
|
|
139
138
|
prefLabel: string;
|
|
139
|
+
parentSkillUid: string | null;
|
|
140
140
|
prettyName: string;
|
|
141
141
|
highlighted: boolean;
|
|
142
142
|
freeText?: any;
|
|
143
143
|
}[];
|
|
144
144
|
hourlyBudget: {
|
|
145
|
-
min: number;
|
|
146
145
|
max: number;
|
|
146
|
+
min: number;
|
|
147
147
|
};
|
|
148
148
|
weeklyBudget: {
|
|
149
149
|
amount: number;
|
|
@@ -154,17 +154,18 @@ export declare const jobListingSchema: z.ZodObject<{
|
|
|
154
154
|
clientRelation?: any;
|
|
155
155
|
}, {
|
|
156
156
|
type: number;
|
|
157
|
-
|
|
157
|
+
title: string;
|
|
158
|
+
description: string;
|
|
159
|
+
premium: boolean;
|
|
158
160
|
amount: {
|
|
159
161
|
amount: number;
|
|
160
162
|
};
|
|
163
|
+
uid: string;
|
|
161
164
|
ciphertext: string;
|
|
162
|
-
title: string;
|
|
163
|
-
description: string;
|
|
164
165
|
createdOn: string;
|
|
166
|
+
durationLabel: string | null;
|
|
165
167
|
publishedOn: string;
|
|
166
168
|
renewedOn: string | null;
|
|
167
|
-
durationLabel: string | null;
|
|
168
169
|
engagement: string | null;
|
|
169
170
|
connectPrice: number | null;
|
|
170
171
|
client: {
|
|
@@ -183,18 +184,17 @@ export declare const jobListingSchema: z.ZodObject<{
|
|
|
183
184
|
tierText: string | null;
|
|
184
185
|
isApplied: boolean;
|
|
185
186
|
proposalsTier: string | null;
|
|
186
|
-
premium: boolean;
|
|
187
187
|
attrs: {
|
|
188
188
|
uid: string;
|
|
189
|
-
parentSkillUid: string | null;
|
|
190
189
|
prefLabel: string;
|
|
190
|
+
parentSkillUid: string | null;
|
|
191
191
|
prettyName: string;
|
|
192
192
|
highlighted: boolean;
|
|
193
193
|
freeText?: any;
|
|
194
194
|
}[];
|
|
195
195
|
hourlyBudget: {
|
|
196
|
-
min: number;
|
|
197
196
|
max: number;
|
|
197
|
+
min: number;
|
|
198
198
|
};
|
|
199
199
|
weeklyBudget: {
|
|
200
200
|
amount: number;
|
|
@@ -212,13 +212,13 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
212
212
|
loaded: z.ZodBoolean;
|
|
213
213
|
failed: z.ZodBoolean;
|
|
214
214
|
}, "strip", z.ZodTypeAny, {
|
|
215
|
-
loading: boolean;
|
|
216
215
|
loaded: boolean;
|
|
217
216
|
failed: boolean;
|
|
218
|
-
}, {
|
|
219
217
|
loading: boolean;
|
|
218
|
+
}, {
|
|
220
219
|
loaded: boolean;
|
|
221
220
|
failed: boolean;
|
|
221
|
+
loading: boolean;
|
|
222
222
|
}>;
|
|
223
223
|
jobs: z.ZodArray<z.ZodObject<{
|
|
224
224
|
uid: z.ZodString;
|
|
@@ -290,15 +290,15 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
290
290
|
highlighted: z.ZodBoolean;
|
|
291
291
|
}, "strip", z.ZodTypeAny, {
|
|
292
292
|
uid: string;
|
|
293
|
-
parentSkillUid: string | null;
|
|
294
293
|
prefLabel: string;
|
|
294
|
+
parentSkillUid: string | null;
|
|
295
295
|
prettyName: string;
|
|
296
296
|
highlighted: boolean;
|
|
297
297
|
freeText?: any;
|
|
298
298
|
}, {
|
|
299
299
|
uid: string;
|
|
300
|
-
parentSkillUid: string | null;
|
|
301
300
|
prefLabel: string;
|
|
301
|
+
parentSkillUid: string | null;
|
|
302
302
|
prettyName: string;
|
|
303
303
|
highlighted: boolean;
|
|
304
304
|
freeText?: any;
|
|
@@ -307,11 +307,11 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
307
307
|
min: z.ZodNumber;
|
|
308
308
|
max: z.ZodNumber;
|
|
309
309
|
}, "strip", z.ZodTypeAny, {
|
|
310
|
-
min: number;
|
|
311
310
|
max: number;
|
|
312
|
-
}, {
|
|
313
311
|
min: number;
|
|
312
|
+
}, {
|
|
314
313
|
max: number;
|
|
314
|
+
min: number;
|
|
315
315
|
}>;
|
|
316
316
|
weeklyBudget: z.ZodObject<{
|
|
317
317
|
amount: z.ZodNumber;
|
|
@@ -323,17 +323,18 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
323
323
|
isSTSVectorSearchResult: z.ZodBoolean;
|
|
324
324
|
}, "strip", z.ZodTypeAny, {
|
|
325
325
|
type: number;
|
|
326
|
-
|
|
326
|
+
title: string;
|
|
327
|
+
description: string;
|
|
328
|
+
premium: boolean;
|
|
327
329
|
amount: {
|
|
328
330
|
amount: number;
|
|
329
331
|
};
|
|
332
|
+
uid: string;
|
|
330
333
|
ciphertext: string;
|
|
331
|
-
title: string;
|
|
332
|
-
description: string;
|
|
333
334
|
createdOn: string;
|
|
335
|
+
durationLabel: string | null;
|
|
334
336
|
publishedOn: string;
|
|
335
337
|
renewedOn: string | null;
|
|
336
|
-
durationLabel: string | null;
|
|
337
338
|
engagement: string | null;
|
|
338
339
|
connectPrice: number | null;
|
|
339
340
|
client: {
|
|
@@ -352,18 +353,17 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
352
353
|
tierText: string | null;
|
|
353
354
|
isApplied: boolean;
|
|
354
355
|
proposalsTier: string | null;
|
|
355
|
-
premium: boolean;
|
|
356
356
|
attrs: {
|
|
357
357
|
uid: string;
|
|
358
|
-
parentSkillUid: string | null;
|
|
359
358
|
prefLabel: string;
|
|
359
|
+
parentSkillUid: string | null;
|
|
360
360
|
prettyName: string;
|
|
361
361
|
highlighted: boolean;
|
|
362
362
|
freeText?: any;
|
|
363
363
|
}[];
|
|
364
364
|
hourlyBudget: {
|
|
365
|
-
min: number;
|
|
366
365
|
max: number;
|
|
366
|
+
min: number;
|
|
367
367
|
};
|
|
368
368
|
weeklyBudget: {
|
|
369
369
|
amount: number;
|
|
@@ -374,17 +374,18 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
374
374
|
clientRelation?: any;
|
|
375
375
|
}, {
|
|
376
376
|
type: number;
|
|
377
|
-
|
|
377
|
+
title: string;
|
|
378
|
+
description: string;
|
|
379
|
+
premium: boolean;
|
|
378
380
|
amount: {
|
|
379
381
|
amount: number;
|
|
380
382
|
};
|
|
383
|
+
uid: string;
|
|
381
384
|
ciphertext: string;
|
|
382
|
-
title: string;
|
|
383
|
-
description: string;
|
|
384
385
|
createdOn: string;
|
|
386
|
+
durationLabel: string | null;
|
|
385
387
|
publishedOn: string;
|
|
386
388
|
renewedOn: string | null;
|
|
387
|
-
durationLabel: string | null;
|
|
388
389
|
engagement: string | null;
|
|
389
390
|
connectPrice: number | null;
|
|
390
391
|
client: {
|
|
@@ -403,18 +404,17 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
403
404
|
tierText: string | null;
|
|
404
405
|
isApplied: boolean;
|
|
405
406
|
proposalsTier: string | null;
|
|
406
|
-
premium: boolean;
|
|
407
407
|
attrs: {
|
|
408
408
|
uid: string;
|
|
409
|
-
parentSkillUid: string | null;
|
|
410
409
|
prefLabel: string;
|
|
410
|
+
parentSkillUid: string | null;
|
|
411
411
|
prettyName: string;
|
|
412
412
|
highlighted: boolean;
|
|
413
413
|
freeText?: any;
|
|
414
414
|
}[];
|
|
415
415
|
hourlyBudget: {
|
|
416
|
-
min: number;
|
|
417
416
|
max: number;
|
|
417
|
+
min: number;
|
|
418
418
|
};
|
|
419
419
|
weeklyBudget: {
|
|
420
420
|
amount: number;
|
|
@@ -429,12 +429,12 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
429
429
|
offset: z.ZodNumber;
|
|
430
430
|
count: z.ZodNumber;
|
|
431
431
|
}, "strip", z.ZodTypeAny, {
|
|
432
|
-
total: number;
|
|
433
432
|
offset: number;
|
|
433
|
+
total: number;
|
|
434
434
|
count: number;
|
|
435
435
|
}, {
|
|
436
|
-
total: number;
|
|
437
436
|
offset: number;
|
|
437
|
+
total: number;
|
|
438
438
|
count: number;
|
|
439
439
|
}>;
|
|
440
440
|
abortController: z.ZodNullable<z.ZodAny>;
|
|
@@ -443,23 +443,24 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
443
443
|
searchQueryCache: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
444
444
|
}, "strip", z.ZodTypeAny, {
|
|
445
445
|
status: {
|
|
446
|
-
loading: boolean;
|
|
447
446
|
loaded: boolean;
|
|
448
447
|
failed: boolean;
|
|
448
|
+
loading: boolean;
|
|
449
449
|
};
|
|
450
450
|
jobs: {
|
|
451
451
|
type: number;
|
|
452
|
-
|
|
452
|
+
title: string;
|
|
453
|
+
description: string;
|
|
454
|
+
premium: boolean;
|
|
453
455
|
amount: {
|
|
454
456
|
amount: number;
|
|
455
457
|
};
|
|
458
|
+
uid: string;
|
|
456
459
|
ciphertext: string;
|
|
457
|
-
title: string;
|
|
458
|
-
description: string;
|
|
459
460
|
createdOn: string;
|
|
461
|
+
durationLabel: string | null;
|
|
460
462
|
publishedOn: string;
|
|
461
463
|
renewedOn: string | null;
|
|
462
|
-
durationLabel: string | null;
|
|
463
464
|
engagement: string | null;
|
|
464
465
|
connectPrice: number | null;
|
|
465
466
|
client: {
|
|
@@ -478,18 +479,17 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
478
479
|
tierText: string | null;
|
|
479
480
|
isApplied: boolean;
|
|
480
481
|
proposalsTier: string | null;
|
|
481
|
-
premium: boolean;
|
|
482
482
|
attrs: {
|
|
483
483
|
uid: string;
|
|
484
|
-
parentSkillUid: string | null;
|
|
485
484
|
prefLabel: string;
|
|
485
|
+
parentSkillUid: string | null;
|
|
486
486
|
prettyName: string;
|
|
487
487
|
highlighted: boolean;
|
|
488
488
|
freeText?: any;
|
|
489
489
|
}[];
|
|
490
490
|
hourlyBudget: {
|
|
491
|
-
min: number;
|
|
492
491
|
max: number;
|
|
492
|
+
min: number;
|
|
493
493
|
};
|
|
494
494
|
weeklyBudget: {
|
|
495
495
|
amount: number;
|
|
@@ -500,8 +500,8 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
500
500
|
clientRelation?: any;
|
|
501
501
|
}[];
|
|
502
502
|
paging: {
|
|
503
|
-
total: number;
|
|
504
503
|
offset: number;
|
|
504
|
+
total: number;
|
|
505
505
|
count: number;
|
|
506
506
|
};
|
|
507
507
|
currentPage: number;
|
|
@@ -510,23 +510,24 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
510
510
|
abortController?: any;
|
|
511
511
|
}, {
|
|
512
512
|
status: {
|
|
513
|
-
loading: boolean;
|
|
514
513
|
loaded: boolean;
|
|
515
514
|
failed: boolean;
|
|
515
|
+
loading: boolean;
|
|
516
516
|
};
|
|
517
517
|
jobs: {
|
|
518
518
|
type: number;
|
|
519
|
-
|
|
519
|
+
title: string;
|
|
520
|
+
description: string;
|
|
521
|
+
premium: boolean;
|
|
520
522
|
amount: {
|
|
521
523
|
amount: number;
|
|
522
524
|
};
|
|
525
|
+
uid: string;
|
|
523
526
|
ciphertext: string;
|
|
524
|
-
title: string;
|
|
525
|
-
description: string;
|
|
526
527
|
createdOn: string;
|
|
528
|
+
durationLabel: string | null;
|
|
527
529
|
publishedOn: string;
|
|
528
530
|
renewedOn: string | null;
|
|
529
|
-
durationLabel: string | null;
|
|
530
531
|
engagement: string | null;
|
|
531
532
|
connectPrice: number | null;
|
|
532
533
|
client: {
|
|
@@ -545,18 +546,17 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
545
546
|
tierText: string | null;
|
|
546
547
|
isApplied: boolean;
|
|
547
548
|
proposalsTier: string | null;
|
|
548
|
-
premium: boolean;
|
|
549
549
|
attrs: {
|
|
550
550
|
uid: string;
|
|
551
|
-
parentSkillUid: string | null;
|
|
552
551
|
prefLabel: string;
|
|
552
|
+
parentSkillUid: string | null;
|
|
553
553
|
prettyName: string;
|
|
554
554
|
highlighted: boolean;
|
|
555
555
|
freeText?: any;
|
|
556
556
|
}[];
|
|
557
557
|
hourlyBudget: {
|
|
558
|
-
min: number;
|
|
559
558
|
max: number;
|
|
559
|
+
min: number;
|
|
560
560
|
};
|
|
561
561
|
weeklyBudget: {
|
|
562
562
|
amount: number;
|
|
@@ -567,8 +567,8 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
567
567
|
clientRelation?: any;
|
|
568
568
|
}[];
|
|
569
569
|
paging: {
|
|
570
|
-
total: number;
|
|
571
570
|
offset: number;
|
|
571
|
+
total: number;
|
|
572
572
|
count: number;
|
|
573
573
|
};
|
|
574
574
|
currentPage: number;
|
|
@@ -579,23 +579,24 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
579
579
|
}, "strip", z.ZodTypeAny, {
|
|
580
580
|
jobsSearch: {
|
|
581
581
|
status: {
|
|
582
|
-
loading: boolean;
|
|
583
582
|
loaded: boolean;
|
|
584
583
|
failed: boolean;
|
|
584
|
+
loading: boolean;
|
|
585
585
|
};
|
|
586
586
|
jobs: {
|
|
587
587
|
type: number;
|
|
588
|
-
|
|
588
|
+
title: string;
|
|
589
|
+
description: string;
|
|
590
|
+
premium: boolean;
|
|
589
591
|
amount: {
|
|
590
592
|
amount: number;
|
|
591
593
|
};
|
|
594
|
+
uid: string;
|
|
592
595
|
ciphertext: string;
|
|
593
|
-
title: string;
|
|
594
|
-
description: string;
|
|
595
596
|
createdOn: string;
|
|
597
|
+
durationLabel: string | null;
|
|
596
598
|
publishedOn: string;
|
|
597
599
|
renewedOn: string | null;
|
|
598
|
-
durationLabel: string | null;
|
|
599
600
|
engagement: string | null;
|
|
600
601
|
connectPrice: number | null;
|
|
601
602
|
client: {
|
|
@@ -614,18 +615,17 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
614
615
|
tierText: string | null;
|
|
615
616
|
isApplied: boolean;
|
|
616
617
|
proposalsTier: string | null;
|
|
617
|
-
premium: boolean;
|
|
618
618
|
attrs: {
|
|
619
619
|
uid: string;
|
|
620
|
-
parentSkillUid: string | null;
|
|
621
620
|
prefLabel: string;
|
|
621
|
+
parentSkillUid: string | null;
|
|
622
622
|
prettyName: string;
|
|
623
623
|
highlighted: boolean;
|
|
624
624
|
freeText?: any;
|
|
625
625
|
}[];
|
|
626
626
|
hourlyBudget: {
|
|
627
|
-
min: number;
|
|
628
627
|
max: number;
|
|
628
|
+
min: number;
|
|
629
629
|
};
|
|
630
630
|
weeklyBudget: {
|
|
631
631
|
amount: number;
|
|
@@ -636,8 +636,8 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
636
636
|
clientRelation?: any;
|
|
637
637
|
}[];
|
|
638
638
|
paging: {
|
|
639
|
-
total: number;
|
|
640
639
|
offset: number;
|
|
640
|
+
total: number;
|
|
641
641
|
count: number;
|
|
642
642
|
};
|
|
643
643
|
currentPage: number;
|
|
@@ -648,23 +648,24 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
648
648
|
}, {
|
|
649
649
|
jobsSearch: {
|
|
650
650
|
status: {
|
|
651
|
-
loading: boolean;
|
|
652
651
|
loaded: boolean;
|
|
653
652
|
failed: boolean;
|
|
653
|
+
loading: boolean;
|
|
654
654
|
};
|
|
655
655
|
jobs: {
|
|
656
656
|
type: number;
|
|
657
|
-
|
|
657
|
+
title: string;
|
|
658
|
+
description: string;
|
|
659
|
+
premium: boolean;
|
|
658
660
|
amount: {
|
|
659
661
|
amount: number;
|
|
660
662
|
};
|
|
663
|
+
uid: string;
|
|
661
664
|
ciphertext: string;
|
|
662
|
-
title: string;
|
|
663
|
-
description: string;
|
|
664
665
|
createdOn: string;
|
|
666
|
+
durationLabel: string | null;
|
|
665
667
|
publishedOn: string;
|
|
666
668
|
renewedOn: string | null;
|
|
667
|
-
durationLabel: string | null;
|
|
668
669
|
engagement: string | null;
|
|
669
670
|
connectPrice: number | null;
|
|
670
671
|
client: {
|
|
@@ -683,18 +684,17 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
683
684
|
tierText: string | null;
|
|
684
685
|
isApplied: boolean;
|
|
685
686
|
proposalsTier: string | null;
|
|
686
|
-
premium: boolean;
|
|
687
687
|
attrs: {
|
|
688
688
|
uid: string;
|
|
689
|
-
parentSkillUid: string | null;
|
|
690
689
|
prefLabel: string;
|
|
690
|
+
parentSkillUid: string | null;
|
|
691
691
|
prettyName: string;
|
|
692
692
|
highlighted: boolean;
|
|
693
693
|
freeText?: any;
|
|
694
694
|
}[];
|
|
695
695
|
hourlyBudget: {
|
|
696
|
-
min: number;
|
|
697
696
|
max: number;
|
|
697
|
+
min: number;
|
|
698
698
|
};
|
|
699
699
|
weeklyBudget: {
|
|
700
700
|
amount: number;
|
|
@@ -705,8 +705,8 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
705
705
|
clientRelation?: any;
|
|
706
706
|
}[];
|
|
707
707
|
paging: {
|
|
708
|
-
total: number;
|
|
709
708
|
offset: number;
|
|
709
|
+
total: number;
|
|
710
710
|
count: number;
|
|
711
711
|
};
|
|
712
712
|
currentPage: number;
|
|
@@ -719,23 +719,24 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
719
719
|
state: {
|
|
720
720
|
jobsSearch: {
|
|
721
721
|
status: {
|
|
722
|
-
loading: boolean;
|
|
723
722
|
loaded: boolean;
|
|
724
723
|
failed: boolean;
|
|
724
|
+
loading: boolean;
|
|
725
725
|
};
|
|
726
726
|
jobs: {
|
|
727
727
|
type: number;
|
|
728
|
-
|
|
728
|
+
title: string;
|
|
729
|
+
description: string;
|
|
730
|
+
premium: boolean;
|
|
729
731
|
amount: {
|
|
730
732
|
amount: number;
|
|
731
733
|
};
|
|
734
|
+
uid: string;
|
|
732
735
|
ciphertext: string;
|
|
733
|
-
title: string;
|
|
734
|
-
description: string;
|
|
735
736
|
createdOn: string;
|
|
737
|
+
durationLabel: string | null;
|
|
736
738
|
publishedOn: string;
|
|
737
739
|
renewedOn: string | null;
|
|
738
|
-
durationLabel: string | null;
|
|
739
740
|
engagement: string | null;
|
|
740
741
|
connectPrice: number | null;
|
|
741
742
|
client: {
|
|
@@ -754,18 +755,17 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
754
755
|
tierText: string | null;
|
|
755
756
|
isApplied: boolean;
|
|
756
757
|
proposalsTier: string | null;
|
|
757
|
-
premium: boolean;
|
|
758
758
|
attrs: {
|
|
759
759
|
uid: string;
|
|
760
|
-
parentSkillUid: string | null;
|
|
761
760
|
prefLabel: string;
|
|
761
|
+
parentSkillUid: string | null;
|
|
762
762
|
prettyName: string;
|
|
763
763
|
highlighted: boolean;
|
|
764
764
|
freeText?: any;
|
|
765
765
|
}[];
|
|
766
766
|
hourlyBudget: {
|
|
767
|
-
min: number;
|
|
768
767
|
max: number;
|
|
768
|
+
min: number;
|
|
769
769
|
};
|
|
770
770
|
weeklyBudget: {
|
|
771
771
|
amount: number;
|
|
@@ -776,8 +776,8 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
776
776
|
clientRelation?: any;
|
|
777
777
|
}[];
|
|
778
778
|
paging: {
|
|
779
|
-
total: number;
|
|
780
779
|
offset: number;
|
|
780
|
+
total: number;
|
|
781
781
|
count: number;
|
|
782
782
|
};
|
|
783
783
|
currentPage: number;
|
|
@@ -790,23 +790,24 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
790
790
|
state: {
|
|
791
791
|
jobsSearch: {
|
|
792
792
|
status: {
|
|
793
|
-
loading: boolean;
|
|
794
793
|
loaded: boolean;
|
|
795
794
|
failed: boolean;
|
|
795
|
+
loading: boolean;
|
|
796
796
|
};
|
|
797
797
|
jobs: {
|
|
798
798
|
type: number;
|
|
799
|
-
|
|
799
|
+
title: string;
|
|
800
|
+
description: string;
|
|
801
|
+
premium: boolean;
|
|
800
802
|
amount: {
|
|
801
803
|
amount: number;
|
|
802
804
|
};
|
|
805
|
+
uid: string;
|
|
803
806
|
ciphertext: string;
|
|
804
|
-
title: string;
|
|
805
|
-
description: string;
|
|
806
807
|
createdOn: string;
|
|
808
|
+
durationLabel: string | null;
|
|
807
809
|
publishedOn: string;
|
|
808
810
|
renewedOn: string | null;
|
|
809
|
-
durationLabel: string | null;
|
|
810
811
|
engagement: string | null;
|
|
811
812
|
connectPrice: number | null;
|
|
812
813
|
client: {
|
|
@@ -825,18 +826,17 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
825
826
|
tierText: string | null;
|
|
826
827
|
isApplied: boolean;
|
|
827
828
|
proposalsTier: string | null;
|
|
828
|
-
premium: boolean;
|
|
829
829
|
attrs: {
|
|
830
830
|
uid: string;
|
|
831
|
-
parentSkillUid: string | null;
|
|
832
831
|
prefLabel: string;
|
|
832
|
+
parentSkillUid: string | null;
|
|
833
833
|
prettyName: string;
|
|
834
834
|
highlighted: boolean;
|
|
835
835
|
freeText?: any;
|
|
836
836
|
}[];
|
|
837
837
|
hourlyBudget: {
|
|
838
|
-
min: number;
|
|
839
838
|
max: number;
|
|
839
|
+
min: number;
|
|
840
840
|
};
|
|
841
841
|
weeklyBudget: {
|
|
842
842
|
amount: number;
|
|
@@ -847,8 +847,8 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
847
847
|
clientRelation?: any;
|
|
848
848
|
}[];
|
|
849
849
|
paging: {
|
|
850
|
-
total: number;
|
|
851
850
|
offset: number;
|
|
851
|
+
total: number;
|
|
852
852
|
count: number;
|
|
853
853
|
};
|
|
854
854
|
currentPage: number;
|