lancer-shared 1.2.123 → 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.
@@ -18,44 +18,314 @@ export declare const scrapeUserProfileRequestSchema: import("zod").ZodObject<{
18
18
  }>;
19
19
  export declare const scrapeJobPayloadSchema: import("zod").ZodObject<{
20
20
  listing: import("zod").ZodObject<{
21
- uid: import("zod").ZodNullable<import("zod").ZodString>;
22
- title: import("zod").ZodNullable<import("zod").ZodString>;
23
- jobUrl: import("zod").ZodNullable<import("zod").ZodString>;
24
- datetime: import("zod").ZodNullable<import("zod").ZodString>;
25
- isFeatured: import("zod").ZodNullable<import("zod").ZodBoolean>;
26
- region: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodLiteral<"USOnly">, import("zod").ZodLiteral<"UKOnly">, import("zod").ZodLiteral<"Worldwide">]>>;
21
+ uid: import("zod").ZodString;
22
+ ciphertext: import("zod").ZodString;
23
+ title: import("zod").ZodString;
24
+ category: import("zod").ZodOptional<import("zod").ZodString>;
25
+ jobUrl: import("zod").ZodOptional<import("zod").ZodString>;
26
+ description: import("zod").ZodString;
27
+ createdOn: import("zod").ZodString;
28
+ publishedOn: import("zod").ZodString;
29
+ renewedOn: import("zod").ZodNullable<import("zod").ZodString>;
30
+ type: import("zod").ZodNumber;
31
+ durationLabel: import("zod").ZodNullable<import("zod").ZodString>;
32
+ engagement: import("zod").ZodNullable<import("zod").ZodString>;
33
+ amount: import("zod").ZodObject<{
34
+ amount: import("zod").ZodNumber;
35
+ }, "strip", import("zod").ZodTypeAny, {
36
+ amount: number;
37
+ }, {
38
+ amount: number;
39
+ }>;
40
+ connectPrice: import("zod").ZodNullable<import("zod").ZodNumber>;
41
+ client: import("zod").ZodObject<{
42
+ location: import("zod").ZodObject<{
43
+ country: import("zod").ZodNullable<import("zod").ZodString>;
44
+ }, "strip", import("zod").ZodTypeAny, {
45
+ country: string | null;
46
+ }, {
47
+ country: string | null;
48
+ }>;
49
+ isPaymentVerified: import("zod").ZodBoolean;
50
+ totalSpent: import("zod").ZodNullable<import("zod").ZodString>;
51
+ totalReviews: import("zod").ZodNumber;
52
+ totalFeedback: import("zod").ZodNumber;
53
+ hasFinancialPrivacy: import("zod").ZodBoolean;
54
+ }, "strip", import("zod").ZodTypeAny, {
55
+ location: {
56
+ country: string | null;
57
+ };
58
+ isPaymentVerified: boolean;
59
+ totalSpent: string | null;
60
+ totalReviews: number;
61
+ totalFeedback: number;
62
+ hasFinancialPrivacy: boolean;
63
+ }, {
64
+ location: {
65
+ country: string | null;
66
+ };
67
+ isPaymentVerified: boolean;
68
+ totalSpent: string | null;
69
+ totalReviews: number;
70
+ totalFeedback: number;
71
+ hasFinancialPrivacy: boolean;
72
+ }>;
73
+ clientRelation: import("zod").ZodNullable<import("zod").ZodAny>;
74
+ freelancersToHire: import("zod").ZodNumber;
75
+ relevanceEncoded: import("zod").ZodString;
76
+ enterpriseJob: import("zod").ZodBoolean;
77
+ tierText: import("zod").ZodNullable<import("zod").ZodString>;
78
+ isApplied: import("zod").ZodBoolean;
79
+ proposalsTier: import("zod").ZodNullable<import("zod").ZodString>;
80
+ premium: import("zod").ZodBoolean;
81
+ attrs: import("zod").ZodArray<import("zod").ZodObject<{
82
+ uid: import("zod").ZodString;
83
+ parentSkillUid: import("zod").ZodNullable<import("zod").ZodString>;
84
+ prefLabel: import("zod").ZodString;
85
+ prettyName: import("zod").ZodString;
86
+ freeText: import("zod").ZodNullable<import("zod").ZodAny>;
87
+ highlighted: import("zod").ZodBoolean;
88
+ }, "strip", import("zod").ZodTypeAny, {
89
+ uid: string;
90
+ parentSkillUid: string | null;
91
+ prefLabel: string;
92
+ prettyName: string;
93
+ highlighted: boolean;
94
+ freeText?: any;
95
+ }, {
96
+ uid: string;
97
+ parentSkillUid: string | null;
98
+ prefLabel: string;
99
+ prettyName: string;
100
+ highlighted: boolean;
101
+ freeText?: any;
102
+ }>, "many">;
103
+ hourlyBudget: import("zod").ZodObject<{
104
+ min: import("zod").ZodNumber;
105
+ max: import("zod").ZodNumber;
106
+ }, "strip", import("zod").ZodTypeAny, {
107
+ min: number;
108
+ max: number;
109
+ }, {
110
+ min: number;
111
+ max: number;
112
+ }>;
113
+ weeklyBudget: import("zod").ZodObject<{
114
+ amount: import("zod").ZodNumber;
115
+ }, "strip", import("zod").ZodTypeAny, {
116
+ amount: number;
117
+ }, {
118
+ amount: number;
119
+ }>;
120
+ isSTSVectorSearchResult: import("zod").ZodBoolean;
27
121
  }, "strip", import("zod").ZodTypeAny, {
28
- uid: string | null;
29
- title: string | null;
30
- jobUrl: string | null;
31
- datetime: string | null;
32
- isFeatured: boolean | null;
33
- region: "USOnly" | "UKOnly" | "Worldwide" | null;
122
+ type: number;
123
+ uid: string;
124
+ ciphertext: string;
125
+ title: string;
126
+ description: string;
127
+ createdOn: string;
128
+ publishedOn: string;
129
+ renewedOn: string | null;
130
+ durationLabel: string | null;
131
+ engagement: string | null;
132
+ amount: {
133
+ amount: number;
134
+ };
135
+ connectPrice: number | null;
136
+ client: {
137
+ location: {
138
+ country: string | null;
139
+ };
140
+ isPaymentVerified: boolean;
141
+ totalSpent: string | null;
142
+ totalReviews: number;
143
+ totalFeedback: number;
144
+ hasFinancialPrivacy: boolean;
145
+ };
146
+ freelancersToHire: number;
147
+ relevanceEncoded: string;
148
+ enterpriseJob: boolean;
149
+ tierText: string | null;
150
+ isApplied: boolean;
151
+ proposalsTier: string | null;
152
+ premium: boolean;
153
+ attrs: {
154
+ uid: string;
155
+ parentSkillUid: string | null;
156
+ prefLabel: string;
157
+ prettyName: string;
158
+ highlighted: boolean;
159
+ freeText?: any;
160
+ }[];
161
+ hourlyBudget: {
162
+ min: number;
163
+ max: number;
164
+ };
165
+ weeklyBudget: {
166
+ amount: number;
167
+ };
168
+ isSTSVectorSearchResult: boolean;
169
+ category?: string | undefined;
170
+ jobUrl?: string | undefined;
171
+ clientRelation?: any;
34
172
  }, {
35
- uid: string | null;
36
- title: string | null;
37
- jobUrl: string | null;
38
- datetime: string | null;
39
- isFeatured: boolean | null;
40
- region: "USOnly" | "UKOnly" | "Worldwide" | null;
173
+ type: number;
174
+ uid: string;
175
+ ciphertext: string;
176
+ title: string;
177
+ description: string;
178
+ createdOn: string;
179
+ publishedOn: string;
180
+ renewedOn: string | null;
181
+ durationLabel: string | null;
182
+ engagement: string | null;
183
+ amount: {
184
+ amount: number;
185
+ };
186
+ connectPrice: number | null;
187
+ client: {
188
+ location: {
189
+ country: string | null;
190
+ };
191
+ isPaymentVerified: boolean;
192
+ totalSpent: string | null;
193
+ totalReviews: number;
194
+ totalFeedback: number;
195
+ hasFinancialPrivacy: boolean;
196
+ };
197
+ freelancersToHire: number;
198
+ relevanceEncoded: string;
199
+ enterpriseJob: boolean;
200
+ tierText: string | null;
201
+ isApplied: boolean;
202
+ proposalsTier: string | null;
203
+ premium: boolean;
204
+ attrs: {
205
+ uid: string;
206
+ parentSkillUid: string | null;
207
+ prefLabel: string;
208
+ prettyName: string;
209
+ highlighted: boolean;
210
+ freeText?: any;
211
+ }[];
212
+ hourlyBudget: {
213
+ min: number;
214
+ max: number;
215
+ };
216
+ weeklyBudget: {
217
+ amount: number;
218
+ };
219
+ isSTSVectorSearchResult: boolean;
220
+ category?: string | undefined;
221
+ jobUrl?: string | undefined;
222
+ clientRelation?: any;
41
223
  }>;
