lancer-shared 1.2.212 → 1.2.213

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.
@@ -1,57 +1,54 @@
1
- import { infer } from 'zod';
2
- import { BidderAccount } from '../account';
3
- import { Campaign } from '../campaign';
4
- import { Lead } from '../lead';
5
- export declare const scrapePayloadSchema: import("zod").ZodObject<{
6
- latestJobsUrls: import("zod").ZodArray<import("zod").ZodString, "many">;
7
- }, "strip", import("zod").ZodTypeAny, {
1
+ import { z } from 'zod';
2
+ export declare const scrapePayloadSchema: z.ZodObject<{
3
+ latestJobsUrls: z.ZodArray<z.ZodString, "many">;
4
+ }, "strip", z.ZodTypeAny, {
8
5
  latestJobsUrls: string[];
9
6
  }, {
10
7
  latestJobsUrls: string[];
11
8
  }>;
12
- export declare const scrapeUserProfileRequestSchema: import("zod").ZodObject<{
13
- profileUrl: import("zod").ZodString;
14
- }, "strip", import("zod").ZodTypeAny, {
9
+ export declare const scrapeUserProfileRequestSchema: z.ZodObject<{
10
+ profileUrl: z.ZodString;
11
+ }, "strip", z.ZodTypeAny, {
15
12
  profileUrl: string;
16
13
  }, {
17
14
  profileUrl: string;
18
15
  }>;
19
- export declare const scrapeJobPayloadSchema: import("zod").ZodObject<{
20
- listing: import("zod").ZodObject<{
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, {
16
+ export declare const scrapeJobPayloadSchema: z.ZodObject<{
17
+ listing: z.ZodObject<{
18
+ uid: z.ZodString;
19
+ ciphertext: z.ZodString;
20
+ title: z.ZodString;
21
+ category: z.ZodOptional<z.ZodString>;
22
+ jobUrl: z.ZodOptional<z.ZodString>;
23
+ description: z.ZodString;
24
+ createdOn: z.ZodString;
25
+ publishedOn: z.ZodString;
26
+ renewedOn: z.ZodNullable<z.ZodString>;
27
+ type: z.ZodNumber;
28
+ durationLabel: z.ZodNullable<z.ZodString>;
29
+ engagement: z.ZodNullable<z.ZodString>;
30
+ amount: z.ZodObject<{
31
+ amount: z.ZodNumber;
32
+ }, "strip", z.ZodTypeAny, {
36
33
  amount: number;
37
34
  }, {
38
35
  amount: number;
39
36
  }>;
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, {
37
+ connectPrice: z.ZodNullable<z.ZodNumber>;
38
+ client: z.ZodObject<{
39
+ location: z.ZodObject<{
40
+ country: z.ZodNullable<z.ZodString>;
41
+ }, "strip", z.ZodTypeAny, {
45
42
  country: string | null;
46
43
  }, {
47
44
  country: string | null;
48
45
  }>;
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, {
46
+ isPaymentVerified: z.ZodBoolean;
47
+ totalSpent: z.ZodNullable<z.ZodString>;
48
+ totalReviews: z.ZodNumber;
49
+ totalFeedback: z.ZodNumber;
50
+ hasFinancialPrivacy: z.ZodBoolean;
51
+ }, "strip", z.ZodTypeAny, {
55
52
  location: {
56
53
  country: string | null;
57
54
  };
@@ -70,22 +67,22 @@ export declare const scrapeJobPayloadSchema: import("zod").ZodObject<{
70
67
  totalFeedback: number;
71
68
  hasFinancialPrivacy: boolean;
72
69
  }>;
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, {
70
+ clientRelation: z.ZodNullable<z.ZodAny>;
71
+ freelancersToHire: z.ZodNumber;
72
+ relevanceEncoded: z.ZodString;
73
+ enterpriseJob: z.ZodBoolean;
74
+ tierText: z.ZodNullable<z.ZodString>;
75
+ isApplied: z.ZodBoolean;
76
+ proposalsTier: z.ZodNullable<z.ZodString>;
77
+ premium: z.ZodBoolean;
78
+ attrs: z.ZodArray<z.ZodObject<{
79
+ uid: z.ZodString;
80
+ parentSkillUid: z.ZodNullable<z.ZodString>;
81
+ prefLabel: z.ZodString;
82
+ prettyName: z.ZodString;
83
+ freeText: z.ZodNullable<z.ZodAny>;
84
+ highlighted: z.ZodBoolean;
85
+ }, "strip", z.ZodTypeAny, {
89
86
  uid: string;
90
87
  parentSkillUid: string | null;
91
88
  prefLabel: string;
@@ -100,25 +97,25 @@ export declare const scrapeJobPayloadSchema: import("zod").ZodObject<{
100
97
  highlighted: boolean;
101
98
  freeText?: any;
102
99
  }>, "many">;
103
- hourlyBudget: import("zod").ZodObject<{
104
- min: import("zod").ZodNumber;
105
- max: import("zod").ZodNumber;
106
- }, "strip", import("zod").ZodTypeAny, {
100
+ hourlyBudget: z.ZodObject<{
101
+ min: z.ZodNumber;
102
+ max: z.ZodNumber;
103
+ }, "strip", z.ZodTypeAny, {
107
104
  min: number;
108
105
  max: number;
109
106
  }, {
110
107
  min: number;
111
108
  max: number;
112
109
  }>;
113
- weeklyBudget: import("zod").ZodObject<{
114
- amount: import("zod").ZodNumber;
115
- }, "strip", import("zod").ZodTypeAny, {
110
+ weeklyBudget: z.ZodObject<{
111
+ amount: z.ZodNumber;
112
+ }, "strip", z.ZodTypeAny, {
116
113
  amount: number;
117
114
  }, {
118
115
  amount: number;
119
116
  }>;
120
- isSTSVectorSearchResult: import("zod").ZodBoolean;
121
- }, "strip", import("zod").ZodTypeAny, {
117
+ isSTSVectorSearchResult: z.ZodBoolean;
118
+ }, "strip", z.ZodTypeAny, {
122
119
  type: number;
123
120
  uid: string;
124
121
  ciphertext: string;
@@ -221,7 +218,7 @@ export declare const scrapeJobPayloadSchema: import("zod").ZodObject<{
221
218
  jobUrl?: string | undefined;
222
219
  clientRelation?: any;
223
220
  }>;
224
- }, "strip", import("zod").ZodTypeAny, {
221
+ }, "strip", z.ZodTypeAny, {
225
222
  listing: {
226
223
  type: number;
227
224
  uid: string;
@@ -328,16 +325,16 @@ export declare const scrapeJobPayloadSchema: import("zod").ZodObject<{
328
325
  clientRelation?: any;
329
326
  };
330
327
  }>;
331
- export declare const processFeedPayloadSchema: import("zod").ZodObject<{
332
- region: import("zod").ZodUnion<[import("zod").ZodLiteral<"USOnly">, import("zod").ZodLiteral<"UKOnly">, import("zod").ZodLiteral<"Worldwide">]>;
333
- listings: import("zod").ZodArray<import("zod").ZodObject<{
334
- uid: import("zod").ZodNullable<import("zod").ZodString>;
335
- title: import("zod").ZodNullable<import("zod").ZodString>;
336
- jobUrl: import("zod").ZodNullable<import("zod").ZodString>;
337
- datetime: import("zod").ZodNullable<import("zod").ZodString>;
338
- isFeatured: import("zod").ZodNullable<import("zod").ZodBoolean>;
339
- region: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodLiteral<"USOnly">, import("zod").ZodLiteral<"UKOnly">, import("zod").ZodLiteral<"Worldwide">]>>;
340
- }, "strip", import("zod").ZodTypeAny, {
328
+ export declare const processFeedPayloadSchema: z.ZodObject<{
329
+ region: z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>;
330
+ listings: z.ZodArray<z.ZodObject<{
331
+ uid: z.ZodNullable<z.ZodString>;
332
+ title: z.ZodNullable<z.ZodString>;
333
+ jobUrl: z.ZodNullable<z.ZodString>;
334
+ datetime: z.ZodNullable<z.ZodString>;
335
+ isFeatured: z.ZodNullable<z.ZodBoolean>;
336
+ region: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>>;
337
+ }, "strip", z.ZodTypeAny, {
341
338
  uid: string | null;
342
339
  title: string | null;
343
340
  jobUrl: string | null;
@@ -352,7 +349,7 @@ export declare const processFeedPayloadSchema: import("zod").ZodObject<{
352
349
  datetime: string | null;
353
350
  isFeatured: boolean | null;
354
351
  }>, "many">;
355
- }, "strip", import("zod").ZodTypeAny, {
352
+ }, "strip", z.ZodTypeAny, {
356
353
  region: "USOnly" | "UKOnly" | "Worldwide";
357
354
  listings: {
358
355
  uid: string | null;
@@ -373,15 +370,15 @@ export declare const processFeedPayloadSchema: import("zod").ZodObject<{
373
370
  isFeatured: boolean | null;
374
371
  }[];
375
372
  }>;
376
- export declare const scrapeJobActivityPayloadSchema: import("zod").ZodObject<{
377
- listing: import("zod").ZodObject<{
378
- uid: import("zod").ZodNullable<import("zod").ZodString>;
379
- title: import("zod").ZodNullable<import("zod").ZodString>;
380
- jobUrl: import("zod").ZodNullable<import("zod").ZodString>;
381
- datetime: import("zod").ZodNullable<import("zod").ZodString>;
382
- isFeatured: import("zod").ZodNullable<import("zod").ZodBoolean>;
383
- region: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodLiteral<"USOnly">, import("zod").ZodLiteral<"UKOnly">, import("zod").ZodLiteral<"Worldwide">]>>;
384
- }, "strip", import("zod").ZodTypeAny, {
373
+ export declare const scrapeJobActivityPayloadSchema: z.ZodObject<{
374
+ listing: z.ZodObject<{
375
+ uid: z.ZodNullable<z.ZodString>;
376
+ title: z.ZodNullable<z.ZodString>;
377
+ jobUrl: z.ZodNullable<z.ZodString>;
378
+ datetime: z.ZodNullable<z.ZodString>;
379
+ isFeatured: z.ZodNullable<z.ZodBoolean>;
380
+ region: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>>;
381
+ }, "strip", z.ZodTypeAny, {
385
382
  uid: string | null;
386
383
  title: string | null;
387
384
  jobUrl: string | null;
@@ -396,8 +393,8 @@ export declare const scrapeJobActivityPayloadSchema: import("zod").ZodObject<{
396
393
  datetime: string | null;
397
394
  isFeatured: boolean | null;
398
395
  }>;
399
- offsetHour: import("zod").ZodType<4 | 24, import("zod").ZodTypeDef, 4 | 24>;
400
- }, "strip", import("zod").ZodTypeAny, {
396
+ offsetHour: z.ZodType<4 | 24, z.ZodTypeDef, 4 | 24>;
397
+ }, "strip", z.ZodTypeAny, {
401
398
  listing: {
402
399
  uid: string | null;
403
400
  title: string | null;
@@ -418,42 +415,42 @@ export declare const scrapeJobActivityPayloadSchema: import("zod").ZodObject<{
418
415
  };
419
416
  offsetHour: 4 | 24;
420
417
  }>;
421
- export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
422
- userId: import("zod").ZodString;
423
- campaign: import("zod").ZodObject<{
424
- id: import("zod").ZodString;
425
- name: import("zod").ZodString;
426
- filters: import("zod").ZodObject<{
427
- keywords: import("zod").ZodNullable<import("zod").ZodObject<{
428
- includes: import("zod").ZodNullable<import("zod").ZodString>;
429
- excludes: import("zod").ZodNullable<import("zod").ZodString>;
430
- }, "strip", import("zod").ZodTypeAny, {
418
+ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
419
+ userId: z.ZodString;
420
+ campaign: z.ZodObject<{
421
+ id: z.ZodString;
422
+ name: z.ZodString;
423
+ filters: z.ZodObject<{
424
+ keywords: z.ZodNullable<z.ZodObject<{
425
+ includes: z.ZodNullable<z.ZodString>;
426
+ excludes: z.ZodNullable<z.ZodString>;
427
+ }, "strip", z.ZodTypeAny, {
431
428
  includes: string | null;
432
429
  excludes: string | null;
433
430
  }, {
434
431
  includes: string | null;
435
432
  excludes: string | null;
436
433
  }>>;
437
- searchQuery: import("zod").ZodNullable<import("zod").ZodString>;
438
- isFeatured: import("zod").ZodNullable<import("zod").ZodEnum<["all", "true", "false"]>>;
439
- regions: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["all", "Worldwide", "UKOnly", "USOnly"]>, "many">>;
440
- categories: import("zod").ZodNullable<import("zod").ZodObject<{
441
- 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">>;
442
- 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">>;
443
- }, "strip", import("zod").ZodTypeAny, {
434
+ searchQuery: z.ZodNullable<z.ZodString>;
435
+ isFeatured: z.ZodNullable<z.ZodEnum<["all", "true", "false"]>>;
436
+ regions: z.ZodNullable<z.ZodArray<z.ZodEnum<["all", "Worldwide", "UKOnly", "USOnly"]>, "many">>;
437
+ categories: z.ZodNullable<z.ZodObject<{
438
+ includes: z.ZodNullable<z.ZodArray<z.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">>;
439
+ excludes: z.ZodNullable<z.ZodArray<z.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">>;
440
+ }, "strip", z.ZodTypeAny, {
444
441
  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;
445
442
  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;
446
443
  }, {
447
444
  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;
448
445
  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;
449
446
  }>>;
450
- payment: import("zod").ZodNullable<import("zod").ZodObject<{
451
- paymentType: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Unspecified", "Hourly", "Fixed-price"]>, "many">>;
452
- minFixedPrice: import("zod").ZodNullable<import("zod").ZodNumber>;
453
- maxFixedPrice: import("zod").ZodNullable<import("zod").ZodNumber>;
454
- minHourlyRate: import("zod").ZodNullable<import("zod").ZodNumber>;
455
- maxHourlyRate: import("zod").ZodNullable<import("zod").ZodNumber>;
456
- }, "strip", import("zod").ZodTypeAny, {
447
+ payment: z.ZodNullable<z.ZodObject<{
448
+ paymentType: z.ZodNullable<z.ZodArray<z.ZodEnum<["Unspecified", "Hourly", "Fixed-price"]>, "many">>;
449
+ minFixedPrice: z.ZodNullable<z.ZodNumber>;
450
+ maxFixedPrice: z.ZodNullable<z.ZodNumber>;
451
+ minHourlyRate: z.ZodNullable<z.ZodNumber>;
452
+ maxHourlyRate: z.ZodNullable<z.ZodNumber>;
453
+ }, "strip", z.ZodTypeAny, {
457
454
  paymentType: ("Unspecified" | "Hourly" | "Fixed-price")[] | null;
458
455
  minFixedPrice: number | null;
459
456
  maxFixedPrice: number | null;
@@ -466,37 +463,37 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
466
463
  minHourlyRate: number | null;
467
464
  maxHourlyRate: number | null;
468
465
  }>>;
469
- projectDuration: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Less than 1 month", "1 to 3 months", "3 to 6 months", "More than 6 months", "Unspecified"]>, "many">>;
470
- experienceLevel: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Entry level", "Intermediate", "Expert"]>, "many">>;
471
- questions: import("zod").ZodNullable<import("zod").ZodObject<{
472
- hasQuestions: import("zod").ZodArray<import("zod").ZodEnum<["all", "yes", "no"]>, "many">;
473
- }, "strip", import("zod").ZodTypeAny, {
466
+ projectDuration: z.ZodNullable<z.ZodArray<z.ZodEnum<["Less than 1 month", "1 to 3 months", "3 to 6 months", "More than 6 months", "Unspecified"]>, "many">>;
467
+ experienceLevel: z.ZodNullable<z.ZodArray<z.ZodEnum<["Entry level", "Intermediate", "Expert"]>, "many">>;
468
+ questions: z.ZodNullable<z.ZodObject<{
469
+ hasQuestions: z.ZodArray<z.ZodEnum<["all", "yes", "no"]>, "many">;
470
+ }, "strip", z.ZodTypeAny, {
474
471
  hasQuestions: ("all" | "yes" | "no")[];
475
472
  }, {
476
473
  hasQuestions: ("all" | "yes" | "no")[];
477
474
  }>>;
478
- engagementType: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Less than 30 hrs/week", "More than 30 hrs/week", "Unspecified"]>, "many">>;
479
- clientInfo: import("zod").ZodNullable<import("zod").ZodObject<{
480
- isPaymentVerified: import("zod").ZodDefault<import("zod").ZodEnum<["all", "true", "false"]>>;
481
- isPhoneVerified: import("zod").ZodDefault<import("zod").ZodEnum<["all", "true", "false"]>>;
482
- enterpriseClient: import("zod").ZodDefault<import("zod").ZodEnum<["all", "true", "false"]>>;
483
- clientLocationIncludes: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString, "many">>;
484
- clientLocationExcludes: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString, "many">>;
485
- minReviewScore: import("zod").ZodNullable<import("zod").ZodNumber>;
486
- maxReviewScore: import("zod").ZodNullable<import("zod").ZodNumber>;
487
- minTotalSpent: import("zod").ZodNullable<import("zod").ZodNumber>;
488
- maxTotalSpent: import("zod").ZodNullable<import("zod").ZodNumber>;
489
- minHireRate: import("zod").ZodNullable<import("zod").ZodNumber>;
490
- maxHireRate: import("zod").ZodNullable<import("zod").ZodNumber>;
491
- clientIndustry: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Aerospace", "Agriculture & Forestry", "Art & Design", "Automotive", "Aviation", "Education", "Energy & Utilities", "Engineering & Architecture", "Fashion & Beauty", "Finance & Accounting", "Food & Beverage", "Government & Public Sector", "Health & Fitness", "HR & Business Services", "Legal", "Manufacturing & Construction", "Media & Entertainment", "Military & Defense", "Mining", "Real Estate", "Retail & Consumer Goods", "Sales & Marketing", "Science & Medicine", "Sports & Recreation", "Supply Chain & Logistics", "Tech & IT", "Transportation & Warehousing", "Travel & Hospitality"]>, "many">>;
492
- companySize: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Individual client", "Small company (2-9 people)", "Mid-sized company (10-99 people)", "Large company (100-1,000 people)", "Large company (1,000+ people)", "Unspecified"]>, "many">>;
493
- minJobsPosted: import("zod").ZodNullable<import("zod").ZodNumber>;
494
- minAvgHourlyRate: import("zod").ZodNullable<import("zod").ZodNumber>;
495
- maxAvgHourlyRate: import("zod").ZodNullable<import("zod").ZodNumber>;
496
- minNumReviews: import("zod").ZodNullable<import("zod").ZodNumber>;
497
- memberSinceFrom: import("zod").ZodNullable<import("zod").ZodString>;
498
- memberSinceTo: import("zod").ZodNullable<import("zod").ZodString>;
499
- }, "strip", import("zod").ZodTypeAny, {
475
+ engagementType: z.ZodNullable<z.ZodArray<z.ZodEnum<["Less than 30 hrs/week", "More than 30 hrs/week", "Unspecified"]>, "many">>;
476
+ clientInfo: z.ZodNullable<z.ZodObject<{
477
+ isPaymentVerified: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
478
+ isPhoneVerified: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
479
+ enterpriseClient: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
480
+ clientLocationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
481
+ clientLocationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
482
+ minReviewScore: z.ZodNullable<z.ZodNumber>;
483
+ maxReviewScore: z.ZodNullable<z.ZodNumber>;
484
+ minTotalSpent: z.ZodNullable<z.ZodNumber>;
485
+ maxTotalSpent: z.ZodNullable<z.ZodNumber>;
486
+ minHireRate: z.ZodNullable<z.ZodNumber>;
487
+ maxHireRate: z.ZodNullable<z.ZodNumber>;
488
+ clientIndustry: z.ZodNullable<z.ZodArray<z.ZodEnum<["Aerospace", "Agriculture & Forestry", "Art & Design", "Automotive", "Aviation", "Education", "Energy & Utilities", "Engineering & Architecture", "Fashion & Beauty", "Finance & Accounting", "Food & Beverage", "Government & Public Sector", "Health & Fitness", "HR & Business Services", "Legal", "Manufacturing & Construction", "Media & Entertainment", "Military & Defense", "Mining", "Real Estate", "Retail & Consumer Goods", "Sales & Marketing", "Science & Medicine", "Sports & Recreation", "Supply Chain & Logistics", "Tech & IT", "Transportation & Warehousing", "Travel & Hospitality"]>, "many">>;
489
+ companySize: z.ZodNullable<z.ZodArray<z.ZodEnum<["Individual client", "Small company (2-9 people)", "Mid-sized company (10-99 people)", "Large company (100-1,000 people)", "Large company (1,000+ people)", "Unspecified"]>, "many">>;
490
+ minJobsPosted: z.ZodNullable<z.ZodNumber>;
491
+ minAvgHourlyRate: z.ZodNullable<z.ZodNumber>;
492
+ maxAvgHourlyRate: z.ZodNullable<z.ZodNumber>;
493
+ minNumReviews: z.ZodNullable<z.ZodNumber>;
494
+ memberSinceFrom: z.ZodNullable<z.ZodString>;
495
+ memberSinceTo: z.ZodNullable<z.ZodString>;
496
+ }, "strip", z.ZodTypeAny, {
500
497
  isPaymentVerified: "all" | "true" | "false";
501
498
  isPhoneVerified: "all" | "true" | "false";
502
499
  enterpriseClient: "all" | "true" | "false";
@@ -537,16 +534,16 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
537
534
  isPhoneVerified?: "all" | "true" | "false" | undefined;
538
535
  enterpriseClient?: "all" | "true" | "false" | undefined;
539
536
  }>>;
540
- includeClientsWithZeroReviews: import("zod").ZodNullable<import("zod").ZodBoolean>;
541
- vendorQualifications: import("zod").ZodNullable<import("zod").ZodObject<{
542
- locationIncludes: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString, "many">>;
543
- locationExcludes: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString, "many">>;
544
- talentTypes: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Agency", "Independent", "Unspecified"]>, "many">>;
545
- englishLevels: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Fluent", "Conversational", "Native or Bilingual", "Unspecified"]>, "many">>;
546
- includeRisingTalent: import("zod").ZodNullable<import("zod").ZodString>;
547
- requiredEarnings: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodLiteral<100>, import("zod").ZodLiteral<1000>, import("zod").ZodLiteral<10000>]>>;
548
- requiredJSS: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<[">80%", ">90%", "100%", "RT"]>, "many">>;
549
- }, "strip", import("zod").ZodTypeAny, {
537
+ includeClientsWithZeroReviews: z.ZodNullable<z.ZodBoolean>;
538
+ vendorQualifications: z.ZodNullable<z.ZodObject<{
539
+ locationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
540
+ locationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
541
+ talentTypes: z.ZodNullable<z.ZodArray<z.ZodEnum<["Agency", "Independent", "Unspecified"]>, "many">>;
542
+ englishLevels: z.ZodNullable<z.ZodArray<z.ZodEnum<["Fluent", "Conversational", "Native or Bilingual", "Unspecified"]>, "many">>;
543
+ includeRisingTalent: z.ZodNullable<z.ZodString>;
544
+ requiredEarnings: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<100>, z.ZodLiteral<1000>, z.ZodLiteral<10000>]>>;
545
+ requiredJSS: z.ZodNullable<z.ZodArray<z.ZodEnum<[">80%", ">90%", "100%", "RT"]>, "many">>;
546
+ }, "strip", z.ZodTypeAny, {
550
547
  locationIncludes: string[] | null;
551
548
  locationExcludes: string[] | null;
552
549
  talentTypes: ("Unspecified" | "Independent" | "Agency")[] | null;
@@ -563,7 +560,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
563
560
  requiredEarnings: 100 | 1000 | 10000 | null;
564
561
  requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
565
562
  }>>;
566
- }, "strip", import("zod").ZodTypeAny, {
563
+ }, "strip", z.ZodTypeAny, {
567
564
  isFeatured: "all" | "true" | "false" | null;
568
565
  keywords: {
569
566
  includes: string | null;
@@ -676,28 +673,28 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
676
673
  requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
677
674
  } | null;
678
675
  }>;
679
- createdAt: import("zod").ZodNumber;
680
- updatedAt: import("zod").ZodNumber;
681
- confirmedBillingAt: import("zod").ZodNullable<import("zod").ZodNumber>;
682
- boostingEnabled: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodBoolean>>;
683
- maximumBoost: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
684
- minBoost: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
685
- boostDownToNthPlace: import("zod").ZodNullable<import("zod").ZodNumber>;
686
- connectsAbovePrevious: import("zod").ZodNullable<import("zod").ZodNumber>;
687
- insufficeintBoostConnectsAction: import("zod").ZodEnum<["skip", "bid_without_boost"]>;
688
- monthlyBudget: import("zod").ZodNullable<import("zod").ZodNumber>;
689
- boostingThreshold: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
690
- biddingDelayInMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
691
- biddingHourlyRateStrategy: import("zod").ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
692
- biddingFixedHourlyRate: import("zod").ZodNullable<import("zod").ZodNumber>;
693
- biddingHourlyRatePercentage: import("zod").ZodNullable<import("zod").ZodNumber>;
694
- bidWithWarning: import("zod").ZodEnum<["bid", "skip"]>;
695
- leadCounts: import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "viewed", "replied", "won"]>, import("zod").ZodNumber>>;
696
- expenses: import("zod").ZodObject<{
697
- biddingAmount: import("zod").ZodDefault<import("zod").ZodNumber>;
698
- boostingAmount: import("zod").ZodDefault<import("zod").ZodNumber>;
699
- boosted: import("zod").ZodDefault<import("zod").ZodNumber>;
700
- }, "strip", import("zod").ZodTypeAny, {
676
+ createdAt: z.ZodNumber;
677
+ updatedAt: z.ZodNumber;
678
+ confirmedBillingAt: z.ZodNullable<z.ZodNumber>;
679
+ boostingEnabled: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
680
+ maximumBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
681
+ minBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
682
+ boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
683
+ connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
684
+ insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
685
+ monthlyBudget: z.ZodNullable<z.ZodNumber>;
686
+ boostingThreshold: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
687
+ biddingDelayInMinutes: z.ZodDefault<z.ZodNumber>;
688
+ biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
689
+ biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
690
+ biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
691
+ bidWithWarning: z.ZodEnum<["bid", "skip"]>;
692
+ leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>, z.ZodNumber>>;
693
+ expenses: z.ZodObject<{
694
+ biddingAmount: z.ZodDefault<z.ZodNumber>;
695
+ boostingAmount: z.ZodDefault<z.ZodNumber>;
696
+ boosted: z.ZodDefault<z.ZodNumber>;
697
+ }, "strip", z.ZodTypeAny, {
701
698
  biddingAmount: number;
702
699
  boostingAmount: number;
703
700
  boosted: number;
@@ -706,14 +703,14 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
706
703
  boostingAmount?: number | undefined;
707
704
  boosted?: number | undefined;
708
705
  }>;
709
- notificationsEnabled: import("zod").ZodNullable<import("zod").ZodBoolean>;
710
- status: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"active">, import("zod").ZodLiteral<"draft">, import("zod").ZodLiteral<"paused">, import("zod").ZodLiteral<"error">]>>;
711
- bidConfig: import("zod").ZodNullable<import("zod").ZodObject<{
712
- agencyName: import("zod").ZodNullable<import("zod").ZodString>;
713
- bidderId: import("zod").ZodNullable<import("zod").ZodString>;
714
- contractorName: import("zod").ZodNullable<import("zod").ZodString>;
715
- specialisedProfile: import("zod").ZodNullable<import("zod").ZodString>;
716
- }, "strip", import("zod").ZodTypeAny, {
706
+ notificationsEnabled: z.ZodNullable<z.ZodBoolean>;
707
+ status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">]>>;
708
+ bidConfig: z.ZodNullable<z.ZodObject<{
709
+ agencyName: z.ZodNullable<z.ZodString>;
710
+ bidderId: z.ZodNullable<z.ZodString>;
711
+ contractorName: z.ZodNullable<z.ZodString>;
712
+ specialisedProfile: z.ZodNullable<z.ZodString>;
713
+ }, "strip", z.ZodTypeAny, {
717
714
  agencyName: string | null;
718
715
  bidderId: string | null;
719
716
  contractorName: string | null;
@@ -724,15 +721,15 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
724
721
  contractorName: string | null;
725
722
  specialisedProfile: string | null;
726
723
  }>>;
727
- coverLetterTemplateId: import("zod").ZodNullable<import("zod").ZodString>;
728
- priority: import("zod").ZodNullable<import("zod").ZodNumber>;
729
- coverLetterTemplate: import("zod").ZodNullable<import("zod").ZodObject<{
730
- id: import("zod").ZodString;
731
- name: import("zod").ZodString;
732
- description: import("zod").ZodNullable<import("zod").ZodString>;
733
- template: import("zod").ZodString;
734
- instructions: import("zod").ZodString;
735
- }, "strip", import("zod").ZodTypeAny, {
724
+ coverLetterTemplateId: z.ZodNullable<z.ZodString>;
725
+ priority: z.ZodNullable<z.ZodNumber>;
726
+ coverLetterTemplate: z.ZodNullable<z.ZodObject<{
727
+ id: z.ZodString;
728
+ name: z.ZodString;
729
+ description: z.ZodNullable<z.ZodString>;
730
+ template: z.ZodString;
731
+ instructions: z.ZodString;
732
+ }, "strip", z.ZodTypeAny, {
736
733
  description: string | null;
737
734
  id: string;
738
735
  name: string;
@@ -745,13 +742,13 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
745
742
  template: string;
746
743
  instructions: string;
747
744
  }>>;
748
- organizationProfileId: import("zod").ZodNullable<import("zod").ZodString>;
749
- lastSyncedProposalsAt: import("zod").ZodNullable<import("zod").ZodNumber>;
750
- limits: import("zod").ZodObject<{
751
- maxDailyProposalsSent: import("zod").ZodNumber;
752
- enabled: import("zod").ZodBoolean;
753
- windowAnchorAt: import("zod").ZodNullable<import("zod").ZodNumber>;
754
- }, "strip", import("zod").ZodTypeAny, {
745
+ organizationProfileId: z.ZodNullable<z.ZodString>;
746
+ lastSyncedProposalsAt: z.ZodNullable<z.ZodNumber>;
747
+ limits: z.ZodObject<{
748
+ maxDailyProposalsSent: z.ZodNumber;
749
+ enabled: z.ZodBoolean;
750
+ windowAnchorAt: z.ZodNullable<z.ZodNumber>;
751
+ }, "strip", z.ZodTypeAny, {
755
752
  maxDailyProposalsSent: number;
756
753
  enabled: boolean;
757
754
  windowAnchorAt: number | null;
@@ -760,21 +757,21 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
760
757
  enabled: boolean;
761
758
  windowAnchorAt: number | null;
762
759
  }>;
763
- workTime: import("zod").ZodObject<{
764
- enabled: import("zod").ZodBoolean;
765
- days: import("zod").ZodArray<import("zod").ZodEnum<["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]>, "many">;
766
- timeBlocks: import("zod").ZodArray<import("zod").ZodObject<{
767
- fromHour: import("zod").ZodNumber;
768
- toHour: import("zod").ZodNumber;
769
- }, "strip", import("zod").ZodTypeAny, {
760
+ workTime: z.ZodObject<{
761
+ enabled: z.ZodBoolean;
762
+ days: z.ZodArray<z.ZodEnum<["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]>, "many">;
763
+ timeBlocks: z.ZodArray<z.ZodObject<{
764
+ fromHour: z.ZodNumber;
765
+ toHour: z.ZodNumber;
766
+ }, "strip", z.ZodTypeAny, {
770
767
  fromHour: number;
771
768
  toHour: number;
772
769
  }, {
773
770
  fromHour: number;
774
771
  toHour: number;
775
772
  }>, "many">;
776
- timezone: import("zod").ZodNullable<import("zod").ZodString>;
777
- }, "strip", import("zod").ZodTypeAny, {
773
+ timezone: z.ZodNullable<z.ZodString>;
774
+ }, "strip", z.ZodTypeAny, {
778
775
  enabled: boolean;
779
776
  days: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
780
777
  timeBlocks: {
@@ -791,7 +788,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
791
788
  }[];
792
789
  timezone: string | null;
793
790
  }>;
794
- }, "strip", import("zod").ZodTypeAny, {
791
+ }, "strip", z.ZodTypeAny, {
795
792
  id: string;
796
793
  name: string;
797
794
  filters: {
@@ -867,7 +864,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
867
864
  biddingFixedHourlyRate: number | null;
868
865
  biddingHourlyRatePercentage: number | null;
869
866
  bidWithWarning: "skip" | "bid";
870
- leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won", number>> | null;
867
+ leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won", number>> | null;
871
868
  expenses: {
872
869
  biddingAmount: number;
873
870
  boostingAmount: number;
@@ -977,7 +974,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
977
974
  biddingFixedHourlyRate: number | null;
978
975
  biddingHourlyRatePercentage: number | null;
979
976
  bidWithWarning: "skip" | "bid";
980
- leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won", number>> | null;
977
+ leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won", number>> | null;
981
978
  expenses: {
982
979
  biddingAmount?: number | undefined;
983
980
  boostingAmount?: number | undefined;
@@ -1022,29 +1019,29 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1022
1019
  boostingThreshold?: number | null | undefined;
1023
1020
  biddingDelayInMinutes?: number | undefined;
1024
1021
  }>;
1025
- organization: import("zod").ZodObject<{
1026
- id: import("zod").ZodString;
1027
- name: import("zod").ZodString;
1028
- type: import("zod").ZodEnum<["agency", "freelancer"]>;
1029
- associatedBidders: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString, "many">>;
1030
- subscription: import("zod").ZodNullable<import("zod").ZodObject<{
1031
- planId: import("zod").ZodString;
1032
- pendingPlanId: import("zod").ZodNullable<import("zod").ZodString>;
1033
- status: import("zod").ZodEnum<["active", "trialing", "cancelled", "paused", "payment_processing", "payment_pending", "payment_failed"]>;
1034
- startedAt: import("zod").ZodNumber;
1035
- currentPeriodEnd: import("zod").ZodNumber;
1036
- stripe: import("zod").ZodObject<{
1037
- id: import("zod").ZodString;
1038
- items: import("zod").ZodArray<import("zod").ZodObject<{
1039
- id: import("zod").ZodString;
1040
- price: import("zod").ZodObject<{
1041
- id: import("zod").ZodString;
1042
- }, "strip", import("zod").ZodTypeAny, {
1022
+ organization: z.ZodObject<{
1023
+ id: z.ZodString;
1024
+ name: z.ZodString;
1025
+ type: z.ZodEnum<["agency", "freelancer"]>;
1026
+ associatedBidders: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
1027
+ subscription: z.ZodNullable<z.ZodObject<{
1028
+ planId: z.ZodString;
1029
+ pendingPlanId: z.ZodNullable<z.ZodString>;
1030
+ status: z.ZodEnum<["active", "trialing", "cancelled", "paused", "payment_processing", "payment_pending", "payment_failed"]>;
1031
+ startedAt: z.ZodNumber;
1032
+ currentPeriodEnd: z.ZodNumber;
1033
+ stripe: z.ZodObject<{
1034
+ id: z.ZodString;
1035
+ items: z.ZodArray<z.ZodObject<{
1036
+ id: z.ZodString;
1037
+ price: z.ZodObject<{
1038
+ id: z.ZodString;
1039
+ }, "strip", z.ZodTypeAny, {
1043
1040
  id: string;
1044
1041
  }, {
1045
1042
  id: string;
1046
1043
  }>;
1047
- }, "strip", import("zod").ZodTypeAny, {
1044
+ }, "strip", z.ZodTypeAny, {
1048
1045
  id: string;
1049
1046
  price: {
1050
1047
  id: string;
@@ -1055,17 +1052,17 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1055
1052
  id: string;
1056
1053
  };
1057
1054
  }>, "many">;
1058
- invoice: import("zod").ZodObject<{
1059
- id: import("zod").ZodString;
1060
- hosted_invoice_url: import("zod").ZodNullable<import("zod").ZodString>;
1061
- }, "strip", import("zod").ZodTypeAny, {
1055
+ invoice: z.ZodObject<{
1056
+ id: z.ZodString;
1057
+ hosted_invoice_url: z.ZodNullable<z.ZodString>;
1058
+ }, "strip", z.ZodTypeAny, {
1062
1059
  id: string;
1063
1060
  hosted_invoice_url: string | null;
1064
1061
  }, {
1065
1062
  id: string;
1066
1063
  hosted_invoice_url: string | null;
1067
1064
  }>;
1068
- }, "strip", import("zod").ZodTypeAny, {
1065
+ }, "strip", z.ZodTypeAny, {
1069
1066
  id: string;
1070
1067
  items: {
1071
1068
  id: string;
@@ -1090,10 +1087,10 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1090
1087
  hosted_invoice_url: string | null;
1091
1088
  };
1092
1089
  }>;
1093
- source: import("zod").ZodEnum<["stripe", "manual"]>;
1094
- usage: import("zod").ZodRecord<import("zod").ZodEnum<["suitabilityComplete", "proposalComplete", "biddingComplete"]>, import("zod").ZodNumber>;
1095
- trialEndsAt: import("zod").ZodNullable<import("zod").ZodNumber>;
1096
- }, "strip", import("zod").ZodTypeAny, {
1090
+ source: z.ZodEnum<["stripe", "manual"]>;
1091
+ usage: z.ZodRecord<z.ZodEnum<["suitabilityComplete", "proposalComplete", "biddingComplete"]>, z.ZodNumber>;
1092
+ trialEndsAt: z.ZodNullable<z.ZodNumber>;
1093
+ }, "strip", z.ZodTypeAny, {
1097
1094
  status: "active" | "paused" | "trialing" | "cancelled" | "payment_processing" | "payment_pending" | "payment_failed";
1098
1095
  planId: string;
1099
1096
  pendingPlanId: string | null;
@@ -1138,12 +1135,12 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1138
1135
  usage: Partial<Record<"suitabilityComplete" | "proposalComplete" | "biddingComplete", number>>;
1139
1136
  trialEndsAt: number | null;
1140
1137
  }>>;
1141
- active: import("zod").ZodBoolean;
1142
- limits: import("zod").ZodObject<{
1143
- monthlyCredits: import("zod").ZodNumber;
1144
- usedCredits: import("zod").ZodNumber;
1145
- extraCredits: import("zod").ZodNumber;
1146
- }, "strip", import("zod").ZodTypeAny, {
1138
+ active: z.ZodBoolean;
1139
+ limits: z.ZodObject<{
1140
+ monthlyCredits: z.ZodNumber;
1141
+ usedCredits: z.ZodNumber;
1142
+ extraCredits: z.ZodNumber;
1143
+ }, "strip", z.ZodTypeAny, {
1147
1144
  monthlyCredits: number;
1148
1145
  usedCredits: number;
1149
1146
  extraCredits: number;
@@ -1152,17 +1149,17 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1152
1149
  usedCredits: number;
1153
1150
  extraCredits: number;
1154
1151
  }>;
1155
- billing: import("zod").ZodNullable<import("zod").ZodObject<{
1156
- savedCard: import("zod").ZodBoolean;
1157
- stripe: import("zod").ZodObject<{
1158
- customer: import("zod").ZodObject<{
1159
- id: import("zod").ZodNullable<import("zod").ZodString>;
1160
- }, "strip", import("zod").ZodTypeAny, {
1152
+ billing: z.ZodNullable<z.ZodObject<{
1153
+ savedCard: z.ZodBoolean;
1154
+ stripe: z.ZodObject<{
1155
+ customer: z.ZodObject<{
1156
+ id: z.ZodNullable<z.ZodString>;
1157
+ }, "strip", z.ZodTypeAny, {
1161
1158
  id: string | null;
1162
1159
  }, {
1163
1160
  id: string | null;
1164
1161
  }>;
1165
- }, "strip", import("zod").ZodTypeAny, {
1162
+ }, "strip", z.ZodTypeAny, {
1166
1163
  customer: {
1167
1164
  id: string | null;
1168
1165
  };
@@ -1171,7 +1168,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1171
1168
  id: string | null;
1172
1169
  };
1173
1170
  }>;
1174
- }, "strip", import("zod").ZodTypeAny, {
1171
+ }, "strip", z.ZodTypeAny, {
1175
1172
  stripe: {
1176
1173
  customer: {
1177
1174
  id: string | null;
@@ -1186,21 +1183,21 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1186
1183
  };
1187
1184
  savedCard: boolean;
1188
1185
  }>>;
1189
- lastBidTime: import("zod").ZodNullable<import("zod").ZodNumber>;
1190
- nextScheduledBidTime: import("zod").ZodNullable<import("zod").ZodNumber>;
1191
- createdAt: import("zod").ZodNumber;
1192
- updatedAt: import("zod").ZodNumber;
1193
- openRouterApiKey: import("zod").ZodNullable<import("zod").ZodString>;
1194
- nextProposalStatusSyncTime: import("zod").ZodNullable<import("zod").ZodNumber>;
1195
- oneTimePayments: import("zod").ZodOptional<import("zod").ZodObject<{
1196
- usBidderAccountPayment: import("zod").ZodOptional<import("zod").ZodObject<{
1197
- paidAt: import("zod").ZodOptional<import("zod").ZodNumber>;
1198
- amount: import("zod").ZodOptional<import("zod").ZodNumber>;
1199
- currency: import("zod").ZodOptional<import("zod").ZodString>;
1200
- status: import("zod").ZodString;
1201
- paymentIntentId: import("zod").ZodOptional<import("zod").ZodString>;
1202
- error: import("zod").ZodOptional<import("zod").ZodString>;
1203
- }, "strip", import("zod").ZodTypeAny, {
1186
+ lastBidTime: z.ZodNullable<z.ZodNumber>;
1187
+ nextScheduledBidTime: z.ZodNullable<z.ZodNumber>;
1188
+ createdAt: z.ZodNumber;
1189
+ updatedAt: z.ZodNumber;
1190
+ openRouterApiKey: z.ZodNullable<z.ZodString>;
1191
+ nextProposalStatusSyncTime: z.ZodNullable<z.ZodNumber>;
1192
+ oneTimePayments: z.ZodOptional<z.ZodObject<{
1193
+ usBidderAccountPayment: z.ZodOptional<z.ZodObject<{
1194
+ paidAt: z.ZodOptional<z.ZodNumber>;
1195
+ amount: z.ZodOptional<z.ZodNumber>;
1196
+ currency: z.ZodOptional<z.ZodString>;
1197
+ status: z.ZodString;
1198
+ paymentIntentId: z.ZodOptional<z.ZodString>;
1199
+ error: z.ZodOptional<z.ZodString>;
1200
+ }, "strip", z.ZodTypeAny, {
1204
1201
  status: string;
1205
1202
  amount?: number | undefined;
1206
1203
  error?: string | undefined;
@@ -1215,7 +1212,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1215
1212
  currency?: string | undefined;
1216
1213
  paymentIntentId?: string | undefined;
1217
1214
  }>>;
1218
- }, "strip", import("zod").ZodTypeAny, {
1215
+ }, "strip", z.ZodTypeAny, {
1219
1216
  usBidderAccountPayment?: {
1220
1217
  status: string;
1221
1218
  amount?: number | undefined;
@@ -1234,7 +1231,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1234
1231
  paymentIntentId?: string | undefined;
1235
1232
  } | undefined;
1236
1233
  }>>;
1237
- }, "strip", import("zod").ZodTypeAny, {
1234
+ }, "strip", z.ZodTypeAny, {
1238
1235
  type: "agency" | "freelancer";
1239
1236
  id: string;
1240
1237
  name: string;
@@ -1351,44 +1348,44 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1351
1348
  } | undefined;
1352
1349
  } | undefined;
1353
1350
  }>;
1354
- lead: import("zod").ZodObject<Omit<import("zod").objectUtil.extendShape<{
1355
- id: import("zod").ZodNullable<import("zod").ZodString>;
1356
- uid: import("zod").ZodNullable<import("zod").ZodString>;
1357
- createdAt: import("zod").ZodNullable<import("zod").ZodNumber>;
1358
- title: import("zod").ZodNullable<import("zod").ZodString>;
1359
- category: import("zod").ZodNullable<import("zod").ZodString>;
1360
- skills: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
1361
- name: import("zod").ZodString;
1362
- }, "strip", import("zod").ZodTypeAny, {
1351
+ lead: z.ZodObject<Omit<z.objectUtil.extendShape<{
1352
+ id: z.ZodNullable<z.ZodString>;
1353
+ uid: z.ZodNullable<z.ZodString>;
1354
+ createdAt: z.ZodNullable<z.ZodNumber>;
1355
+ title: z.ZodNullable<z.ZodString>;
1356
+ category: z.ZodNullable<z.ZodString>;
1357
+ skills: z.ZodNullable<z.ZodArray<z.ZodObject<{
1358
+ name: z.ZodString;
1359
+ }, "strip", z.ZodTypeAny, {
1363
1360
  name: string;
1364
1361
  }, {
1365
1362
  name: string;
1366
1363
  }>, "many">>;
1367
- datetime: import("zod").ZodNullable<import("zod").ZodNumber>;
1368
- description: import("zod").ZodNullable<import("zod").ZodString>;
1369
- descriptionLength: import("zod").ZodNullable<import("zod").ZodNumber>;
1370
- connectsRequired: import("zod").ZodNullable<import("zod").ZodNumber>;
1371
- projectType: import("zod").ZodNullable<import("zod").ZodString>;
1372
- projectDuration: import("zod").ZodNullable<import("zod").ZodString>;
1373
- questions: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString, "many">>;
1374
- jobUrl: import("zod").ZodNullable<import("zod").ZodString>;
1375
- metadata: import("zod").ZodNullable<import("zod").ZodObject<{
1376
- hours: import("zod").ZodNullable<import("zod").ZodString>;
1377
- duration: import("zod").ZodNullable<import("zod").ZodString>;
1378
- experienceLevel: import("zod").ZodNullable<import("zod").ZodString>;
1379
- hourlyRate: import("zod").ZodNullable<import("zod").ZodObject<{
1380
- min: import("zod").ZodNullable<import("zod").ZodNumber>;
1381
- max: import("zod").ZodNullable<import("zod").ZodNumber>;
1382
- }, "strip", import("zod").ZodTypeAny, {
1364
+ datetime: z.ZodNullable<z.ZodNumber>;
1365
+ description: z.ZodNullable<z.ZodString>;
1366
+ descriptionLength: z.ZodNullable<z.ZodNumber>;
1367
+ connectsRequired: z.ZodNullable<z.ZodNumber>;
1368
+ projectType: z.ZodNullable<z.ZodString>;
1369
+ projectDuration: z.ZodNullable<z.ZodString>;
1370
+ questions: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
1371
+ jobUrl: z.ZodNullable<z.ZodString>;
1372
+ metadata: z.ZodNullable<z.ZodObject<{
1373
+ hours: z.ZodNullable<z.ZodString>;
1374
+ duration: z.ZodNullable<z.ZodString>;
1375
+ experienceLevel: z.ZodNullable<z.ZodString>;
1376
+ hourlyRate: z.ZodNullable<z.ZodObject<{
1377
+ min: z.ZodNullable<z.ZodNumber>;
1378
+ max: z.ZodNullable<z.ZodNumber>;
1379
+ }, "strip", z.ZodTypeAny, {
1383
1380
  min: number | null;
1384
1381
  max: number | null;
1385
1382
  }, {
1386
1383
  min: number | null;
1387
1384
  max: number | null;
1388
1385
  }>>;
1389
- paymentType: import("zod").ZodNullable<import("zod").ZodString>;
1390
- fixedPrice: import("zod").ZodNullable<import("zod").ZodNumber>;
1391
- }, "strip", import("zod").ZodTypeAny, {
1386
+ paymentType: z.ZodNullable<z.ZodString>;
1387
+ fixedPrice: z.ZodNullable<z.ZodNumber>;
1388
+ }, "strip", z.ZodTypeAny, {
1392
1389
  paymentType: string | null;
1393
1390
  experienceLevel: string | null;
1394
1391
  hours: string | null;
@@ -1409,25 +1406,25 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1409
1406
  } | null;
1410
1407
  fixedPrice: number | null;
1411
1408
  }>>;
1412
- clientInfo: import("zod").ZodNullable<import("zod").ZodObject<{
1413
- isPaymentVerified: import("zod").ZodNullable<import("zod").ZodBoolean>;
1414
- isPhoneVerified: import("zod").ZodNullable<import("zod").ZodBoolean>;
1415
- numberOfReviews: import("zod").ZodNullable<import("zod").ZodNumber>;
1416
- rating: import("zod").ZodNullable<import("zod").ZodNumber>;
1417
- country: import("zod").ZodNullable<import("zod").ZodString>;
1418
- region: import("zod").ZodNullable<import("zod").ZodString>;
1419
- jobsPosted: import("zod").ZodNullable<import("zod").ZodNumber>;
1420
- totalSpent: import("zod").ZodNullable<import("zod").ZodNumber>;
1421
- numberOfHires: import("zod").ZodNullable<import("zod").ZodNumber>;
1422
- activeEngagements: import("zod").ZodNullable<import("zod").ZodNumber>;
1423
- openJobs: import("zod").ZodNullable<import("zod").ZodNumber>;
1424
- hireRate: import("zod").ZodNullable<import("zod").ZodNumber>;
1425
- memberSince: import("zod").ZodNullable<import("zod").ZodString>;
1426
- companyIndustry: import("zod").ZodNullable<import("zod").ZodString>;
1427
- companySize: import("zod").ZodNullable<import("zod").ZodString>;
1428
- enterpriseClient: import("zod").ZodNullable<import("zod").ZodBoolean>;
1429
- avgHourlyRatePaid: import("zod").ZodNullable<import("zod").ZodNumber>;
1430
- }, "strip", import("zod").ZodTypeAny, {
1409
+ clientInfo: z.ZodNullable<z.ZodObject<{
1410
+ isPaymentVerified: z.ZodNullable<z.ZodBoolean>;
1411
+ isPhoneVerified: z.ZodNullable<z.ZodBoolean>;
1412
+ numberOfReviews: z.ZodNullable<z.ZodNumber>;
1413
+ rating: z.ZodNullable<z.ZodNumber>;
1414
+ country: z.ZodNullable<z.ZodString>;
1415
+ region: z.ZodNullable<z.ZodString>;
1416
+ jobsPosted: z.ZodNullable<z.ZodNumber>;
1417
+ totalSpent: z.ZodNullable<z.ZodNumber>;
1418
+ numberOfHires: z.ZodNullable<z.ZodNumber>;
1419
+ activeEngagements: z.ZodNullable<z.ZodNumber>;
1420
+ openJobs: z.ZodNullable<z.ZodNumber>;
1421
+ hireRate: z.ZodNullable<z.ZodNumber>;
1422
+ memberSince: z.ZodNullable<z.ZodString>;
1423
+ companyIndustry: z.ZodNullable<z.ZodString>;
1424
+ companySize: z.ZodNullable<z.ZodString>;
1425
+ enterpriseClient: z.ZodNullable<z.ZodBoolean>;
1426
+ avgHourlyRatePaid: z.ZodNullable<z.ZodNumber>;
1427
+ }, "strip", z.ZodTypeAny, {
1431
1428
  country: string | null;
1432
1429
  isPaymentVerified: boolean | null;
1433
1430
  totalSpent: number | null;
@@ -1464,14 +1461,14 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1464
1461
  companyIndustry: string | null;
1465
1462
  avgHourlyRatePaid: number | null;
1466
1463
  }>>;
1467
- vendorQualifications: import("zod").ZodNullable<import("zod").ZodObject<{
1468
- location: import("zod").ZodNullable<import("zod").ZodString>;
1469
- talentType: import("zod").ZodNullable<import("zod").ZodEnum<["Agency", "Independent", "unspecified"]>>;
1470
- englishLevel: import("zod").ZodNullable<import("zod").ZodString>;
1471
- minimumEarnings: import("zod").ZodNullable<import("zod").ZodNumber>;
1472
- jobSuccessScore: import("zod").ZodNullable<import("zod").ZodString>;
1473
- includeRisingTalent: import("zod").ZodNullable<import("zod").ZodString>;
1474
- }, "strip", import("zod").ZodTypeAny, {
1464
+ vendorQualifications: z.ZodNullable<z.ZodObject<{
1465
+ location: z.ZodNullable<z.ZodString>;
1466
+ talentType: z.ZodNullable<z.ZodEnum<["Agency", "Independent", "unspecified"]>>;
1467
+ englishLevel: z.ZodNullable<z.ZodString>;
1468
+ minimumEarnings: z.ZodNullable<z.ZodNumber>;
1469
+ jobSuccessScore: z.ZodNullable<z.ZodString>;
1470
+ includeRisingTalent: z.ZodNullable<z.ZodString>;
1471
+ }, "strip", z.ZodTypeAny, {
1475
1472
  location: string | null;
1476
1473
  includeRisingTalent: string | null;
1477
1474
  talentType: "Independent" | "Agency" | "unspecified" | null;
@@ -1486,22 +1483,22 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1486
1483
  minimumEarnings: number | null;
1487
1484
  jobSuccessScore: string | null;
1488
1485
  }>>;
1489
- processed: import("zod").ZodNullable<import("zod").ZodBoolean>;
1490
- isFeatured: import("zod").ZodNullable<import("zod").ZodBoolean>;
1491
- clientReviews: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
1492
- jobTitle: import("zod").ZodNullable<import("zod").ZodString>;
1493
- freelancerName: import("zod").ZodNullable<import("zod").ZodString>;
1494
- freelancerRating: import("zod").ZodNullable<import("zod").ZodNumber>;
1495
- freelancerFeedback: import("zod").ZodNullable<import("zod").ZodString>;
1496
- clientFeedback: import("zod").ZodNullable<import("zod").ZodString>;
1497
- clientFeedbackRating: import("zod").ZodNullable<import("zod").ZodNumber>;
1498
- dateRange: import("zod").ZodNullable<import("zod").ZodString>;
1499
- paymentType: import("zod").ZodNullable<import("zod").ZodString>;
1500
- fixedPrice: import("zod").ZodNullable<import("zod").ZodNumber>;
1501
- hourlyRate: import("zod").ZodNullable<import("zod").ZodNumber>;
1502
- numHours: import("zod").ZodNullable<import("zod").ZodNumber>;
1503
- totalBilled: import("zod").ZodNullable<import("zod").ZodNumber>;
1504
- }, "strip", import("zod").ZodTypeAny, {
1486
+ processed: z.ZodNullable<z.ZodBoolean>;
1487
+ isFeatured: z.ZodNullable<z.ZodBoolean>;
1488
+ clientReviews: z.ZodNullable<z.ZodArray<z.ZodObject<{
1489
+ jobTitle: z.ZodNullable<z.ZodString>;
1490
+ freelancerName: z.ZodNullable<z.ZodString>;
1491
+ freelancerRating: z.ZodNullable<z.ZodNumber>;
1492
+ freelancerFeedback: z.ZodNullable<z.ZodString>;
1493
+ clientFeedback: z.ZodNullable<z.ZodString>;
1494
+ clientFeedbackRating: z.ZodNullable<z.ZodNumber>;
1495
+ dateRange: z.ZodNullable<z.ZodString>;
1496
+ paymentType: z.ZodNullable<z.ZodString>;
1497
+ fixedPrice: z.ZodNullable<z.ZodNumber>;
1498
+ hourlyRate: z.ZodNullable<z.ZodNumber>;
1499
+ numHours: z.ZodNullable<z.ZodNumber>;
1500
+ totalBilled: z.ZodNullable<z.ZodNumber>;
1501
+ }, "strip", z.ZodTypeAny, {
1505
1502
  paymentType: string | null;
1506
1503
  hourlyRate: number | null;
1507
1504
  fixedPrice: number | null;
@@ -1528,12 +1525,12 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1528
1525
  numHours: number | null;
1529
1526
  totalBilled: number | null;
1530
1527
  }>, "many">>;
1531
- region: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodLiteral<"USOnly">, import("zod").ZodLiteral<"UKOnly">, import("zod").ZodLiteral<"Worldwide">]>>;
1532
- bidRange: import("zod").ZodNullable<import("zod").ZodObject<{
1533
- high: import("zod").ZodNullable<import("zod").ZodNumber>;
1534
- avg: import("zod").ZodNullable<import("zod").ZodNumber>;
1535
- low: import("zod").ZodNullable<import("zod").ZodNumber>;
1536
- }, "strip", import("zod").ZodTypeAny, {
1528
+ region: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>>;
1529
+ bidRange: z.ZodNullable<z.ZodObject<{
1530
+ high: z.ZodNullable<z.ZodNumber>;
1531
+ avg: z.ZodNullable<z.ZodNumber>;
1532
+ low: z.ZodNullable<z.ZodNumber>;
1533
+ }, "strip", z.ZodTypeAny, {
1537
1534
  high: number | null;
1538
1535
  avg: number | null;
1539
1536
  low: number | null;
@@ -1542,25 +1539,25 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1542
1539
  avg: number | null;
1543
1540
  low: number | null;
1544
1541
  }>>;
1545
- jobActivity: import("zod").ZodNullable<import("zod").ZodObject<{
1546
- proposals: import("zod").ZodObject<{
1547
- min: import("zod").ZodNullable<import("zod").ZodNumber>;
1548
- max: import("zod").ZodNullable<import("zod").ZodNumber>;
1549
- }, "strip", import("zod").ZodTypeAny, {
1542
+ jobActivity: z.ZodNullable<z.ZodObject<{
1543
+ proposals: z.ZodObject<{
1544
+ min: z.ZodNullable<z.ZodNumber>;
1545
+ max: z.ZodNullable<z.ZodNumber>;
1546
+ }, "strip", z.ZodTypeAny, {
1550
1547
  min: number | null;
1551
1548
  max: number | null;
1552
1549
  }, {
1553
1550
  min: number | null;
1554
1551
  max: number | null;
1555
1552
  }>;
1556
- lastViewedByClient: import("zod").ZodNullable<import("zod").ZodString>;
1557
- lastViewedByClientTimestamp: import("zod").ZodNullable<import("zod").ZodNumber>;
1558
- hires: import("zod").ZodNullable<import("zod").ZodNumber>;
1559
- interviewing: import("zod").ZodNullable<import("zod").ZodNumber>;
1560
- invitesSent: import("zod").ZodNullable<import("zod").ZodNumber>;
1561
- unansweredInvites: import("zod").ZodNullable<import("zod").ZodNumber>;
1562
- updatedAt: import("zod").ZodNullable<import("zod").ZodNumber>;
1563
- }, "strip", import("zod").ZodTypeAny, {
1553
+ lastViewedByClient: z.ZodNullable<z.ZodString>;
1554
+ lastViewedByClientTimestamp: z.ZodNullable<z.ZodNumber>;
1555
+ hires: z.ZodNullable<z.ZodNumber>;
1556
+ interviewing: z.ZodNullable<z.ZodNumber>;
1557
+ invitesSent: z.ZodNullable<z.ZodNumber>;
1558
+ unansweredInvites: z.ZodNullable<z.ZodNumber>;
1559
+ updatedAt: z.ZodNullable<z.ZodNumber>;
1560
+ }, "strip", z.ZodTypeAny, {
1564
1561
  updatedAt: number | null;
1565
1562
  proposals: {
1566
1563
  min: number | null;
@@ -1585,26 +1582,26 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1585
1582
  invitesSent: number | null;
1586
1583
  unansweredInvites: number | null;
1587
1584
  }>>;
1588
- activityUpdates: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodLiteral<1>, import("zod").ZodLiteral<2>, import("zod").ZodLiteral<3>]>>;
1589
- activity: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodEnum<["4h" | "24h"]>, import("zod").ZodObject<{
1590
- proposals: import("zod").ZodObject<{
1591
- min: import("zod").ZodNullable<import("zod").ZodNumber>;
1592
- max: import("zod").ZodNullable<import("zod").ZodNumber>;
1593
- }, "strip", import("zod").ZodTypeAny, {
1585
+ activityUpdates: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
1586
+ activity: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodEnum<["4h" | "24h"]>, z.ZodObject<{
1587
+ proposals: z.ZodObject<{
1588
+ min: z.ZodNullable<z.ZodNumber>;
1589
+ max: z.ZodNullable<z.ZodNumber>;
1590
+ }, "strip", z.ZodTypeAny, {
1594
1591
  min: number | null;
1595
1592
  max: number | null;
1596
1593
  }, {
1597
1594
  min: number | null;
1598
1595
  max: number | null;
1599
1596
  }>;
1600
- lastViewedByClient: import("zod").ZodNullable<import("zod").ZodString>;
1601
- lastViewedByClientTimestamp: import("zod").ZodNullable<import("zod").ZodNumber>;
1602
- hires: import("zod").ZodNullable<import("zod").ZodNumber>;
1603
- interviewing: import("zod").ZodNullable<import("zod").ZodNumber>;
1604
- invitesSent: import("zod").ZodNullable<import("zod").ZodNumber>;
1605
- unansweredInvites: import("zod").ZodNullable<import("zod").ZodNumber>;
1606
- updatedAt: import("zod").ZodNullable<import("zod").ZodNumber>;
1607
- }, "strip", import("zod").ZodTypeAny, {
1597
+ lastViewedByClient: z.ZodNullable<z.ZodString>;
1598
+ lastViewedByClientTimestamp: z.ZodNullable<z.ZodNumber>;
1599
+ hires: z.ZodNullable<z.ZodNumber>;
1600
+ interviewing: z.ZodNullable<z.ZodNumber>;
1601
+ invitesSent: z.ZodNullable<z.ZodNumber>;
1602
+ unansweredInvites: z.ZodNullable<z.ZodNumber>;
1603
+ updatedAt: z.ZodNullable<z.ZodNumber>;
1604
+ }, "strip", z.ZodTypeAny, {
1608
1605
  updatedAt: number | null;
1609
1606
  proposals: {
1610
1607
  min: number | null;
@@ -1629,13 +1626,13 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1629
1626
  invitesSent: number | null;
1630
1627
  unansweredInvites: number | null;
1631
1628
  }>>>>;
1632
- activityDelta: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
1633
- proposals: import("zod").ZodNumber;
1634
- interviewing: import("zod").ZodNumber;
1635
- hires: import("zod").ZodNumber;
1636
- invitesSent: import("zod").ZodNumber;
1637
- unansweredInvites: import("zod").ZodNumber;
1638
- }, "strip", import("zod").ZodTypeAny, {
1629
+ activityDelta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1630
+ proposals: z.ZodNumber;
1631
+ interviewing: z.ZodNumber;
1632
+ hires: z.ZodNumber;
1633
+ invitesSent: z.ZodNumber;
1634
+ unansweredInvites: z.ZodNumber;
1635
+ }, "strip", z.ZodTypeAny, {
1639
1636
  proposals: number;
1640
1637
  hires: number;
1641
1638
  interviewing: number;
@@ -1649,38 +1646,38 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1649
1646
  unansweredInvites: number;
1650
1647
  }>>>;
1651
1648
  }, {
1652
- jobId: import("zod").ZodString;
1653
- campaignId: import("zod").ZodString;
1654
- organizationId: import("zod").ZodString;
1655
- scrapedAt: import("zod").ZodNullable<import("zod").ZodNumber>;
1656
- updatedAt: import("zod").ZodNullable<import("zod").ZodNumber>;
1657
- suitabilityRating: import("zod").ZodNullable<import("zod").ZodNumber>;
1658
- suitabilityReason: import("zod").ZodNullable<import("zod").ZodString>;
1659
- proposal: import("zod").ZodNullable<import("zod").ZodString>;
1660
- proposalId: import("zod").ZodOptional<import("zod").ZodString>;
1661
- questionAnswerPairs: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
1662
- question: import("zod").ZodString;
1663
- answer: import("zod").ZodString;
1664
- }, "strip", import("zod").ZodTypeAny, {
1649
+ jobId: z.ZodString;
1650
+ campaignId: z.ZodString;
1651
+ organizationId: z.ZodString;
1652
+ scrapedAt: z.ZodNullable<z.ZodNumber>;
1653
+ updatedAt: z.ZodNullable<z.ZodNumber>;
1654
+ suitabilityRating: z.ZodNullable<z.ZodNumber>;
1655
+ suitabilityReason: z.ZodNullable<z.ZodString>;
1656
+ proposal: z.ZodNullable<z.ZodString>;
1657
+ proposalId: z.ZodOptional<z.ZodString>;
1658
+ questionAnswerPairs: z.ZodNullable<z.ZodArray<z.ZodObject<{
1659
+ question: z.ZodString;
1660
+ answer: z.ZodString;
1661
+ }, "strip", z.ZodTypeAny, {
1665
1662
  question: string;
1666
1663
  answer: string;
1667
1664
  }, {
1668
1665
  question: string;
1669
1666
  answer: string;
1670
1667
  }>, "many">>;
1671
- agentStatus: import("zod").ZodNullable<import("zod").ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
1672
- leadStatus: import("zod").ZodNullable<import("zod").ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "viewed", "replied", "won"]>>;
1673
- biddingAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
1674
- boosted: import("zod").ZodNullable<import("zod").ZodBoolean>;
1675
- boostingAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
1676
- biddingTaskScheduled: import("zod").ZodNullable<import("zod").ZodBoolean>;
1677
- scheduledBiddingTime: import("zod").ZodNullable<import("zod").ZodNumber>;
1678
- wonAmount: import("zod").ZodOptional<import("zod").ZodNumber>;
1679
- feedbackCheckTaskId: import("zod").ZodNullable<import("zod").ZodString>;
1680
- bidDecision: import("zod").ZodNullable<import("zod").ZodEnum<["proceeded", "rejected"]>>;
1681
- rejectedFeedback: import("zod").ZodNullable<import("zod").ZodString>;
1682
- applicationId: import("zod").ZodNullable<import("zod").ZodString>;
1683
- }>, "processed">, "strip", import("zod").ZodTypeAny, {
1668
+ agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
1669
+ leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>>;
1670
+ biddingAmount: z.ZodNullable<z.ZodNumber>;
1671
+ boosted: z.ZodNullable<z.ZodBoolean>;
1672
+ boostingAmount: z.ZodNullable<z.ZodNumber>;
1673
+ biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
1674
+ scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
1675
+ wonAmount: z.ZodOptional<z.ZodNumber>;
1676
+ feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
1677
+ bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
1678
+ rejectedFeedback: z.ZodNullable<z.ZodString>;
1679
+ applicationId: z.ZodNullable<z.ZodString>;
1680
+ }>, "processed">, "strip", z.ZodTypeAny, {
1684
1681
  uid: string | null;
1685
1682
  title: string | null;
1686
1683
  category: string | null;
@@ -1786,7 +1783,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1786
1783
  answer: string;
1787
1784
  }[] | null;
1788
1785
  agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
1789
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
1786
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
1790
1787
  biddingTaskScheduled: boolean | null;
1791
1788
  scheduledBiddingTime: number | null;
1792
1789
  feedbackCheckTaskId: string | null;
@@ -1921,7 +1918,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1921
1918
  answer: string;
1922
1919
  }[] | null;
1923
1920
  agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
1924
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
1921
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
1925
1922
  biddingTaskScheduled: boolean | null;
1926
1923
  scheduledBiddingTime: number | null;
1927
1924
  feedbackCheckTaskId: string | null;
@@ -1951,35 +1948,35 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1951
1948
  proposalId?: string | undefined;
1952
1949
  wonAmount?: number | undefined;
1953
1950
  }>;
1954
- bidder: import("zod").ZodObject<{
1955
- id: import("zod").ZodString;
1956
- provider: import("zod").ZodEnum<["user-provided", "lancer-provided"]>;
1957
- email: import("zod").ZodString;
1958
- password: import("zod").ZodString;
1959
- isConnecting: import("zod").ZodNullable<import("zod").ZodBoolean>;
1960
- securityQuestionAnswer: import("zod").ZodNullable<import("zod").ZodString>;
1961
- assignedOrganizations: import("zod").ZodArray<import("zod").ZodString, "many">;
1962
- googleOauthTokens: import("zod").ZodNullable<import("zod").ZodAny>;
1963
- lastUsed: import("zod").ZodNullable<import("zod").ZodNumber>;
1964
- multiLoginProfileId: import("zod").ZodNullable<import("zod").ZodString>;
1965
- proxyId: import("zod").ZodNullable<import("zod").ZodString>;
1966
- profilePhotoUrl: import("zod").ZodNullable<import("zod").ZodString>;
1967
- name: import("zod").ZodNullable<import("zod").ZodString>;
1968
- agencies: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
1969
- name: import("zod").ZodString;
1970
- logoUrl: import("zod").ZodNullable<import("zod").ZodString>;
1971
- contractors: import("zod").ZodArray<import("zod").ZodObject<{
1972
- name: import("zod").ZodString;
1973
- specializedProfiles: import("zod").ZodArray<import("zod").ZodString, "many">;
1974
- }, "strip", import("zod").ZodTypeAny, {
1951
+ bidder: z.ZodObject<{
1952
+ id: z.ZodString;
1953
+ provider: z.ZodEnum<["user-provided", "lancer-provided"]>;
1954
+ email: z.ZodString;
1955
+ password: z.ZodString;
1956
+ isConnecting: z.ZodNullable<z.ZodBoolean>;
1957
+ securityQuestionAnswer: z.ZodNullable<z.ZodString>;
1958
+ assignedOrganizations: z.ZodArray<z.ZodString, "many">;
1959
+ googleOauthTokens: z.ZodNullable<z.ZodAny>;
1960
+ lastUsed: z.ZodNullable<z.ZodNumber>;
1961
+ multiLoginProfileId: z.ZodNullable<z.ZodString>;
1962
+ proxyId: z.ZodNullable<z.ZodString>;
1963
+ profilePhotoUrl: z.ZodNullable<z.ZodString>;
1964
+ name: z.ZodNullable<z.ZodString>;
1965
+ agencies: z.ZodNullable<z.ZodArray<z.ZodObject<{
1966
+ name: z.ZodString;
1967
+ logoUrl: z.ZodNullable<z.ZodString>;
1968
+ contractors: z.ZodArray<z.ZodObject<{
1969
+ name: z.ZodString;
1970
+ specializedProfiles: z.ZodArray<z.ZodString, "many">;
1971
+ }, "strip", z.ZodTypeAny, {
1975
1972
  name: string;
1976
1973
  specializedProfiles: string[];
1977
1974
  }, {
1978
1975
  name: string;
1979
1976
  specializedProfiles: string[];
1980
1977
  }>, "many">;
1981
- organizationId: import("zod").ZodString;
1982
- }, "strip", import("zod").ZodTypeAny, {
1978
+ organizationId: z.ZodString;
1979
+ }, "strip", z.ZodTypeAny, {
1983
1980
  name: string;
1984
1981
  organizationId: string;
1985
1982
  logoUrl: string | null;
@@ -1996,12 +1993,12 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1996
1993
  specializedProfiles: string[];
1997
1994
  }[];
1998
1995
  }>, "many">>;
1999
- instanceId: import("zod").ZodNullable<import("zod").ZodString>;
2000
- createdAt: import("zod").ZodNumber;
2001
- updatedAt: import("zod").ZodNumber;
2002
- region: import("zod").ZodEnum<["all", "Worldwide", "UKOnly", "USOnly"]>;
2003
- isProtected: import("zod").ZodOptional<import("zod").ZodBoolean>;
2004
- }, "strip", import("zod").ZodTypeAny, {
1996
+ instanceId: z.ZodNullable<z.ZodString>;
1997
+ createdAt: z.ZodNumber;
1998
+ updatedAt: z.ZodNumber;
1999
+ region: z.ZodEnum<["all", "Worldwide", "UKOnly", "USOnly"]>;
2000
+ isProtected: z.ZodOptional<z.ZodBoolean>;
2001
+ }, "strip", z.ZodTypeAny, {
2005
2002
  region: "USOnly" | "UKOnly" | "Worldwide" | "all";
2006
2003
  id: string;
2007
2004
  name: string | null;
@@ -2058,8 +2055,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
2058
2055
  googleOauthTokens?: any;
2059
2056
  isProtected?: boolean | undefined;
2060
2057
  }>;
2061
- firstExecutionTime: import("zod").ZodNumber;
2062
- }, "strip", import("zod").ZodTypeAny, {
2058
+ firstExecutionTime: z.ZodNumber;
2059
+ }, "strip", z.ZodTypeAny, {
2063
2060
  userId: string;
2064
2061
  campaign: {
2065
2062
  id: string;
@@ -2137,7 +2134,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
2137
2134
  biddingFixedHourlyRate: number | null;
2138
2135
  biddingHourlyRatePercentage: number | null;
2139
2136
  bidWithWarning: "skip" | "bid";
2140
- leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won", number>> | null;
2137
+ leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won", number>> | null;
2141
2138
  expenses: {
2142
2139
  biddingAmount: number;
2143
2140
  boostingAmount: number;
@@ -2342,7 +2339,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
2342
2339
  answer: string;
2343
2340
  }[] | null;
2344
2341
  agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
2345
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
2342
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
2346
2343
  biddingTaskScheduled: boolean | null;
2347
2344
  scheduledBiddingTime: number | null;
2348
2345
  feedbackCheckTaskId: string | null;
@@ -2475,7 +2472,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
2475
2472
  biddingFixedHourlyRate: number | null;
2476
2473
  biddingHourlyRatePercentage: number | null;
2477
2474
  bidWithWarning: "skip" | "bid";
2478
- leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won", number>> | null;
2475
+ leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won", number>> | null;
2479
2476
  expenses: {
2480
2477
  biddingAmount?: number | undefined;
2481
2478
  boostingAmount?: number | undefined;
@@ -2685,7 +2682,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
2685
2682
  answer: string;
2686
2683
  }[] | null;
2687
2684
  agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
2688
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
2685
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
2689
2686
  biddingTaskScheduled: boolean | null;
2690
2687
  scheduledBiddingTime: number | null;
2691
2688
  feedbackCheckTaskId: string | null;
@@ -2746,18 +2743,9 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
2746
2743
  };
2747
2744
  firstExecutionTime: number;
2748
2745
  }>;
2749
- export interface ScrapePayload extends infer<typeof scrapePayloadSchema> {
2750
- }
2751
- export interface ScrapeUserProfileRequest extends infer<typeof scrapeUserProfileRequestSchema> {
2752
- }
2753
- export interface ScrapeJobPayload extends infer<typeof scrapeJobPayloadSchema> {
2754
- }
2755
- export interface ProcessFeedPayload extends infer<typeof processFeedPayloadSchema> {
2756
- }
2757
- export interface ScrapeJobActivityPayload extends infer<typeof scrapeJobActivityPayloadSchema> {
2758
- }
2759
- export interface CheckLeadStatusPayload extends infer<typeof checkLeadStatusPayloadSchema> {
2760
- bidder: BidderAccount;
2761
- lead: Lead;
2762
- campaign: Campaign;
2763
- }
2746
+ export type ScrapePayload = z.infer<typeof scrapePayloadSchema>;
2747
+ export type ScrapeUserProfileRequest = z.infer<typeof scrapeUserProfileRequestSchema>;
2748
+ export type ScrapeJobPayload = z.infer<typeof scrapeJobPayloadSchema>;
2749
+ export type ProcessFeedPayload = z.infer<typeof processFeedPayloadSchema>;
2750
+ export type ScrapeJobActivityPayload = z.infer<typeof scrapeJobActivityPayloadSchema>;
2751
+ export type CheckLeadStatusPayload = z.infer<typeof checkLeadStatusPayloadSchema>;