lancer-shared 1.2.195 → 1.2.196
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.
|
@@ -126,12 +126,16 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
126
126
|
clientLocationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
127
127
|
clientLocationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
128
128
|
minReviewScore: z.ZodNullable<z.ZodNumber>;
|
|
129
|
+
maxReviewScore: z.ZodNullable<z.ZodNumber>;
|
|
129
130
|
minTotalSpent: z.ZodNullable<z.ZodNumber>;
|
|
131
|
+
maxTotalSpent: z.ZodNullable<z.ZodNumber>;
|
|
130
132
|
minHireRate: z.ZodNullable<z.ZodNumber>;
|
|
133
|
+
maxHireRate: z.ZodNullable<z.ZodNumber>;
|
|
131
134
|
clientIndustry: z.ZodNullable<z.ZodArray<z.ZodEnum<["Aerospace", "Agriculture & Forestry", "Art & Design", "Automotive", "Aviation", "Education", "Energy & Utilities", "Engineering & Architecture", "Fashion & Beauty", "Finance & Accounting", "Food & Beverage", "Government & Public Sector", "Health & Fitness", "HR & Business Services", "Legal", "Manufacturing & Construction", "Media & Entertainment", "Military & Defense", "Mining", "Real Estate", "Retail & Consumer Goods", "Sales & Marketing", "Science & Medicine", "Sports & Recreation", "Supply Chain & Logistics", "Tech & IT", "Transportation & Warehousing", "Travel & Hospitality"]>, "many">>;
|
|
132
135
|
companySize: z.ZodNullable<z.ZodArray<z.ZodEnum<["Individual client", "Small company (2-9 people)", "Mid-sized company (10-99 people)", "Large company (100-1,000 people)", "Large company (1,000+ people)", "Unspecified"]>, "many">>;
|
|
133
136
|
minJobsPosted: z.ZodNullable<z.ZodNumber>;
|
|
134
137
|
minAvgHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
138
|
+
maxAvgHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
135
139
|
minNumReviews: z.ZodNullable<z.ZodNumber>;
|
|
136
140
|
memberSinceFrom: z.ZodNullable<z.ZodString>;
|
|
137
141
|
memberSinceTo: z.ZodNullable<z.ZodString>;
|
|
@@ -142,12 +146,16 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
142
146
|
clientLocationIncludes: string[] | null;
|
|
143
147
|
clientLocationExcludes: string[] | null;
|
|
144
148
|
minReviewScore: number | null;
|
|
149
|
+
maxReviewScore: number | null;
|
|
145
150
|
minTotalSpent: number | null;
|
|
151
|
+
maxTotalSpent: number | null;
|
|
146
152
|
minHireRate: number | null;
|
|
153
|
+
maxHireRate: number | null;
|
|
147
154
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
148
155
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
149
156
|
minJobsPosted: number | null;
|
|
150
157
|
minAvgHourlyRate: number | null;
|
|
158
|
+
maxAvgHourlyRate: number | null;
|
|
151
159
|
minNumReviews: number | null;
|
|
152
160
|
memberSinceFrom: string | null;
|
|
153
161
|
memberSinceTo: string | null;
|
|
@@ -155,12 +163,16 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
155
163
|
clientLocationIncludes: string[] | null;
|
|
156
164
|
clientLocationExcludes: string[] | null;
|
|
157
165
|
minReviewScore: number | null;
|
|
166
|
+
maxReviewScore: number | null;
|
|
158
167
|
minTotalSpent: number | null;
|
|
168
|
+
maxTotalSpent: number | null;
|
|
159
169
|
minHireRate: number | null;
|
|
170
|
+
maxHireRate: number | null;
|
|
160
171
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
161
172
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
162
173
|
minJobsPosted: number | null;
|
|
163
174
|
minAvgHourlyRate: number | null;
|
|
175
|
+
maxAvgHourlyRate: number | null;
|
|
164
176
|
minNumReviews: number | null;
|
|
165
177
|
memberSinceFrom: string | null;
|
|
166
178
|
memberSinceTo: string | null;
|
|
@@ -226,12 +238,16 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
226
238
|
clientLocationIncludes: string[] | null;
|
|
227
239
|
clientLocationExcludes: string[] | null;
|
|
228
240
|
minReviewScore: number | null;
|
|
241
|
+
maxReviewScore: number | null;
|
|
229
242
|
minTotalSpent: number | null;
|
|
243
|
+
maxTotalSpent: number | null;
|
|
230
244
|
minHireRate: number | null;
|
|
245
|
+
maxHireRate: number | null;
|
|
231
246
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
232
247
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
233
248
|
minJobsPosted: number | null;
|
|
234
249
|
minAvgHourlyRate: number | null;
|
|
250
|
+
maxAvgHourlyRate: number | null;
|
|
235
251
|
minNumReviews: number | null;
|
|
236
252
|
memberSinceFrom: string | null;
|
|
237
253
|
memberSinceTo: string | null;
|
|
@@ -275,12 +291,16 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
275
291
|
clientLocationIncludes: string[] | null;
|
|
276
292
|
clientLocationExcludes: string[] | null;
|
|
277
293
|
minReviewScore: number | null;
|
|
294
|
+
maxReviewScore: number | null;
|
|
278
295
|
minTotalSpent: number | null;
|
|
296
|
+
maxTotalSpent: number | null;
|
|
279
297
|
minHireRate: number | null;
|
|
298
|
+
maxHireRate: number | null;
|
|
280
299
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
281
300
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
282
301
|
minJobsPosted: number | null;
|
|
283
302
|
minAvgHourlyRate: number | null;
|
|
303
|
+
maxAvgHourlyRate: number | null;
|
|
284
304
|
minNumReviews: number | null;
|
|
285
305
|
memberSinceFrom: string | null;
|
|
286
306
|
memberSinceTo: string | null;
|
|
@@ -449,12 +469,16 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
449
469
|
clientLocationIncludes: string[] | null;
|
|
450
470
|
clientLocationExcludes: string[] | null;
|
|
451
471
|
minReviewScore: number | null;
|
|
472
|
+
maxReviewScore: number | null;
|
|
452
473
|
minTotalSpent: number | null;
|
|
474
|
+
maxTotalSpent: number | null;
|
|
453
475
|
minHireRate: number | null;
|
|
476
|
+
maxHireRate: number | null;
|
|
454
477
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
455
478
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
456
479
|
minJobsPosted: number | null;
|
|
457
480
|
minAvgHourlyRate: number | null;
|
|
481
|
+
maxAvgHourlyRate: number | null;
|
|
458
482
|
minNumReviews: number | null;
|
|
459
483
|
memberSinceFrom: string | null;
|
|
460
484
|
memberSinceTo: string | null;
|
|
@@ -557,12 +581,16 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
557
581
|
clientLocationIncludes: string[] | null;
|
|
558
582
|
clientLocationExcludes: string[] | null;
|
|
559
583
|
minReviewScore: number | null;
|
|
584
|
+
maxReviewScore: number | null;
|
|
560
585
|
minTotalSpent: number | null;
|
|
586
|
+
maxTotalSpent: number | null;
|
|
561
587
|
minHireRate: number | null;
|
|
588
|
+
maxHireRate: number | null;
|
|
562
589
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
563
590
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
564
591
|
minJobsPosted: number | null;
|
|
565
592
|
minAvgHourlyRate: number | null;
|
|
593
|
+
maxAvgHourlyRate: number | null;
|
|
566
594
|
minNumReviews: number | null;
|
|
567
595
|
memberSinceFrom: string | null;
|
|
568
596
|
memberSinceTo: string | null;
|
|
@@ -719,12 +747,16 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
719
747
|
clientLocationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
720
748
|
clientLocationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
721
749
|
minReviewScore: z.ZodNullable<z.ZodNumber>;
|
|
750
|
+
maxReviewScore: z.ZodNullable<z.ZodNumber>;
|
|
722
751
|
minTotalSpent: z.ZodNullable<z.ZodNumber>;
|
|
752
|
+
maxTotalSpent: z.ZodNullable<z.ZodNumber>;
|
|
723
753
|
minHireRate: z.ZodNullable<z.ZodNumber>;
|
|
754
|
+
maxHireRate: z.ZodNullable<z.ZodNumber>;
|
|
724
755
|
clientIndustry: z.ZodNullable<z.ZodArray<z.ZodEnum<["Aerospace", "Agriculture & Forestry", "Art & Design", "Automotive", "Aviation", "Education", "Energy & Utilities", "Engineering & Architecture", "Fashion & Beauty", "Finance & Accounting", "Food & Beverage", "Government & Public Sector", "Health & Fitness", "HR & Business Services", "Legal", "Manufacturing & Construction", "Media & Entertainment", "Military & Defense", "Mining", "Real Estate", "Retail & Consumer Goods", "Sales & Marketing", "Science & Medicine", "Sports & Recreation", "Supply Chain & Logistics", "Tech & IT", "Transportation & Warehousing", "Travel & Hospitality"]>, "many">>;
|
|
725
756
|
companySize: z.ZodNullable<z.ZodArray<z.ZodEnum<["Individual client", "Small company (2-9 people)", "Mid-sized company (10-99 people)", "Large company (100-1,000 people)", "Large company (1,000+ people)", "Unspecified"]>, "many">>;
|
|
726
757
|
minJobsPosted: z.ZodNullable<z.ZodNumber>;
|
|
727
758
|
minAvgHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
759
|
+
maxAvgHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
728
760
|
minNumReviews: z.ZodNullable<z.ZodNumber>;
|
|
729
761
|
memberSinceFrom: z.ZodNullable<z.ZodString>;
|
|
730
762
|
memberSinceTo: z.ZodNullable<z.ZodString>;
|
|
@@ -735,12 +767,16 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
735
767
|
clientLocationIncludes: string[] | null;
|
|
736
768
|
clientLocationExcludes: string[] | null;
|
|
737
769
|
minReviewScore: number | null;
|
|
770
|
+
maxReviewScore: number | null;
|
|
738
771
|
minTotalSpent: number | null;
|
|
772
|
+
maxTotalSpent: number | null;
|
|
739
773
|
minHireRate: number | null;
|
|
774
|
+
maxHireRate: number | null;
|
|
740
775
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
741
776
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
742
777
|
minJobsPosted: number | null;
|
|
743
778
|
minAvgHourlyRate: number | null;
|
|
779
|
+
maxAvgHourlyRate: number | null;
|
|
744
780
|
minNumReviews: number | null;
|
|
745
781
|
memberSinceFrom: string | null;
|
|
746
782
|
memberSinceTo: string | null;
|
|
@@ -748,12 +784,16 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
748
784
|
clientLocationIncludes: string[] | null;
|
|
749
785
|
clientLocationExcludes: string[] | null;
|
|
750
786
|
minReviewScore: number | null;
|
|
787
|
+
maxReviewScore: number | null;
|
|
751
788
|
minTotalSpent: number | null;
|
|
789
|
+
maxTotalSpent: number | null;
|
|
752
790
|
minHireRate: number | null;
|
|
791
|
+
maxHireRate: number | null;
|
|
753
792
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
754
793
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
755
794
|
minJobsPosted: number | null;
|
|
756
795
|
minAvgHourlyRate: number | null;
|
|
796
|
+
maxAvgHourlyRate: number | null;
|
|
757
797
|
minNumReviews: number | null;
|
|
758
798
|
memberSinceFrom: string | null;
|
|
759
799
|
memberSinceTo: string | null;
|
|
@@ -819,12 +859,16 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
819
859
|
clientLocationIncludes: string[] | null;
|
|
820
860
|
clientLocationExcludes: string[] | null;
|
|
821
861
|
minReviewScore: number | null;
|
|
862
|
+
maxReviewScore: number | null;
|
|
822
863
|
minTotalSpent: number | null;
|
|
864
|
+
maxTotalSpent: number | null;
|
|
823
865
|
minHireRate: number | null;
|
|
866
|
+
maxHireRate: number | null;
|
|
824
867
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
825
868
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
826
869
|
minJobsPosted: number | null;
|
|
827
870
|
minAvgHourlyRate: number | null;
|
|
871
|
+
maxAvgHourlyRate: number | null;
|
|
828
872
|
minNumReviews: number | null;
|
|
829
873
|
memberSinceFrom: string | null;
|
|
830
874
|
memberSinceTo: string | null;
|
|
@@ -868,12 +912,16 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
868
912
|
clientLocationIncludes: string[] | null;
|
|
869
913
|
clientLocationExcludes: string[] | null;
|
|
870
914
|
minReviewScore: number | null;
|
|
915
|
+
maxReviewScore: number | null;
|
|
871
916
|
minTotalSpent: number | null;
|
|
917
|
+
maxTotalSpent: number | null;
|
|
872
918
|
minHireRate: number | null;
|
|
919
|
+
maxHireRate: number | null;
|
|
873
920
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
874
921
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
875
922
|
minJobsPosted: number | null;
|
|
876
923
|
minAvgHourlyRate: number | null;
|
|
924
|
+
maxAvgHourlyRate: number | null;
|
|
877
925
|
minNumReviews: number | null;
|
|
878
926
|
memberSinceFrom: string | null;
|
|
879
927
|
memberSinceTo: string | null;
|
|
@@ -1041,12 +1089,16 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
1041
1089
|
clientLocationIncludes: string[] | null;
|
|
1042
1090
|
clientLocationExcludes: string[] | null;
|
|
1043
1091
|
minReviewScore: number | null;
|
|
1092
|
+
maxReviewScore: number | null;
|
|
1044
1093
|
minTotalSpent: number | null;
|
|
1094
|
+
maxTotalSpent: number | null;
|
|
1045
1095
|
minHireRate: number | null;
|
|
1096
|
+
maxHireRate: number | null;
|
|
1046
1097
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
1047
1098
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
1048
1099
|
minJobsPosted: number | null;
|
|
1049
1100
|
minAvgHourlyRate: number | null;
|
|
1101
|
+
maxAvgHourlyRate: number | null;
|
|
1050
1102
|
minNumReviews: number | null;
|
|
1051
1103
|
memberSinceFrom: string | null;
|
|
1052
1104
|
memberSinceTo: string | null;
|
|
@@ -1140,12 +1192,16 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
1140
1192
|
clientLocationIncludes: string[] | null;
|
|
1141
1193
|
clientLocationExcludes: string[] | null;
|
|
1142
1194
|
minReviewScore: number | null;
|
|
1195
|
+
maxReviewScore: number | null;
|
|
1143
1196
|
minTotalSpent: number | null;
|
|
1197
|
+
maxTotalSpent: number | null;
|
|
1144
1198
|
minHireRate: number | null;
|
|
1199
|
+
maxHireRate: number | null;
|
|
1145
1200
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
1146
1201
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
1147
1202
|
minJobsPosted: number | null;
|
|
1148
1203
|
minAvgHourlyRate: number | null;
|
|
1204
|
+
maxAvgHourlyRate: number | null;
|
|
1149
1205
|
minNumReviews: number | null;
|
|
1150
1206
|
memberSinceFrom: string | null;
|
|
1151
1207
|
memberSinceTo: string | null;
|
|
@@ -1276,12 +1332,16 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1276
1332
|
clientLocationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
1277
1333
|
clientLocationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
1278
1334
|
minReviewScore: z.ZodNullable<z.ZodNumber>;
|
|
1335
|
+
maxReviewScore: z.ZodNullable<z.ZodNumber>;
|
|
1279
1336
|
minTotalSpent: z.ZodNullable<z.ZodNumber>;
|
|
1337
|
+
maxTotalSpent: z.ZodNullable<z.ZodNumber>;
|
|
1280
1338
|
minHireRate: z.ZodNullable<z.ZodNumber>;
|
|
1339
|
+
maxHireRate: z.ZodNullable<z.ZodNumber>;
|
|
1281
1340
|
clientIndustry: z.ZodNullable<z.ZodArray<z.ZodEnum<["Aerospace", "Agriculture & Forestry", "Art & Design", "Automotive", "Aviation", "Education", "Energy & Utilities", "Engineering & Architecture", "Fashion & Beauty", "Finance & Accounting", "Food & Beverage", "Government & Public Sector", "Health & Fitness", "HR & Business Services", "Legal", "Manufacturing & Construction", "Media & Entertainment", "Military & Defense", "Mining", "Real Estate", "Retail & Consumer Goods", "Sales & Marketing", "Science & Medicine", "Sports & Recreation", "Supply Chain & Logistics", "Tech & IT", "Transportation & Warehousing", "Travel & Hospitality"]>, "many">>;
|
|
1282
1341
|
companySize: z.ZodNullable<z.ZodArray<z.ZodEnum<["Individual client", "Small company (2-9 people)", "Mid-sized company (10-99 people)", "Large company (100-1,000 people)", "Large company (1,000+ people)", "Unspecified"]>, "many">>;
|
|
1283
1342
|
minJobsPosted: z.ZodNullable<z.ZodNumber>;
|
|
1284
1343
|
minAvgHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1344
|
+
maxAvgHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1285
1345
|
minNumReviews: z.ZodNullable<z.ZodNumber>;
|
|
1286
1346
|
memberSinceFrom: z.ZodNullable<z.ZodString>;
|
|
1287
1347
|
memberSinceTo: z.ZodNullable<z.ZodString>;
|
|
@@ -1292,12 +1352,16 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1292
1352
|
clientLocationIncludes: string[] | null;
|
|
1293
1353
|
clientLocationExcludes: string[] | null;
|
|
1294
1354
|
minReviewScore: number | null;
|
|
1355
|
+
maxReviewScore: number | null;
|
|
1295
1356
|
minTotalSpent: number | null;
|
|
1357
|
+
maxTotalSpent: number | null;
|
|
1296
1358
|
minHireRate: number | null;
|
|
1359
|
+
maxHireRate: number | null;
|
|
1297
1360
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
1298
1361
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
1299
1362
|
minJobsPosted: number | null;
|
|
1300
1363
|
minAvgHourlyRate: number | null;
|
|
1364
|
+
maxAvgHourlyRate: number | null;
|
|
1301
1365
|
minNumReviews: number | null;
|
|
1302
1366
|
memberSinceFrom: string | null;
|
|
1303
1367
|
memberSinceTo: string | null;
|
|
@@ -1305,12 +1369,16 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1305
1369
|
clientLocationIncludes: string[] | null;
|
|
1306
1370
|
clientLocationExcludes: string[] | null;
|
|
1307
1371
|
minReviewScore: number | null;
|
|
1372
|
+
maxReviewScore: number | null;
|
|
1308
1373
|
minTotalSpent: number | null;
|
|
1374
|
+
maxTotalSpent: number | null;
|
|
1309
1375
|
minHireRate: number | null;
|
|
1376
|
+
maxHireRate: number | null;
|
|
1310
1377
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
1311
1378
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
1312
1379
|
minJobsPosted: number | null;
|
|
1313
1380
|
minAvgHourlyRate: number | null;
|
|
1381
|
+
maxAvgHourlyRate: number | null;
|
|
1314
1382
|
minNumReviews: number | null;
|
|
1315
1383
|
memberSinceFrom: string | null;
|
|
1316
1384
|
memberSinceTo: string | null;
|
|
@@ -1376,12 +1444,16 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1376
1444
|
clientLocationIncludes: string[] | null;
|
|
1377
1445
|
clientLocationExcludes: string[] | null;
|
|
1378
1446
|
minReviewScore: number | null;
|
|
1447
|
+
maxReviewScore: number | null;
|
|
1379
1448
|
minTotalSpent: number | null;
|
|
1449
|
+
maxTotalSpent: number | null;
|
|
1380
1450
|
minHireRate: number | null;
|
|
1451
|
+
maxHireRate: number | null;
|
|
1381
1452
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
1382
1453
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
1383
1454
|
minJobsPosted: number | null;
|
|
1384
1455
|
minAvgHourlyRate: number | null;
|
|
1456
|
+
maxAvgHourlyRate: number | null;
|
|
1385
1457
|
minNumReviews: number | null;
|
|
1386
1458
|
memberSinceFrom: string | null;
|
|
1387
1459
|
memberSinceTo: string | null;
|
|
@@ -1425,12 +1497,16 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1425
1497
|
clientLocationIncludes: string[] | null;
|
|
1426
1498
|
clientLocationExcludes: string[] | null;
|
|
1427
1499
|
minReviewScore: number | null;
|
|
1500
|
+
maxReviewScore: number | null;
|
|
1428
1501
|
minTotalSpent: number | null;
|
|
1502
|
+
maxTotalSpent: number | null;
|
|
1429
1503
|
minHireRate: number | null;
|
|
1504
|
+
maxHireRate: number | null;
|
|
1430
1505
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
1431
1506
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
1432
1507
|
minJobsPosted: number | null;
|
|
1433
1508
|
minAvgHourlyRate: number | null;
|
|
1509
|
+
maxAvgHourlyRate: number | null;
|
|
1434
1510
|
minNumReviews: number | null;
|
|
1435
1511
|
memberSinceFrom: string | null;
|
|
1436
1512
|
memberSinceTo: string | null;
|
|
@@ -1597,12 +1673,16 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1597
1673
|
clientLocationIncludes: string[] | null;
|
|
1598
1674
|
clientLocationExcludes: string[] | null;
|
|
1599
1675
|
minReviewScore: number | null;
|
|
1676
|
+
maxReviewScore: number | null;
|
|
1600
1677
|
minTotalSpent: number | null;
|
|
1678
|
+
maxTotalSpent: number | null;
|
|
1601
1679
|
minHireRate: number | null;
|
|
1680
|
+
maxHireRate: number | null;
|
|
1602
1681
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
1603
1682
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
1604
1683
|
minJobsPosted: number | null;
|
|
1605
1684
|
minAvgHourlyRate: number | null;
|
|
1685
|
+
maxAvgHourlyRate: number | null;
|
|
1606
1686
|
minNumReviews: number | null;
|
|
1607
1687
|
memberSinceFrom: string | null;
|
|
1608
1688
|
memberSinceTo: string | null;
|
|
@@ -1703,12 +1783,16 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1703
1783
|
clientLocationIncludes: string[] | null;
|
|
1704
1784
|
clientLocationExcludes: string[] | null;
|
|
1705
1785
|
minReviewScore: number | null;
|
|
1786
|
+
maxReviewScore: number | null;
|
|
1706
1787
|
minTotalSpent: number | null;
|
|
1788
|
+
maxTotalSpent: number | null;
|
|
1707
1789
|
minHireRate: number | null;
|
|
1790
|
+
maxHireRate: number | null;
|
|
1708
1791
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
1709
1792
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
1710
1793
|
minJobsPosted: number | null;
|
|
1711
1794
|
minAvgHourlyRate: number | null;
|
|
1795
|
+
maxAvgHourlyRate: number | null;
|
|
1712
1796
|
minNumReviews: number | null;
|
|
1713
1797
|
memberSinceFrom: string | null;
|
|
1714
1798
|
memberSinceTo: string | null;
|
|
@@ -483,12 +483,16 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
483
483
|
clientLocationIncludes: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
484
484
|
clientLocationExcludes: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
485
485
|
minReviewScore: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
486
|
+
maxReviewScore: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
486
487
|
minTotalSpent: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
488
|
+
maxTotalSpent: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
487
489
|
minHireRate: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
490
|
+
maxHireRate: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
488
491
|
clientIndustry: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Aerospace", "Agriculture & Forestry", "Art & Design", "Automotive", "Aviation", "Education", "Energy & Utilities", "Engineering & Architecture", "Fashion & Beauty", "Finance & Accounting", "Food & Beverage", "Government & Public Sector", "Health & Fitness", "HR & Business Services", "Legal", "Manufacturing & Construction", "Media & Entertainment", "Military & Defense", "Mining", "Real Estate", "Retail & Consumer Goods", "Sales & Marketing", "Science & Medicine", "Sports & Recreation", "Supply Chain & Logistics", "Tech & IT", "Transportation & Warehousing", "Travel & Hospitality"]>, "many">>;
|
|
489
492
|
companySize: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Individual client", "Small company (2-9 people)", "Mid-sized company (10-99 people)", "Large company (100-1,000 people)", "Large company (1,000+ people)", "Unspecified"]>, "many">>;
|
|
490
493
|
minJobsPosted: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
491
494
|
minAvgHourlyRate: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
495
|
+
maxAvgHourlyRate: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
492
496
|
minNumReviews: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
493
497
|
memberSinceFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
|
494
498
|
memberSinceTo: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -499,12 +503,16 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
499
503
|
clientLocationIncludes: string[] | null;
|
|
500
504
|
clientLocationExcludes: string[] | null;
|
|
501
505
|
minReviewScore: number | null;
|
|
506
|
+
maxReviewScore: number | null;
|
|
502
507
|
minTotalSpent: number | null;
|
|
508
|
+
maxTotalSpent: number | null;
|
|
503
509
|
minHireRate: number | null;
|
|
510
|
+
maxHireRate: number | null;
|
|
504
511
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
505
512
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
506
513
|
minJobsPosted: number | null;
|
|
507
514
|
minAvgHourlyRate: number | null;
|
|
515
|
+
maxAvgHourlyRate: number | null;
|
|
508
516
|
minNumReviews: number | null;
|
|
509
517
|
memberSinceFrom: string | null;
|
|
510
518
|
memberSinceTo: string | null;
|
|
@@ -512,12 +520,16 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
512
520
|
clientLocationIncludes: string[] | null;
|
|
513
521
|
clientLocationExcludes: string[] | null;
|
|
514
522
|
minReviewScore: number | null;
|
|
523
|
+
maxReviewScore: number | null;
|
|
515
524
|
minTotalSpent: number | null;
|
|
525
|
+
maxTotalSpent: number | null;
|
|
516
526
|
minHireRate: number | null;
|
|
527
|
+
maxHireRate: number | null;
|
|
517
528
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
518
529
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
519
530
|
minJobsPosted: number | null;
|
|
520
531
|
minAvgHourlyRate: number | null;
|
|
532
|
+
maxAvgHourlyRate: number | null;
|
|
521
533
|
minNumReviews: number | null;
|
|
522
534
|
memberSinceFrom: string | null;
|
|
523
535
|
memberSinceTo: string | null;
|
|
@@ -583,12 +595,16 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
583
595
|
clientLocationIncludes: string[] | null;
|
|
584
596
|
clientLocationExcludes: string[] | null;
|
|
585
597
|
minReviewScore: number | null;
|
|
598
|
+
maxReviewScore: number | null;
|
|
586
599
|
minTotalSpent: number | null;
|
|
600
|
+
maxTotalSpent: number | null;
|
|
587
601
|
minHireRate: number | null;
|
|
602
|
+
maxHireRate: number | null;
|
|
588
603
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
589
604
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
590
605
|
minJobsPosted: number | null;
|
|
591
606
|
minAvgHourlyRate: number | null;
|
|
607
|
+
maxAvgHourlyRate: number | null;
|
|
592
608
|
minNumReviews: number | null;
|
|
593
609
|
memberSinceFrom: string | null;
|
|
594
610
|
memberSinceTo: string | null;
|
|
@@ -632,12 +648,16 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
632
648
|
clientLocationIncludes: string[] | null;
|
|
633
649
|
clientLocationExcludes: string[] | null;
|
|
634
650
|
minReviewScore: number | null;
|
|
651
|
+
maxReviewScore: number | null;
|
|
635
652
|
minTotalSpent: number | null;
|
|
653
|
+
maxTotalSpent: number | null;
|
|
636
654
|
minHireRate: number | null;
|
|
655
|
+
maxHireRate: number | null;
|
|
637
656
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
638
657
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
639
658
|
minJobsPosted: number | null;
|
|
640
659
|
minAvgHourlyRate: number | null;
|
|
660
|
+
maxAvgHourlyRate: number | null;
|
|
641
661
|
minNumReviews: number | null;
|
|
642
662
|
memberSinceFrom: string | null;
|
|
643
663
|
memberSinceTo: string | null;
|
|
@@ -806,12 +826,16 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
806
826
|
clientLocationIncludes: string[] | null;
|
|
807
827
|
clientLocationExcludes: string[] | null;
|
|
808
828
|
minReviewScore: number | null;
|
|
829
|
+
maxReviewScore: number | null;
|
|
809
830
|
minTotalSpent: number | null;
|
|
831
|
+
maxTotalSpent: number | null;
|
|
810
832
|
minHireRate: number | null;
|
|
833
|
+
maxHireRate: number | null;
|
|
811
834
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
812
835
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
813
836
|
minJobsPosted: number | null;
|
|
814
837
|
minAvgHourlyRate: number | null;
|
|
838
|
+
maxAvgHourlyRate: number | null;
|
|
815
839
|
minNumReviews: number | null;
|
|
816
840
|
memberSinceFrom: string | null;
|
|
817
841
|
memberSinceTo: string | null;
|
|
@@ -914,12 +938,16 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
914
938
|
clientLocationIncludes: string[] | null;
|
|
915
939
|
clientLocationExcludes: string[] | null;
|
|
916
940
|
minReviewScore: number | null;
|
|
941
|
+
maxReviewScore: number | null;
|
|
917
942
|
minTotalSpent: number | null;
|
|
943
|
+
maxTotalSpent: number | null;
|
|
918
944
|
minHireRate: number | null;
|
|
945
|
+
maxHireRate: number | null;
|
|
919
946
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
920
947
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
921
948
|
minJobsPosted: number | null;
|
|
922
949
|
minAvgHourlyRate: number | null;
|
|
950
|
+
maxAvgHourlyRate: number | null;
|
|
923
951
|
minNumReviews: number | null;
|
|
924
952
|
memberSinceFrom: string | null;
|
|
925
953
|
memberSinceTo: string | null;
|
|
@@ -2068,12 +2096,16 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
2068
2096
|
clientLocationIncludes: string[] | null;
|
|
2069
2097
|
clientLocationExcludes: string[] | null;
|
|
2070
2098
|
minReviewScore: number | null;
|
|
2099
|
+
maxReviewScore: number | null;
|
|
2071
2100
|
minTotalSpent: number | null;
|
|
2101
|
+
maxTotalSpent: number | null;
|
|
2072
2102
|
minHireRate: number | null;
|
|
2103
|
+
maxHireRate: number | null;
|
|
2073
2104
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
2074
2105
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
2075
2106
|
minJobsPosted: number | null;
|
|
2076
2107
|
minAvgHourlyRate: number | null;
|
|
2108
|
+
maxAvgHourlyRate: number | null;
|
|
2077
2109
|
minNumReviews: number | null;
|
|
2078
2110
|
memberSinceFrom: string | null;
|
|
2079
2111
|
memberSinceTo: string | null;
|
|
@@ -2404,12 +2436,16 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
2404
2436
|
clientLocationIncludes: string[] | null;
|
|
2405
2437
|
clientLocationExcludes: string[] | null;
|
|
2406
2438
|
minReviewScore: number | null;
|
|
2439
|
+
maxReviewScore: number | null;
|
|
2407
2440
|
minTotalSpent: number | null;
|
|
2441
|
+
maxTotalSpent: number | null;
|
|
2408
2442
|
minHireRate: number | null;
|
|
2443
|
+
maxHireRate: number | null;
|
|
2409
2444
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
2410
2445
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
2411
2446
|
minJobsPosted: number | null;
|
|
2412
2447
|
minAvgHourlyRate: number | null;
|
|
2448
|
+
maxAvgHourlyRate: number | null;
|
|
2413
2449
|
minNumReviews: number | null;
|
|
2414
2450
|
memberSinceFrom: string | null;
|
|
2415
2451
|
memberSinceTo: string | null;
|