42
224
  }, "strip", import("zod").ZodTypeAny, {
43
225
  listing: {
44
- uid: string | null;
45
- title: string | null;
46
- jobUrl: string | null;
47
- datetime: string | null;
48
- isFeatured: boolean | null;
49
- region: "USOnly" | "UKOnly" | "Worldwide" | null;
226
+ type: number;
227
+ uid: string;
228
+ ciphertext: string;
229
+ title: string;
230
+ description: string;
231
+ createdOn: string;
232
+ publishedOn: string;
233
+ renewedOn: string | null;
234
+ durationLabel: string | null;
235
+ engagement: string | null;
236
+ amount: {
237
+ amount: number;
238
+ };
239
+ connectPrice: number | null;
240
+ client: {
241
+ location: {
242
+ country: string | null;
243
+ };
244
+ isPaymentVerified: boolean;
245
+ totalSpent: string | null;
246
+ totalReviews: number;
247
+ totalFeedback: number;
248
+ hasFinancialPrivacy: boolean;
249
+ };
250
+ freelancersToHire: number;
251
+ relevanceEncoded: string;
252
+ enterpriseJob: boolean;
253
+ tierText: string | null;
254
+ isApplied: boolean;
255
+ proposalsTier: string | null;
256
+ premium: boolean;
257
+ attrs: {
258
+ uid: string;
259
+ parentSkillUid: string | null;
260
+ prefLabel: string;
261
+ prettyName: string;
262
+ highlighted: boolean;
263
+ freeText?: any;
264
+ }[];
265
+ hourlyBudget: {
266
+ min: number;
267
+ max: number;
268
+ };
269
+ weeklyBudget: {
270
+ amount: number;
271
+ };
272
+ isSTSVectorSearchResult: boolean;
273
+ category?: string | undefined;
274
+ jobUrl?: string | undefined;
275
+ clientRelation?: any;
50
276
  };
51
277
  }, {
52
278
  listing: {
53
- uid: string | null;
54
- title: string | null;
55
- jobUrl: string | null;
56
- datetime: string | null;
57
- isFeatured: boolean | null;
58
- region: "USOnly" | "UKOnly" | "Worldwide" | null;
279
+ type: number;
280
+ uid: string;
281
+ ciphertext: string;
282
+ title: string;
283
+ description: string;
284
+ createdOn: string;
285
+ publishedOn: string;
286
+ renewedOn: string | null;
287
+ durationLabel: string | null;
288
+ engagement: string | null;
289
+ amount: {
290
+ amount: number;
291
+ };
292
+ connectPrice: number | null;
293
+ client: {
294
+ location: {
295
+ country: string | null;
296
+ };
297
+ isPaymentVerified: boolean;
298
+ totalSpent: string | null;
299
+ totalReviews: number;
300
+ totalFeedback: number;
301
+ hasFinancialPrivacy: boolean;
302
+ };
303
+ freelancersToHire: number;
304
+ relevanceEncoded: string;
305
+ enterpriseJob: boolean;
306
+ tierText: string | null;
307
+ isApplied: boolean;
308
+ proposalsTier: string | null;
309
+ premium: boolean;
310
+ attrs: {
311
+ uid: string;
312
+ parentSkillUid: string | null;
313
+ prefLabel: string;
314
+ prettyName: string;
315
+ highlighted: boolean;
316
+ freeText?: any;
317
+ }[];
318
+ hourlyBudget: {
319
+ min: number;
320
+ max: number;
321
+ };
322
+ weeklyBudget: {
323
+ amount: number;
324
+ };
325
+ isSTSVectorSearchResult: boolean;
326
+ category?: string | undefined;
327
+ jobUrl?: string | undefined;
328
+ clientRelation?: any;
59
329
  };
60
330
  }>;
