lancer-shared 1.2.124 → 1.2.125

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,1535 @@
1
+ import { z } from 'zod';
2
+ export declare const scrapeFeedStartedEventMetadata: z.ZodObject<{
3
+ region: z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>;
4
+ accountId: z.ZodString;
5
+ accountEmail: z.ZodString;
6
+ }, "strip", z.ZodTypeAny, {
7
+ region: "USOnly" | "UKOnly" | "Worldwide";
8
+ accountId: string;
9
+ accountEmail: string;
10
+ }, {
11
+ region: "USOnly" | "UKOnly" | "Worldwide";
12
+ accountId: string;
13
+ accountEmail: string;
14
+ }>;
15
+ export declare const scrapeFeedCompletedEventMetadata: z.ZodObject<{
16
+ region: z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>;
17
+ accountId: z.ZodString;
18
+ accountEmail: z.ZodString;
19
+ listingsCount: z.ZodNumber;
20
+ duration: z.ZodString;
21
+ }, "strip", z.ZodTypeAny, {
22
+ region: "USOnly" | "UKOnly" | "Worldwide";
23
+ accountId: string;
24
+ accountEmail: string;
25
+ listingsCount: number;
26
+ duration: string;
27
+ }, {
28
+ region: "USOnly" | "UKOnly" | "Worldwide";
29
+ accountId: string;
30
+ accountEmail: string;
31
+ listingsCount: number;
32
+ duration: string;
33
+ }>;
34
+ export declare const scrapeFeedFailedEventMetadata: z.ZodObject<{
35
+ region: z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>;
36
+ accountId: z.ZodString;
37
+ accountEmail: z.ZodString;
38
+ errorMessage: z.ZodString;
39
+ errorCode: z.ZodString;
40
+ errorStack: z.ZodString;
41
+ }, "strip", z.ZodTypeAny, {
42
+ region: "USOnly" | "UKOnly" | "Worldwide";
43
+ accountId: string;
44
+ accountEmail: string;
45
+ errorMessage: string;
46
+ errorCode: string;
47
+ errorStack: string;
48
+ }, {
49
+ region: "USOnly" | "UKOnly" | "Worldwide";
50
+ accountId: string;
51
+ accountEmail: string;
52
+ errorMessage: string;
53
+ errorCode: string;
54
+ errorStack: string;
55
+ }>;
56
+ export declare const scrapeJobDetailsStartedEventMetadata: z.ZodObject<{
57
+ listing: z.ZodObject<{
58
+ uid: z.ZodString;
59
+ ciphertext: z.ZodString;
60
+ title: z.ZodString;
61
+ category: z.ZodOptional<z.ZodString>;
62
+ jobUrl: z.ZodOptional<z.ZodString>;
63
+ description: z.ZodString;
64
+ createdOn: z.ZodString;
65
+ publishedOn: z.ZodString;
66
+ renewedOn: z.ZodNullable<z.ZodString>;
67
+ type: z.ZodNumber;
68
+ durationLabel: z.ZodNullable<z.ZodString>;
69
+ engagement: z.ZodNullable<z.ZodString>;
70
+ amount: z.ZodObject<{
71
+ amount: z.ZodNumber;
72
+ }, "strip", z.ZodTypeAny, {
73
+ amount: number;
74
+ }, {
75
+ amount: number;
76
+ }>;
77
+ connectPrice: z.ZodNullable<z.ZodNumber>;
78
+ client: z.ZodObject<{
79
+ location: z.ZodObject<{
80
+ country: z.ZodNullable<z.ZodString>;
81
+ }, "strip", z.ZodTypeAny, {
82
+ country: string | null;
83
+ }, {
84
+ country: string | null;
85
+ }>;
86
+ isPaymentVerified: z.ZodBoolean;
87
+ totalSpent: z.ZodNullable<z.ZodString>;
88
+ totalReviews: z.ZodNumber;
89
+ totalFeedback: z.ZodNumber;
90
+ hasFinancialPrivacy: z.ZodBoolean;
91
+ }, "strip", z.ZodTypeAny, {
92
+ location: {
93
+ country: string | null;
94
+ };
95
+ isPaymentVerified: boolean;
96
+ totalSpent: string | null;
97
+ totalReviews: number;
98
+ totalFeedback: number;
99
+ hasFinancialPrivacy: boolean;
100
+ }, {
101
+ location: {
102
+ country: string | null;
103
+ };
104
+ isPaymentVerified: boolean;
105
+ totalSpent: string | null;
106
+ totalReviews: number;
107
+ totalFeedback: number;
108
+ hasFinancialPrivacy: boolean;
109
+ }>;
110
+ clientRelation: z.ZodNullable<z.ZodAny>;
111
+ freelancersToHire: z.ZodNumber;
112
+ relevanceEncoded: z.ZodString;
113
+ enterpriseJob: z.ZodBoolean;
114
+ tierText: z.ZodNullable<z.ZodString>;
115
+ isApplied: z.ZodBoolean;
116
+ proposalsTier: z.ZodNullable<z.ZodString>;
117
+ premium: z.ZodBoolean;
118
+ attrs: z.ZodArray<z.ZodObject<{
119
+ uid: z.ZodString;
120
+ parentSkillUid: z.ZodNullable<z.ZodString>;
121
+ prefLabel: z.ZodString;
122
+ prettyName: z.ZodString;
123
+ freeText: z.ZodNullable<z.ZodAny>;
124
+ highlighted: z.ZodBoolean;
125
+ }, "strip", z.ZodTypeAny, {
126
+ uid: string;
127
+ parentSkillUid: string | null;
128
+ prefLabel: string;
129
+ prettyName: string;
130
+ highlighted: boolean;
131
+ freeText?: any;
132
+ }, {
133
+ uid: string;
134
+ parentSkillUid: string | null;
135
+ prefLabel: string;
136
+ prettyName: string;
137
+ highlighted: boolean;
138
+ freeText?: any;
139
+ }>, "many">;
140
+ hourlyBudget: z.ZodObject<{
141
+ min: z.ZodNumber;
142
+ max: z.ZodNumber;
143
+ }, "strip", z.ZodTypeAny, {
144
+ min: number;
145
+ max: number;
146
+ }, {
147
+ min: number;
148
+ max: number;
149
+ }>;
150
+ weeklyBudget: z.ZodObject<{
151
+ amount: z.ZodNumber;
152
+ }, "strip", z.ZodTypeAny, {
153
+ amount: number;
154
+ }, {
155
+ amount: number;
156
+ }>;
157
+ isSTSVectorSearchResult: z.ZodBoolean;
158
+ }, "strip", z.ZodTypeAny, {
159
+ type: number;
160
+ uid: string;
161
+ ciphertext: string;
162
+ title: string;
163
+ description: string;
164
+ createdOn: string;
165
+ publishedOn: string;
166
+ renewedOn: string | null;
167
+ durationLabel: string | null;
168
+ engagement: string | null;
169
+ amount: {
170
+ amount: number;
171
+ };
172
+ connectPrice: number | null;
173
+ client: {
174
+ location: {
175
+ country: string | null;
176
+ };
177
+ isPaymentVerified: boolean;
178
+ totalSpent: string | null;
179
+ totalReviews: number;
180
+ totalFeedback: number;
181
+ hasFinancialPrivacy: boolean;
182
+ };
183
+ freelancersToHire: number;
184
+ relevanceEncoded: string;
185
+ enterpriseJob: boolean;
186
+ tierText: string | null;
187
+ isApplied: boolean;
188
+ proposalsTier: string | null;
189
+ premium: boolean;
190
+ attrs: {
191
+ uid: string;
192
+ parentSkillUid: string | null;
193
+ prefLabel: string;
194
+ prettyName: string;
195
+ highlighted: boolean;
196
+ freeText?: any;
197
+ }[];
198
+ hourlyBudget: {
199
+ min: number;
200
+ max: number;
201
+ };
202
+ weeklyBudget: {
203
+ amount: number;
204
+ };
205
+ isSTSVectorSearchResult: boolean;
206
+ category?: string | undefined;
207
+ jobUrl?: string | undefined;
208
+ clientRelation?: any;
209
+ }, {
210
+ type: number;
211
+ uid: string;
212
+ ciphertext: string;
213
+ title: string;
214
+ description: string;
215
+ createdOn: string;
216
+ publishedOn: string;
217
+ renewedOn: string | null;
218
+ durationLabel: string | null;
219
+ engagement: string | null;
220
+ amount: {
221
+ amount: number;
222
+ };
223
+ connectPrice: number | null;
224
+ client: {
225
+ location: {
226
+ country: string | null;
227
+ };
228
+ isPaymentVerified: boolean;
229
+ totalSpent: string | null;
230
+ totalReviews: number;
231
+ totalFeedback: number;
232
+ hasFinancialPrivacy: boolean;
233
+ };
234
+ freelancersToHire: number;
235
+ relevanceEncoded: string;
236
+ enterpriseJob: boolean;
237
+ tierText: string | null;
238
+ isApplied: boolean;
239
+ proposalsTier: string | null;
240
+ premium: boolean;
241
+ attrs: {
242
+ uid: string;
243
+ parentSkillUid: string | null;
244
+ prefLabel: string;
245
+ prettyName: string;
246
+ highlighted: boolean;
247
+ freeText?: any;
248
+ }[];
249
+ hourlyBudget: {
250
+ min: number;
251
+ max: number;
252
+ };
253
+ weeklyBudget: {
254
+ amount: number;
255
+ };
256
+ isSTSVectorSearchResult: boolean;
257
+ category?: string | undefined;
258
+ jobUrl?: string | undefined;
259
+ clientRelation?: any;
260
+ }>;
261
+ region: z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>;
262
+ accountId: z.ZodString;
263
+ accountEmail: z.ZodString;
264
+ }, "strip", z.ZodTypeAny, {
265
+ region: "USOnly" | "UKOnly" | "Worldwide";
266
+ accountId: string;
267
+ accountEmail: string;
268
+ listing: {
269
+ type: number;
270
+ uid: string;
271
+ ciphertext: string;
272
+ title: string;
273
+ description: string;
274
+ createdOn: string;
275
+ publishedOn: string;
276
+ renewedOn: string | null;
277
+ durationLabel: string | null;
278
+ engagement: string | null;
279
+ amount: {
280
+ amount: number;
281
+ };
282
+ connectPrice: number | null;
283
+ client: {
284
+ location: {
285
+ country: string | null;
286
+ };
287
+ isPaymentVerified: boolean;
288
+ totalSpent: string | null;
289
+ totalReviews: number;
290
+ totalFeedback: number;
291
+ hasFinancialPrivacy: boolean;
292
+ };
293
+ freelancersToHire: number;
294
+ relevanceEncoded: string;
295
+ enterpriseJob: boolean;
296
+ tierText: string | null;
297
+ isApplied: boolean;
298
+ proposalsTier: string | null;
299
+ premium: boolean;
300
+ attrs: {
301
+ uid: string;
302
+ parentSkillUid: string | null;
303
+ prefLabel: string;
304
+ prettyName: string;
305
+ highlighted: boolean;
306
+ freeText?: any;
307
+ }[];
308
+ hourlyBudget: {
309
+ min: number;
310
+ max: number;
311
+ };
312
+ weeklyBudget: {
313
+ amount: number;
314
+ };
315
+ isSTSVectorSearchResult: boolean;
316
+ category?: string | undefined;
317
+ jobUrl?: string | undefined;
318
+ clientRelation?: any;
319
+ };
320
+ }, {
321
+ region: "USOnly" | "UKOnly" | "Worldwide";
322
+ accountId: string;
323
+ accountEmail: string;
324
+ listing: {
325
+ type: number;
326
+ uid: string;
327
+ ciphertext: string;
328
+ title: string;
329
+ description: string;
330
+ createdOn: string;
331
+ publishedOn: string;
332
+ renewedOn: string | null;
333
+ durationLabel: string | null;
334
+ engagement: string | null;
335
+ amount: {
336
+ amount: number;
337
+ };
338
+ connectPrice: number | null;
339
+ client: {
340
+ location: {
341
+ country: string | null;
342
+ };
343
+ isPaymentVerified: boolean;
344
+ totalSpent: string | null;
345
+ totalReviews: number;
346
+ totalFeedback: number;
347
+ hasFinancialPrivacy: boolean;
348
+ };
349
+ freelancersToHire: number;
350
+ relevanceEncoded: string;
351
+ enterpriseJob: boolean;
352
+ tierText: string | null;
353
+ isApplied: boolean;
354
+ proposalsTier: string | null;
355
+ premium: boolean;
356
+ attrs: {
357
+ uid: string;
358
+ parentSkillUid: string | null;
359
+ prefLabel: string;
360
+ prettyName: string;
361
+ highlighted: boolean;
362
+ freeText?: any;
363
+ }[];
364
+ hourlyBudget: {
365
+ min: number;
366
+ max: number;
367
+ };
368
+ weeklyBudget: {
369
+ amount: number;
370
+ };
371
+ isSTSVectorSearchResult: boolean;
372
+ category?: string | undefined;
373
+ jobUrl?: string | undefined;
374
+ clientRelation?: any;
375
+ };
376
+ }>;
377
+ export declare const jobScrapedEventMetadata: z.ZodObject<{
378
+ job: z.ZodObject<{
379
+ uid: z.ZodString;
380
+ ciphertext: z.ZodString;
381
+ title: z.ZodString;
382
+ category: z.ZodOptional<z.ZodString>;
383
+ jobUrl: z.ZodOptional<z.ZodString>;
384
+ description: z.ZodString;
385
+ createdOn: z.ZodString;
386
+ publishedOn: z.ZodString;
387
+ renewedOn: z.ZodNullable<z.ZodString>;
388
+ type: z.ZodNumber;
389
+ durationLabel: z.ZodNullable<z.ZodString>;
390
+ engagement: z.ZodNullable<z.ZodString>;
391
+ amount: z.ZodObject<{
392
+ amount: z.ZodNumber;
393
+ }, "strip", z.ZodTypeAny, {
394
+ amount: number;
395
+ }, {
396
+ amount: number;
397
+ }>;
398
+ connectPrice: z.ZodNullable<z.ZodNumber>;
399
+ client: z.ZodObject<{
400
+ location: z.ZodObject<{
401
+ country: z.ZodNullable<z.ZodString>;
402
+ }, "strip", z.ZodTypeAny, {
403
+ country: string | null;
404
+ }, {
405
+ country: string | null;
406
+ }>;
407
+ isPaymentVerified: z.ZodBoolean;
408
+ totalSpent: z.ZodNullable<z.ZodString>;
409
+ totalReviews: z.ZodNumber;
410
+ totalFeedback: z.ZodNumber;
411
+ hasFinancialPrivacy: z.ZodBoolean;
412
+ }, "strip", z.ZodTypeAny, {
413
+ location: {
414
+ country: string | null;
415
+ };
416
+ isPaymentVerified: boolean;
417
+ totalSpent: string | null;
418
+ totalReviews: number;
419
+ totalFeedback: number;
420
+ hasFinancialPrivacy: boolean;
421
+ }, {
422
+ location: {
423
+ country: string | null;
424
+ };
425
+ isPaymentVerified: boolean;
426
+ totalSpent: string | null;
427
+ totalReviews: number;
428
+ totalFeedback: number;
429
+ hasFinancialPrivacy: boolean;
430
+ }>;
431
+ clientRelation: z.ZodNullable<z.ZodAny>;
432
+ freelancersToHire: z.ZodNumber;
433
+ relevanceEncoded: z.ZodString;
434
+ enterpriseJob: z.ZodBoolean;
435
+ tierText: z.ZodNullable<z.ZodString>;
436
+ isApplied: z.ZodBoolean;
437
+ proposalsTier: z.ZodNullable<z.ZodString>;
438
+ premium: z.ZodBoolean;
439
+ attrs: z.ZodArray<z.ZodObject<{
440
+ uid: z.ZodString;
441
+ parentSkillUid: z.ZodNullable<z.ZodString>;
442
+ prefLabel: z.ZodString;
443
+ prettyName: z.ZodString;
444
+ freeText: z.ZodNullable<z.ZodAny>;
445
+ highlighted: z.ZodBoolean;
446
+ }, "strip", z.ZodTypeAny, {
447
+ uid: string;
448
+ parentSkillUid: string | null;
449
+ prefLabel: string;
450
+ prettyName: string;
451
+ highlighted: boolean;
452
+ freeText?: any;
453
+ }, {
454
+ uid: string;
455
+ parentSkillUid: string | null;
456
+ prefLabel: string;
457
+ prettyName: string;
458
+ highlighted: boolean;
459
+ freeText?: any;
460
+ }>, "many">;
461
+ hourlyBudget: z.ZodObject<{
462
+ min: z.ZodNumber;
463
+ max: z.ZodNumber;
464
+ }, "strip", z.ZodTypeAny, {
465
+ min: number;
466
+ max: number;
467
+ }, {
468
+ min: number;
469
+ max: number;
470
+ }>;
471
+ weeklyBudget: z.ZodObject<{
472
+ amount: z.ZodNumber;
473
+ }, "strip", z.ZodTypeAny, {
474
+ amount: number;
475
+ }, {
476
+ amount: number;
477
+ }>;
478
+ isSTSVectorSearchResult: z.ZodBoolean;
479
+ }, "strip", z.ZodTypeAny, {
480
+ type: number;
481
+ uid: string;
482
+ ciphertext: string;
483
+ title: string;
484
+ description: string;
485
+ createdOn: string;
486
+ publishedOn: string;
487
+ renewedOn: string | null;
488
+ durationLabel: string | null;
489
+ engagement: string | null;
490
+ amount: {
491
+ amount: number;
492
+ };
493
+ connectPrice: number | null;
494
+ client: {
495
+ location: {
496
+ country: string | null;
497
+ };
498
+ isPaymentVerified: boolean;
499
+ totalSpent: string | null;
500
+ totalReviews: number;
501
+ totalFeedback: number;
502
+ hasFinancialPrivacy: boolean;
503
+ };
504
+ freelancersToHire: number;
505
+ relevanceEncoded: string;
506
+ enterpriseJob: boolean;
507
+ tierText: string | null;
508
+ isApplied: boolean;
509
+ proposalsTier: string | null;
510
+ premium: boolean;
511
+ attrs: {
512
+ uid: string;
513
+ parentSkillUid: string | null;
514
+ prefLabel: string;
515
+ prettyName: string;
516
+ highlighted: boolean;
517
+ freeText?: any;
518
+ }[];
519
+ hourlyBudget: {
520
+ min: number;
521
+ max: number;
522
+ };
523
+ weeklyBudget: {
524
+ amount: number;
525
+ };
526
+ isSTSVectorSearchResult: boolean;
527
+ category?: string | undefined;
528
+ jobUrl?: string | undefined;
529
+ clientRelation?: any;
530
+ }, {
531
+ type: number;
532
+ uid: string;
533
+ ciphertext: string;
534
+ title: string;
535
+ description: string;
536
+ createdOn: string;
537
+ publishedOn: string;
538
+ renewedOn: string | null;
539
+ durationLabel: string | null;
540
+ engagement: string | null;
541
+ amount: {
542
+ amount: number;
543
+ };
544
+ connectPrice: number | null;
545
+ client: {
546
+ location: {
547
+ country: string | null;
548
+ };
549
+ isPaymentVerified: boolean;
550
+ totalSpent: string | null;
551
+ totalReviews: number;
552
+ totalFeedback: number;
553
+ hasFinancialPrivacy: boolean;
554
+ };
555
+ freelancersToHire: number;
556
+ relevanceEncoded: string;
557
+ enterpriseJob: boolean;
558
+ tierText: string | null;
559
+ isApplied: boolean;
560
+ proposalsTier: string | null;
561
+ premium: boolean;
562
+ attrs: {
563
+ uid: string;
564
+ parentSkillUid: string | null;
565
+ prefLabel: string;
566
+ prettyName: string;
567
+ highlighted: boolean;
568
+ freeText?: any;
569
+ }[];
570
+ hourlyBudget: {
571
+ min: number;
572
+ max: number;
573
+ };
574
+ weeklyBudget: {
575
+ amount: number;
576
+ };
577
+ isSTSVectorSearchResult: boolean;
578
+ category?: string | undefined;
579
+ jobUrl?: string | undefined;
580
+ clientRelation?: any;
581
+ }>;
582
+ region: z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>;
583
+ duration: z.ZodString;
584
+ }, "strip", z.ZodTypeAny, {
585
+ region: "USOnly" | "UKOnly" | "Worldwide";
586
+ duration: string;
587
+ job: {
588
+ type: number;
589
+ uid: string;
590
+ ciphertext: string;
591
+ title: string;
592
+ description: string;
593
+ createdOn: string;
594
+ publishedOn: string;
595
+ renewedOn: string | null;
596
+ durationLabel: string | null;
597
+ engagement: string | null;
598
+ amount: {
599
+ amount: number;
600
+ };
601
+ connectPrice: number | null;
602
+ client: {
603
+ location: {
604
+ country: string | null;
605
+ };
606
+ isPaymentVerified: boolean;
607
+ totalSpent: string | null;
608
+ totalReviews: number;
609
+ totalFeedback: number;
610
+ hasFinancialPrivacy: boolean;
611
+ };
612
+ freelancersToHire: number;
613
+ relevanceEncoded: string;
614
+ enterpriseJob: boolean;
615
+ tierText: string | null;
616
+ isApplied: boolean;
617
+ proposalsTier: string | null;
618
+ premium: boolean;
619
+ attrs: {
620
+ uid: string;
621
+ parentSkillUid: string | null;
622
+ prefLabel: string;
623
+ prettyName: string;
624
+ highlighted: boolean;
625
+ freeText?: any;
626
+ }[];
627
+ hourlyBudget: {
628
+ min: number;
629
+ max: number;
630
+ };
631
+ weeklyBudget: {
632
+ amount: number;
633
+ };
634
+ isSTSVectorSearchResult: boolean;
635
+ category?: string | undefined;
636
+ jobUrl?: string | undefined;
637
+ clientRelation?: any;
638
+ };
639
+ }, {
640
+ region: "USOnly" | "UKOnly" | "Worldwide";
641
+ duration: string;
642
+ job: {
643
+ type: number;
644
+ uid: string;
645
+ ciphertext: string;
646
+ title: string;
647
+ description: string;
648
+ createdOn: string;
649
+ publishedOn: string;
650
+ renewedOn: string | null;
651
+ durationLabel: string | null;
652
+ engagement: string | null;
653
+ amount: {
654
+ amount: number;
655
+ };
656
+ connectPrice: number | null;
657
+ client: {
658
+ location: {
659
+ country: string | null;
660
+ };
661
+ isPaymentVerified: boolean;
662
+ totalSpent: string | null;
663
+ totalReviews: number;
664
+ totalFeedback: number;
665
+ hasFinancialPrivacy: boolean;
666
+ };
667
+ freelancersToHire: number;
668
+ relevanceEncoded: string;
669
+ enterpriseJob: boolean;
670
+ tierText: string | null;
671
+ isApplied: boolean;
672
+ proposalsTier: string | null;
673
+ premium: boolean;
674
+ attrs: {
675
+ uid: string;
676
+ parentSkillUid: string | null;
677
+ prefLabel: string;
678
+ prettyName: string;
679
+ highlighted: boolean;
680
+ freeText?: any;
681
+ }[];
682
+ hourlyBudget: {
683
+ min: number;
684
+ max: number;
685
+ };
686
+ weeklyBudget: {
687
+ amount: number;
688
+ };
689
+ isSTSVectorSearchResult: boolean;
690
+ category?: string | undefined;
691
+ jobUrl?: string | undefined;
692
+ clientRelation?: any;
693
+ };
694
+ }>;
695
+ export declare const scrapeJobDetailsFailedEventMetadata: z.ZodObject<{
696
+ listing: z.ZodObject<{
697
+ uid: z.ZodString;
698
+ ciphertext: z.ZodString;
699
+ title: z.ZodString;
700
+ category: z.ZodOptional<z.ZodString>;
701
+ jobUrl: z.ZodOptional<z.ZodString>;
702
+ description: z.ZodString;
703
+ createdOn: z.ZodString;
704
+ publishedOn: z.ZodString;
705
+ renewedOn: z.ZodNullable<z.ZodString>;
706
+ type: z.ZodNumber;
707
+ durationLabel: z.ZodNullable<z.ZodString>;
708
+ engagement: z.ZodNullable<z.ZodString>;
709
+ amount: z.ZodObject<{
710
+ amount: z.ZodNumber;
711
+ }, "strip", z.ZodTypeAny, {
712
+ amount: number;
713
+ }, {
714
+ amount: number;
715
+ }>;
716
+ connectPrice: z.ZodNullable<z.ZodNumber>;
717
+ client: z.ZodObject<{
718
+ location: z.ZodObject<{
719
+ country: z.ZodNullable<z.ZodString>;
720
+ }, "strip", z.ZodTypeAny, {
721
+ country: string | null;
722
+ }, {
723
+ country: string | null;
724
+ }>;
725
+ isPaymentVerified: z.ZodBoolean;
726
+ totalSpent: z.ZodNullable<z.ZodString>;
727
+ totalReviews: z.ZodNumber;
728
+ totalFeedback: z.ZodNumber;
729
+ hasFinancialPrivacy: z.ZodBoolean;
730
+ }, "strip", z.ZodTypeAny, {
731
+ location: {
732
+ country: string | null;
733
+ };
734
+ isPaymentVerified: boolean;
735
+ totalSpent: string | null;
736
+ totalReviews: number;
737
+ totalFeedback: number;
738
+ hasFinancialPrivacy: boolean;
739
+ }, {
740
+ location: {
741
+ country: string | null;
742
+ };
743
+ isPaymentVerified: boolean;
744
+ totalSpent: string | null;
745
+ totalReviews: number;
746
+ totalFeedback: number;
747
+ hasFinancialPrivacy: boolean;
748
+ }>;
749
+ clientRelation: z.ZodNullable<z.ZodAny>;
750
+ freelancersToHire: z.ZodNumber;
751
+ relevanceEncoded: z.ZodString;
752
+ enterpriseJob: z.ZodBoolean;
753
+ tierText: z.ZodNullable<z.ZodString>;
754
+ isApplied: z.ZodBoolean;
755
+ proposalsTier: z.ZodNullable<z.ZodString>;
756
+ premium: z.ZodBoolean;
757
+ attrs: z.ZodArray<z.ZodObject<{
758
+ uid: z.ZodString;
759
+ parentSkillUid: z.ZodNullable<z.ZodString>;
760
+ prefLabel: z.ZodString;
761
+ prettyName: z.ZodString;
762
+ freeText: z.ZodNullable<z.ZodAny>;
763
+ highlighted: z.ZodBoolean;
764
+ }, "strip", z.ZodTypeAny, {
765
+ uid: string;
766
+ parentSkillUid: string | null;
767
+ prefLabel: string;
768
+ prettyName: string;
769
+ highlighted: boolean;
770
+ freeText?: any;
771
+ }, {
772
+ uid: string;
773
+ parentSkillUid: string | null;
774
+ prefLabel: string;
775
+ prettyName: string;
776
+ highlighted: boolean;
777
+ freeText?: any;
778
+ }>, "many">;
779
+ hourlyBudget: z.ZodObject<{
780
+ min: z.ZodNumber;
781
+ max: z.ZodNumber;
782
+ }, "strip", z.ZodTypeAny, {
783
+ min: number;
784
+ max: number;
785
+ }, {
786
+ min: number;
787
+ max: number;
788
+ }>;
789
+ weeklyBudget: z.ZodObject<{
790
+ amount: z.ZodNumber;
791
+ }, "strip", z.ZodTypeAny, {
792
+ amount: number;
793
+ }, {
794
+ amount: number;
795
+ }>;
796
+ isSTSVectorSearchResult: z.ZodBoolean;
797
+ }, "strip", z.ZodTypeAny, {
798
+ type: number;
799
+ uid: string;
800
+ ciphertext: string;
801
+ title: string;
802
+ description: string;
803
+ createdOn: string;
804
+ publishedOn: string;
805
+ renewedOn: string | null;
806
+ durationLabel: string | null;
807
+ engagement: string | null;
808
+ amount: {
809
+ amount: number;
810
+ };
811
+ connectPrice: number | null;
812
+ client: {
813
+ location: {
814
+ country: string | null;
815
+ };
816
+ isPaymentVerified: boolean;
817
+ totalSpent: string | null;
818
+ totalReviews: number;
819
+ totalFeedback: number;
820
+ hasFinancialPrivacy: boolean;
821
+ };
822
+ freelancersToHire: number;
823
+ relevanceEncoded: string;
824
+ enterpriseJob: boolean;
825
+ tierText: string | null;
826
+ isApplied: boolean;
827
+ proposalsTier: string | null;
828
+ premium: boolean;
829
+ attrs: {
830
+ uid: string;
831
+ parentSkillUid: string | null;
832
+ prefLabel: string;
833
+ prettyName: string;
834
+ highlighted: boolean;
835
+ freeText?: any;
836
+ }[];
837
+ hourlyBudget: {
838
+ min: number;
839
+ max: number;
840
+ };
841
+ weeklyBudget: {
842
+ amount: number;
843
+ };
844
+ isSTSVectorSearchResult: boolean;
845
+ category?: string | undefined;
846
+ jobUrl?: string | undefined;
847
+ clientRelation?: any;
848
+ }, {
849
+ type: number;
850
+ uid: string;
851
+ ciphertext: string;
852
+ title: string;
853
+ description: string;
854
+ createdOn: string;
855
+ publishedOn: string;
856
+ renewedOn: string | null;
857
+ durationLabel: string | null;
858
+ engagement: string | null;
859
+ amount: {
860
+ amount: number;
861
+ };
862
+ connectPrice: number | null;
863
+ client: {
864
+ location: {
865
+ country: string | null;
866
+ };
867
+ isPaymentVerified: boolean;
868
+ totalSpent: string | null;
869
+ totalReviews: number;
870
+ totalFeedback: number;
871
+ hasFinancialPrivacy: boolean;
872
+ };
873
+ freelancersToHire: number;
874
+ relevanceEncoded: string;
875
+ enterpriseJob: boolean;
876
+ tierText: string | null;
877
+ isApplied: boolean;
878
+ proposalsTier: string | null;
879
+ premium: boolean;
880
+ attrs: {
881
+ uid: string;
882
+ parentSkillUid: string | null;
883
+ prefLabel: string;
884
+ prettyName: string;
885
+ highlighted: boolean;
886
+ freeText?: any;
887
+ }[];
888
+ hourlyBudget: {
889
+ min: number;
890
+ max: number;
891
+ };
892
+ weeklyBudget: {
893
+ amount: number;
894
+ };
895
+ isSTSVectorSearchResult: boolean;
896
+ category?: string | undefined;
897
+ jobUrl?: string | undefined;
898
+ clientRelation?: any;
899
+ }>;
900
+ region: z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>;
901
+ error: z.ZodString;
902
+ }, "strip", z.ZodTypeAny, {
903
+ region: "USOnly" | "UKOnly" | "Worldwide";
904
+ listing: {
905
+ type: number;
906
+ uid: string;
907
+ ciphertext: string;
908
+ title: string;
909
+ description: string;
910
+ createdOn: string;
911
+ publishedOn: string;
912
+ renewedOn: string | null;
913
+ durationLabel: string | null;
914
+ engagement: string | null;
915
+ amount: {
916
+ amount: number;
917
+ };
918
+ connectPrice: number | null;
919
+ client: {
920
+ location: {
921
+ country: string | null;
922
+ };
923
+ isPaymentVerified: boolean;
924
+ totalSpent: string | null;
925
+ totalReviews: number;
926
+ totalFeedback: number;
927
+ hasFinancialPrivacy: boolean;
928
+ };
929
+ freelancersToHire: number;
930
+ relevanceEncoded: string;
931
+ enterpriseJob: boolean;
932
+ tierText: string | null;
933
+ isApplied: boolean;
934
+ proposalsTier: string | null;
935
+ premium: boolean;
936
+ attrs: {
937
+ uid: string;
938
+ parentSkillUid: string | null;
939
+ prefLabel: string;
940
+ prettyName: string;
941
+ highlighted: boolean;
942
+ freeText?: any;
943
+ }[];
944
+ hourlyBudget: {
945
+ min: number;
946
+ max: number;
947
+ };
948
+ weeklyBudget: {
949
+ amount: number;
950
+ };
951
+ isSTSVectorSearchResult: boolean;
952
+ category?: string | undefined;
953
+ jobUrl?: string | undefined;
954
+ clientRelation?: any;
955
+ };
956
+ error: string;
957
+ }, {
958
+ region: "USOnly" | "UKOnly" | "Worldwide";
959
+ listing: {
960
+ type: number;
961
+ uid: string;
962
+ ciphertext: string;
963
+ title: string;
964
+ description: string;
965
+ createdOn: string;
966
+ publishedOn: string;
967
+ renewedOn: string | null;
968
+ durationLabel: string | null;
969
+ engagement: string | null;
970
+ amount: {
971
+ amount: number;
972
+ };
973
+ connectPrice: number | null;
974
+ client: {
975
+ location: {
976
+ country: string | null;
977
+ };
978
+ isPaymentVerified: boolean;
979
+ totalSpent: string | null;
980
+ totalReviews: number;
981
+ totalFeedback: number;
982
+ hasFinancialPrivacy: boolean;
983
+ };
984
+ freelancersToHire: number;
985
+ relevanceEncoded: string;
986
+ enterpriseJob: boolean;
987
+ tierText: string | null;
988
+ isApplied: boolean;
989
+ proposalsTier: string | null;
990
+ premium: boolean;
991
+ attrs: {
992
+ uid: string;
993
+ parentSkillUid: string | null;
994
+ prefLabel: string;
995
+ prettyName: string;
996
+ highlighted: boolean;
997
+ freeText?: any;
998
+ }[];
999
+ hourlyBudget: {
1000
+ min: number;
1001
+ max: number;
1002
+ };
1003
+ weeklyBudget: {
1004
+ amount: number;
1005
+ };
1006
+ isSTSVectorSearchResult: boolean;
1007
+ category?: string | undefined;
1008
+ jobUrl?: string | undefined;
1009
+ clientRelation?: any;
1010
+ };
1011
+ error: string;
1012
+ }>;
1013
+ export declare const scrapeJobsDetailsStartedEventMetadata: z.ZodObject<{
1014
+ region: z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>;
1015
+ accountIds: z.ZodArray<z.ZodString, "many">;
1016
+ accountEmails: z.ZodArray<z.ZodString, "many">;
1017
+ jobListingsCount: z.ZodNumber;
1018
+ }, "strip", z.ZodTypeAny, {
1019
+ region: "USOnly" | "UKOnly" | "Worldwide";
1020
+ accountIds: string[];
1021
+ accountEmails: string[];
1022
+ jobListingsCount: number;
1023
+ }, {
1024
+ region: "USOnly" | "UKOnly" | "Worldwide";
1025
+ accountIds: string[];
1026
+ accountEmails: string[];
1027
+ jobListingsCount: number;
1028
+ }>;
1029
+ export declare const scrapeJobsDetailsCompletedEventMetadata: z.ZodObject<{
1030
+ region: z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>;
1031
+ feedScraperAccountId: z.ZodString;
1032
+ feedScraperAccountEmail: z.ZodString;
1033
+ uniqueJobsFound: z.ZodNumber;
1034
+ duration: z.ZodString;
1035
+ successfullyScrapedJobsCount: z.ZodNumber;
1036
+ failedToScrapeJobsCount: z.ZodNumber;
1037
+ }, "strip", z.ZodTypeAny, {
1038
+ region: "USOnly" | "UKOnly" | "Worldwide";
1039
+ duration: string;
1040
+ feedScraperAccountId: string;
1041
+ feedScraperAccountEmail: string;
1042
+ uniqueJobsFound: number;
1043
+ successfullyScrapedJobsCount: number;
1044
+ failedToScrapeJobsCount: number;
1045
+ }, {
1046
+ region: "USOnly" | "UKOnly" | "Worldwide";
1047
+ duration: string;
1048
+ feedScraperAccountId: string;
1049
+ feedScraperAccountEmail: string;
1050
+ uniqueJobsFound: number;
1051
+ successfullyScrapedJobsCount: number;
1052
+ failedToScrapeJobsCount: number;
1053
+ }>;
1054
+ export declare const scrapeJobsDetailsFailedEventMetadata: z.ZodObject<{
1055
+ region: z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>;
1056
+ accountId: z.ZodString;
1057
+ accountEmail: z.ZodString;
1058
+ errorMessage: z.ZodString;
1059
+ errorCode: z.ZodString;
1060
+ errorStack: z.ZodString;
1061
+ }, "strip", z.ZodTypeAny, {
1062
+ region: "USOnly" | "UKOnly" | "Worldwide";
1063
+ accountId: string;
1064
+ accountEmail: string;
1065
+ errorMessage: string;
1066
+ errorCode: string;
1067
+ errorStack: string;
1068
+ }, {
1069
+ region: "USOnly" | "UKOnly" | "Worldwide";
1070
+ accountId: string;
1071
+ accountEmail: string;
1072
+ errorMessage: string;
1073
+ errorCode: string;
1074
+ errorStack: string;
1075
+ }>;
1076
+ export declare const scrapeJobsCompletedEventMetadata: z.ZodObject<{
1077
+ region: z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>;
1078
+ feedScraperAccountId: z.ZodString;
1079
+ feedScraperAccountEmail: z.ZodString;
1080
+ uniqueJobsFound: z.ZodNumber;
1081
+ duration: z.ZodString;
1082
+ successfullyScrapedJobsCount: z.ZodNumber;
1083
+ failedToScrapeJobsCount: z.ZodNumber;
1084
+ }, "strip", z.ZodTypeAny, {
1085
+ region: "USOnly" | "UKOnly" | "Worldwide";
1086
+ duration: string;
1087
+ feedScraperAccountId: string;
1088
+ feedScraperAccountEmail: string;
1089
+ uniqueJobsFound: number;
1090
+ successfullyScrapedJobsCount: number;
1091
+ failedToScrapeJobsCount: number;
1092
+ }, {
1093
+ region: "USOnly" | "UKOnly" | "Worldwide";
1094
+ duration: string;
1095
+ feedScraperAccountId: string;
1096
+ feedScraperAccountEmail: string;
1097
+ uniqueJobsFound: number;
1098
+ successfullyScrapedJobsCount: number;
1099
+ failedToScrapeJobsCount: number;
1100
+ }>;
1101
+ export declare const jobActivityScrapedEventMetadata: z.ZodObject<{
1102
+ activity: z.ZodObject<{
1103
+ proposals: z.ZodObject<{
1104
+ min: z.ZodNullable<z.ZodNumber>;
1105
+ max: z.ZodNullable<z.ZodNumber>;
1106
+ }, "strip", z.ZodTypeAny, {
1107
+ min: number | null;
1108
+ max: number | null;
1109
+ }, {
1110
+ min: number | null;
1111
+ max: number | null;
1112
+ }>;
1113
+ lastViewedByClient: z.ZodNullable<z.ZodString>;
1114
+ lastViewedByClientTimestamp: z.ZodNullable<z.ZodNumber>;
1115
+ hires: z.ZodNullable<z.ZodNumber>;
1116
+ interviewing: z.ZodNullable<z.ZodNumber>;
1117
+ invitesSent: z.ZodNullable<z.ZodNumber>;
1118
+ unansweredInvites: z.ZodNullable<z.ZodNumber>;
1119
+ updatedAt: z.ZodNullable<z.ZodNumber>;
1120
+ }, "strip", z.ZodTypeAny, {
1121
+ proposals: {
1122
+ min: number | null;
1123
+ max: number | null;
1124
+ };
1125
+ lastViewedByClient: string | null;
1126
+ lastViewedByClientTimestamp: number | null;
1127
+ hires: number | null;
1128
+ interviewing: number | null;
1129
+ invitesSent: number | null;
1130
+ unansweredInvites: number | null;
1131
+ updatedAt: number | null;
1132
+ }, {
1133
+ proposals: {
1134
+ min: number | null;
1135
+ max: number | null;
1136
+ };
1137
+ lastViewedByClient: string | null;
1138
+ lastViewedByClientTimestamp: number | null;
1139
+ hires: number | null;
1140
+ interviewing: number | null;
1141
+ invitesSent: number | null;
1142
+ unansweredInvites: number | null;
1143
+ updatedAt: number | null;
1144
+ }>;
1145
+ region: z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>;
1146
+ offsetHour: z.ZodType<4 | 24, z.ZodTypeDef, 4 | 24>;
1147
+ scrapedAt: z.ZodNumber;
1148
+ }, "strip", z.ZodTypeAny, {
1149
+ region: "USOnly" | "UKOnly" | "Worldwide";
1150
+ activity: {
1151
+ proposals: {
1152
+ min: number | null;
1153
+ max: number | null;
1154
+ };
1155
+ lastViewedByClient: string | null;
1156
+ lastViewedByClientTimestamp: number | null;
1157
+ hires: number | null;
1158
+ interviewing: number | null;
1159
+ invitesSent: number | null;
1160
+ unansweredInvites: number | null;
1161
+ updatedAt: number | null;
1162
+ };
1163
+ offsetHour: 4 | 24;
1164
+ scrapedAt: number;
1165
+ }, {
1166
+ region: "USOnly" | "UKOnly" | "Worldwide";
1167
+ activity: {
1168
+ proposals: {
1169
+ min: number | null;
1170
+ max: number | null;
1171
+ };
1172
+ lastViewedByClient: string | null;
1173
+ lastViewedByClientTimestamp: number | null;
1174
+ hires: number | null;
1175
+ interviewing: number | null;
1176
+ invitesSent: number | null;
1177
+ unansweredInvites: number | null;
1178
+ updatedAt: number | null;
1179
+ };
1180
+ offsetHour: 4 | 24;
1181
+ scrapedAt: number;
1182
+ }>;
1183
+ export declare const jobActivityScrapeFailedEventMetadata: z.ZodObject<{
1184
+ listing: z.ZodObject<{
1185
+ uid: z.ZodString;
1186
+ ciphertext: z.ZodString;
1187
+ title: z.ZodString;
1188
+ category: z.ZodOptional<z.ZodString>;
1189
+ jobUrl: z.ZodOptional<z.ZodString>;
1190
+ description: z.ZodString;
1191
+ createdOn: z.ZodString;
1192
+ publishedOn: z.ZodString;
1193
+ renewedOn: z.ZodNullable<z.ZodString>;
1194
+ type: z.ZodNumber;
1195
+ durationLabel: z.ZodNullable<z.ZodString>;
1196
+ engagement: z.ZodNullable<z.ZodString>;
1197
+ amount: z.ZodObject<{
1198
+ amount: z.ZodNumber;
1199
+ }, "strip", z.ZodTypeAny, {
1200
+ amount: number;
1201
+ }, {
1202
+ amount: number;
1203
+ }>;
1204
+ connectPrice: z.ZodNullable<z.ZodNumber>;
1205
+ client: z.ZodObject<{
1206
+ location: z.ZodObject<{
1207
+ country: z.ZodNullable<z.ZodString>;
1208
+ }, "strip", z.ZodTypeAny, {
1209
+ country: string | null;
1210
+ }, {
1211
+ country: string | null;
1212
+ }>;
1213
+ isPaymentVerified: z.ZodBoolean;
1214
+ totalSpent: z.ZodNullable<z.ZodString>;
1215
+ totalReviews: z.ZodNumber;
1216
+ totalFeedback: z.ZodNumber;
1217
+ hasFinancialPrivacy: z.ZodBoolean;
1218
+ }, "strip", z.ZodTypeAny, {
1219
+ location: {
1220
+ country: string | null;
1221
+ };
1222
+ isPaymentVerified: boolean;
1223
+ totalSpent: string | null;
1224
+ totalReviews: number;
1225
+ totalFeedback: number;
1226
+ hasFinancialPrivacy: boolean;
1227
+ }, {
1228
+ location: {
1229
+ country: string | null;
1230
+ };
1231
+ isPaymentVerified: boolean;
1232
+ totalSpent: string | null;
1233
+ totalReviews: number;
1234
+ totalFeedback: number;
1235
+ hasFinancialPrivacy: boolean;
1236
+ }>;
1237
+ clientRelation: z.ZodNullable<z.ZodAny>;
1238
+ freelancersToHire: z.ZodNumber;
1239
+ relevanceEncoded: z.ZodString;
1240
+ enterpriseJob: z.ZodBoolean;
1241
+ tierText: z.ZodNullable<z.ZodString>;
1242
+ isApplied: z.ZodBoolean;
1243
+ proposalsTier: z.ZodNullable<z.ZodString>;
1244
+ premium: z.ZodBoolean;
1245
+ attrs: z.ZodArray<z.ZodObject<{
1246
+ uid: z.ZodString;
1247
+ parentSkillUid: z.ZodNullable<z.ZodString>;
1248
+ prefLabel: z.ZodString;
1249
+ prettyName: z.ZodString;
1250
+ freeText: z.ZodNullable<z.ZodAny>;
1251
+ highlighted: z.ZodBoolean;
1252
+ }, "strip", z.ZodTypeAny, {
1253
+ uid: string;
1254
+ parentSkillUid: string | null;
1255
+ prefLabel: string;
1256
+ prettyName: string;
1257
+ highlighted: boolean;
1258
+ freeText?: any;
1259
+ }, {
1260
+ uid: string;
1261
+ parentSkillUid: string | null;
1262
+ prefLabel: string;
1263
+ prettyName: string;
1264
+ highlighted: boolean;
1265
+ freeText?: any;
1266
+ }>, "many">;
1267
+ hourlyBudget: z.ZodObject<{
1268
+ min: z.ZodNumber;
1269
+ max: z.ZodNumber;
1270
+ }, "strip", z.ZodTypeAny, {
1271
+ min: number;
1272
+ max: number;
1273
+ }, {
1274
+ min: number;
1275
+ max: number;
1276
+ }>;
1277
+ weeklyBudget: z.ZodObject<{
1278
+ amount: z.ZodNumber;
1279
+ }, "strip", z.ZodTypeAny, {
1280
+ amount: number;
1281
+ }, {
1282
+ amount: number;
1283
+ }>;
1284
+ isSTSVectorSearchResult: z.ZodBoolean;
1285
+ }, "strip", z.ZodTypeAny, {
1286
+ type: number;
1287
+ uid: string;
1288
+ ciphertext: string;
1289
+ title: string;
1290
+ description: string;
1291
+ createdOn: string;
1292
+ publishedOn: string;
1293
+ renewedOn: string | null;
1294
+ durationLabel: string | null;
1295
+ engagement: string | null;
1296
+ amount: {
1297
+ amount: number;
1298
+ };
1299
+ connectPrice: number | null;
1300
+ client: {
1301
+ location: {
1302
+ country: string | null;
1303
+ };
1304
+ isPaymentVerified: boolean;
1305
+ totalSpent: string | null;
1306
+ totalReviews: number;
1307
+ totalFeedback: number;
1308
+ hasFinancialPrivacy: boolean;
1309
+ };
1310
+ freelancersToHire: number;
1311
+ relevanceEncoded: string;
1312
+ enterpriseJob: boolean;
1313
+ tierText: string | null;
1314
+ isApplied: boolean;
1315
+ proposalsTier: string | null;
1316
+ premium: boolean;
1317
+ attrs: {
1318
+ uid: string;
1319
+ parentSkillUid: string | null;
1320
+ prefLabel: string;
1321
+ prettyName: string;
1322
+ highlighted: boolean;
1323
+ freeText?: any;
1324
+ }[];
1325
+ hourlyBudget: {
1326
+ min: number;
1327
+ max: number;
1328
+ };
1329
+ weeklyBudget: {
1330
+ amount: number;
1331
+ };
1332
+ isSTSVectorSearchResult: boolean;
1333
+ category?: string | undefined;
1334
+ jobUrl?: string | undefined;
1335
+ clientRelation?: any;
1336
+ }, {
1337
+ type: number;
1338
+ uid: string;
1339
+ ciphertext: string;
1340
+ title: string;
1341
+ description: string;
1342
+ createdOn: string;
1343
+ publishedOn: string;
1344
+ renewedOn: string | null;
1345
+ durationLabel: string | null;
1346
+ engagement: string | null;
1347
+ amount: {
1348
+ amount: number;
1349
+ };
1350
+ connectPrice: number | null;
1351
+ client: {
1352
+ location: {
1353
+ country: string | null;
1354
+ };
1355
+ isPaymentVerified: boolean;
1356
+ totalSpent: string | null;
1357
+ totalReviews: number;
1358
+ totalFeedback: number;
1359
+ hasFinancialPrivacy: boolean;
1360
+ };
1361
+ freelancersToHire: number;
1362
+ relevanceEncoded: string;
1363
+ enterpriseJob: boolean;
1364
+ tierText: string | null;
1365
+ isApplied: boolean;
1366
+ proposalsTier: string | null;
1367
+ premium: boolean;
1368
+ attrs: {
1369
+ uid: string;
1370
+ parentSkillUid: string | null;
1371
+ prefLabel: string;
1372
+ prettyName: string;
1373
+ highlighted: boolean;
1374
+ freeText?: any;
1375
+ }[];
1376
+ hourlyBudget: {
1377
+ min: number;
1378
+ max: number;
1379
+ };
1380
+ weeklyBudget: {
1381
+ amount: number;
1382
+ };
1383
+ isSTSVectorSearchResult: boolean;
1384
+ category?: string | undefined;
1385
+ jobUrl?: string | undefined;
1386
+ clientRelation?: any;
1387
+ }>;
1388
+ region: z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>;
1389
+ offsetHour: z.ZodType<4 | 24, z.ZodTypeDef, 4 | 24>;
1390
+ }, "strip", z.ZodTypeAny, {
1391
+ region: "USOnly" | "UKOnly" | "Worldwide";
1392
+ listing: {
1393
+ type: number;
1394
+ uid: string;
1395
+ ciphertext: string;
1396
+ title: string;
1397
+ description: string;
1398
+ createdOn: string;
1399
+ publishedOn: string;
1400
+ renewedOn: string | null;
1401
+ durationLabel: string | null;
1402
+ engagement: string | null;
1403
+ amount: {
1404
+ amount: number;
1405
+ };
1406
+ connectPrice: number | null;
1407
+ client: {
1408
+ location: {
1409
+ country: string | null;
1410
+ };
1411
+ isPaymentVerified: boolean;
1412
+ totalSpent: string | null;
1413
+ totalReviews: number;
1414
+ totalFeedback: number;
1415
+ hasFinancialPrivacy: boolean;
1416
+ };
1417
+ freelancersToHire: number;
1418
+ relevanceEncoded: string;
1419
+ enterpriseJob: boolean;
1420
+ tierText: string | null;
1421
+ isApplied: boolean;
1422
+ proposalsTier: string | null;
1423
+ premium: boolean;
1424
+ attrs: {
1425
+ uid: string;
1426
+ parentSkillUid: string | null;
1427
+ prefLabel: string;
1428
+ prettyName: string;
1429
+ highlighted: boolean;
1430
+ freeText?: any;
1431
+ }[];
1432
+ hourlyBudget: {
1433
+ min: number;
1434
+ max: number;
1435
+ };
1436
+ weeklyBudget: {
1437
+ amount: number;
1438
+ };
1439
+ isSTSVectorSearchResult: boolean;
1440
+ category?: string | undefined;
1441
+ jobUrl?: string | undefined;
1442
+ clientRelation?: any;
1443
+ };
1444
+ offsetHour: 4 | 24;
1445
+ }, {
1446
+ region: "USOnly" | "UKOnly" | "Worldwide";
1447
+ listing: {
1448
+ type: number;
1449
+ uid: string;
1450
+ ciphertext: string;
1451
+ title: string;
1452
+ description: string;
1453
+ createdOn: string;
1454
+ publishedOn: string;
1455
+ renewedOn: string | null;
1456
+ durationLabel: string | null;
1457
+ engagement: string | null;
1458
+ amount: {
1459
+ amount: number;
1460
+ };
1461
+ connectPrice: number | null;
1462
+ client: {
1463
+ location: {
1464
+ country: string | null;
1465
+ };
1466
+ isPaymentVerified: boolean;
1467
+ totalSpent: string | null;
1468
+ totalReviews: number;
1469
+ totalFeedback: number;
1470
+ hasFinancialPrivacy: boolean;
1471
+ };
1472
+ freelancersToHire: number;
1473
+ relevanceEncoded: string;
1474
+ enterpriseJob: boolean;
1475
+ tierText: string | null;
1476
+ isApplied: boolean;
1477
+ proposalsTier: string | null;
1478
+ premium: boolean;
1479
+ attrs: {
1480
+ uid: string;
1481
+ parentSkillUid: string | null;
1482
+ prefLabel: string;
1483
+ prettyName: string;
1484
+ highlighted: boolean;
1485
+ freeText?: any;
1486
+ }[];
1487
+ hourlyBudget: {
1488
+ min: number;
1489
+ max: number;
1490
+ };
1491
+ weeklyBudget: {
1492
+ amount: number;
1493
+ };
1494
+ isSTSVectorSearchResult: boolean;
1495
+ category?: string | undefined;
1496
+ jobUrl?: string | undefined;
1497
+ clientRelation?: any;
1498
+ };
1499
+ offsetHour: 4 | 24;
1500
+ }>;
1501
+ export declare const scraperAccountErrorEventMetadata: z.ZodObject<{
1502
+ errorStack: z.ZodString;
1503
+ errorCode: z.ZodString;
1504
+ errorMessage: z.ZodString;
1505
+ }, "strip", z.ZodTypeAny, {
1506
+ errorMessage: string;
1507
+ errorCode: string;
1508
+ errorStack: string;
1509
+ }, {
1510
+ errorMessage: string;
1511
+ errorCode: string;
1512
+ errorStack: string;
1513
+ }>;
1514
+ export interface ScrapeFeedStartedEventMetadata extends z.infer<typeof scrapeFeedStartedEventMetadata> {
1515
+ }
1516
+ export interface ScrapeFeedCompletedEventMetadata extends z.infer<typeof scrapeFeedCompletedEventMetadata> {
1517
+ }
1518
+ export interface ScrapeFeedFailedEventMetadata extends z.infer<typeof scrapeFeedFailedEventMetadata> {
1519
+ }
1520
+ export interface ScrapeJobDetailsStartedEventMetadata extends z.infer<typeof scrapeJobDetailsStartedEventMetadata> {
1521
+ }
1522
+ export interface JobScrapedEventMetadata extends z.infer<typeof jobScrapedEventMetadata> {
1523
+ }
1524
+ export interface ScrapeJobDetailsFailedEventMetadata extends z.infer<typeof scrapeJobDetailsFailedEventMetadata> {
1525
+ }
1526
+ export interface ScrapeJobsDetailsStartedEventMetadata extends z.infer<typeof scrapeJobsDetailsStartedEventMetadata> {
1527
+ }
1528
+ export interface ScrapeJobsDetailsCompletedEventMetadata extends z.infer<typeof scrapeJobsDetailsCompletedEventMetadata> {
1529
+ }
1530
+ export interface ScrapeJobsDetailsFailedEventMetadata extends z.infer<typeof scrapeJobsDetailsFailedEventMetadata> {
1531
+ }
1532
+ export interface ScrapeJobsCompletedEventMetadata extends z.infer<typeof scrapeJobsCompletedEventMetadata> {
1533
+ }
1534
+ export interface ScraperAccountErrorEventMetadata extends z.infer<typeof scraperAccountErrorEventMetadata> {
1535
+ }