lancer-shared 1.2.118 → 1.2.120

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.
Files changed (73) hide show
  1. package/dist/bundle.cjs.js +903 -322
  2. package/dist/constants/organization.d.ts +2 -2
  3. package/dist/constants/proxies.d.ts +4 -0
  4. package/dist/constants/routes.d.ts +3 -2
  5. package/dist/constants/routes.js +6 -0
  6. package/dist/constants/upwork-filters.d.ts +5 -0
  7. package/dist/constants/upwork-filters.js +75 -0
  8. package/dist/schemas/account/bidder-account.d.ts +19 -7
  9. package/dist/schemas/account/exceptions/no-bidder-accounts-available.d.ts +5 -0
  10. package/dist/schemas/account/scraper-account.d.ts +21 -16
  11. package/dist/schemas/ai-config/ai-config.d.ts +39 -0
  12. package/dist/schemas/ai-config/ai-config.js +12 -0
  13. package/dist/schemas/ai-config/index.d.ts +1 -0
  14. package/dist/schemas/ai-config/index.js +17 -0
  15. package/dist/schemas/bid/bid-status.d.ts +30 -0
  16. package/dist/schemas/bid/bid-status.js +15 -0
  17. package/dist/schemas/bid/exceptions/base-exception.d.ts +4 -0
  18. package/dist/schemas/bid/exceptions/evalute-element.exception.d.ts +5 -0
  19. package/dist/schemas/bid/exceptions/wait-for-function-timeout.d.ts +5 -0
  20. package/dist/schemas/bidding/proposal-dto.d.ts +26 -0
  21. package/dist/schemas/bidding/proposal-dto.js +18 -0
  22. package/dist/schemas/campaign/campaign-integrations.d.ts +0 -5
  23. package/dist/schemas/job/feed-job.d.ts +842 -0
  24. package/dist/schemas/job/index.d.ts +3 -0
  25. package/dist/schemas/job/job-details.d.ts +5711 -305
  26. package/dist/schemas/job/job-exceptions.d.ts +10 -0
  27. package/dist/schemas/job/job-pipeline.d.ts +74 -0
  28. package/dist/schemas/job/job-pipeline.js +29 -0
  29. package/dist/schemas/job/job-suitability.d.ts +12 -0
  30. package/dist/schemas/job/job-suitability.js +13 -0
  31. package/dist/schemas/job/job.d.ts +16 -16
  32. package/dist/schemas/job/pipeline-job.d.ts +9 -3
  33. package/dist/schemas/job/pipeline-job.js +1 -0
  34. package/dist/schemas/knowledge-object/index.d.ts +1 -0
  35. package/dist/schemas/knowledge-object/index.js +17 -0
  36. package/dist/schemas/knowledge-object/knowledge-object.d.ts +128 -0
  37. package/dist/schemas/knowledge-object/knowledge-object.js +47 -0
  38. package/dist/schemas/logger/log-event.d.ts +290 -36
  39. package/dist/schemas/proxy/proxy-available-replacements.d.ts +1 -1
  40. package/dist/schemas/proxy/proxy.d.ts +20 -9
  41. package/dist/schemas/proxy/proxy.js +3 -1
  42. package/dist/schemas/scraper/scrape-payload.d.ts +5 -0
  43. package/dist/schemas/scraper/scrape-response.d.ts +345 -0
  44. package/dist/schemas/scraper/scrape-response.js +9 -0
  45. package/dist/schemas/upwork-account/index.d.ts +1 -1
  46. package/dist/schemas/upwork-account/index.js +1 -1
  47. package/dist/schemas/upwork-account/upwork-business-manager-account.d.ts +14 -14
  48. package/dist/schemas/upwork-account/upwork-business-manager-account.js +2 -2
  49. package/dist/schemas/upwork-account/upwork-scraper-account.d.ts +92 -0
  50. package/dist/schemas/upwork-account/upwork-scraper-account.js +31 -0
  51. package/dist/schemas/upwork-account/upwork-scraping-account.d.ts +23 -23
  52. package/dist/schemas/upwork-account/upwork-scraping-account.js +4 -3
  53. package/dist/types/ai-config/ai-config.d.ts +6 -0
  54. package/dist/types/ai-config/ai-config.js +2 -0
  55. package/dist/types/ai-config/index.d.ts +1 -0
  56. package/dist/types/ai-config/index.js +17 -0
  57. package/dist/types/bid/bid-status.d.ts +5 -0
  58. package/dist/types/bid/bid-status.js +2 -0
  59. package/dist/types/bidding/proposal-dto.d.ts +3 -0
  60. package/dist/types/bidding/proposal-dto.js +2 -0
  61. package/dist/types/job/job-pipeline.d.ts +4 -0
  62. package/dist/types/job/job-pipeline.js +2 -0
  63. package/dist/types/job/job-suitability.d.ts +3 -0
  64. package/dist/types/job/job-suitability.js +2 -0
  65. package/dist/types/knowledge-object/index.d.ts +1 -0
  66. package/dist/types/knowledge-object/index.js +17 -0
  67. package/dist/types/knowledge-object/knowledge-object.d.ts +4 -0
  68. package/dist/types/knowledge-object/knowledge-object.js +2 -0
  69. package/dist/types/scraper/scrape-response.d.ts +4 -0
  70. package/dist/types/scraper/scrape-response.js +2 -0
  71. package/dist/types/upwork-account/upwork-scraping-account.d.ts +2 -2
  72. package/package.json +1 -1
  73. package/dist/schemas/account/bidder-account-rental.d.ts +0 -91