61
331
  export declare const processFeedPayloadSchema: import("zod").ZodObject<{
@@ -71,16 +341,16 @@ export declare const processFeedPayloadSchema: import("zod").ZodObject<{
71
341
  uid: string | null;
72
342
  title: string | null;
73
343
  jobUrl: string | null;
344
+ region: "USOnly" | "UKOnly" | "Worldwide" | null;
74
345
  datetime: string | null;
75
346
  isFeatured: boolean | null;
76
- region: "USOnly" | "UKOnly" | "Worldwide" | null;
77
347
  }, {
78
348
  uid: string | null;
79
349
  title: string | null;
80
350
  jobUrl: string | null;
351
+ region: "USOnly" | "UKOnly" | "Worldwide" | null;
81
352
  datetime: string | null;
82
353
  isFeatured: boolean | null;
83
- region: "USOnly" | "UKOnly" | "Worldwide" | null;
84
354
  }>, "many">;
85
355
  }, "strip", import("zod").ZodTypeAny, {
86
356
  region: "USOnly" | "UKOnly" | "Worldwide";
@@ -88,9 +358,9 @@ export declare const processFeedPayloadSchema: import("zod").ZodObject<{
88
358
  uid: string | null;
89
359
  title: string | null;
90
360
  jobUrl: string | null;
361
+ region: "USOnly" | "UKOnly" | "Worldwide" | null;
91
362
  datetime: string | null;
92
363
  isFeatured: boolean | null;
93
- region: "USOnly" | "UKOnly" | "Worldwide" | null;
94
364
  }[];
95
365
  }, {
96
366
  region: "USOnly" | "UKOnly" | "Worldwide";
@@ -98,9 +368,9 @@ export declare const processFeedPayloadSchema: import("zod").ZodObject<{
98
368
  uid: string | null;
99
369
  title: string | null;
100
370
  jobUrl: string | null;
371
+ region: "USOnly" | "UKOnly" | "Worldwide" | null;
101
372
  datetime: string | null;
102
373
  isFeatured: boolean | null;
103
- region: "USOnly" | "UKOnly" | "Worldwide" | null;
104
374
  }[];
105
375
  }>;
