lancer-shared 1.2.160 → 1.2.161

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.
@@ -0,0 +1,2408 @@
1
+ import { z } from 'zod';
2
+ declare const nuxtStateProfileSchema: z.ZodObject<{
3
+ title: z.ZodOptional<z.ZodString>;
4
+ firstName: z.ZodOptional<z.ZodString>;
5
+ lastName: z.ZodOptional<z.ZodString>;
6
+ description: z.ZodOptional<z.ZodString>;
7
+ location: z.ZodOptional<z.ZodObject<{
8
+ country: z.ZodString;
9
+ state: z.ZodOptional<z.ZodString>;
10
+ city: z.ZodOptional<z.ZodString>;
11
+ region: z.ZodString;
12
+ subregion: z.ZodString;
13
+ timezone: z.ZodString;
14
+ zip: z.ZodOptional<z.ZodString>;
15
+ }, "strip", z.ZodTypeAny, {
16
+ country: string;
17
+ region: string;
18
+ subregion: string;
19
+ timezone: string;
20
+ state?: string | undefined;
21
+ city?: string | undefined;
22
+ zip?: string | undefined;
23
+ }, {
24
+ country: string;
25
+ region: string;
26
+ subregion: string;
27
+ timezone: string;
28
+ state?: string | undefined;
29
+ city?: string | undefined;
30
+ zip?: string | undefined;
31
+ }>>;
32
+ chargeRate: z.ZodOptional<z.ZodObject<{
33
+ rawValue: z.ZodString;
34
+ currency: z.ZodString;
35
+ }, "strip", z.ZodTypeAny, {
36
+ rawValue: string;
37
+ currency: string;
38
+ }, {
39
+ rawValue: string;
40
+ currency: string;
41
+ }>>;
42
+ portrait: z.ZodOptional<z.ZodObject<{
43
+ portrait: z.ZodString;
44
+ }, "strip", z.ZodTypeAny, {
45
+ portrait: string;
46
+ }, {
47
+ portrait: string;
48
+ }>>;
49
+ profileUrl: z.ZodOptional<z.ZodString>;
50
+ offerConsultations: z.ZodOptional<z.ZodBoolean>;
51
+ jobSummariesAssignmentRids: z.ZodOptional<z.ZodAny>;
52
+ shortName: z.ZodOptional<z.ZodString>;
53
+ skills: z.ZodOptional<z.ZodArray<z.ZodObject<{
54
+ skill: z.ZodObject<{
55
+ prettyName: z.ZodString;
56
+ uid: z.ZodString;
57
+ }, "strip", z.ZodTypeAny, {
58
+ prettyName: string;
59
+ uid: string;
60
+ }, {
61
+ prettyName: string;
62
+ uid: string;
63
+ }>;
64
+ uid: z.ZodString;
65
+ }, "strip", z.ZodTypeAny, {
66
+ uid: string;
67
+ skill: {
68
+ prettyName: string;
69
+ uid: string;
70
+ };
71
+ }, {
72
+ uid: string;
73
+ skill: {
74
+ prettyName: string;
75
+ uid: string;
76
+ };
77
+ }>, "many">>;
78
+ stats: z.ZodOptional<z.ZodObject<{
79
+ hideJss: z.ZodBoolean;
80
+ hideEarnings: z.ZodBoolean;
81
+ topRatedStatus: z.ZodString;
82
+ topRatedStatusEx: z.ZodString;
83
+ rate: z.ZodNumber;
84
+ earned: z.ZodNumber;
85
+ jobSuccessScore: z.ZodNumber;
86
+ rankInfo: z.ZodOptional<z.ZodAny>;
87
+ totalHours: z.ZodNumber;
88
+ totalHourlyJobs: z.ZodNumber;
89
+ totalFpJobs: z.ZodNumber;
90
+ totalCompletedJobs: z.ZodNumber;
91
+ }, "strip", z.ZodTypeAny, {
92
+ hideJss: boolean;
93
+ hideEarnings: boolean;
94
+ topRatedStatus: string;
95
+ topRatedStatusEx: string;
96
+ rate: number;
97
+ earned: number;
98
+ jobSuccessScore: number;
99
+ totalHours: number;
100
+ totalHourlyJobs: number;
101
+ totalFpJobs: number;
102
+ totalCompletedJobs: number;
103
+ rankInfo?: any;
104
+ }, {
105
+ hideJss: boolean;
106
+ hideEarnings: boolean;
107
+ topRatedStatus: string;
108
+ topRatedStatusEx: string;
109
+ rate: number;
110
+ earned: number;
111
+ jobSuccessScore: number;
112
+ totalHours: number;
113
+ totalHourlyJobs: number;
114
+ totalFpJobs: number;
115
+ totalCompletedJobs: number;
116
+ rankInfo?: any;
117
+ }>>;
118
+ portfolioItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
119
+ description: z.ZodOptional<z.ZodString>;
120
+ title: z.ZodString;
121
+ videoUrl: z.ZodOptional<z.ZodString>;
122
+ uid: z.ZodString;
123
+ thumbnailUrl: z.ZodOptional<z.ZodString>;
124
+ publicPortfolioItem: z.ZodBoolean;
125
+ category: z.ZodObject<{
126
+ id: z.ZodOptional<z.ZodString>;
127
+ level1: z.ZodOptional<z.ZodString>;
128
+ level2: z.ZodOptional<z.ZodString>;
129
+ }, "strip", z.ZodTypeAny, {
130
+ id?: string | undefined;
131
+ level1?: string | undefined;
132
+ level2?: string | undefined;
133
+ }, {
134
+ id?: string | undefined;
135
+ level1?: string | undefined;
136
+ level2?: string | undefined;
137
+ }>;
138
+ }, "strip", z.ZodTypeAny, {
139
+ uid: string;
140
+ title: string;
141
+ publicPortfolioItem: boolean;
142
+ category: {
143
+ id?: string | undefined;
144
+ level1?: string | undefined;
145
+ level2?: string | undefined;
146
+ };
147
+ description?: string | undefined;
148
+ videoUrl?: string | undefined;
149
+ thumbnailUrl?: string | undefined;
150
+ }, {
151
+ uid: string;
152
+ title: string;
153
+ publicPortfolioItem: boolean;
154
+ category: {
155
+ id?: string | undefined;
156
+ level1?: string | undefined;
157
+ level2?: string | undefined;
158
+ };
159
+ description?: string | undefined;
160
+ videoUrl?: string | undefined;
161
+ thumbnailUrl?: string | undefined;
162
+ }>, "many">>;
163
+ totalPortfolioItems: z.ZodOptional<z.ZodNumber>;
164
+ specializedProfiles: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
165
+ isDiversityCertified: z.ZodOptional<z.ZodBoolean>;
166
+ isBoosted: z.ZodOptional<z.ZodBoolean>;
167
+ boosted: z.ZodOptional<z.ZodBoolean>;
168
+ boostedWouldHaveBeen: z.ZodOptional<z.ZodBoolean>;
169
+ }, "strip", z.ZodTypeAny, {
170
+ description?: string | undefined;
171
+ title?: string | undefined;
172
+ portrait?: {
173
+ portrait: string;
174
+ } | undefined;
175
+ firstName?: string | undefined;
176
+ lastName?: string | undefined;
177
+ location?: {
178
+ country: string;
179
+ region: string;
180
+ subregion: string;
181
+ timezone: string;
182
+ state?: string | undefined;
183
+ city?: string | undefined;
184
+ zip?: string | undefined;
185
+ } | undefined;
186
+ chargeRate?: {
187
+ rawValue: string;
188
+ currency: string;
189
+ } | undefined;
190
+ profileUrl?: string | undefined;
191
+ offerConsultations?: boolean | undefined;
192
+ jobSummariesAssignmentRids?: any;
193
+ shortName?: string | undefined;
194
+ skills?: {
195
+ uid: string;
196
+ skill: {
197
+ prettyName: string;
198
+ uid: string;
199
+ };
200
+ }[] | undefined;
201
+ stats?: {
202
+ hideJss: boolean;
203
+ hideEarnings: boolean;
204
+ topRatedStatus: string;
205
+ topRatedStatusEx: string;
206
+ rate: number;
207
+ earned: number;
208
+ jobSuccessScore: number;
209
+ totalHours: number;
210
+ totalHourlyJobs: number;
211
+ totalFpJobs: number;
212
+ totalCompletedJobs: number;
213
+ rankInfo?: any;
214
+ } | undefined;
215
+ portfolioItems?: {
216
+ uid: string;
217
+ title: string;
218
+ publicPortfolioItem: boolean;
219
+ category: {
220
+ id?: string | undefined;
221
+ level1?: string | undefined;
222
+ level2?: string | undefined;
223
+ };
224
+ description?: string | undefined;
225
+ videoUrl?: string | undefined;
226
+ thumbnailUrl?: string | undefined;
227
+ }[] | undefined;
228
+ totalPortfolioItems?: number | undefined;
229
+ specializedProfiles?: any[] | undefined;
230
+ isDiversityCertified?: boolean | undefined;
231
+ isBoosted?: boolean | undefined;
232
+ boosted?: boolean | undefined;
233
+ boostedWouldHaveBeen?: boolean | undefined;
234
+ }, {
235
+ description?: string | undefined;
236
+ title?: string | undefined;
237
+ portrait?: {
238
+ portrait: string;
239
+ } | undefined;
240
+ firstName?: string | undefined;
241
+ lastName?: string | undefined;
242
+ location?: {
243
+ country: string;
244
+ region: string;
245
+ subregion: string;
246
+ timezone: string;
247
+ state?: string | undefined;
248
+ city?: string | undefined;
249
+ zip?: string | undefined;
250
+ } | undefined;
251
+ chargeRate?: {
252
+ rawValue: string;
253
+ currency: string;
254
+ } | undefined;
255
+ profileUrl?: string | undefined;
256
+ offerConsultations?: boolean | undefined;
257
+ jobSummariesAssignmentRids?: any;
258
+ shortName?: string | undefined;
259
+ skills?: {
260
+ uid: string;
261
+ skill: {
262
+ prettyName: string;
263
+ uid: string;
264
+ };
265
+ }[] | undefined;
266
+ stats?: {
267
+ hideJss: boolean;
268
+ hideEarnings: boolean;
269
+ topRatedStatus: string;
270
+ topRatedStatusEx: string;
271
+ rate: number;
272
+ earned: number;
273
+ jobSuccessScore: number;
274
+ totalHours: number;
275
+ totalHourlyJobs: number;
276
+ totalFpJobs: number;
277
+ totalCompletedJobs: number;
278
+ rankInfo?: any;
279
+ } | undefined;
280
+ portfolioItems?: {
281
+ uid: string;
282
+ title: string;
283
+ publicPortfolioItem: boolean;
284
+ category: {
285
+ id?: string | undefined;
286
+ level1?: string | undefined;
287
+ level2?: string | undefined;
288
+ };
289
+ description?: string | undefined;
290
+ videoUrl?: string | undefined;
291
+ thumbnailUrl?: string | undefined;
292
+ }[] | undefined;
293
+ totalPortfolioItems?: number | undefined;
294
+ specializedProfiles?: any[] | undefined;
295
+ isDiversityCertified?: boolean | undefined;
296
+ isBoosted?: boolean | undefined;
297
+ boosted?: boolean | undefined;
298
+ boostedWouldHaveBeen?: boolean | undefined;
299
+ }>;
300
+ export declare const upworkTalentSchema: z.ZodObject<{
301
+ identity: z.ZodObject<{
302
+ id: z.ZodOptional<z.ZodString>;
303
+ ciphertext: z.ZodString;
304
+ uid: z.ZodString;
305
+ }, "strip", z.ZodTypeAny, {
306
+ uid: string;
307
+ ciphertext: string;
308
+ id?: string | undefined;
309
+ }, {
310
+ uid: string;
311
+ ciphertext: string;
312
+ id?: string | undefined;
313
+ }>;
314
+ isPibAvailable: z.ZodBoolean;
315
+ profile: z.ZodObject<{
316
+ title: z.ZodOptional<z.ZodString>;
317
+ firstName: z.ZodOptional<z.ZodString>;
318
+ lastName: z.ZodOptional<z.ZodString>;
319
+ description: z.ZodOptional<z.ZodString>;
320
+ location: z.ZodOptional<z.ZodObject<{
321
+ country: z.ZodString;
322
+ state: z.ZodOptional<z.ZodString>;
323
+ city: z.ZodOptional<z.ZodString>;
324
+ region: z.ZodString;
325
+ subregion: z.ZodString;
326
+ timezone: z.ZodString;
327
+ zip: z.ZodOptional<z.ZodString>;
328
+ }, "strip", z.ZodTypeAny, {
329
+ country: string;
330
+ region: string;
331
+ subregion: string;
332
+ timezone: string;
333
+ state?: string | undefined;
334
+ city?: string | undefined;
335
+ zip?: string | undefined;
336
+ }, {
337
+ country: string;
338
+ region: string;
339
+ subregion: string;
340
+ timezone: string;
341
+ state?: string | undefined;
342
+ city?: string | undefined;
343
+ zip?: string | undefined;
344
+ }>>;
345
+ chargeRate: z.ZodOptional<z.ZodObject<{
346
+ rawValue: z.ZodString;
347
+ currency: z.ZodString;
348
+ }, "strip", z.ZodTypeAny, {
349
+ rawValue: string;
350
+ currency: string;
351
+ }, {
352
+ rawValue: string;
353
+ currency: string;
354
+ }>>;
355
+ portrait: z.ZodOptional<z.ZodObject<{
356
+ portrait: z.ZodString;
357
+ }, "strip", z.ZodTypeAny, {
358
+ portrait: string;
359
+ }, {
360
+ portrait: string;
361
+ }>>;
362
+ profileUrl: z.ZodOptional<z.ZodString>;
363
+ offerConsultations: z.ZodOptional<z.ZodBoolean>;
364
+ jobSummariesAssignmentRids: z.ZodOptional<z.ZodAny>;
365
+ shortName: z.ZodOptional<z.ZodString>;
366
+ skills: z.ZodOptional<z.ZodArray<z.ZodObject<{
367
+ skill: z.ZodObject<{
368
+ prettyName: z.ZodString;
369
+ uid: z.ZodString;
370
+ }, "strip", z.ZodTypeAny, {
371
+ prettyName: string;
372
+ uid: string;
373
+ }, {
374
+ prettyName: string;
375
+ uid: string;
376
+ }>;
377
+ uid: z.ZodString;
378
+ }, "strip", z.ZodTypeAny, {
379
+ uid: string;
380
+ skill: {
381
+ prettyName: string;
382
+ uid: string;
383
+ };
384
+ }, {
385
+ uid: string;
386
+ skill: {
387
+ prettyName: string;
388
+ uid: string;
389
+ };
390
+ }>, "many">>;
391
+ stats: z.ZodOptional<z.ZodObject<{
392
+ hideJss: z.ZodBoolean;
393
+ hideEarnings: z.ZodBoolean;
394
+ topRatedStatus: z.ZodString;
395
+ topRatedStatusEx: z.ZodString;
396
+ rate: z.ZodNumber;
397
+ earned: z.ZodNumber;
398
+ jobSuccessScore: z.ZodNumber;
399
+ rankInfo: z.ZodOptional<z.ZodAny>;
400
+ totalHours: z.ZodNumber;
401
+ totalHourlyJobs: z.ZodNumber;
402
+ totalFpJobs: z.ZodNumber;
403
+ totalCompletedJobs: z.ZodNumber;
404
+ }, "strip", z.ZodTypeAny, {
405
+ hideJss: boolean;
406
+ hideEarnings: boolean;
407
+ topRatedStatus: string;
408
+ topRatedStatusEx: string;
409
+ rate: number;
410
+ earned: number;
411
+ jobSuccessScore: number;
412
+ totalHours: number;
413
+ totalHourlyJobs: number;
414
+ totalFpJobs: number;
415
+ totalCompletedJobs: number;
416
+ rankInfo?: any;
417
+ }, {
418
+ hideJss: boolean;
419
+ hideEarnings: boolean;
420
+ topRatedStatus: string;
421
+ topRatedStatusEx: string;
422
+ rate: number;
423
+ earned: number;
424
+ jobSuccessScore: number;
425
+ totalHours: number;
426
+ totalHourlyJobs: number;
427
+ totalFpJobs: number;
428
+ totalCompletedJobs: number;
429
+ rankInfo?: any;
430
+ }>>;
431
+ portfolioItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
432
+ description: z.ZodOptional<z.ZodString>;
433
+ title: z.ZodString;
434
+ videoUrl: z.ZodOptional<z.ZodString>;
435
+ uid: z.ZodString;
436
+ thumbnailUrl: z.ZodOptional<z.ZodString>;
437
+ publicPortfolioItem: z.ZodBoolean;
438
+ category: z.ZodObject<{
439
+ id: z.ZodOptional<z.ZodString>;
440
+ level1: z.ZodOptional<z.ZodString>;
441
+ level2: z.ZodOptional<z.ZodString>;
442
+ }, "strip", z.ZodTypeAny, {
443
+ id?: string | undefined;
444
+ level1?: string | undefined;
445
+ level2?: string | undefined;
446
+ }, {
447
+ id?: string | undefined;
448
+ level1?: string | undefined;
449
+ level2?: string | undefined;
450
+ }>;
451
+ }, "strip", z.ZodTypeAny, {
452
+ uid: string;
453
+ title: string;
454
+ publicPortfolioItem: boolean;
455
+ category: {
456
+ id?: string | undefined;
457
+ level1?: string | undefined;
458
+ level2?: string | undefined;
459
+ };
460
+ description?: string | undefined;
461
+ videoUrl?: string | undefined;
462
+ thumbnailUrl?: string | undefined;
463
+ }, {
464
+ uid: string;
465
+ title: string;
466
+ publicPortfolioItem: boolean;
467
+ category: {
468
+ id?: string | undefined;
469
+ level1?: string | undefined;
470
+ level2?: string | undefined;
471
+ };
472
+ description?: string | undefined;
473
+ videoUrl?: string | undefined;
474
+ thumbnailUrl?: string | undefined;
475
+ }>, "many">>;
476
+ totalPortfolioItems: z.ZodOptional<z.ZodNumber>;
477
+ specializedProfiles: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
478
+ isDiversityCertified: z.ZodOptional<z.ZodBoolean>;
479
+ isBoosted: z.ZodOptional<z.ZodBoolean>;
480
+ boosted: z.ZodOptional<z.ZodBoolean>;
481
+ boostedWouldHaveBeen: z.ZodOptional<z.ZodBoolean>;
482
+ }, "strip", z.ZodTypeAny, {
483
+ description?: string | undefined;
484
+ title?: string | undefined;
485
+ portrait?: {
486
+ portrait: string;
487
+ } | undefined;
488
+ firstName?: string | undefined;
489
+ lastName?: string | undefined;
490
+ location?: {
491
+ country: string;
492
+ region: string;
493
+ subregion: string;
494
+ timezone: string;
495
+ state?: string | undefined;
496
+ city?: string | undefined;
497
+ zip?: string | undefined;
498
+ } | undefined;
499
+ chargeRate?: {
500
+ rawValue: string;
501
+ currency: string;
502
+ } | undefined;
503
+ profileUrl?: string | undefined;
504
+ offerConsultations?: boolean | undefined;
505
+ jobSummariesAssignmentRids?: any;
506
+ shortName?: string | undefined;
507
+ skills?: {
508
+ uid: string;
509
+ skill: {
510
+ prettyName: string;
511
+ uid: string;
512
+ };
513
+ }[] | undefined;
514
+ stats?: {
515
+ hideJss: boolean;
516
+ hideEarnings: boolean;
517
+ topRatedStatus: string;
518
+ topRatedStatusEx: string;
519
+ rate: number;
520
+ earned: number;
521
+ jobSuccessScore: number;
522
+ totalHours: number;
523
+ totalHourlyJobs: number;
524
+ totalFpJobs: number;
525
+ totalCompletedJobs: number;
526
+ rankInfo?: any;
527
+ } | undefined;
528
+ portfolioItems?: {
529
+ uid: string;
530
+ title: string;
531
+ publicPortfolioItem: boolean;
532
+ category: {
533
+ id?: string | undefined;
534
+ level1?: string | undefined;
535
+ level2?: string | undefined;
536
+ };
537
+ description?: string | undefined;
538
+ videoUrl?: string | undefined;
539
+ thumbnailUrl?: string | undefined;
540
+ }[] | undefined;
541
+ totalPortfolioItems?: number | undefined;
542
+ specializedProfiles?: any[] | undefined;
543
+ isDiversityCertified?: boolean | undefined;
544
+ isBoosted?: boolean | undefined;
545
+ boosted?: boolean | undefined;
546
+ boostedWouldHaveBeen?: boolean | undefined;
547
+ }, {
548
+ description?: string | undefined;
549
+ title?: string | undefined;
550
+ portrait?: {
551
+ portrait: string;
552
+ } | undefined;
553
+ firstName?: string | undefined;
554
+ lastName?: string | undefined;
555
+ location?: {
556
+ country: string;
557
+ region: string;
558
+ subregion: string;
559
+ timezone: string;
560
+ state?: string | undefined;
561
+ city?: string | undefined;
562
+ zip?: string | undefined;
563
+ } | undefined;
564
+ chargeRate?: {
565
+ rawValue: string;
566
+ currency: string;
567
+ } | undefined;
568
+ profileUrl?: string | undefined;
569
+ offerConsultations?: boolean | undefined;
570
+ jobSummariesAssignmentRids?: any;
571
+ shortName?: string | undefined;
572
+ skills?: {
573
+ uid: string;
574
+ skill: {
575
+ prettyName: string;
576
+ uid: string;
577
+ };
578
+ }[] | undefined;
579
+ stats?: {
580
+ hideJss: boolean;
581
+ hideEarnings: boolean;
582
+ topRatedStatus: string;
583
+ topRatedStatusEx: string;
584
+ rate: number;
585
+ earned: number;
586
+ jobSuccessScore: number;
587
+ totalHours: number;
588
+ totalHourlyJobs: number;
589
+ totalFpJobs: number;
590
+ totalCompletedJobs: number;
591
+ rankInfo?: any;
592
+ } | undefined;
593
+ portfolioItems?: {
594
+ uid: string;
595
+ title: string;
596
+ publicPortfolioItem: boolean;
597
+ category: {
598
+ id?: string | undefined;
599
+ level1?: string | undefined;
600
+ level2?: string | undefined;
601
+ };
602
+ description?: string | undefined;
603
+ videoUrl?: string | undefined;
604
+ thumbnailUrl?: string | undefined;
605
+ }[] | undefined;
606
+ totalPortfolioItems?: number | undefined;
607
+ specializedProfiles?: any[] | undefined;
608
+ isDiversityCertified?: boolean | undefined;
609
+ isBoosted?: boolean | undefined;
610
+ boosted?: boolean | undefined;
611
+ boostedWouldHaveBeen?: boolean | undefined;
612
+ }>;
613
+ agency: z.ZodObject<{
614
+ orgId: z.ZodString;
615
+ ciphertext: z.ZodString;
616
+ name: z.ZodString;
617
+ classifications: z.ZodArray<z.ZodAny, "many">;
618
+ logo: z.ZodOptional<z.ZodString>;
619
+ hideEarnings: z.ZodBoolean;
620
+ totalEarnings: z.ZodNumber;
621
+ isAgencyDiversityCertified: z.ZodArray<z.ZodAny, "many">;
622
+ }, "strip", z.ZodTypeAny, {
623
+ hideEarnings: boolean;
624
+ ciphertext: string;
625
+ orgId: string;
626
+ name: string;
627
+ classifications: any[];
628
+ totalEarnings: number;
629
+ isAgencyDiversityCertified: any[];
630
+ logo?: string | undefined;
631
+ }, {
632
+ hideEarnings: boolean;
633
+ ciphertext: string;
634
+ orgId: string;
635
+ name: string;
636
+ classifications: any[];
637
+ totalEarnings: number;
638
+ isAgencyDiversityCertified: any[];
639
+ logo?: string | undefined;
640
+ }>;
641
+ options: z.ZodObject<{
642
+ position: z.ZodNumber;
643
+ }, "strip", z.ZodTypeAny, {
644
+ position: number;
645
+ }, {
646
+ position: number;
647
+ }>;
648
+ linkedInURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
649
+ }, "strip", z.ZodTypeAny, {
650
+ options: {
651
+ position: number;
652
+ };
653
+ identity: {
654
+ uid: string;
655
+ ciphertext: string;
656
+ id?: string | undefined;
657
+ };
658
+ isPibAvailable: boolean;
659
+ profile: {
660
+ description?: string | undefined;
661
+ title?: string | undefined;
662
+ portrait?: {
663
+ portrait: string;
664
+ } | undefined;
665
+ firstName?: string | undefined;
666
+ lastName?: string | undefined;
667
+ location?: {
668
+ country: string;
669
+ region: string;
670
+ subregion: string;
671
+ timezone: string;
672
+ state?: string | undefined;
673
+ city?: string | undefined;
674
+ zip?: string | undefined;
675
+ } | undefined;
676
+ chargeRate?: {
677
+ rawValue: string;
678
+ currency: string;
679
+ } | undefined;
680
+ profileUrl?: string | undefined;
681
+ offerConsultations?: boolean | undefined;
682
+ jobSummariesAssignmentRids?: any;
683
+ shortName?: string | undefined;
684
+ skills?: {
685
+ uid: string;
686
+ skill: {
687
+ prettyName: string;
688
+ uid: string;
689
+ };
690
+ }[] | undefined;
691
+ stats?: {
692
+ hideJss: boolean;
693
+ hideEarnings: boolean;
694
+ topRatedStatus: string;
695
+ topRatedStatusEx: string;
696
+ rate: number;
697
+ earned: number;
698
+ jobSuccessScore: number;
699
+ totalHours: number;
700
+ totalHourlyJobs: number;
701
+ totalFpJobs: number;
702
+ totalCompletedJobs: number;
703
+ rankInfo?: any;
704
+ } | undefined;
705
+ portfolioItems?: {
706
+ uid: string;
707
+ title: string;
708
+ publicPortfolioItem: boolean;
709
+ category: {
710
+ id?: string | undefined;
711
+ level1?: string | undefined;
712
+ level2?: string | undefined;
713
+ };
714
+ description?: string | undefined;
715
+ videoUrl?: string | undefined;
716
+ thumbnailUrl?: string | undefined;
717
+ }[] | undefined;
718
+ totalPortfolioItems?: number | undefined;
719
+ specializedProfiles?: any[] | undefined;
720
+ isDiversityCertified?: boolean | undefined;
721
+ isBoosted?: boolean | undefined;
722
+ boosted?: boolean | undefined;
723
+ boostedWouldHaveBeen?: boolean | undefined;
724
+ };
725
+ agency: {
726
+ hideEarnings: boolean;
727
+ ciphertext: string;
728
+ orgId: string;
729
+ name: string;
730
+ classifications: any[];
731
+ totalEarnings: number;
732
+ isAgencyDiversityCertified: any[];
733
+ logo?: string | undefined;
734
+ };
735
+ linkedInURL?: string | null | undefined;
736
+ }, {
737
+ options: {
738
+ position: number;
739
+ };
740
+ identity: {
741
+ uid: string;
742
+ ciphertext: string;
743
+ id?: string | undefined;
744
+ };
745
+ isPibAvailable: boolean;
746
+ profile: {
747
+ description?: string | undefined;
748
+ title?: string | undefined;
749
+ portrait?: {
750
+ portrait: string;
751
+ } | undefined;
752
+ firstName?: string | undefined;
753
+ lastName?: string | undefined;
754
+ location?: {
755
+ country: string;
756
+ region: string;
757
+ subregion: string;
758
+ timezone: string;
759
+ state?: string | undefined;
760
+ city?: string | undefined;
761
+ zip?: string | undefined;
762
+ } | undefined;
763
+ chargeRate?: {
764
+ rawValue: string;
765
+ currency: string;
766
+ } | undefined;
767
+ profileUrl?: string | undefined;
768
+ offerConsultations?: boolean | undefined;
769
+ jobSummariesAssignmentRids?: any;
770
+ shortName?: string | undefined;
771
+ skills?: {
772
+ uid: string;
773
+ skill: {
774
+ prettyName: string;
775
+ uid: string;
776
+ };
777
+ }[] | undefined;
778
+ stats?: {
779
+ hideJss: boolean;
780
+ hideEarnings: boolean;
781
+ topRatedStatus: string;
782
+ topRatedStatusEx: string;
783
+ rate: number;
784
+ earned: number;
785
+ jobSuccessScore: number;
786
+ totalHours: number;
787
+ totalHourlyJobs: number;
788
+ totalFpJobs: number;
789
+ totalCompletedJobs: number;
790
+ rankInfo?: any;
791
+ } | undefined;
792
+ portfolioItems?: {
793
+ uid: string;
794
+ title: string;
795
+ publicPortfolioItem: boolean;
796
+ category: {
797
+ id?: string | undefined;
798
+ level1?: string | undefined;
799
+ level2?: string | undefined;
800
+ };
801
+ description?: string | undefined;
802
+ videoUrl?: string | undefined;
803
+ thumbnailUrl?: string | undefined;
804
+ }[] | undefined;
805
+ totalPortfolioItems?: number | undefined;
806
+ specializedProfiles?: any[] | undefined;
807
+ isDiversityCertified?: boolean | undefined;
808
+ isBoosted?: boolean | undefined;
809
+ boosted?: boolean | undefined;
810
+ boostedWouldHaveBeen?: boolean | undefined;
811
+ };
812
+ agency: {
813
+ hideEarnings: boolean;
814
+ ciphertext: string;
815
+ orgId: string;
816
+ name: string;
817
+ classifications: any[];
818
+ totalEarnings: number;
819
+ isAgencyDiversityCertified: any[];
820
+ logo?: string | undefined;
821
+ };
822
+ linkedInURL?: string | null | undefined;
823
+ }>;
824
+ export declare const profileSearchNuxtObjectStateSchema: z.ZodObject<{
825
+ profilesSearch: z.ZodObject<{
826
+ status: z.ZodObject<{
827
+ loading: z.ZodBoolean;
828
+ loaded: z.ZodBoolean;
829
+ failed: z.ZodBoolean;
830
+ }, "strip", z.ZodTypeAny, {
831
+ loading: boolean;
832
+ loaded: boolean;
833
+ failed: boolean;
834
+ }, {
835
+ loading: boolean;
836
+ loaded: boolean;
837
+ failed: boolean;
838
+ }>;
839
+ profiles: z.ZodArray<z.ZodObject<{
840
+ title: z.ZodOptional<z.ZodString>;
841
+ firstName: z.ZodOptional<z.ZodString>;
842
+ lastName: z.ZodOptional<z.ZodString>;
843
+ description: z.ZodOptional<z.ZodString>;
844
+ location: z.ZodOptional<z.ZodObject<{
845
+ country: z.ZodString;
846
+ state: z.ZodOptional<z.ZodString>;
847
+ city: z.ZodOptional<z.ZodString>;
848
+ region: z.ZodString;
849
+ subregion: z.ZodString;
850
+ timezone: z.ZodString;
851
+ zip: z.ZodOptional<z.ZodString>;
852
+ }, "strip", z.ZodTypeAny, {
853
+ country: string;
854
+ region: string;
855
+ subregion: string;
856
+ timezone: string;
857
+ state?: string | undefined;
858
+ city?: string | undefined;
859
+ zip?: string | undefined;
860
+ }, {
861
+ country: string;
862
+ region: string;
863
+ subregion: string;
864
+ timezone: string;
865
+ state?: string | undefined;
866
+ city?: string | undefined;
867
+ zip?: string | undefined;
868
+ }>>;
869
+ chargeRate: z.ZodOptional<z.ZodObject<{
870
+ rawValue: z.ZodString;
871
+ currency: z.ZodString;
872
+ }, "strip", z.ZodTypeAny, {
873
+ rawValue: string;
874
+ currency: string;
875
+ }, {
876
+ rawValue: string;
877
+ currency: string;
878
+ }>>;
879
+ portrait: z.ZodOptional<z.ZodObject<{
880
+ portrait: z.ZodString;
881
+ }, "strip", z.ZodTypeAny, {
882
+ portrait: string;
883
+ }, {
884
+ portrait: string;
885
+ }>>;
886
+ profileUrl: z.ZodOptional<z.ZodString>;
887
+ offerConsultations: z.ZodOptional<z.ZodBoolean>;
888
+ jobSummariesAssignmentRids: z.ZodOptional<z.ZodAny>;
889
+ shortName: z.ZodOptional<z.ZodString>;
890
+ skills: z.ZodOptional<z.ZodArray<z.ZodObject<{
891
+ skill: z.ZodObject<{
892
+ prettyName: z.ZodString;
893
+ uid: z.ZodString;
894
+ }, "strip", z.ZodTypeAny, {
895
+ prettyName: string;
896
+ uid: string;
897
+ }, {
898
+ prettyName: string;
899
+ uid: string;
900
+ }>;
901
+ uid: z.ZodString;
902
+ }, "strip", z.ZodTypeAny, {
903
+ uid: string;
904
+ skill: {
905
+ prettyName: string;
906
+ uid: string;
907
+ };
908
+ }, {
909
+ uid: string;
910
+ skill: {
911
+ prettyName: string;
912
+ uid: string;
913
+ };
914
+ }>, "many">>;
915
+ stats: z.ZodOptional<z.ZodObject<{
916
+ hideJss: z.ZodBoolean;
917
+ hideEarnings: z.ZodBoolean;
918
+ topRatedStatus: z.ZodString;
919
+ topRatedStatusEx: z.ZodString;
920
+ rate: z.ZodNumber;
921
+ earned: z.ZodNumber;
922
+ jobSuccessScore: z.ZodNumber;
923
+ rankInfo: z.ZodOptional<z.ZodAny>;
924
+ totalHours: z.ZodNumber;
925
+ totalHourlyJobs: z.ZodNumber;
926
+ totalFpJobs: z.ZodNumber;
927
+ totalCompletedJobs: z.ZodNumber;
928
+ }, "strip", z.ZodTypeAny, {
929
+ hideJss: boolean;
930
+ hideEarnings: boolean;
931
+ topRatedStatus: string;
932
+ topRatedStatusEx: string;
933
+ rate: number;
934
+ earned: number;
935
+ jobSuccessScore: number;
936
+ totalHours: number;
937
+ totalHourlyJobs: number;
938
+ totalFpJobs: number;
939
+ totalCompletedJobs: number;
940
+ rankInfo?: any;
941
+ }, {
942
+ hideJss: boolean;
943
+ hideEarnings: boolean;
944
+ topRatedStatus: string;
945
+ topRatedStatusEx: string;
946
+ rate: number;
947
+ earned: number;
948
+ jobSuccessScore: number;
949
+ totalHours: number;
950
+ totalHourlyJobs: number;
951
+ totalFpJobs: number;
952
+ totalCompletedJobs: number;
953
+ rankInfo?: any;
954
+ }>>;
955
+ portfolioItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
956
+ description: z.ZodOptional<z.ZodString>;
957
+ title: z.ZodString;
958
+ videoUrl: z.ZodOptional<z.ZodString>;
959
+ uid: z.ZodString;
960
+ thumbnailUrl: z.ZodOptional<z.ZodString>;
961
+ publicPortfolioItem: z.ZodBoolean;
962
+ category: z.ZodObject<{
963
+ id: z.ZodOptional<z.ZodString>;
964
+ level1: z.ZodOptional<z.ZodString>;
965
+ level2: z.ZodOptional<z.ZodString>;
966
+ }, "strip", z.ZodTypeAny, {
967
+ id?: string | undefined;
968
+ level1?: string | undefined;
969
+ level2?: string | undefined;
970
+ }, {
971
+ id?: string | undefined;
972
+ level1?: string | undefined;
973
+ level2?: string | undefined;
974
+ }>;
975
+ }, "strip", z.ZodTypeAny, {
976
+ uid: string;
977
+ title: string;
978
+ publicPortfolioItem: boolean;
979
+ category: {
980
+ id?: string | undefined;
981
+ level1?: string | undefined;
982
+ level2?: string | undefined;
983
+ };
984
+ description?: string | undefined;
985
+ videoUrl?: string | undefined;
986
+ thumbnailUrl?: string | undefined;
987
+ }, {
988
+ uid: string;
989
+ title: string;
990
+ publicPortfolioItem: boolean;
991
+ category: {
992
+ id?: string | undefined;
993
+ level1?: string | undefined;
994
+ level2?: string | undefined;
995
+ };
996
+ description?: string | undefined;
997
+ videoUrl?: string | undefined;
998
+ thumbnailUrl?: string | undefined;
999
+ }>, "many">>;
1000
+ totalPortfolioItems: z.ZodOptional<z.ZodNumber>;
1001
+ specializedProfiles: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
1002
+ isDiversityCertified: z.ZodOptional<z.ZodBoolean>;
1003
+ isBoosted: z.ZodOptional<z.ZodBoolean>;
1004
+ boosted: z.ZodOptional<z.ZodBoolean>;
1005
+ boostedWouldHaveBeen: z.ZodOptional<z.ZodBoolean>;
1006
+ }, "strip", z.ZodTypeAny, {
1007
+ description?: string | undefined;
1008
+ title?: string | undefined;
1009
+ portrait?: {
1010
+ portrait: string;
1011
+ } | undefined;
1012
+ firstName?: string | undefined;
1013
+ lastName?: string | undefined;
1014
+ location?: {
1015
+ country: string;
1016
+ region: string;
1017
+ subregion: string;
1018
+ timezone: string;
1019
+ state?: string | undefined;
1020
+ city?: string | undefined;
1021
+ zip?: string | undefined;
1022
+ } | undefined;
1023
+ chargeRate?: {
1024
+ rawValue: string;
1025
+ currency: string;
1026
+ } | undefined;
1027
+ profileUrl?: string | undefined;
1028
+ offerConsultations?: boolean | undefined;
1029
+ jobSummariesAssignmentRids?: any;
1030
+ shortName?: string | undefined;
1031
+ skills?: {
1032
+ uid: string;
1033
+ skill: {
1034
+ prettyName: string;
1035
+ uid: string;
1036
+ };
1037
+ }[] | undefined;
1038
+ stats?: {
1039
+ hideJss: boolean;
1040
+ hideEarnings: boolean;
1041
+ topRatedStatus: string;
1042
+ topRatedStatusEx: string;
1043
+ rate: number;
1044
+ earned: number;
1045
+ jobSuccessScore: number;
1046
+ totalHours: number;
1047
+ totalHourlyJobs: number;
1048
+ totalFpJobs: number;
1049
+ totalCompletedJobs: number;
1050
+ rankInfo?: any;
1051
+ } | undefined;
1052
+ portfolioItems?: {
1053
+ uid: string;
1054
+ title: string;
1055
+ publicPortfolioItem: boolean;
1056
+ category: {
1057
+ id?: string | undefined;
1058
+ level1?: string | undefined;
1059
+ level2?: string | undefined;
1060
+ };
1061
+ description?: string | undefined;
1062
+ videoUrl?: string | undefined;
1063
+ thumbnailUrl?: string | undefined;
1064
+ }[] | undefined;
1065
+ totalPortfolioItems?: number | undefined;
1066
+ specializedProfiles?: any[] | undefined;
1067
+ isDiversityCertified?: boolean | undefined;
1068
+ isBoosted?: boolean | undefined;
1069
+ boosted?: boolean | undefined;
1070
+ boostedWouldHaveBeen?: boolean | undefined;
1071
+ }, {
1072
+ description?: string | undefined;
1073
+ title?: string | undefined;
1074
+ portrait?: {
1075
+ portrait: string;
1076
+ } | undefined;
1077
+ firstName?: string | undefined;
1078
+ lastName?: string | undefined;
1079
+ location?: {
1080
+ country: string;
1081
+ region: string;
1082
+ subregion: string;
1083
+ timezone: string;
1084
+ state?: string | undefined;
1085
+ city?: string | undefined;
1086
+ zip?: string | undefined;
1087
+ } | undefined;
1088
+ chargeRate?: {
1089
+ rawValue: string;
1090
+ currency: string;
1091
+ } | undefined;
1092
+ profileUrl?: string | undefined;
1093
+ offerConsultations?: boolean | undefined;
1094
+ jobSummariesAssignmentRids?: any;
1095
+ shortName?: string | undefined;
1096
+ skills?: {
1097
+ uid: string;
1098
+ skill: {
1099
+ prettyName: string;
1100
+ uid: string;
1101
+ };
1102
+ }[] | undefined;
1103
+ stats?: {
1104
+ hideJss: boolean;
1105
+ hideEarnings: boolean;
1106
+ topRatedStatus: string;
1107
+ topRatedStatusEx: string;
1108
+ rate: number;
1109
+ earned: number;
1110
+ jobSuccessScore: number;
1111
+ totalHours: number;
1112
+ totalHourlyJobs: number;
1113
+ totalFpJobs: number;
1114
+ totalCompletedJobs: number;
1115
+ rankInfo?: any;
1116
+ } | undefined;
1117
+ portfolioItems?: {
1118
+ uid: string;
1119
+ title: string;
1120
+ publicPortfolioItem: boolean;
1121
+ category: {
1122
+ id?: string | undefined;
1123
+ level1?: string | undefined;
1124
+ level2?: string | undefined;
1125
+ };
1126
+ description?: string | undefined;
1127
+ videoUrl?: string | undefined;
1128
+ thumbnailUrl?: string | undefined;
1129
+ }[] | undefined;
1130
+ totalPortfolioItems?: number | undefined;
1131
+ specializedProfiles?: any[] | undefined;
1132
+ isDiversityCertified?: boolean | undefined;
1133
+ isBoosted?: boolean | undefined;
1134
+ boosted?: boolean | undefined;
1135
+ boostedWouldHaveBeen?: boolean | undefined;
1136
+ }>, "many">;
1137
+ currentPage: z.ZodNumber;
1138
+ paging: z.ZodObject<{
1139
+ total: z.ZodNumber;
1140
+ offset: z.ZodNumber;
1141
+ count: z.ZodNumber;
1142
+ originTotal: z.ZodNumber;
1143
+ pagesTotal: z.ZodNumber;
1144
+ page: z.ZodNumber;
1145
+ perPage: z.ZodNumber;
1146
+ }, "strip", z.ZodTypeAny, {
1147
+ total: number;
1148
+ offset: number;
1149
+ count: number;
1150
+ originTotal: number;
1151
+ pagesTotal: number;
1152
+ page: number;
1153
+ perPage: number;
1154
+ }, {
1155
+ total: number;
1156
+ offset: number;
1157
+ count: number;
1158
+ originTotal: number;
1159
+ pagesTotal: number;
1160
+ page: number;
1161
+ perPage: number;
1162
+ }>;
1163
+ flags: z.ZodObject<{
1164
+ portfolioSearch: z.ZodBoolean;
1165
+ }, "strip", z.ZodTypeAny, {
1166
+ portfolioSearch: boolean;
1167
+ }, {
1168
+ portfolioSearch: boolean;
1169
+ }>;
1170
+ searchQueryCache: z.ZodRecord<z.ZodString, z.ZodAny>;
1171
+ }, "strip", z.ZodTypeAny, {
1172
+ status: {
1173
+ loading: boolean;
1174
+ loaded: boolean;
1175
+ failed: boolean;
1176
+ };
1177
+ profiles: {
1178
+ description?: string | undefined;
1179
+ title?: string | undefined;
1180
+ portrait?: {
1181
+ portrait: string;
1182
+ } | undefined;
1183
+ firstName?: string | undefined;
1184
+ lastName?: string | undefined;
1185
+ location?: {
1186
+ country: string;
1187
+ region: string;
1188
+ subregion: string;
1189
+ timezone: string;
1190
+ state?: string | undefined;
1191
+ city?: string | undefined;
1192
+ zip?: string | undefined;
1193
+ } | undefined;
1194
+ chargeRate?: {
1195
+ rawValue: string;
1196
+ currency: string;
1197
+ } | undefined;
1198
+ profileUrl?: string | undefined;
1199
+ offerConsultations?: boolean | undefined;
1200
+ jobSummariesAssignmentRids?: any;
1201
+ shortName?: string | undefined;
1202
+ skills?: {
1203
+ uid: string;
1204
+ skill: {
1205
+ prettyName: string;
1206
+ uid: string;
1207
+ };
1208
+ }[] | undefined;
1209
+ stats?: {
1210
+ hideJss: boolean;
1211
+ hideEarnings: boolean;
1212
+ topRatedStatus: string;
1213
+ topRatedStatusEx: string;
1214
+ rate: number;
1215
+ earned: number;
1216
+ jobSuccessScore: number;
1217
+ totalHours: number;
1218
+ totalHourlyJobs: number;
1219
+ totalFpJobs: number;
1220
+ totalCompletedJobs: number;
1221
+ rankInfo?: any;
1222
+ } | undefined;
1223
+ portfolioItems?: {
1224
+ uid: string;
1225
+ title: string;
1226
+ publicPortfolioItem: boolean;
1227
+ category: {
1228
+ id?: string | undefined;
1229
+ level1?: string | undefined;
1230
+ level2?: string | undefined;
1231
+ };
1232
+ description?: string | undefined;
1233
+ videoUrl?: string | undefined;
1234
+ thumbnailUrl?: string | undefined;
1235
+ }[] | undefined;
1236
+ totalPortfolioItems?: number | undefined;
1237
+ specializedProfiles?: any[] | undefined;
1238
+ isDiversityCertified?: boolean | undefined;
1239
+ isBoosted?: boolean | undefined;
1240
+ boosted?: boolean | undefined;
1241
+ boostedWouldHaveBeen?: boolean | undefined;
1242
+ }[];
1243
+ currentPage: number;
1244
+ paging: {
1245
+ total: number;
1246
+ offset: number;
1247
+ count: number;
1248
+ originTotal: number;
1249
+ pagesTotal: number;
1250
+ page: number;
1251
+ perPage: number;
1252
+ };
1253
+ flags: {
1254
+ portfolioSearch: boolean;
1255
+ };
1256
+ searchQueryCache: Record<string, any>;
1257
+ }, {
1258
+ status: {
1259
+ loading: boolean;
1260
+ loaded: boolean;
1261
+ failed: boolean;
1262
+ };
1263
+ profiles: {
1264
+ description?: string | undefined;
1265
+ title?: string | undefined;
1266
+ portrait?: {
1267
+ portrait: string;
1268
+ } | undefined;
1269
+ firstName?: string | undefined;
1270
+ lastName?: string | undefined;
1271
+ location?: {
1272
+ country: string;
1273
+ region: string;
1274
+ subregion: string;
1275
+ timezone: string;
1276
+ state?: string | undefined;
1277
+ city?: string | undefined;
1278
+ zip?: string | undefined;
1279
+ } | undefined;
1280
+ chargeRate?: {
1281
+ rawValue: string;
1282
+ currency: string;
1283
+ } | undefined;
1284
+ profileUrl?: string | undefined;
1285
+ offerConsultations?: boolean | undefined;
1286
+ jobSummariesAssignmentRids?: any;
1287
+ shortName?: string | undefined;
1288
+ skills?: {
1289
+ uid: string;
1290
+ skill: {
1291
+ prettyName: string;
1292
+ uid: string;
1293
+ };
1294
+ }[] | undefined;
1295
+ stats?: {
1296
+ hideJss: boolean;
1297
+ hideEarnings: boolean;
1298
+ topRatedStatus: string;
1299
+ topRatedStatusEx: string;
1300
+ rate: number;
1301
+ earned: number;
1302
+ jobSuccessScore: number;
1303
+ totalHours: number;
1304
+ totalHourlyJobs: number;
1305
+ totalFpJobs: number;
1306
+ totalCompletedJobs: number;
1307
+ rankInfo?: any;
1308
+ } | undefined;
1309
+ portfolioItems?: {
1310
+ uid: string;
1311
+ title: string;
1312
+ publicPortfolioItem: boolean;
1313
+ category: {
1314
+ id?: string | undefined;
1315
+ level1?: string | undefined;
1316
+ level2?: string | undefined;
1317
+ };
1318
+ description?: string | undefined;
1319
+ videoUrl?: string | undefined;
1320
+ thumbnailUrl?: string | undefined;
1321
+ }[] | undefined;
1322
+ totalPortfolioItems?: number | undefined;
1323
+ specializedProfiles?: any[] | undefined;
1324
+ isDiversityCertified?: boolean | undefined;
1325
+ isBoosted?: boolean | undefined;
1326
+ boosted?: boolean | undefined;
1327
+ boostedWouldHaveBeen?: boolean | undefined;
1328
+ }[];
1329
+ currentPage: number;
1330
+ paging: {
1331
+ total: number;
1332
+ offset: number;
1333
+ count: number;
1334
+ originTotal: number;
1335
+ pagesTotal: number;
1336
+ page: number;
1337
+ perPage: number;
1338
+ };
1339
+ flags: {
1340
+ portfolioSearch: boolean;
1341
+ };
1342
+ searchQueryCache: Record<string, any>;
1343
+ }>;
1344
+ }, "strip", z.ZodTypeAny, {
1345
+ profilesSearch: {
1346
+ status: {
1347
+ loading: boolean;
1348
+ loaded: boolean;
1349
+ failed: boolean;
1350
+ };
1351
+ profiles: {
1352
+ description?: string | undefined;
1353
+ title?: string | undefined;
1354
+ portrait?: {
1355
+ portrait: string;
1356
+ } | undefined;
1357
+ firstName?: string | undefined;
1358
+ lastName?: string | undefined;
1359
+ location?: {
1360
+ country: string;
1361
+ region: string;
1362
+ subregion: string;
1363
+ timezone: string;
1364
+ state?: string | undefined;
1365
+ city?: string | undefined;
1366
+ zip?: string | undefined;
1367
+ } | undefined;
1368
+ chargeRate?: {
1369
+ rawValue: string;
1370
+ currency: string;
1371
+ } | undefined;
1372
+ profileUrl?: string | undefined;
1373
+ offerConsultations?: boolean | undefined;
1374
+ jobSummariesAssignmentRids?: any;
1375
+ shortName?: string | undefined;
1376
+ skills?: {
1377
+ uid: string;
1378
+ skill: {
1379
+ prettyName: string;
1380
+ uid: string;
1381
+ };
1382
+ }[] | undefined;
1383
+ stats?: {
1384
+ hideJss: boolean;
1385
+ hideEarnings: boolean;
1386
+ topRatedStatus: string;
1387
+ topRatedStatusEx: string;
1388
+ rate: number;
1389
+ earned: number;
1390
+ jobSuccessScore: number;
1391
+ totalHours: number;
1392
+ totalHourlyJobs: number;
1393
+ totalFpJobs: number;
1394
+ totalCompletedJobs: number;
1395
+ rankInfo?: any;
1396
+ } | undefined;
1397
+ portfolioItems?: {
1398
+ uid: string;
1399
+ title: string;
1400
+ publicPortfolioItem: boolean;
1401
+ category: {
1402
+ id?: string | undefined;
1403
+ level1?: string | undefined;
1404
+ level2?: string | undefined;
1405
+ };
1406
+ description?: string | undefined;
1407
+ videoUrl?: string | undefined;
1408
+ thumbnailUrl?: string | undefined;
1409
+ }[] | undefined;
1410
+ totalPortfolioItems?: number | undefined;
1411
+ specializedProfiles?: any[] | undefined;
1412
+ isDiversityCertified?: boolean | undefined;
1413
+ isBoosted?: boolean | undefined;
1414
+ boosted?: boolean | undefined;
1415
+ boostedWouldHaveBeen?: boolean | undefined;
1416
+ }[];
1417
+ currentPage: number;
1418
+ paging: {
1419
+ total: number;
1420
+ offset: number;
1421
+ count: number;
1422
+ originTotal: number;
1423
+ pagesTotal: number;
1424
+ page: number;
1425
+ perPage: number;
1426
+ };
1427
+ flags: {
1428
+ portfolioSearch: boolean;
1429
+ };
1430
+ searchQueryCache: Record<string, any>;
1431
+ };
1432
+ }, {
1433
+ profilesSearch: {
1434
+ status: {
1435
+ loading: boolean;
1436
+ loaded: boolean;
1437
+ failed: boolean;
1438
+ };
1439
+ profiles: {
1440
+ description?: string | undefined;
1441
+ title?: string | undefined;
1442
+ portrait?: {
1443
+ portrait: string;
1444
+ } | undefined;
1445
+ firstName?: string | undefined;
1446
+ lastName?: string | undefined;
1447
+ location?: {
1448
+ country: string;
1449
+ region: string;
1450
+ subregion: string;
1451
+ timezone: string;
1452
+ state?: string | undefined;
1453
+ city?: string | undefined;
1454
+ zip?: string | undefined;
1455
+ } | undefined;
1456
+ chargeRate?: {
1457
+ rawValue: string;
1458
+ currency: string;
1459
+ } | undefined;
1460
+ profileUrl?: string | undefined;
1461
+ offerConsultations?: boolean | undefined;
1462
+ jobSummariesAssignmentRids?: any;
1463
+ shortName?: string | undefined;
1464
+ skills?: {
1465
+ uid: string;
1466
+ skill: {
1467
+ prettyName: string;
1468
+ uid: string;
1469
+ };
1470
+ }[] | undefined;
1471
+ stats?: {
1472
+ hideJss: boolean;
1473
+ hideEarnings: boolean;
1474
+ topRatedStatus: string;
1475
+ topRatedStatusEx: string;
1476
+ rate: number;
1477
+ earned: number;
1478
+ jobSuccessScore: number;
1479
+ totalHours: number;
1480
+ totalHourlyJobs: number;
1481
+ totalFpJobs: number;
1482
+ totalCompletedJobs: number;
1483
+ rankInfo?: any;
1484
+ } | undefined;
1485
+ portfolioItems?: {
1486
+ uid: string;
1487
+ title: string;
1488
+ publicPortfolioItem: boolean;
1489
+ category: {
1490
+ id?: string | undefined;
1491
+ level1?: string | undefined;
1492
+ level2?: string | undefined;
1493
+ };
1494
+ description?: string | undefined;
1495
+ videoUrl?: string | undefined;
1496
+ thumbnailUrl?: string | undefined;
1497
+ }[] | undefined;
1498
+ totalPortfolioItems?: number | undefined;
1499
+ specializedProfiles?: any[] | undefined;
1500
+ isDiversityCertified?: boolean | undefined;
1501
+ isBoosted?: boolean | undefined;
1502
+ boosted?: boolean | undefined;
1503
+ boostedWouldHaveBeen?: boolean | undefined;
1504
+ }[];
1505
+ currentPage: number;
1506
+ paging: {
1507
+ total: number;
1508
+ offset: number;
1509
+ count: number;
1510
+ originTotal: number;
1511
+ pagesTotal: number;
1512
+ page: number;
1513
+ perPage: number;
1514
+ };
1515
+ flags: {
1516
+ portfolioSearch: boolean;
1517
+ };
1518
+ searchQueryCache: Record<string, any>;
1519
+ };
1520
+ }>;
1521
+ export declare const profileSearchNuxtObjectSchema: z.ZodObject<{
1522
+ state: z.ZodObject<{
1523
+ profilesSearch: z.ZodObject<{
1524
+ status: z.ZodObject<{
1525
+ loading: z.ZodBoolean;
1526
+ loaded: z.ZodBoolean;
1527
+ failed: z.ZodBoolean;
1528
+ }, "strip", z.ZodTypeAny, {
1529
+ loading: boolean;
1530
+ loaded: boolean;
1531
+ failed: boolean;
1532
+ }, {
1533
+ loading: boolean;
1534
+ loaded: boolean;
1535
+ failed: boolean;
1536
+ }>;
1537
+ profiles: z.ZodArray<z.ZodObject<{
1538
+ title: z.ZodOptional<z.ZodString>;
1539
+ firstName: z.ZodOptional<z.ZodString>;
1540
+ lastName: z.ZodOptional<z.ZodString>;
1541
+ description: z.ZodOptional<z.ZodString>;
1542
+ location: z.ZodOptional<z.ZodObject<{
1543
+ country: z.ZodString;
1544
+ state: z.ZodOptional<z.ZodString>;
1545
+ city: z.ZodOptional<z.ZodString>;
1546
+ region: z.ZodString;
1547
+ subregion: z.ZodString;
1548
+ timezone: z.ZodString;
1549
+ zip: z.ZodOptional<z.ZodString>;
1550
+ }, "strip", z.ZodTypeAny, {
1551
+ country: string;
1552
+ region: string;
1553
+ subregion: string;
1554
+ timezone: string;
1555
+ state?: string | undefined;
1556
+ city?: string | undefined;
1557
+ zip?: string | undefined;
1558
+ }, {
1559
+ country: string;
1560
+ region: string;
1561
+ subregion: string;
1562
+ timezone: string;
1563
+ state?: string | undefined;
1564
+ city?: string | undefined;
1565
+ zip?: string | undefined;
1566
+ }>>;
1567
+ chargeRate: z.ZodOptional<z.ZodObject<{
1568
+ rawValue: z.ZodString;
1569
+ currency: z.ZodString;
1570
+ }, "strip", z.ZodTypeAny, {
1571
+ rawValue: string;
1572
+ currency: string;
1573
+ }, {
1574
+ rawValue: string;
1575
+ currency: string;
1576
+ }>>;
1577
+ portrait: z.ZodOptional<z.ZodObject<{
1578
+ portrait: z.ZodString;
1579
+ }, "strip", z.ZodTypeAny, {
1580
+ portrait: string;
1581
+ }, {
1582
+ portrait: string;
1583
+ }>>;
1584
+ profileUrl: z.ZodOptional<z.ZodString>;
1585
+ offerConsultations: z.ZodOptional<z.ZodBoolean>;
1586
+ jobSummariesAssignmentRids: z.ZodOptional<z.ZodAny>;
1587
+ shortName: z.ZodOptional<z.ZodString>;
1588
+ skills: z.ZodOptional<z.ZodArray<z.ZodObject<{
1589
+ skill: z.ZodObject<{
1590
+ prettyName: z.ZodString;
1591
+ uid: z.ZodString;
1592
+ }, "strip", z.ZodTypeAny, {
1593
+ prettyName: string;
1594
+ uid: string;
1595
+ }, {
1596
+ prettyName: string;
1597
+ uid: string;
1598
+ }>;
1599
+ uid: z.ZodString;
1600
+ }, "strip", z.ZodTypeAny, {
1601
+ uid: string;
1602
+ skill: {
1603
+ prettyName: string;
1604
+ uid: string;
1605
+ };
1606
+ }, {
1607
+ uid: string;
1608
+ skill: {
1609
+ prettyName: string;
1610
+ uid: string;
1611
+ };
1612
+ }>, "many">>;
1613
+ stats: z.ZodOptional<z.ZodObject<{
1614
+ hideJss: z.ZodBoolean;
1615
+ hideEarnings: z.ZodBoolean;
1616
+ topRatedStatus: z.ZodString;
1617
+ topRatedStatusEx: z.ZodString;
1618
+ rate: z.ZodNumber;
1619
+ earned: z.ZodNumber;
1620
+ jobSuccessScore: z.ZodNumber;
1621
+ rankInfo: z.ZodOptional<z.ZodAny>;
1622
+ totalHours: z.ZodNumber;
1623
+ totalHourlyJobs: z.ZodNumber;
1624
+ totalFpJobs: z.ZodNumber;
1625
+ totalCompletedJobs: z.ZodNumber;
1626
+ }, "strip", z.ZodTypeAny, {
1627
+ hideJss: boolean;
1628
+ hideEarnings: boolean;
1629
+ topRatedStatus: string;
1630
+ topRatedStatusEx: string;
1631
+ rate: number;
1632
+ earned: number;
1633
+ jobSuccessScore: number;
1634
+ totalHours: number;
1635
+ totalHourlyJobs: number;
1636
+ totalFpJobs: number;
1637
+ totalCompletedJobs: number;
1638
+ rankInfo?: any;
1639
+ }, {
1640
+ hideJss: boolean;
1641
+ hideEarnings: boolean;
1642
+ topRatedStatus: string;
1643
+ topRatedStatusEx: string;
1644
+ rate: number;
1645
+ earned: number;
1646
+ jobSuccessScore: number;
1647
+ totalHours: number;
1648
+ totalHourlyJobs: number;
1649
+ totalFpJobs: number;
1650
+ totalCompletedJobs: number;
1651
+ rankInfo?: any;
1652
+ }>>;
1653
+ portfolioItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
1654
+ description: z.ZodOptional<z.ZodString>;
1655
+ title: z.ZodString;
1656
+ videoUrl: z.ZodOptional<z.ZodString>;
1657
+ uid: z.ZodString;
1658
+ thumbnailUrl: z.ZodOptional<z.ZodString>;
1659
+ publicPortfolioItem: z.ZodBoolean;
1660
+ category: z.ZodObject<{
1661
+ id: z.ZodOptional<z.ZodString>;
1662
+ level1: z.ZodOptional<z.ZodString>;
1663
+ level2: z.ZodOptional<z.ZodString>;
1664
+ }, "strip", z.ZodTypeAny, {
1665
+ id?: string | undefined;
1666
+ level1?: string | undefined;
1667
+ level2?: string | undefined;
1668
+ }, {
1669
+ id?: string | undefined;
1670
+ level1?: string | undefined;
1671
+ level2?: string | undefined;
1672
+ }>;
1673
+ }, "strip", z.ZodTypeAny, {
1674
+ uid: string;
1675
+ title: string;
1676
+ publicPortfolioItem: boolean;
1677
+ category: {
1678
+ id?: string | undefined;
1679
+ level1?: string | undefined;
1680
+ level2?: string | undefined;
1681
+ };
1682
+ description?: string | undefined;
1683
+ videoUrl?: string | undefined;
1684
+ thumbnailUrl?: string | undefined;
1685
+ }, {
1686
+ uid: string;
1687
+ title: string;
1688
+ publicPortfolioItem: boolean;
1689
+ category: {
1690
+ id?: string | undefined;
1691
+ level1?: string | undefined;
1692
+ level2?: string | undefined;
1693
+ };
1694
+ description?: string | undefined;
1695
+ videoUrl?: string | undefined;
1696
+ thumbnailUrl?: string | undefined;
1697
+ }>, "many">>;
1698
+ totalPortfolioItems: z.ZodOptional<z.ZodNumber>;
1699
+ specializedProfiles: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
1700
+ isDiversityCertified: z.ZodOptional<z.ZodBoolean>;
1701
+ isBoosted: z.ZodOptional<z.ZodBoolean>;
1702
+ boosted: z.ZodOptional<z.ZodBoolean>;
1703
+ boostedWouldHaveBeen: z.ZodOptional<z.ZodBoolean>;
1704
+ }, "strip", z.ZodTypeAny, {
1705
+ description?: string | undefined;
1706
+ title?: string | undefined;
1707
+ portrait?: {
1708
+ portrait: string;
1709
+ } | undefined;
1710
+ firstName?: string | undefined;
1711
+ lastName?: string | undefined;
1712
+ location?: {
1713
+ country: string;
1714
+ region: string;
1715
+ subregion: string;
1716
+ timezone: string;
1717
+ state?: string | undefined;
1718
+ city?: string | undefined;
1719
+ zip?: string | undefined;
1720
+ } | undefined;
1721
+ chargeRate?: {
1722
+ rawValue: string;
1723
+ currency: string;
1724
+ } | undefined;
1725
+ profileUrl?: string | undefined;
1726
+ offerConsultations?: boolean | undefined;
1727
+ jobSummariesAssignmentRids?: any;
1728
+ shortName?: string | undefined;
1729
+ skills?: {
1730
+ uid: string;
1731
+ skill: {
1732
+ prettyName: string;
1733
+ uid: string;
1734
+ };
1735
+ }[] | undefined;
1736
+ stats?: {
1737
+ hideJss: boolean;
1738
+ hideEarnings: boolean;
1739
+ topRatedStatus: string;
1740
+ topRatedStatusEx: string;
1741
+ rate: number;
1742
+ earned: number;
1743
+ jobSuccessScore: number;
1744
+ totalHours: number;
1745
+ totalHourlyJobs: number;
1746
+ totalFpJobs: number;
1747
+ totalCompletedJobs: number;
1748
+ rankInfo?: any;
1749
+ } | undefined;
1750
+ portfolioItems?: {
1751
+ uid: string;
1752
+ title: string;
1753
+ publicPortfolioItem: boolean;
1754
+ category: {
1755
+ id?: string | undefined;
1756
+ level1?: string | undefined;
1757
+ level2?: string | undefined;
1758
+ };
1759
+ description?: string | undefined;
1760
+ videoUrl?: string | undefined;
1761
+ thumbnailUrl?: string | undefined;
1762
+ }[] | undefined;
1763
+ totalPortfolioItems?: number | undefined;
1764
+ specializedProfiles?: any[] | undefined;
1765
+ isDiversityCertified?: boolean | undefined;
1766
+ isBoosted?: boolean | undefined;
1767
+ boosted?: boolean | undefined;
1768
+ boostedWouldHaveBeen?: boolean | undefined;
1769
+ }, {
1770
+ description?: string | undefined;
1771
+ title?: string | undefined;
1772
+ portrait?: {
1773
+ portrait: string;
1774
+ } | undefined;
1775
+ firstName?: string | undefined;
1776
+ lastName?: string | undefined;
1777
+ location?: {
1778
+ country: string;
1779
+ region: string;
1780
+ subregion: string;
1781
+ timezone: string;
1782
+ state?: string | undefined;
1783
+ city?: string | undefined;
1784
+ zip?: string | undefined;
1785
+ } | undefined;
1786
+ chargeRate?: {
1787
+ rawValue: string;
1788
+ currency: string;
1789
+ } | undefined;
1790
+ profileUrl?: string | undefined;
1791
+ offerConsultations?: boolean | undefined;
1792
+ jobSummariesAssignmentRids?: any;
1793
+ shortName?: string | undefined;
1794
+ skills?: {
1795
+ uid: string;
1796
+ skill: {
1797
+ prettyName: string;
1798
+ uid: string;
1799
+ };
1800
+ }[] | undefined;
1801
+ stats?: {
1802
+ hideJss: boolean;
1803
+ hideEarnings: boolean;
1804
+ topRatedStatus: string;
1805
+ topRatedStatusEx: string;
1806
+ rate: number;
1807
+ earned: number;
1808
+ jobSuccessScore: number;
1809
+ totalHours: number;
1810
+ totalHourlyJobs: number;
1811
+ totalFpJobs: number;
1812
+ totalCompletedJobs: number;
1813
+ rankInfo?: any;
1814
+ } | undefined;
1815
+ portfolioItems?: {
1816
+ uid: string;
1817
+ title: string;
1818
+ publicPortfolioItem: boolean;
1819
+ category: {
1820
+ id?: string | undefined;
1821
+ level1?: string | undefined;
1822
+ level2?: string | undefined;
1823
+ };
1824
+ description?: string | undefined;
1825
+ videoUrl?: string | undefined;
1826
+ thumbnailUrl?: string | undefined;
1827
+ }[] | undefined;
1828
+ totalPortfolioItems?: number | undefined;
1829
+ specializedProfiles?: any[] | undefined;
1830
+ isDiversityCertified?: boolean | undefined;
1831
+ isBoosted?: boolean | undefined;
1832
+ boosted?: boolean | undefined;
1833
+ boostedWouldHaveBeen?: boolean | undefined;
1834
+ }>, "many">;
1835
+ currentPage: z.ZodNumber;
1836
+ paging: z.ZodObject<{
1837
+ total: z.ZodNumber;
1838
+ offset: z.ZodNumber;
1839
+ count: z.ZodNumber;
1840
+ originTotal: z.ZodNumber;
1841
+ pagesTotal: z.ZodNumber;
1842
+ page: z.ZodNumber;
1843
+ perPage: z.ZodNumber;
1844
+ }, "strip", z.ZodTypeAny, {
1845
+ total: number;
1846
+ offset: number;
1847
+ count: number;
1848
+ originTotal: number;
1849
+ pagesTotal: number;
1850
+ page: number;
1851
+ perPage: number;
1852
+ }, {
1853
+ total: number;
1854
+ offset: number;
1855
+ count: number;
1856
+ originTotal: number;
1857
+ pagesTotal: number;
1858
+ page: number;
1859
+ perPage: number;
1860
+ }>;
1861
+ flags: z.ZodObject<{
1862
+ portfolioSearch: z.ZodBoolean;
1863
+ }, "strip", z.ZodTypeAny, {
1864
+ portfolioSearch: boolean;
1865
+ }, {
1866
+ portfolioSearch: boolean;
1867
+ }>;
1868
+ searchQueryCache: z.ZodRecord<z.ZodString, z.ZodAny>;
1869
+ }, "strip", z.ZodTypeAny, {
1870
+ status: {
1871
+ loading: boolean;
1872
+ loaded: boolean;
1873
+ failed: boolean;
1874
+ };
1875
+ profiles: {
1876
+ description?: string | undefined;
1877
+ title?: string | undefined;
1878
+ portrait?: {
1879
+ portrait: string;
1880
+ } | undefined;
1881
+ firstName?: string | undefined;
1882
+ lastName?: string | undefined;
1883
+ location?: {
1884
+ country: string;
1885
+ region: string;
1886
+ subregion: string;
1887
+ timezone: string;
1888
+ state?: string | undefined;
1889
+ city?: string | undefined;
1890
+ zip?: string | undefined;
1891
+ } | undefined;
1892
+ chargeRate?: {
1893
+ rawValue: string;
1894
+ currency: string;
1895
+ } | undefined;
1896
+ profileUrl?: string | undefined;
1897
+ offerConsultations?: boolean | undefined;
1898
+ jobSummariesAssignmentRids?: any;
1899
+ shortName?: string | undefined;
1900
+ skills?: {
1901
+ uid: string;
1902
+ skill: {
1903
+ prettyName: string;
1904
+ uid: string;
1905
+ };
1906
+ }[] | undefined;
1907
+ stats?: {
1908
+ hideJss: boolean;
1909
+ hideEarnings: boolean;
1910
+ topRatedStatus: string;
1911
+ topRatedStatusEx: string;
1912
+ rate: number;
1913
+ earned: number;
1914
+ jobSuccessScore: number;
1915
+ totalHours: number;
1916
+ totalHourlyJobs: number;
1917
+ totalFpJobs: number;
1918
+ totalCompletedJobs: number;
1919
+ rankInfo?: any;
1920
+ } | undefined;
1921
+ portfolioItems?: {
1922
+ uid: string;
1923
+ title: string;
1924
+ publicPortfolioItem: boolean;
1925
+ category: {
1926
+ id?: string | undefined;
1927
+ level1?: string | undefined;
1928
+ level2?: string | undefined;
1929
+ };
1930
+ description?: string | undefined;
1931
+ videoUrl?: string | undefined;
1932
+ thumbnailUrl?: string | undefined;
1933
+ }[] | undefined;
1934
+ totalPortfolioItems?: number | undefined;
1935
+ specializedProfiles?: any[] | undefined;
1936
+ isDiversityCertified?: boolean | undefined;
1937
+ isBoosted?: boolean | undefined;
1938
+ boosted?: boolean | undefined;
1939
+ boostedWouldHaveBeen?: boolean | undefined;
1940
+ }[];
1941
+ currentPage: number;
1942
+ paging: {
1943
+ total: number;
1944
+ offset: number;
1945
+ count: number;
1946
+ originTotal: number;
1947
+ pagesTotal: number;
1948
+ page: number;
1949
+ perPage: number;
1950
+ };
1951
+ flags: {
1952
+ portfolioSearch: boolean;
1953
+ };
1954
+ searchQueryCache: Record<string, any>;
1955
+ }, {
1956
+ status: {
1957
+ loading: boolean;
1958
+ loaded: boolean;
1959
+ failed: boolean;
1960
+ };
1961
+ profiles: {
1962
+ description?: string | undefined;
1963
+ title?: string | undefined;
1964
+ portrait?: {
1965
+ portrait: string;
1966
+ } | undefined;
1967
+ firstName?: string | undefined;
1968
+ lastName?: string | undefined;
1969
+ location?: {
1970
+ country: string;
1971
+ region: string;
1972
+ subregion: string;
1973
+ timezone: string;
1974
+ state?: string | undefined;
1975
+ city?: string | undefined;
1976
+ zip?: string | undefined;
1977
+ } | undefined;
1978
+ chargeRate?: {
1979
+ rawValue: string;
1980
+ currency: string;
1981
+ } | undefined;
1982
+ profileUrl?: string | undefined;
1983
+ offerConsultations?: boolean | undefined;
1984
+ jobSummariesAssignmentRids?: any;
1985
+ shortName?: string | undefined;
1986
+ skills?: {
1987
+ uid: string;
1988
+ skill: {
1989
+ prettyName: string;
1990
+ uid: string;
1991
+ };
1992
+ }[] | undefined;
1993
+ stats?: {
1994
+ hideJss: boolean;
1995
+ hideEarnings: boolean;
1996
+ topRatedStatus: string;
1997
+ topRatedStatusEx: string;
1998
+ rate: number;
1999
+ earned: number;
2000
+ jobSuccessScore: number;
2001
+ totalHours: number;
2002
+ totalHourlyJobs: number;
2003
+ totalFpJobs: number;
2004
+ totalCompletedJobs: number;
2005
+ rankInfo?: any;
2006
+ } | undefined;
2007
+ portfolioItems?: {
2008
+ uid: string;
2009
+ title: string;
2010
+ publicPortfolioItem: boolean;
2011
+ category: {
2012
+ id?: string | undefined;
2013
+ level1?: string | undefined;
2014
+ level2?: string | undefined;
2015
+ };
2016
+ description?: string | undefined;
2017
+ videoUrl?: string | undefined;
2018
+ thumbnailUrl?: string | undefined;
2019
+ }[] | undefined;
2020
+ totalPortfolioItems?: number | undefined;
2021
+ specializedProfiles?: any[] | undefined;
2022
+ isDiversityCertified?: boolean | undefined;
2023
+ isBoosted?: boolean | undefined;
2024
+ boosted?: boolean | undefined;
2025
+ boostedWouldHaveBeen?: boolean | undefined;
2026
+ }[];
2027
+ currentPage: number;
2028
+ paging: {
2029
+ total: number;
2030
+ offset: number;
2031
+ count: number;
2032
+ originTotal: number;
2033
+ pagesTotal: number;
2034
+ page: number;
2035
+ perPage: number;
2036
+ };
2037
+ flags: {
2038
+ portfolioSearch: boolean;
2039
+ };
2040
+ searchQueryCache: Record<string, any>;
2041
+ }>;
2042
+ }, "strip", z.ZodTypeAny, {
2043
+ profilesSearch: {
2044
+ status: {
2045
+ loading: boolean;
2046
+ loaded: boolean;
2047
+ failed: boolean;
2048
+ };
2049
+ profiles: {
2050
+ description?: string | undefined;
2051
+ title?: string | undefined;
2052
+ portrait?: {
2053
+ portrait: string;
2054
+ } | undefined;
2055
+ firstName?: string | undefined;
2056
+ lastName?: string | undefined;
2057
+ location?: {
2058
+ country: string;
2059
+ region: string;
2060
+ subregion: string;
2061
+ timezone: string;
2062
+ state?: string | undefined;
2063
+ city?: string | undefined;
2064
+ zip?: string | undefined;
2065
+ } | undefined;
2066
+ chargeRate?: {
2067
+ rawValue: string;
2068
+ currency: string;
2069
+ } | undefined;
2070
+ profileUrl?: string | undefined;
2071
+ offerConsultations?: boolean | undefined;
2072
+ jobSummariesAssignmentRids?: any;
2073
+ shortName?: string | undefined;
2074
+ skills?: {
2075
+ uid: string;
2076
+ skill: {
2077
+ prettyName: string;
2078
+ uid: string;
2079
+ };
2080
+ }[] | undefined;
2081
+ stats?: {
2082
+ hideJss: boolean;
2083
+ hideEarnings: boolean;
2084
+ topRatedStatus: string;
2085
+ topRatedStatusEx: string;
2086
+ rate: number;
2087
+ earned: number;
2088
+ jobSuccessScore: number;
2089
+ totalHours: number;
2090
+ totalHourlyJobs: number;
2091
+ totalFpJobs: number;
2092
+ totalCompletedJobs: number;
2093
+ rankInfo?: any;
2094
+ } | undefined;
2095
+ portfolioItems?: {
2096
+ uid: string;
2097
+ title: string;
2098
+ publicPortfolioItem: boolean;
2099
+ category: {
2100
+ id?: string | undefined;
2101
+ level1?: string | undefined;
2102
+ level2?: string | undefined;
2103
+ };
2104
+ description?: string | undefined;
2105
+ videoUrl?: string | undefined;
2106
+ thumbnailUrl?: string | undefined;
2107
+ }[] | undefined;
2108
+ totalPortfolioItems?: number | undefined;
2109
+ specializedProfiles?: any[] | undefined;
2110
+ isDiversityCertified?: boolean | undefined;
2111
+ isBoosted?: boolean | undefined;
2112
+ boosted?: boolean | undefined;
2113
+ boostedWouldHaveBeen?: boolean | undefined;
2114
+ }[];
2115
+ currentPage: number;
2116
+ paging: {
2117
+ total: number;
2118
+ offset: number;
2119
+ count: number;
2120
+ originTotal: number;
2121
+ pagesTotal: number;
2122
+ page: number;
2123
+ perPage: number;
2124
+ };
2125
+ flags: {
2126
+ portfolioSearch: boolean;
2127
+ };
2128
+ searchQueryCache: Record<string, any>;
2129
+ };
2130
+ }, {
2131
+ profilesSearch: {
2132
+ status: {
2133
+ loading: boolean;
2134
+ loaded: boolean;
2135
+ failed: boolean;
2136
+ };
2137
+ profiles: {
2138
+ description?: string | undefined;
2139
+ title?: string | undefined;
2140
+ portrait?: {
2141
+ portrait: string;
2142
+ } | undefined;
2143
+ firstName?: string | undefined;
2144
+ lastName?: string | undefined;
2145
+ location?: {
2146
+ country: string;
2147
+ region: string;
2148
+ subregion: string;
2149
+ timezone: string;
2150
+ state?: string | undefined;
2151
+ city?: string | undefined;
2152
+ zip?: string | undefined;
2153
+ } | undefined;
2154
+ chargeRate?: {
2155
+ rawValue: string;
2156
+ currency: string;
2157
+ } | undefined;
2158
+ profileUrl?: string | undefined;
2159
+ offerConsultations?: boolean | undefined;
2160
+ jobSummariesAssignmentRids?: any;
2161
+ shortName?: string | undefined;
2162
+ skills?: {
2163
+ uid: string;
2164
+ skill: {
2165
+ prettyName: string;
2166
+ uid: string;
2167
+ };
2168
+ }[] | undefined;
2169
+ stats?: {
2170
+ hideJss: boolean;
2171
+ hideEarnings: boolean;
2172
+ topRatedStatus: string;
2173
+ topRatedStatusEx: string;
2174
+ rate: number;
2175
+ earned: number;
2176
+ jobSuccessScore: number;
2177
+ totalHours: number;
2178
+ totalHourlyJobs: number;
2179
+ totalFpJobs: number;
2180
+ totalCompletedJobs: number;
2181
+ rankInfo?: any;
2182
+ } | undefined;
2183
+ portfolioItems?: {
2184
+ uid: string;
2185
+ title: string;
2186
+ publicPortfolioItem: boolean;
2187
+ category: {
2188
+ id?: string | undefined;
2189
+ level1?: string | undefined;
2190
+ level2?: string | undefined;
2191
+ };
2192
+ description?: string | undefined;
2193
+ videoUrl?: string | undefined;
2194
+ thumbnailUrl?: string | undefined;
2195
+ }[] | undefined;
2196
+ totalPortfolioItems?: number | undefined;
2197
+ specializedProfiles?: any[] | undefined;
2198
+ isDiversityCertified?: boolean | undefined;
2199
+ isBoosted?: boolean | undefined;
2200
+ boosted?: boolean | undefined;
2201
+ boostedWouldHaveBeen?: boolean | undefined;
2202
+ }[];
2203
+ currentPage: number;
2204
+ paging: {
2205
+ total: number;
2206
+ offset: number;
2207
+ count: number;
2208
+ originTotal: number;
2209
+ pagesTotal: number;
2210
+ page: number;
2211
+ perPage: number;
2212
+ };
2213
+ flags: {
2214
+ portfolioSearch: boolean;
2215
+ };
2216
+ searchQueryCache: Record<string, any>;
2217
+ };
2218
+ }>;
2219
+ }, "strip", z.ZodTypeAny, {
2220
+ state: {
2221
+ profilesSearch: {
2222
+ status: {
2223
+ loading: boolean;
2224
+ loaded: boolean;
2225
+ failed: boolean;
2226
+ };
2227
+ profiles: {
2228
+ description?: string | undefined;
2229
+ title?: string | undefined;
2230
+ portrait?: {
2231
+ portrait: string;
2232
+ } | undefined;
2233
+ firstName?: string | undefined;
2234
+ lastName?: string | undefined;
2235
+ location?: {
2236
+ country: string;
2237
+ region: string;
2238
+ subregion: string;
2239
+ timezone: string;
2240
+ state?: string | undefined;
2241
+ city?: string | undefined;
2242
+ zip?: string | undefined;
2243
+ } | undefined;
2244
+ chargeRate?: {
2245
+ rawValue: string;
2246
+ currency: string;
2247
+ } | undefined;
2248
+ profileUrl?: string | undefined;
2249
+ offerConsultations?: boolean | undefined;
2250
+ jobSummariesAssignmentRids?: any;
2251
+ shortName?: string | undefined;
2252
+ skills?: {
2253
+ uid: string;
2254
+ skill: {
2255
+ prettyName: string;
2256
+ uid: string;
2257
+ };
2258
+ }[] | undefined;
2259
+ stats?: {
2260
+ hideJss: boolean;
2261
+ hideEarnings: boolean;
2262
+ topRatedStatus: string;
2263
+ topRatedStatusEx: string;
2264
+ rate: number;
2265
+ earned: number;
2266
+ jobSuccessScore: number;
2267
+ totalHours: number;
2268
+ totalHourlyJobs: number;
2269
+ totalFpJobs: number;
2270
+ totalCompletedJobs: number;
2271
+ rankInfo?: any;
2272
+ } | undefined;
2273
+ portfolioItems?: {
2274
+ uid: string;
2275
+ title: string;
2276
+ publicPortfolioItem: boolean;
2277
+ category: {
2278
+ id?: string | undefined;
2279
+ level1?: string | undefined;
2280
+ level2?: string | undefined;
2281
+ };
2282
+ description?: string | undefined;
2283
+ videoUrl?: string | undefined;
2284
+ thumbnailUrl?: string | undefined;
2285
+ }[] | undefined;
2286
+ totalPortfolioItems?: number | undefined;
2287
+ specializedProfiles?: any[] | undefined;
2288
+ isDiversityCertified?: boolean | undefined;
2289
+ isBoosted?: boolean | undefined;
2290
+ boosted?: boolean | undefined;
2291
+ boostedWouldHaveBeen?: boolean | undefined;
2292
+ }[];
2293
+ currentPage: number;
2294
+ paging: {
2295
+ total: number;
2296
+ offset: number;
2297
+ count: number;
2298
+ originTotal: number;
2299
+ pagesTotal: number;
2300
+ page: number;
2301
+ perPage: number;
2302
+ };
2303
+ flags: {
2304
+ portfolioSearch: boolean;
2305
+ };
2306
+ searchQueryCache: Record<string, any>;
2307
+ };
2308
+ };
2309
+ }, {
2310
+ state: {
2311
+ profilesSearch: {
2312
+ status: {
2313
+ loading: boolean;
2314
+ loaded: boolean;
2315
+ failed: boolean;
2316
+ };
2317
+ profiles: {
2318
+ description?: string | undefined;
2319
+ title?: string | undefined;
2320
+ portrait?: {
2321
+ portrait: string;
2322
+ } | undefined;
2323
+ firstName?: string | undefined;
2324
+ lastName?: string | undefined;
2325
+ location?: {
2326
+ country: string;
2327
+ region: string;
2328
+ subregion: string;
2329
+ timezone: string;
2330
+ state?: string | undefined;
2331
+ city?: string | undefined;
2332
+ zip?: string | undefined;
2333
+ } | undefined;
2334
+ chargeRate?: {
2335
+ rawValue: string;
2336
+ currency: string;
2337
+ } | undefined;
2338
+ profileUrl?: string | undefined;
2339
+ offerConsultations?: boolean | undefined;
2340
+ jobSummariesAssignmentRids?: any;
2341
+ shortName?: string | undefined;
2342
+ skills?: {
2343
+ uid: string;
2344
+ skill: {
2345
+ prettyName: string;
2346
+ uid: string;
2347
+ };
2348
+ }[] | undefined;
2349
+ stats?: {
2350
+ hideJss: boolean;
2351
+ hideEarnings: boolean;
2352
+ topRatedStatus: string;
2353
+ topRatedStatusEx: string;
2354
+ rate: number;
2355
+ earned: number;
2356
+ jobSuccessScore: number;
2357
+ totalHours: number;
2358
+ totalHourlyJobs: number;
2359
+ totalFpJobs: number;
2360
+ totalCompletedJobs: number;
2361
+ rankInfo?: any;
2362
+ } | undefined;
2363
+ portfolioItems?: {
2364
+ uid: string;
2365
+ title: string;
2366
+ publicPortfolioItem: boolean;
2367
+ category: {
2368
+ id?: string | undefined;
2369
+ level1?: string | undefined;
2370
+ level2?: string | undefined;
2371
+ };
2372
+ description?: string | undefined;
2373
+ videoUrl?: string | undefined;
2374
+ thumbnailUrl?: string | undefined;
2375
+ }[] | undefined;
2376
+ totalPortfolioItems?: number | undefined;
2377
+ specializedProfiles?: any[] | undefined;
2378
+ isDiversityCertified?: boolean | undefined;
2379
+ isBoosted?: boolean | undefined;
2380
+ boosted?: boolean | undefined;
2381
+ boostedWouldHaveBeen?: boolean | undefined;
2382
+ }[];
2383
+ currentPage: number;
2384
+ paging: {
2385
+ total: number;
2386
+ offset: number;
2387
+ count: number;
2388
+ originTotal: number;
2389
+ pagesTotal: number;
2390
+ page: number;
2391
+ perPage: number;
2392
+ };
2393
+ flags: {
2394
+ portfolioSearch: boolean;
2395
+ };
2396
+ searchQueryCache: Record<string, any>;
2397
+ };
2398
+ };
2399
+ }>;
2400
+ export interface UpworkTalent extends z.infer<typeof upworkTalentSchema> {
2401
+ }
2402
+ export interface NuxtStateProfile extends z.infer<typeof nuxtStateProfileSchema> {
2403
+ }
2404
+ export interface ProfileSearchNuxtObjectState extends z.infer<typeof profileSearchNuxtObjectStateSchema> {
2405
+ }
2406
+ export interface ProfileSearchNuxtObject extends z.infer<typeof profileSearchNuxtObjectSchema> {
2407
+ }
2408
+ export {};