@@ -0,0 +1,842 @@
1
+ import { z } from 'zod';
2
+ import { Region } from '../shared';
3
+ export declare const feedJobSchemaV2: z.ZodObject<{
4
+ uid: z.ZodString;
5
+ ciphertext: z.ZodString;
6
+ title: z.ZodString;
7
+ description: z.ZodString;
8
+ createdOn: z.ZodString;
9
+ publishedOn: z.ZodString;
10
+ renewedOn: z.ZodNullable<z.ZodString>;
11
+ type: z.ZodNumber;
12
+ durationLabel: z.ZodNullable<z.ZodString>;
13
+ engagement: z.ZodNullable<z.ZodString>;
14
+ amount: z.ZodObject<{
15
+ amount: z.ZodNumber;
16
+ }, "strip", z.ZodTypeAny, {
17
+ amount: number;
18
+ }, {
19
+ amount: number;
20
+ }>;
21
+ connectPrice: z.ZodNullable<z.ZodNumber>;
22
+ client: z.ZodObject<{
23
+ location: z.ZodObject<{
24
+ country: z.ZodNullable<z.ZodString>;
25
+ }, "strip", z.ZodTypeAny, {
26
+ country: string | null;
27
+ }, {
28
+ country: string | null;
29
+ }>;
30
+ isPaymentVerified: z.ZodBoolean;
31
+ totalSpent: z.ZodNullable<z.ZodString>;
32
+ totalReviews: z.ZodNumber;
33
+ totalFeedback: z.ZodNumber;
34
+ hasFinancialPrivacy: z.ZodBoolean;
35
+ }, "strip", z.ZodTypeAny, {
36
+ location: {
37
+ country: string | null;
38
+ };
39
+ isPaymentVerified: boolean;
40
+ totalSpent: string | null;
41
+ totalReviews: number;
42
+ totalFeedback: number;
43
+ hasFinancialPrivacy: boolean;
44
+ }, {
45
+ location: {
46
+ country: string | null;
47
+ };
48
+ isPaymentVerified: boolean;
49
+ totalSpent: string | null;
50
+ totalReviews: number;
51
+ totalFeedback: number;
52
+ hasFinancialPrivacy: boolean;
53
+ }>;
54
+ clientRelation: z.ZodNullable<z.ZodAny>;
55
+ freelancersToHire: z.ZodNumber;
56
+ relevanceEncoded: z.ZodString;
57
+ enterpriseJob: z.ZodBoolean;
58
+ tierText: z.ZodString;
59
+ isApplied: z.ZodBoolean;
60
+ proposalsTier: z.ZodNullable<z.ZodString>;
61
+ premium: z.ZodBoolean;
62
+ attrs: z.ZodArray<z.ZodObject<{
63
+ uid: z.ZodString;
64
+ parentSkillUid: z.ZodNullable<z.ZodString>;
65
+ prefLabel: z.ZodString;
66
+ prettyName: z.ZodString;
67
+ freeText: z.ZodNullable<z.ZodAny>;
68
+ highlighted: z.ZodBoolean;
69
+ }, "strip", z.ZodTypeAny, {
70
+ uid: string;
71
+ parentSkillUid: string | null;
72
+ prefLabel: string;
73
+ prettyName: string;
74
+ highlighted: boolean;
75
+ freeText?: any;
76
+ }, {
77
+ uid: string;
78
+ parentSkillUid: string | null;
79
+ prefLabel: string;
80
+ prettyName: string;
81
+ highlighted: boolean;
82
+ freeText?: any;
83
+ }>, "many">;
84
+ hourlyBudget: z.ZodObject<{
85
+ min: z.ZodNumber;
86
+ max: z.ZodNumber;
87
+ }, "strip", z.ZodTypeAny, {
88
+ min: number;
89
+ max: number;
90
+ }, {
91
+ min: number;
92
+ max: number;
93
+ }>;
94
+ weeklyBudget: z.ZodObject<{
95
+ amount: z.ZodNumber;
96
+ }, "strip", z.ZodTypeAny, {
97
+ amount: number;
98
+ }, {
99
+ amount: number;
100
+ }>;
101
+ isSTSVectorSearchResult: z.ZodBoolean;
102
+ }, "strip", z.ZodTypeAny, {
103
+ type: number;
104
+ uid: string;
105
+ amount: {
106
+ amount: number;
107
+ };
108
+ ciphertext: string;
109
+ title: string;
110
+ description: string;
111
+ createdOn: string;
112
+ publishedOn: string;
113
+ renewedOn: string | null;
114
+ durationLabel: string | null;
115
+ engagement: string | null;
116
+ connectPrice: number | null;
117
+ client: {
118
+ location: {
119
+ country: string | null;
120
+ };
121
+ isPaymentVerified: boolean;
122
+ totalSpent: string | null;
123
+ totalReviews: number;
124
+ totalFeedback: number;
125
+ hasFinancialPrivacy: boolean;
126
+ };
127
+ freelancersToHire: number;
128
+ relevanceEncoded: string;
129
+ enterpriseJob: boolean;
130
+ tierText: string;
131
+ isApplied: boolean;
132
+ proposalsTier: string | null;
133
+ premium: boolean;
134
+ attrs: {
135
+ uid: string;
136
+ parentSkillUid: string | null;
137
+ prefLabel: string;
138
+ prettyName: string;
139
+ highlighted: boolean;
140
+ freeText?: any;
141
+ }[];
142
+ hourlyBudget: {
143
+ min: number;
144
+ max: number;
145
+ };
146
+ weeklyBudget: {
147
+ amount: number;
148
+ };
149
+ isSTSVectorSearchResult: boolean;
150
+ clientRelation?: any;
151
+ }, {
152
+ type: number;
153
+ uid: string;
154
+ amount: {
155
+ amount: number;
156
+ };
157
+ ciphertext: string;
158
+ title: string;
159
+ description: string;
160
+ createdOn: string;
161
+ publishedOn: string;
162
+ renewedOn: string | null;
163
+ durationLabel: string | null;
164
+ engagement: string | null;
165
+ connectPrice: number | null;
166
+ client: {
167
+ location: {
168
+ country: string | null;
169
+ };
170
+ isPaymentVerified: boolean;
171
+ totalSpent: string | null;
172
+ totalReviews: number;
173
+ totalFeedback: number;
174
+ hasFinancialPrivacy: boolean;
175
+ };
176
+ freelancersToHire: number;
177
+ relevanceEncoded: string;
178
+ enterpriseJob: boolean;
179
+ tierText: string;
180
+ isApplied: boolean;
181
+ proposalsTier: string | null;
182
+ premium: boolean;
183
+ attrs: {
184
+ uid: string;
185
+ parentSkillUid: string | null;
186
+ prefLabel: string;
187
+ prettyName: string;
188
+ highlighted: boolean;
189
+ freeText?: any;
190
+ }[];
191
+ hourlyBudget: {
192
+ min: number;
193
+ max: number;
194
+ };
195
+ weeklyBudget: {
196
+ amount: number;
197
+ };
198
+ isSTSVectorSearchResult: boolean;
199
+ clientRelation?: any;
200
+ }>;
201
+ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
202
+ state: z.ZodObject<{
203
+ jobsSearch: z.ZodObject<{
204
+ status: z.ZodObject<{
205
+ loading: z.ZodBoolean;
206
+ loaded: z.ZodBoolean;
207
+ failed: z.ZodBoolean;
208
+ }, "strip", z.ZodTypeAny, {
209
+ loading: boolean;
210
+ loaded: boolean;
211
+ failed: boolean;
212
+ }, {
213
+ loading: boolean;
214
+ loaded: boolean;
215
+ failed: boolean;
216
+ }>;
217
+ jobs: z.ZodArray<z.ZodObject<{
218
+ uid: z.ZodString;
219
+ ciphertext: z.ZodString;
220
+ title: z.ZodString;
221
+ description: z.ZodString;
222
+ createdOn: z.ZodString;
223
+ publishedOn: z.ZodString;
224
+ renewedOn: z.ZodNullable<z.ZodString>;
225
+ type: z.ZodNumber;
226
+ durationLabel: z.ZodNullable<z.ZodString>;
227
+ engagement: z.ZodNullable<z.ZodString>;
228
+ amount: z.ZodObject<{
229
+ amount: z.ZodNumber;
230
+ }, "strip", z.ZodTypeAny, {
231
+ amount: number;
232
+ }, {
233
+ amount: number;
234
+ }>;
235
+ connectPrice: z.ZodNullable<z.ZodNumber>;
236
+ client: z.ZodObject<{
237
+ location: z.ZodObject<{
238
+ country: z.ZodNullable<z.ZodString>;
239
+ }, "strip", z.ZodTypeAny, {
240
+ country: string | null;
241
+ }, {
242
+ country: string | null;
243
+ }>;
244
+ isPaymentVerified: z.ZodBoolean;
245
+ totalSpent: z.ZodNullable<z.ZodString>;
246
+ totalReviews: z.ZodNumber;
247
+ totalFeedback: z.ZodNumber;
248
+ hasFinancialPrivacy: z.ZodBoolean;
249
+ }, "strip", z.ZodTypeAny, {
250
+ location: {
251
+ country: string | null;
252
+ };
253
+ isPaymentVerified: boolean;
254
+ totalSpent: string | null;
255
+ totalReviews: number;
256
+ totalFeedback: number;
257
+ hasFinancialPrivacy: boolean;
258
+ }, {
259
+ location: {
260
+ country: string | null;
261
+ };
262
+ isPaymentVerified: boolean;
263
+ totalSpent: string | null;
264
+ totalReviews: number;
265
+ totalFeedback: number;
266
+ hasFinancialPrivacy: boolean;
267
+ }>;
268
+ clientRelation: z.ZodNullable<z.ZodAny>;
269
+ freelancersToHire: z.ZodNumber;
270
+ relevanceEncoded: z.ZodString;
271
+ enterpriseJob: z.ZodBoolean;
272
+ tierText: z.ZodString;
273
+ isApplied: z.ZodBoolean;
274
+ proposalsTier: z.ZodNullable<z.ZodString>;
275
+ premium: z.ZodBoolean;
276
+ attrs: z.ZodArray<z.ZodObject<{
277
+ uid: z.ZodString;
278
+ parentSkillUid: z.ZodNullable<z.ZodString>;
279
+ prefLabel: z.ZodString;
280
+ prettyName: z.ZodString;
281
+ freeText: z.ZodNullable<z.ZodAny>;
282
+ highlighted: z.ZodBoolean;
283
+ }, "strip", z.ZodTypeAny, {
284
+ uid: string;
285
+ parentSkillUid: string | null;
286
+ prefLabel: string;
287
+ prettyName: string;
288
+ highlighted: boolean;
289
+ freeText?: any;
290
+ }, {
291
+ uid: string;
292
+ parentSkillUid: string | null;
293
+ prefLabel: string;
294
+ prettyName: string;
295
+ highlighted: boolean;
296
+ freeText?: any;
297
+ }>, "many">;
298
+ hourlyBudget: z.ZodObject<{
299
+ min: z.ZodNumber;
300
+ max: z.ZodNumber;
301
+ }, "strip", z.ZodTypeAny, {
302
+ min: number;
303
+ max: number;
304
+ }, {
305
+ min: number;
306
+ max: number;
307
+ }>;
308
+ weeklyBudget: z.ZodObject<{
309
+ amount: z.ZodNumber;
310
+ }, "strip", z.ZodTypeAny, {
311
+ amount: number;
312
+ }, {
313
+ amount: number;
314
+ }>;
315
+ isSTSVectorSearchResult: z.ZodBoolean;
316
+ }, "strip", z.ZodTypeAny, {
317
+ type: number;
318
+ uid: string;
319
+ amount: {
320
+ amount: number;
321
+ };
322
+ ciphertext: string;
323
+ title: string;
324
+ description: string;
325
+ createdOn: string;
326
+ publishedOn: string;
327
+ renewedOn: string | null;
328
+ durationLabel: string | null;
329
+ engagement: string | null;
330
+ connectPrice: number | null;
331
+ client: {
332
+ location: {
333
+ country: string | null;
334
+ };
335
+ isPaymentVerified: boolean;
336
+ totalSpent: string | null;
337
+ totalReviews: number;
338
+ totalFeedback: number;
339
+ hasFinancialPrivacy: boolean;
340
+ };
341
+ freelancersToHire: number;
342
+ relevanceEncoded: string;
343
+ enterpriseJob: boolean;
344
+ tierText: string;
345
+ isApplied: boolean;
346
+ proposalsTier: string | null;
347
+ premium: boolean;
348
+ attrs: {
349
+ uid: string;
350
+ parentSkillUid: string | null;
351
+ prefLabel: string;
352
+ prettyName: string;
353
+ highlighted: boolean;
354
+ freeText?: any;
355
+ }[];
356
+ hourlyBudget: {
357
+ min: number;
358
+ max: number;
359
+ };
360
+ weeklyBudget: {
361
+ amount: number;
362
+ };
363
+ isSTSVectorSearchResult: boolean;
364
+ clientRelation?: any;
365
+ }, {
366
+ type: number;
367
+ uid: string;
368
+ amount: {
369
+ amount: number;
370
+ };
371
+ ciphertext: string;
372
+ title: string;
373
+ description: string;
374
+ createdOn: string;
375
+ publishedOn: string;
376
+ renewedOn: string | null;
377
+ durationLabel: string | null;
378
+ engagement: string | null;
379
+ connectPrice: number | null;
380
+ client: {
381
+ location: {
382
+ country: string | null;
383
+ };
384
+ isPaymentVerified: boolean;
385
+ totalSpent: string | null;
386
+ totalReviews: number;
387
+ totalFeedback: number;
388
+ hasFinancialPrivacy: boolean;
389
+ };
390
+ freelancersToHire: number;
391
+ relevanceEncoded: string;
392
+ enterpriseJob: boolean;
393
+ tierText: string;
394
+ isApplied: boolean;
395
+ proposalsTier: string | null;
396
+ premium: boolean;
397
+ attrs: {
398
+ uid: string;
399
+ parentSkillUid: string | null;
400
+ prefLabel: string;
401
+ prettyName: string;
402
+ highlighted: boolean;
403
+ freeText?: any;
404
+ }[];
405
+ hourlyBudget: {
406
+ min: number;
407
+ max: number;
408
+ };
409
+ weeklyBudget: {
410
+ amount: number;
411
+ };
412
+ isSTSVectorSearchResult: boolean;
413
+ clientRelation?: any;
414
+ }>, "many">;
415
+ paging: z.ZodObject<{
416
+ total: z.ZodNumber;
417
+ offset: z.ZodNumber;
418
+ count: z.ZodNumber;
419
+ }, "strip", z.ZodTypeAny, {
420
+ total: number;
421
+ offset: number;
422
+ count: number;
423
+ }, {
424
+ total: number;
425
+ offset: number;
426
+ count: number;
427
+ }>;
428
+ abortController: z.ZodNullable<z.ZodAny>;
429
+ currentPage: z.ZodNumber;
430
+ jobsPerPage: z.ZodNumber;
431
+ searchQueryCache: z.ZodRecord<z.ZodString, z.ZodString>;
432
+ }, "strip", z.ZodTypeAny, {
433
+ status: {
434
+ loading: boolean;
435
+ loaded: boolean;
436
+ failed: boolean;
437
+ };
438
+ jobs: {
439
+ type: number;
440
+ uid: string;
441
+ amount: {
442
+ amount: number;
443
+ };
444
+ ciphertext: string;
445
+ title: string;
446
+ description: string;
447
+ createdOn: string;
448
+ publishedOn: string;
449
+ renewedOn: string | null;
450
+ durationLabel: string | null;
451
+ engagement: string | null;
452
+ connectPrice: number | null;
453
+ client: {
454
+ location: {
455
+ country: string | null;
456
+ };
457
+ isPaymentVerified: boolean;
458
+ totalSpent: string | null;
459
+ totalReviews: number;
460
+ totalFeedback: number;
461
+ hasFinancialPrivacy: boolean;
462
+ };
463
+ freelancersToHire: number;
464
+ relevanceEncoded: string;
465
+ enterpriseJob: boolean;
466
+ tierText: string;
467
+ isApplied: boolean;
468
+ proposalsTier: string | null;
469
+ premium: boolean;
470
+ attrs: {
471
+ uid: string;
472
+ parentSkillUid: string | null;
473
+ prefLabel: string;
474
+ prettyName: string;
475
+ highlighted: boolean;
476
+ freeText?: any;
477
+ }[];
478
+ hourlyBudget: {
479
+ min: number;
480
+ max: number;
481
+ };
482
+ weeklyBudget: {
483
+ amount: number;
484
+ };
485
+ isSTSVectorSearchResult: boolean;
486
+ clientRelation?: any;
487
+ }[];
488
+ paging: {
489
+ total: number;
490
+ offset: number;
491
+ count: number;
492
+ };
493
+ currentPage: number;
494
+ jobsPerPage: number;
495
+ searchQueryCache: Record<string, string>;
496
+ abortController?: any;
497
+ }, {
498
+ status: {
499
+ loading: boolean;
500
+ loaded: boolean;
501
+ failed: boolean;
502
+ };
503
+ jobs: {
504
+ type: number;
505
+ uid: string;
506
+ amount: {
507
+ amount: number;
508
+ };
509
+ ciphertext: string;
510
+ title: string;
511
+ description: string;
512
+ createdOn: string;
513
+ publishedOn: string;
514
+ renewedOn: string | null;
515
+ durationLabel: string | null;
516
+ engagement: string | null;
517
+ connectPrice: number | null;
518
+ client: {
519
+ location: {
520
+ country: string | null;
521
+ };
522
+ isPaymentVerified: boolean;
523
+ totalSpent: string | null;
524
+ totalReviews: number;
525
+ totalFeedback: number;
526
+ hasFinancialPrivacy: boolean;
527
+ };
528
+ freelancersToHire: number;
529
+ relevanceEncoded: string;
530
+ enterpriseJob: boolean;
531
+ tierText: string;
532
+ isApplied: boolean;
533
+ proposalsTier: string | null;
534
+ premium: boolean;
535
+ attrs: {
536
+ uid: string;
537
+ parentSkillUid: string | null;
538
+ prefLabel: string;
539
+ prettyName: string;
540
+ highlighted: boolean;
541
+ freeText?: any;
542
+ }[];
543
+ hourlyBudget: {
544
+ min: number;
545
+ max: number;
546
+ };
547
+ weeklyBudget: {
548
+ amount: number;
549
+ };
550
+ isSTSVectorSearchResult: boolean;
551
+ clientRelation?: any;
552
+ }[];
553
+ paging: {
554
+ total: number;
555
+ offset: number;
556
+ count: number;
557
+ };
558
+ currentPage: number;
559
+ jobsPerPage: number;
560
+ searchQueryCache: Record<string, string>;
561
+ abortController?: any;
562
+ }>;
563
+ }, "strip", z.ZodTypeAny, {
564
+ jobsSearch: {
565
+ status: {
566
+ loading: boolean;
567
+ loaded: boolean;
568
+ failed: boolean;
569
+ };
570
+ jobs: {
571
+ type: number;
572
+ uid: string;
573
+ amount: {
574
+ amount: number;
575
+ };
576
+ ciphertext: string;
577
+ title: string;
578
+ description: string;
579
+ createdOn: string;
580
+ publishedOn: string;
581
+ renewedOn: string | null;
582
+ durationLabel: string | null;
583
+ engagement: string | null;
584
+ connectPrice: number | null;
585
+ client: {
586
+ location: {
587
+ country: string | null;
588
+ };
589
+ isPaymentVerified: boolean;
590
+ totalSpent: string | null;
591
+ totalReviews: number;
592
+ totalFeedback: number;
593
+ hasFinancialPrivacy: boolean;
594
+ };
595
+ freelancersToHire: number;
596
+ relevanceEncoded: string;
597
+ enterpriseJob: boolean;
598
+ tierText: string;
599
+ isApplied: boolean;
600
+ proposalsTier: string | null;
601
+ premium: boolean;
602
+ attrs: {
603
+ uid: string;
604
+ parentSkillUid: string | null;
605
+ prefLabel: string;
606
+ prettyName: string;
607
+ highlighted: boolean;
608
+ freeText?: any;
609
+ }[];
610
+ hourlyBudget: {
611
+ min: number;
612
+ max: number;
613
+ };
614
+ weeklyBudget: {
615
+ amount: number;
616
+ };
617
+ isSTSVectorSearchResult: boolean;
618
+ clientRelation?: any;
619
+ }[];
620
+ paging: {
621
+ total: number;
622
+ offset: number;
623
+ count: number;
624
+ };
625
+ currentPage: number;
626
+ jobsPerPage: number;
627
+ searchQueryCache: Record<string, string>;
628
+ abortController?: any;
629
+ };
630
+ }, {
631
+ jobsSearch: {
632
+ status: {
633
+ loading: boolean;
634
+ loaded: boolean;
635
+ failed: boolean;
636
+ };
637
+ jobs: {
638
+ type: number;
639
+ uid: string;
640
+ amount: {
641
+ amount: number;
642
+ };
643
+ ciphertext: string;
644
+ title: string;
645
+ description: string;
646
+ createdOn: string;
647
+ publishedOn: string;
648
+ renewedOn: string | null;
649
+ durationLabel: string | null;
650
+ engagement: string | null;
651
+ connectPrice: number | null;
652
+ client: {
653
+ location: {
654
+ country: string | null;
655
+ };
656
+ isPaymentVerified: boolean;
657
+ totalSpent: string | null;
658
+ totalReviews: number;
659
+ totalFeedback: number;
660
+ hasFinancialPrivacy: boolean;
661
+ };
662
+ freelancersToHire: number;
663
+ relevanceEncoded: string;
664
+ enterpriseJob: boolean;
665
+ tierText: string;
666
+ isApplied: boolean;
667
+ proposalsTier: string | null;
668
+ premium: boolean;
669
+ attrs: {
670
+ uid: string;
671
+ parentSkillUid: string | null;
672
+ prefLabel: string;
673
+ prettyName: string;
674
+ highlighted: boolean;
675
+ freeText?: any;
676
+ }[];
677
+ hourlyBudget: {
678
+ min: number;
679
+ max: number;
680
+ };
681
+ weeklyBudget: {
682
+ amount: number;
683
+ };
684
+ isSTSVectorSearchResult: boolean;
685
+ clientRelation?: any;
686
+ }[];
687
+ paging: {
688
+ total: number;
689
+ offset: number;
690
+ count: number;
691
+ };
692
+ currentPage: number;
693
+ jobsPerPage: number;
694
+ searchQueryCache: Record<string, string>;
695
+ abortController?: any;
696
+ };
697
+ }>;
698
+ }, "strip", z.ZodTypeAny, {
699
+ state: {
700
+ jobsSearch: {
701
+ status: {
702
+ loading: boolean;
703
+ loaded: boolean;
704
+ failed: boolean;
705
+ };
706
+ jobs: {
707
+ type: number;
708
+ uid: string;
709
+ amount: {
710
+ amount: number;
711
+ };
712
+ ciphertext: string;
713
+ title: string;
714
+ description: string;
715
+ createdOn: string;
716
+ publishedOn: string;
717
+ renewedOn: string | null;
718
+ durationLabel: string | null;
719
+ engagement: string | null;
720
+ connectPrice: number | null;
721
+ client: {
722
+ location: {
723
+ country: string | null;
724
+ };
725
+ isPaymentVerified: boolean;
726
+ totalSpent: string | null;
727
+ totalReviews: number;
728
+ totalFeedback: number;
729
+ hasFinancialPrivacy: boolean;
730
+ };
731
+ freelancersToHire: number;
732
+ relevanceEncoded: string;
733
+ enterpriseJob: boolean;
734
+ tierText: string;
735
+ isApplied: boolean;
736
+ proposalsTier: string | null;
737
+ premium: boolean;
738
+ attrs: {
739
+ uid: string;
740
+ parentSkillUid: string | null;
741
+ prefLabel: string;
742
+ prettyName: string;
743
+ highlighted: boolean;
744
+ freeText?: any;
745
+ }[];
746
+ hourlyBudget: {
747
+ min: number;
748
+ max: number;
749
+ };
750
+ weeklyBudget: {
751
+ amount: number;
752
+ };
753
+ isSTSVectorSearchResult: boolean;
754
+ clientRelation?: any;
755
+ }[];
756
+ paging: {
757
+ total: number;
758
+ offset: number;
759
+ count: number;
760
+ };
761
+ currentPage: number;
762
+ jobsPerPage: number;
763
+ searchQueryCache: Record<string, string>;
764
+ abortController?: any;
765
+ };
766
+ };
767
+ }, {
768
+ state: {
769
+ jobsSearch: {
770
+ status: {
771
+ loading: boolean;
772
+ loaded: boolean;
773
+ failed: boolean;
774
+ };
775
+ jobs: {
776
+ type: number;
777
+ uid: string;
778
+ amount: {
779
+ amount: number;
780
+ };
781
+ ciphertext: string;
782
+ title: string;
783
+ description: string;
784
+ createdOn: string;
785
+ publishedOn: string;
786
+ renewedOn: string | null;
787
+ durationLabel: string | null;
788
+ engagement: string | null;
789
+ connectPrice: number | null;
790
+ client: {
791
+ location: {
792
+ country: string | null;
793
+ };
794
+ isPaymentVerified: boolean;
795
+ totalSpent: string | null;
796
+ totalReviews: number;
797
+ totalFeedback: number;
798
+ hasFinancialPrivacy: boolean;
799
+ };
800
+ freelancersToHire: number;
801
+ relevanceEncoded: string;
802
+ enterpriseJob: boolean;
803
+ tierText: string;
804
+ isApplied: boolean;
805
+ proposalsTier: string | null;
806
+ premium: boolean;
807
+ attrs: {
808
+ uid: string;
809
+ parentSkillUid: string | null;
810
+ prefLabel: string;
811
+ prettyName: string;
812
+ highlighted: boolean;
813
+ freeText?: any;
814
+ }[];
815
+ hourlyBudget: {
816
+ min: number;
817
+ max: number;
818
+ };
819
+ weeklyBudget: {
820
+ amount: number;
821
+ };
822
+ isSTSVectorSearchResult: boolean;
823
+ clientRelation?: any;
824
+ }[];
825
+ paging: {
826
+ total: number;
827
+ offset: number;
828
+ count: number;
829
+ };
830
+ currentPage: number;
831
+ jobsPerPage: number;
832
+ searchQueryCache: Record<string, string>;
833
+ abortController?: any;
834
+ };
835
+ };
836
+ }>;
837
+ export interface NuxtStateJobsSearch extends z.infer<typeof nuxtStateJobsSearchSchema> {
838
+ }
839
+ export interface FeedJobV2 extends z.infer<typeof feedJobSchemaV2> {
840
+ jobUrl: string;
841
+ region: Region;
842
+ }