106
376
  export declare const scrapeJobActivityPayloadSchema: import("zod").ZodObject<{
@@ -115,16 +385,16 @@ export declare const scrapeJobActivityPayloadSchema: import("zod").ZodObject<{
115
385
  uid: string | null;
116
386
  title: string | null;
117
387
  jobUrl: string | null;
388
+ region: "USOnly" | "UKOnly" | "Worldwide" | null;
118
389
  datetime: string | null;
119
390
  isFeatured: boolean | null;
120
- region: "USOnly" | "UKOnly" | "Worldwide" | null;
121
391
  }, {
122
392
  uid: string | null;
123
393
  title: string | null;
124
394
  jobUrl: string | null;
395
+ region: "USOnly" | "UKOnly" | "Worldwide" | null;
125
396
  datetime: string | null;
126
397
  isFeatured: boolean | null;
127
- region: "USOnly" | "UKOnly" | "Worldwide" | null;
128
398
  }>;
129
399
  offsetHour: import("zod").ZodType<4 | 24, import("zod").ZodTypeDef, 4 | 24>;
130
400
  }, "strip", import("zod").ZodTypeAny, {
@@ -132,9 +402,9 @@ export declare const scrapeJobActivityPayloadSchema: import("zod").ZodObject<{
132
402
  uid: string | null;
133
403
  title: string | null;
134
404
  jobUrl: string | null;
405
+ region: "USOnly" | "UKOnly" | "Worldwide" | null;
135
406
  datetime: string | null;
136
407
  isFeatured: boolean | null;
137
- region: "USOnly" | "UKOnly" | "Worldwide" | null;
138
408
  };
139
409
  offsetHour: 4 | 24;
140
410
  }, {
@@ -142,9 +412,9 @@ export declare const scrapeJobActivityPayloadSchema: import("zod").ZodObject<{
142
412
  uid: string | null;
143
413
  title: string | null;
144
414
  jobUrl: string | null;
415
+ region: "USOnly" | "UKOnly" | "Worldwide" | null;
145
416
  datetime: string | null;
146
417
  isFeatured: boolean | null;
147
- region: "USOnly" | "UKOnly" | "Worldwide" | null;
148
418
  };
149
419
  offsetHour: 4 | 24;
150
420
  }>;
@@ -167,14 +437,14 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
167
437
  isFeatured: import("zod").ZodNullable<import("zod").ZodEnum<["all", "true", "false"]>>;
168
438
  regions: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["all", "Worldwide", "UKOnly", "USOnly"]>, "many">>;
169
439
  categories: import("zod").ZodNullable<import("zod").ZodObject<{
170
- includes: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Personal & Professional Coaching", "Accounting & Bookkeeping", "Financial Planning", "Recruiting & Human Resources", "Management Consulting & Analysis", "Other - Accounting & Consulting", "Data Entry & Transcription Services", "Virtual Assistance", "Project Management", "Market Research & Product Reviews", "Community Management & Tagging", "Customer Service & Tech Support", "Data Analysis & Testing", "Data Extraction/ETL", "Data Mining & Management", "AI & Machine Learning", "Art & Illustration", "Audio & Music Production", "Branding & Logo Design", "NFT, AR/VR & Game Art", "Graphic, Editorial & Presentation Design", "Performing Arts", "Photography", "Product Design", "Video & Animation", "Building & Landscape Architecture", "Chemical Engineering", "Civil & Structural Engineering", "Contract Manufacturing", "Electrical & Electronic Engineering", "Energy & Mechanical Engineering", "3D Modeling & CAD", "Database Management & Administration", "ERP/CRM Software", "Information Security & Compliance", "Network & System Administration", "DevOps & Solution Architecture", "Corporate & Contract Law", "International & Immigration Law", "Finance & Tax Law", "Public Law", "Digital Marketing", "Lead Generation & Telemarketing", "Marketing, PR & Brand Strategy", "Language Tutoring & Interpretation", "Translation & Localization Services", "Blockchain, NFT & Cryptocurrency", "AI Apps & Integration", "Desktop Application Development", "Ecommerce Development", "Game Design & Development", "Mobile Development", "Other - Software Development", "Product Management & Scrum", "QA Testing", "Scripts & Utilities", "Web & Mobile Design", "Web Development", "Sales & Marketing Copywriting", "Content Writing", "Editing & Proofreading Services", "Professional & Business Writing"]>, "many">>;
171
- excludes: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Personal & Professional Coaching", "Accounting & Bookkeeping", "Financial Planning", "Recruiting & Human Resources", "Management Consulting & Analysis", "Other - Accounting & Consulting", "Data Entry & Transcription Services", "Virtual Assistance", "Project Management", "Market Research & Product Reviews", "Community Management & Tagging", "Customer Service & Tech Support", "Data Analysis & Testing", "Data Extraction/ETL", "Data Mining & Management", "AI & Machine Learning", "Art & Illustration", "Audio & Music Production", "Branding & Logo Design", "NFT, AR/VR & Game Art", "Graphic, Editorial & Presentation Design", "Performing Arts", "Photography", "Product Design", "Video & Animation", "Building & Landscape Architecture", "Chemical Engineering", "Civil & Structural Engineering", "Contract Manufacturing", "Electrical & Electronic Engineering", "Energy & Mechanical Engineering", "3D Modeling & CAD", "Database Management & Administration", "ERP/CRM Software", "Information Security & Compliance", "Network & System Administration", "DevOps & Solution Architecture", "Corporate & Contract Law", "International & Immigration Law", "Finance & Tax Law", "Public Law", "Digital Marketing", "Lead Generation & Telemarketing", "Marketing, PR & Brand Strategy", "Language Tutoring & Interpretation", "Translation & Localization Services", "Blockchain, NFT & Cryptocurrency", "AI Apps & Integration", "Desktop Application Development", "Ecommerce Development", "Game Design & Development", "Mobile Development", "Other - Software Development", "Product Management & Scrum", "QA Testing", "Scripts & Utilities", "Web & Mobile Design", "Web Development", "Sales & Marketing Copywriting", "Content Writing", "Editing & Proofreading Services", "Professional & Business Writing"]>, "many">>;
440
+ includes: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Interior & Trade Show Design", "Physical Sciences", "Personal & Professional Coaching", "Accounting & Bookkeeping", "Financial Planning", "Recruiting & Human Resources", "Management Consulting & Analysis", "Other - Accounting & Consulting", "Data Entry & Transcription Services", "Virtual Assistance", "Project Management", "Market Research & Product Reviews", "Community Management & Tagging", "Customer Service & Tech Support", "Data Analysis & Testing", "Data Extraction/ETL", "Data Mining & Management", "AI & Machine Learning", "Art & Illustration", "Audio & Music Production", "Branding & Logo Design", "NFT, AR/VR & Game Art", "Graphic, Editorial & Presentation Design", "Performing Arts", "Photography", "Product Design", "Video & Animation", "Building & Landscape Architecture", "Chemical Engineering", "Civil & Structural Engineering", "Contract Manufacturing", "Electrical & Electronic Engineering", "Energy & Mechanical Engineering", "3D Modeling & CAD", "Database Management & Administration", "ERP/CRM Software", "Information Security & Compliance", "Network & System Administration", "DevOps & Solution Architecture", "Corporate & Contract Law", "International & Immigration Law", "Finance & Tax Law", "Public Law", "Digital Marketing", "Lead Generation & Telemarketing", "Marketing, PR & Brand Strategy", "Language Tutoring & Interpretation", "Translation & Localization Services", "Blockchain, NFT & Cryptocurrency", "AI Apps & Integration", "Desktop Application Development", "Ecommerce Development", "Game Design & Development", "Mobile Development", "Other - Software Development", "Product Management & Scrum", "QA Testing", "Scripts & Utilities", "Web & Mobile Design", "Web Development", "Sales & Marketing Copywriting", "Content Writing", "Editing & Proofreading Services", "Professional & Business Writing"]>, "many">>;
441
+ excludes: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Interior & Trade Show Design", "Physical Sciences", "Personal & Professional Coaching", "Accounting & Bookkeeping", "Financial Planning", "Recruiting & Human Resources", "Management Consulting & Analysis", "Other - Accounting & Consulting", "Data Entry & Transcription Services", "Virtual Assistance", "Project Management", "Market Research & Product Reviews", "Community Management & Tagging", "Customer Service & Tech Support", "Data Analysis & Testing", "Data Extraction/ETL", "Data Mining & Management", "AI & Machine Learning", "Art & Illustration", "Audio & Music Production", "Branding & Logo Design", "NFT, AR/VR & Game Art", "Graphic, Editorial & Presentation Design", "Performing Arts", "Photography", "Product Design", "Video & Animation", "Building & Landscape Architecture", "Chemical Engineering", "Civil & Structural Engineering", "Contract Manufacturing", "Electrical & Electronic Engineering", "Energy & Mechanical Engineering", "3D Modeling & CAD", "Database Management & Administration", "ERP/CRM Software", "Information Security & Compliance", "Network & System Administration", "DevOps & Solution Architecture", "Corporate & Contract Law", "International & Immigration Law", "Finance & Tax Law", "Public Law", "Digital Marketing", "Lead Generation & Telemarketing", "Marketing, PR & Brand Strategy", "Language Tutoring & Interpretation", "Translation & Localization Services", "Blockchain, NFT & Cryptocurrency", "AI Apps & Integration", "Desktop Application Development", "Ecommerce Development", "Game Design & Development", "Mobile Development", "Other - Software Development", "Product Management & Scrum", "QA Testing", "Scripts & Utilities", "Web & Mobile Design", "Web Development", "Sales & Marketing Copywriting", "Content Writing", "Editing & Proofreading Services", "Professional & Business Writing"]>, "many">>;
172
442
  }, "strip", import("zod").ZodTypeAny, {
173
- includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
174
- excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
443
+ includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
444
+ excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
175
445
  }, {
176
- includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
177
- excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
446
+ includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
447
+ excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
178
448
  }>>;
179
449
  payment: import("zod").ZodNullable<import("zod").ZodObject<{
180
450
  paymentType: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Unspecified", "Hourly", "Fixed-price"]>, "many">>;
@@ -287,8 +557,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
287
557
  } | null;
288
558
  regions: ("USOnly" | "UKOnly" | "Worldwide" | "all")[] | null;
289
559
  categories: {
290
- includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
291
- excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
560
+ includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
561
+ excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
292
562
  } | null;
293
563
  payment: {
294
564
  paymentType: ("Unspecified" | "Hourly" | "Fixed-price")[] | null;
@@ -337,8 +607,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
337
607
  } | null;
338
608
  regions: ("USOnly" | "UKOnly" | "Worldwide" | "all")[] | null;
339
609
  categories: {
340
- includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
341
- excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
610
+ includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
611
+ excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
342
612
  } | null;
343
613
  payment: {
344
614
  paymentType: ("Unspecified" | "Hourly" | "Fixed-price")[] | null;
@@ -428,15 +698,15 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
428
698
  template: import("zod").ZodString;
429
699
  instructions: import("zod").ZodString;
430
700
  }, "strip", import("zod").ZodTypeAny, {
701
+ description: string | null;
431
702
  id: string;
432
703
  name: string;
433
- description: string | null;
434
704
  template: string;
435
705
  instructions: string;
436
706
  }, {
707
+ description: string | null;
437
708
  id: string;
438
709
  name: string;
439
- description: string | null;
440
710
  template: string;
441
711
  instructions: string;
442
712
  }>>;
@@ -451,8 +721,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
451
721
  } | null;
452
722
  regions: ("USOnly" | "UKOnly" | "Worldwide" | "all")[] | null;
453
723
  categories: {
454
- includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
455
- excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
724
+ includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
725
+ excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
456
726
  } | null;
457
727
  payment: {
458
728
  paymentType: ("Unspecified" | "Hourly" | "Fixed-price")[] | null;
@@ -517,9 +787,9 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
517
787
  coverLetterTemplateId: string | null;
518
788
  priority: number | null;
519
789
  coverLetterTemplate: {
790
+ description: string | null;
520
791
  id: string;
521
792
  name: string;
522
- description: string | null;
523
793
  template: string;
524
794
  instructions: string;
525
795
  } | null;
@@ -535,8 +805,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
535
805
  } | null;
536
806
  regions: ("USOnly" | "UKOnly" | "Worldwide" | "all")[] | null;
537
807
  categories: {
538
- includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
539
- excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
808
+ includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
809
+ excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
540
810
  } | null;
541
811
  payment: {
542
812
  paymentType: ("Unspecified" | "Hourly" | "Fixed-price")[] | null;
@@ -598,9 +868,9 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
598
868
  coverLetterTemplateId: string | null;
599
869
  priority: number | null;
600
870
  coverLetterTemplate: {
871
+ description: string | null;
601
872
  id: string;
602
873
  name: string;
603
- description: string | null;
604
874
  template: string;
605
875
  instructions: string;
606
876
  } | null;
@@ -948,16 +1218,16 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
948
1218
  enterpriseClient: import("zod").ZodNullable<import("zod").ZodBoolean>;
949
1219
  avgHourlyRatePaid: import("zod").ZodNullable<import("zod").ZodNumber>;
950
1220
  }, "strip", import("zod").ZodTypeAny, {
951
- region: string | null;
1221
+ country: string | null;
952
1222
  isPaymentVerified: boolean | null;
1223
+ totalSpent: number | null;
1224
+ region: string | null;
953
1225
  isPhoneVerified: boolean | null;
954
1226
  enterpriseClient: boolean | null;
955
1227
  companySize: string | null;
956
1228
  numberOfReviews: number | null;
957
1229
  rating: number | null;
958
- country: string | null;
959
1230
  jobsPosted: number | null;
960
- totalSpent: number | null;
961
1231
  numberOfHires: number | null;
962
1232
  activeEngagements: number | null;
963
1233
  openJobs: number | null;
@@ -966,16 +1236,16 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
966
1236
  companyIndustry: string | null;
967
1237
  avgHourlyRatePaid: number | null;
968
1238
  }, {
969
- region: string | null;
1239
+ country: string | null;
970
1240
  isPaymentVerified: boolean | null;
1241
+ totalSpent: number | null;
1242
+ region: string | null;
971
1243
  isPhoneVerified: boolean | null;
972
1244
  enterpriseClient: boolean | null;
973
1245
  companySize: string | null;
974
1246
  numberOfReviews: number | null;
975
1247
  rating: number | null;
976
- country: string | null;
977
1248
  jobsPosted: number | null;
978
- totalSpent: number | null;
979
1249
  numberOfHires: number | null;
980
1250
  activeEngagements: number | null;
981
1251
  openJobs: number | null;
@@ -992,15 +1262,15 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
992
1262
  jobSuccessScore: import("zod").ZodNullable<import("zod").ZodString>;
993
1263
  includeRisingTalent: import("zod").ZodNullable<import("zod").ZodString>;
994
1264
  }, "strip", import("zod").ZodTypeAny, {
995
- includeRisingTalent: string | null;
996
1265
  location: string | null;
1266
+ includeRisingTalent: string | null;
997
1267
  talentType: "Independent" | "Agency" | "unspecified" | null;
998
1268
  englishLevel: string | null;
999
1269
  minimumEarnings: number | null;
1000
1270
  jobSuccessScore: string | null;
1001
1271
  }, {
1002
- includeRisingTalent: string | null;
1003
1272
  location: string | null;
1273
+ includeRisingTalent: string | null;
1004
1274
  talentType: "Independent" | "Agency" | "unspecified" | null;
1005
1275
  englishLevel: string | null;
1006
1276
  minimumEarnings: number | null;
@@ -1202,24 +1472,26 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1202
1472
  }>, "processed">, "strip", import("zod").ZodTypeAny, {
1203
1473
  uid: string | null;
1204
1474
  title: string | null;
1475
+ category: string | null;
1205
1476
  jobUrl: string | null;
1477
+ description: string | null;
1478
+ region: "USOnly" | "UKOnly" | "Worldwide" | null;
1206
1479
  datetime: number | null;
1207
1480
  isFeatured: boolean | null;
1208
- region: "USOnly" | "UKOnly" | "Worldwide" | null;
1209
1481
  id: string | null;
1210
1482
  projectDuration: string | null;
1211
1483
  questions: string[] | null;
1212
1484
  clientInfo: {
1213
- region: string | null;
1485
+ country: string | null;
1214
1486
  isPaymentVerified: boolean | null;
1487
+ totalSpent: number | null;
1488
+ region: string | null;
1215
1489
  isPhoneVerified: boolean | null;
1216
1490
  enterpriseClient: boolean | null;
1217
1491
  companySize: string | null;
1218
1492
  numberOfReviews: number | null;
1219
1493
  rating: number | null;
1220
- country: string | null;
1221
1494
  jobsPosted: number | null;
1222
- totalSpent: number | null;
1223
1495
  numberOfHires: number | null;
1224
1496
  activeEngagements: number | null;
1225
1497
  openJobs: number | null;
@@ -1229,8 +1501,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1229
1501
  avgHourlyRatePaid: number | null;
1230
1502
  } | null;
1231
1503
  vendorQualifications: {
1232
- includeRisingTalent: string | null;
1233
1504
  location: string | null;
1505
+ includeRisingTalent: string | null;
1234
1506
  talentType: "Independent" | "Agency" | "unspecified" | null;
1235
1507
  englishLevel: string | null;
1236
1508
  minimumEarnings: number | null;
@@ -1241,8 +1513,6 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1241
1513
  biddingAmount: number | null;
1242
1514
  boostingAmount: number | null;
1243
1515
  boosted: boolean | null;
1244
- description: string | null;
1245
- category: string | null;
1246
1516
  skills: {
1247
1517
  name: string;
1248
1518
  }[] | null;
@@ -1304,7 +1574,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1304
1574
  question: string;
1305
1575
  answer: string;
1306
1576
  }[] | null;
1307
- agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
1577
+ agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
1308
1578
  leadStatus: "leads" | "contacted" | "viewed" | "replied" | "won" | null;
1309
1579
  biddingTaskScheduled: boolean | null;
1310
1580
  scheduledBiddingTime: number | null;
@@ -1336,24 +1606,26 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1336
1606
  }, {
1337
1607
  uid: string | null;
1338
1608
  title: string | null;
1609
+ category: string | null;
1339
1610
  jobUrl: string | null;
1611
+ description: string | null;
1612
+ region: "USOnly" | "UKOnly" | "Worldwide" | null;
1340
1613
  datetime: number | null;
1341
1614
  isFeatured: boolean | null;
1342
- region: "USOnly" | "UKOnly" | "Worldwide" | null;
1343
1615
  id: string | null;
1344
1616
  projectDuration: string | null;
1345
1617
  questions: string[] | null;
1346
1618
  clientInfo: {
1347
- region: string | null;
1619
+ country: string | null;
1348
1620
  isPaymentVerified: boolean | null;
1621
+ totalSpent: number | null;
1622
+ region: string | null;
1349
1623
  isPhoneVerified: boolean | null;
1350
1624
  enterpriseClient: boolean | null;
1351
1625
  companySize: string | null;
1352
1626
  numberOfReviews: number | null;
1353
1627
  rating: number | null;
1354
- country: string | null;
1355
1628
  jobsPosted: number | null;
1356
- totalSpent: number | null;
1357
1629
  numberOfHires: number | null;
1358
1630
  activeEngagements: number | null;
1359
1631
  openJobs: number | null;
@@ -1363,8 +1635,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1363
1635
  avgHourlyRatePaid: number | null;
1364
1636
  } | null;
1365
1637
  vendorQualifications: {
1366
- includeRisingTalent: string | null;
1367
1638
  location: string | null;
1639
+ includeRisingTalent: string | null;
1368
1640
  talentType: "Independent" | "Agency" | "unspecified" | null;
1369
1641
  englishLevel: string | null;
1370
1642
  minimumEarnings: number | null;
@@ -1375,8 +1647,6 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1375
1647
  biddingAmount: number | null;
1376
1648
  boostingAmount: number | null;
1377
1649
  boosted: boolean | null;
1378
- description: string | null;
1379
- category: string | null;
1380
1650
  skills: {
1381
1651
  name: string;
1382
1652
  }[] | null;
@@ -1438,7 +1708,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1438
1708
  question: string;
1439
1709
  answer: string;
1440
1710
  }[] | null;
1441
- agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
1711
+ agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
1442
1712
  leadStatus: "leads" | "contacted" | "viewed" | "replied" | "won" | null;
1443
1713
  biddingTaskScheduled: boolean | null;
1444
1714
  scheduledBiddingTime: number | null;
@@ -1565,8 +1835,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1565
1835
  } | null;
1566
1836
  regions: ("USOnly" | "UKOnly" | "Worldwide" | "all")[] | null;
1567
1837
  categories: {
1568
- includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
1569
- excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
1838
+ includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
1839
+ excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
1570
1840
  } | null;
1571
1841
  payment: {
1572
1842
  paymentType: ("Unspecified" | "Hourly" | "Fixed-price")[] | null;
@@ -1631,9 +1901,9 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1631
1901
  coverLetterTemplateId: string | null;
1632
1902
  priority: number | null;
1633
1903
  coverLetterTemplate: {
1904
+ description: string | null;
1634
1905
  id: string;
1635
1906
  name: string;
1636
- description: string | null;
1637
1907
  template: string;
1638
1908
  instructions: string;
1639
1909
  } | null;
@@ -1690,24 +1960,26 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1690
1960
  lead: {
1691
1961
  uid: string | null;
1692
1962
  title: string | null;
1963
+ category: string | null;
1693
1964
  jobUrl: string | null;
1965
+ description: string | null;
1966
+ region: "USOnly" | "UKOnly" | "Worldwide" | null;
1694
1967
  datetime: number | null;
1695
1968
  isFeatured: boolean | null;
1696
- region: "USOnly" | "UKOnly" | "Worldwide" | null;
1697
1969
  id: string | null;
1698
1970
  projectDuration: string | null;
1699
1971
  questions: string[] | null;
1700
1972
  clientInfo: {
1701
- region: string | null;
1973
+ country: string | null;
1702
1974
  isPaymentVerified: boolean | null;
1975
+ totalSpent: number | null;
1976
+ region: string | null;
1703
1977
  isPhoneVerified: boolean | null;
1704
1978
  enterpriseClient: boolean | null;
1705
1979
  companySize: string | null;
1706
1980
  numberOfReviews: number | null;
1707
1981
  rating: number | null;
1708
- country: string | null;
1709
1982
  jobsPosted: number | null;
1710
- totalSpent: number | null;
1711
1983
  numberOfHires: number | null;
1712
1984
  activeEngagements: number | null;
1713
1985
  openJobs: number | null;
@@ -1717,8 +1989,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1717
1989
  avgHourlyRatePaid: number | null;
1718
1990
  } | null;
1719
1991
  vendorQualifications: {
1720
- includeRisingTalent: string | null;
1721
1992
  location: string | null;
1993
+ includeRisingTalent: string | null;
1722
1994
  talentType: "Independent" | "Agency" | "unspecified" | null;
1723
1995
  englishLevel: string | null;
1724
1996
  minimumEarnings: number | null;
@@ -1729,8 +2001,6 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1729
2001
  biddingAmount: number | null;
1730
2002
  boostingAmount: number | null;
1731
2003
  boosted: boolean | null;
1732
- description: string | null;
1733
- category: string | null;
1734
2004
  skills: {
1735
2005
  name: string;
1736
2006
  }[] | null;
@@ -1792,7 +2062,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1792
2062
  question: string;
1793
2063
  answer: string;
1794
2064
  }[] | null;
1795
- agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
2065
+ agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
1796
2066
  leadStatus: "leads" | "contacted" | "viewed" | "replied" | "won" | null;
1797
2067
  biddingTaskScheduled: boolean | null;
1798
2068
  scheduledBiddingTime: number | null;
@@ -1861,8 +2131,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1861
2131
  } | null;
1862
2132
  regions: ("USOnly" | "UKOnly" | "Worldwide" | "all")[] | null;
1863
2133
  categories: {
1864
- includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
1865
- excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
2134
+ includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
2135
+ excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
1866
2136
  } | null;
1867
2137
  payment: {
1868
2138
  paymentType: ("Unspecified" | "Hourly" | "Fixed-price")[] | null;
@@ -1924,9 +2194,9 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1924
2194
  coverLetterTemplateId: string | null;
1925
2195
  priority: number | null;
1926
2196
  coverLetterTemplate: {
2197
+ description: string | null;
1927
2198
  id: string;
1928
2199
  name: string;
1929
- description: string | null;
1930
2200
  template: string;
1931
2201
  instructions: string;
1932
2202
  } | null;
@@ -1986,24 +2256,26 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1986
2256
  lead: {
1987
2257
  uid: string | null;
1988
2258
  title: string | null;
2259
+ category: string | null;
1989
2260
  jobUrl: string | null;
2261
+ description: string | null;
2262
+ region: "USOnly" | "UKOnly" | "Worldwide" | null;
1990
2263
  datetime: number | null;
1991
2264
  isFeatured: boolean | null;
1992
- region: "USOnly" | "UKOnly" | "Worldwide" | null;
1993
2265
  id: string | null;
1994
2266
  projectDuration: string | null;
1995
2267
  questions: string[] | null;
1996
2268
  clientInfo: {
1997
- region: string | null;
2269
+ country: string | null;
1998
2270
  isPaymentVerified: boolean | null;
2271
+ totalSpent: number | null;
2272
+ region: string | null;
1999
2273
  isPhoneVerified: boolean | null;
2000
2274
  enterpriseClient: boolean | null;
2001
2275
  companySize: string | null;
2002
2276
  numberOfReviews: number | null;
2003
2277
  rating: number | null;
2004
- country: string | null;
2005
2278
  jobsPosted: number | null;
2006
- totalSpent: number | null;
2007
2279
  numberOfHires: number | null;
2008
2280
  activeEngagements: number | null;
2009
2281
  openJobs: number | null;
@@ -2013,8 +2285,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
2013
2285
  avgHourlyRatePaid: number | null;
2014
2286
  } | null;
2015
2287
  vendorQualifications: {
2016
- includeRisingTalent: string | null;
2017
2288
  location: string | null;
2289
+ includeRisingTalent: string | null;
2018
2290
  talentType: "Independent" | "Agency" | "unspecified" | null;
2019
2291
  englishLevel: string | null;
2020
2292
  minimumEarnings: number | null;
@@ -2025,8 +2297,6 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
2025
2297
  biddingAmount: number | null;
2026
2298
  boostingAmount: number | null;
2027
2299
  boosted: boolean | null;
2028
- description: string | null;
2029
- category: string | null;
2030
2300
  skills: {
2031
2301
  name: string;
2032
2302
  }[] | null;
@@ -2088,7 +2358,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
2088
2358
  question: string;
2089
2359
  answer: string;
2090
2360
  }[] | null;
2091
- agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
2361
+ agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
2092
2362
  leadStatus: "leads" | "contacted" | "viewed" | "replied" | "won" | null;
2093
2363
  biddingTaskScheduled: boolean | null;
2094
2364
  scheduledBiddingTime: number | null;