lancer-shared 1.2.31 → 1.2.33

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.
Files changed (246) hide show
  1. package/dist/bundle.cjs.js +35 -34
  2. package/dist/constants/account-status.d.ts +3 -0
  3. package/dist/constants/account-status.js +17 -0
  4. package/dist/constants/collections.d.ts +13 -0
  5. package/dist/constants/collections.js +16 -0
  6. package/dist/constants/common-questions.js +60 -0
  7. package/dist/constants/index.js +40 -0
  8. package/dist/constants/job-filter-options.js +268 -0
  9. package/dist/constants/job-status.js +26 -0
  10. package/dist/constants/mappings/countryMapping.js +122 -0
  11. package/dist/constants/mappings/regionMapping.js +242 -0
  12. package/dist/constants/organization.d.ts +2 -0
  13. package/dist/constants/proxies.d.ts +4 -0
  14. package/dist/constants/routes.d.ts +4 -0
  15. package/dist/constants/routes.js +114 -0
  16. package/dist/constants/upwork-accounts.js +21 -0
  17. package/dist/constants/upwork-filters.d.ts +5 -0
  18. package/dist/constants/upwork-filters.js +75 -0
  19. package/dist/index.js +20 -0
  20. package/dist/schemas/account/account-status.js +11 -0
  21. package/dist/schemas/account/bidder-account.d.ts +3 -1
  22. package/dist/schemas/account/bidder-account.js +37 -0
  23. package/dist/schemas/account/exceptions/bidder-account-alreay-connected.exception.d.ts +6 -0
  24. package/dist/schemas/account/exceptions/index.d.ts +1 -0
  25. package/dist/schemas/account/exceptions/no-bidder-accounts-available.d.ts +5 -0
  26. package/dist/schemas/account/index.js +19 -0
  27. package/dist/schemas/account/manager-account.d.ts +116 -0
  28. package/dist/schemas/account/manager-account.js +38 -0
  29. package/dist/schemas/account/scraper-account.d.ts +64 -133
  30. package/dist/schemas/account/scraper-account.js +37 -0
  31. package/dist/schemas/ai/ai-config.d.ts +36 -0
  32. package/dist/schemas/ai/ai-config.js +12 -0
  33. package/dist/schemas/ai/index.d.ts +3 -0
  34. package/dist/schemas/ai/index.js +19 -0
  35. package/dist/schemas/ai/proposal.d.ts +82 -0
  36. package/dist/schemas/ai/proposal.js +16 -0
  37. package/dist/schemas/ai/suitability.d.ts +37 -0
  38. package/dist/schemas/ai/suitability.js +17 -0
  39. package/dist/schemas/ai-config/ai-config.d.ts +39 -0
  40. package/dist/schemas/ai-config/ai-config.js +12 -0
  41. package/dist/schemas/ai-config/index.d.ts +1 -0
  42. package/dist/schemas/ai-config/index.js +17 -0
  43. package/dist/schemas/bid/bid-result.js +15 -0
  44. package/dist/schemas/bid/bid-status.d.ts +30 -0
  45. package/dist/schemas/bid/bid-status.js +15 -0
  46. package/dist/schemas/bid/bid.js +36 -0
  47. package/dist/schemas/bid/exceptions/base-exception.d.ts +4 -0
  48. package/dist/schemas/bid/exceptions/evalute-element.exception.d.ts +5 -0
  49. package/dist/schemas/bid/exceptions/wait-for-function-timeout.d.ts +5 -0
  50. package/dist/schemas/bid/index.js +18 -0
  51. package/dist/schemas/bidding/index.d.ts +1 -0
  52. package/dist/schemas/bidding/index.js +17 -0
  53. package/dist/schemas/bidding/proposal-bidding-status.d.ts +26 -0
  54. package/dist/schemas/bidding/proposal-bidding-status.js +18 -0
  55. package/dist/schemas/bidding/proposal-dto.d.ts +26 -0
  56. package/dist/schemas/bidding/proposal-dto.js +18 -0
  57. package/dist/schemas/campaign/campaign-ai-metrics.js +9 -0
  58. package/dist/schemas/campaign/campaign-analytics.js +41 -0
  59. package/dist/schemas/campaign/campaign-expenses.js +9 -0
  60. package/dist/schemas/campaign/campaign-insights.js +31 -0
  61. package/dist/schemas/campaign/campaign-integrations.d.ts +82 -0
  62. package/dist/schemas/campaign/campaign-integrations.js +16 -0
  63. package/dist/schemas/campaign/campaign-job-count.d.ts +2 -0
  64. package/dist/schemas/campaign/campaign-job-count.js +6 -0
  65. package/dist/schemas/campaign/campaign.js +44 -0
  66. package/dist/schemas/campaign/index.js +23 -0
  67. package/dist/schemas/chat-message/chat-message.d.ts +31 -0
  68. package/dist/schemas/chat-message/chat-message.js +13 -0
  69. package/dist/schemas/chat-message/index.d.ts +1 -0
  70. package/dist/schemas/chat-message/index.js +17 -0
  71. package/dist/schemas/config/agency-config.d.ts +17 -0
  72. package/dist/schemas/config/agency-config.js +10 -0
  73. package/dist/schemas/config/index.d.ts +1 -0
  74. package/dist/schemas/config/index.js +17 -0
  75. package/dist/schemas/index.js +32 -0
  76. package/dist/schemas/job/index.js +19 -0
  77. package/dist/schemas/job/job-details.d.ts +335 -0
  78. package/dist/schemas/job/job-details.js +29 -0
  79. package/dist/schemas/job/job-note.d.ts +83 -0
  80. package/dist/schemas/job/job-note.js +30 -0
  81. package/dist/schemas/job/job-pipeline.d.ts +74 -0
  82. package/dist/schemas/job/job-pipeline.js +29 -0
  83. package/dist/schemas/job/job-status.d.ts +3 -0
  84. package/dist/schemas/job/job-status.js +27 -0
  85. package/dist/schemas/job/job-suitability.d.ts +12 -0
  86. package/dist/schemas/job/job-suitability.js +13 -0
  87. package/dist/schemas/job/job.d.ts +1160 -0
  88. package/dist/schemas/job/job.js +90 -0
  89. package/dist/schemas/job/pipeline-job.d.ts +608 -0
  90. package/dist/schemas/job/pipeline-job.js +43 -0
  91. package/dist/schemas/job/upwork-job.d.ts +334 -0
  92. package/dist/schemas/job/upwork-job.js +60 -0
  93. package/dist/schemas/job-filters/index.d.ts +1 -0
  94. package/dist/schemas/job-filters/index.js +17 -0
  95. package/dist/schemas/job-filters/job-filters.d.ts +241 -0
  96. package/dist/schemas/job-filters/job-filters.js +87 -0
  97. package/dist/schemas/knowledge-object/index.d.ts +1 -0
  98. package/dist/schemas/knowledge-object/index.js +17 -0
  99. package/dist/schemas/knowledge-object/knowledge-object.d.ts +128 -0
  100. package/dist/schemas/knowledge-object/knowledge-object.js +47 -0
  101. package/dist/schemas/lead/index.js +19 -0
  102. package/dist/schemas/lead/lead-note.d.ts +83 -0
  103. package/dist/schemas/lead/lead-note.js +30 -0
  104. package/dist/schemas/lead/lead-status.js +26 -0
  105. package/dist/schemas/lead/lead.d.ts +1897 -0
  106. package/dist/schemas/lead/lead.js +143 -0
  107. package/dist/schemas/lead/nuxt.d.ts +1664 -0
  108. package/dist/schemas/logger/index.js +17 -0
  109. package/dist/schemas/logger/log-event.js +66 -0
  110. package/dist/schemas/organization/index.js +17 -0
  111. package/dist/schemas/organization/organization.d.ts +70 -0
  112. package/dist/schemas/organization/organization.js +19 -0
  113. package/dist/schemas/proxy/index.js +17 -0
  114. package/dist/schemas/proxy/proxy.js +23 -0
  115. package/dist/schemas/saved-search/index.js +12 -0
  116. package/dist/schemas/scraper/index.js +18 -0
  117. package/dist/schemas/scraper/scrape-payload.d.ts +759 -178
  118. package/dist/schemas/scraper/scrape-payload.js +16 -0
  119. package/dist/schemas/scraper/scrape-response.d.ts +345 -0
  120. package/dist/schemas/scraper/scrape-response.js +9 -0
  121. package/dist/schemas/scraper/scrape-result.d.ts +1 -7
  122. package/dist/schemas/scraper/scrape-result.js +23 -0
  123. package/dist/schemas/shared.js +16 -0
  124. package/dist/schemas/time-filter/index.js +9 -0
  125. package/dist/schemas/upwork-account/index.d.ts +3 -0
  126. package/dist/schemas/upwork-account/index.js +19 -0
  127. package/dist/schemas/upwork-account/upwork-account-status.d.ts +2 -0
  128. package/dist/schemas/upwork-account/upwork-account-status.js +11 -0
  129. package/dist/schemas/upwork-account/upwork-business-manager-account.d.ts +95 -0
  130. package/dist/schemas/upwork-account/upwork-business-manager-account.js +35 -0
  131. package/dist/schemas/upwork-account/upwork-scraper-account.d.ts +92 -0
  132. package/dist/schemas/upwork-account/upwork-scraper-account.js +31 -0
  133. package/dist/schemas/upwork-account/upwork-scraping-account.d.ts +90 -0
  134. package/dist/schemas/upwork-account/upwork-scraping-account.js +30 -0
  135. package/dist/schemas/user/index.js +55 -0
  136. package/dist/types/account/account-status.d.ts +3 -0
  137. package/dist/types/account/account-status.js +2 -0
  138. package/dist/types/account/bidder-account.d.ts +7 -0
  139. package/dist/types/account/bidder-account.js +2 -0
  140. package/dist/types/account/index.d.ts +3 -0
  141. package/dist/types/account/index.js +19 -0
  142. package/dist/types/account/manager-account.d.ts +7 -0
  143. package/dist/types/account/manager-account.js +2 -0
  144. package/dist/types/account/scraper-account.d.ts +5 -0
  145. package/dist/types/account/scraper-account.js +2 -0
  146. package/dist/types/ai/ai-config.d.ts +6 -0
  147. package/dist/types/ai/ai-config.js +2 -0
  148. package/dist/types/ai/index.d.ts +3 -0
  149. package/dist/types/ai/index.js +19 -0
  150. package/dist/types/ai/proposal.d.ts +10 -0
  151. package/dist/types/ai/proposal.js +2 -0
  152. package/dist/types/ai/suitability.d.ts +6 -0
  153. package/dist/types/ai/suitability.js +2 -0
  154. package/dist/types/ai-config/ai-config.d.ts +6 -0
  155. package/dist/types/ai-config/ai-config.js +2 -0
  156. package/dist/types/ai-config/index.d.ts +1 -0
  157. package/dist/types/ai-config/index.js +17 -0
  158. package/dist/types/bid/bid-result.d.ts +5 -0
  159. package/dist/types/bid/bid-result.js +2 -0
  160. package/dist/types/bid/bid-status.d.ts +5 -0
  161. package/dist/types/bid/bid-status.js +2 -0
  162. package/dist/types/bid/bid.d.ts +9 -0
  163. package/dist/types/bid/bid.js +2 -0
  164. package/dist/types/bid/index.d.ts +2 -0
  165. package/dist/types/bid/index.js +18 -0
  166. package/dist/types/bidding/index.d.ts +1 -0
  167. package/dist/types/bidding/index.js +17 -0
  168. package/dist/types/bidding/proposal-bidding-status.d.ts +3 -0
  169. package/dist/types/bidding/proposal-bidding-status.js +2 -0
  170. package/dist/types/bidding/proposal-dto.d.ts +3 -0
  171. package/dist/types/bidding/proposal-dto.js +2 -0
  172. package/dist/types/campaign/campaign-analytics.d.ts +7 -0
  173. package/dist/types/campaign/campaign-analytics.js +2 -0
  174. package/dist/types/campaign/campaign-expenses.d.ts +3 -0
  175. package/dist/types/campaign/campaign-expenses.js +2 -0
  176. package/dist/types/campaign/campaign-insights.js +2 -0
  177. package/dist/types/campaign/campaign-integrations.d.ts +6 -0
  178. package/dist/types/campaign/campaign-integrations.js +2 -0
  179. package/dist/types/campaign/campaign-job-count.d.ts +4 -0
  180. package/dist/types/campaign/campaign-job-count.js +2 -0
  181. package/dist/types/campaign/campaign.js +2 -0
  182. package/dist/types/campaign/index.js +22 -0
  183. package/dist/types/chat-message/chat-message.d.ts +4 -0
  184. package/dist/types/chat-message/chat-message.js +2 -0
  185. package/dist/types/chat-message/index.d.ts +1 -0
  186. package/dist/types/chat-message/index.js +17 -0
  187. package/dist/types/config/agency-config.d.ts +4 -0
  188. package/dist/types/config/agency-config.js +2 -0
  189. package/dist/types/config/index.d.ts +1 -0
  190. package/dist/types/config/index.js +17 -0
  191. package/dist/types/index.d.ts +15 -0
  192. package/dist/types/index.js +29 -0
  193. package/dist/types/job/index.d.ts +48 -0
  194. package/dist/types/job/index.js +19 -0
  195. package/dist/types/job/job-details.d.ts +36 -0
  196. package/dist/types/job/job-details.js +2 -0
  197. package/dist/types/job/job-note.d.ts +10 -0
  198. package/dist/types/job/job-note.js +2 -0
  199. package/dist/types/job/job-pipeline.d.ts +4 -0
  200. package/dist/types/job/job-pipeline.js +2 -0
  201. package/dist/types/job/job-status.d.ts +5 -0
  202. package/dist/types/job/job-status.js +12 -0
  203. package/dist/types/job/job-suitability.d.ts +3 -0
  204. package/dist/types/job/job-suitability.js +2 -0
  205. package/dist/types/job/job.d.ts +36 -0
  206. package/dist/types/job/job.js +2 -0
  207. package/dist/types/job/nuxt.d.ts +4 -0
  208. package/dist/types/job-filters/index.d.ts +1 -0
  209. package/dist/types/job-filters/index.js +17 -0
  210. package/dist/types/job-filters/job-filters.d.ts +4 -0
  211. package/dist/types/job-filters/job-filters.js +2 -0
  212. package/dist/types/knowledge-object/index.d.ts +1 -0
  213. package/dist/types/knowledge-object/index.js +17 -0
  214. package/dist/types/knowledge-object/knowledge-object.d.ts +4 -0
  215. package/dist/types/knowledge-object/knowledge-object.js +2 -0
  216. package/dist/types/logger/index.d.ts +1 -0
  217. package/dist/types/logger/index.js +17 -0
  218. package/dist/types/logger/log-event.js +2 -0
  219. package/dist/types/saved-search/index.d.ts +6 -0
  220. package/dist/types/saved-search/index.js +2 -0
  221. package/dist/types/scraper/index.d.ts +2 -0
  222. package/dist/types/scraper/index.js +18 -0
  223. package/dist/types/scraper/scrape-payload.d.ts +10 -0
  224. package/dist/types/scraper/scrape-payload.js +2 -0
  225. package/dist/types/scraper/scrape-response.d.ts +4 -0
  226. package/dist/types/scraper/scrape-response.js +2 -0
  227. package/dist/types/scraper/scrape-result.d.ts +8 -0
  228. package/dist/types/scraper/scrape-result.js +2 -0
  229. package/dist/types/shared.d.ts +8 -0
  230. package/dist/types/time-filter/index.d.ts +3 -0
  231. package/dist/types/time-filter/index.js +2 -0
  232. package/dist/types/transaction/index.d.ts +4 -0
  233. package/dist/types/upwork-account/index.d.ts +3 -0
  234. package/dist/types/upwork-account/index.js +19 -0
  235. package/dist/types/upwork-account/upwork-account-status.d.ts +3 -0
  236. package/dist/types/upwork-account/upwork-account-status.js +2 -0
  237. package/dist/types/upwork-account/upwork-business-manager-account.d.ts +7 -0
  238. package/dist/types/upwork-account/upwork-business-manager-account.js +2 -0
  239. package/dist/types/upwork-account/upwork-scraping-account.d.ts +5 -0
  240. package/dist/types/upwork-account/upwork-scraping-account.js +2 -0
  241. package/dist/types/usage/index.d.ts +6 -0
  242. package/dist/types/user/index.d.ts +15 -0
  243. package/dist/types/user/index.js +2 -0
  244. package/dist/utils/index.js +17 -0
  245. package/dist/utils/try-catch.js +25 -0
  246. package/package.json +1 -1
@@ -1,34 +1,17 @@
1
- import { infer } from "zod";
1
+ import { infer } from 'zod';
2
+ import { BidderAccount } from '../account';
2
3
  export declare const scrapePayloadSchema: import("zod").ZodObject<{
3
4
  latestJobsUrls: import("zod").ZodArray<import("zod").ZodString, "many">;
4
- cookies: import("zod").ZodArray<import("zod").ZodAny, "many">;
5
- username: import("zod").ZodString;
6
- password: import("zod").ZodString;
7
5
  }, "strip", import("zod").ZodTypeAny, {
8
6
  latestJobsUrls: string[];
9
- cookies: any[];
10
- username: string;
11
- password: string;
12
7
  }, {
13
8
  latestJobsUrls: string[];
14
- cookies: any[];
15
- username: string;
16
- password: string;
17
9
  }>;
18
10
  export declare const scrapeUserProfileRequestSchema: import("zod").ZodObject<{
19
11
  profileUrl: import("zod").ZodString;
20
- cookies: import("zod").ZodArray<import("zod").ZodAny, "many">;
21
- username: import("zod").ZodString;
22
- password: import("zod").ZodString;
23
12
  }, "strip", import("zod").ZodTypeAny, {
24
- cookies: any[];
25
- username: string;
26
- password: string;
27
13
  profileUrl: string;
28
14
  }, {
29
- cookies: any[];
30
- username: string;
31
- password: string;
32
15
  profileUrl: string;
33
16
  }>;
34
17
  export declare const scrapeJobPayloadSchema: import("zod").ZodObject<{
@@ -120,7 +103,442 @@ export declare const scrapeJobActivityPayloadSchema: import("zod").ZodObject<{
120
103
  }>;
121
104
  export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
122
105
  userId: import("zod").ZodString;
123
- campaignId: import("zod").ZodString;
106
+ tmp: import("zod").ZodString;
107
+ campaign: import("zod").ZodObject<{
108
+ id: import("zod").ZodString;
109
+ name: import("zod").ZodString;
110
+ filters: import("zod").ZodObject<{
111
+ keywords: import("zod").ZodNullable<import("zod").ZodObject<{
112
+ includes: import("zod").ZodNullable<import("zod").ZodString>;
113
+ excludes: import("zod").ZodNullable<import("zod").ZodString>;
114
+ }, "strip", import("zod").ZodTypeAny, {
115
+ includes: string | null;
116
+ excludes: string | null;
117
+ }, {
118
+ includes: string | null;
119
+ excludes: string | null;
120
+ }>>;
121
+ isFeatured: import("zod").ZodNullable<import("zod").ZodEnum<["all", "true", "false"]>>;
122
+ regions: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["all", "Worldwide", "UKOnly", "USOnly"]>, "many">>;
123
+ categories: import("zod").ZodNullable<import("zod").ZodObject<{
124
+ 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">>;
125
+ 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">>;
126
+ }, "strip", import("zod").ZodTypeAny, {
127
+ 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;
128
+ 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;
129
+ }, {
130
+ 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;
131
+ 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;
132
+ }>>;
133
+ payment: import("zod").ZodNullable<import("zod").ZodObject<{
134
+ paymentType: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Fixed-price", "Hourly", "Unspecified"]>, "many">>;
135
+ minFixedPrice: import("zod").ZodNullable<import("zod").ZodNumber>;
136
+ maxFixedPrice: import("zod").ZodNullable<import("zod").ZodNumber>;
137
+ minHourlyRate: import("zod").ZodNullable<import("zod").ZodNumber>;
138
+ maxHourlyRate: import("zod").ZodNullable<import("zod").ZodNumber>;
139
+ }, "strip", import("zod").ZodTypeAny, {
140
+ paymentType: ("Unspecified" | "Fixed-price" | "Hourly")[] | null;
141
+ minFixedPrice: number | null;
142
+ maxFixedPrice: number | null;
143
+ minHourlyRate: number | null;
144
+ maxHourlyRate: number | null;
145
+ }, {
146
+ paymentType: ("Unspecified" | "Fixed-price" | "Hourly")[] | null;
147
+ minFixedPrice: number | null;
148
+ maxFixedPrice: number | null;
149
+ minHourlyRate: number | null;
150
+ maxHourlyRate: number | null;
151
+ }>>;
152
+ 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">>;
153
+ experienceLevel: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Entry level", "Intermediate", "Expert"]>, "many">>;
154
+ questions: import("zod").ZodNullable<import("zod").ZodObject<{
155
+ hasQuestions: import("zod").ZodDefault<import("zod").ZodEnum<["all", "yes", "no"]>>;
156
+ }, "strip", import("zod").ZodTypeAny, {
157
+ hasQuestions: "all" | "yes" | "no";
158
+ }, {
159
+ hasQuestions?: "all" | "yes" | "no" | undefined;
160
+ }>>;
161
+ engagementType: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Less than 30 hrs/week", "More than 30 hrs/week", "Unspecified"]>, "many">>;
162
+ clientInfo: import("zod").ZodNullable<import("zod").ZodObject<{
163
+ isPaymentVerified: import("zod").ZodDefault<import("zod").ZodEnum<["all", "true", "false"]>>;
164
+ isPhoneVerified: import("zod").ZodDefault<import("zod").ZodEnum<["all", "true", "false"]>>;
165
+ enterpriseClient: import("zod").ZodDefault<import("zod").ZodEnum<["all", "true", "false"]>>;
166
+ clientLocationIncludes: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString, "many">>;
167
+ clientLocationExcludes: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString, "many">>;
168
+ minReviewScore: import("zod").ZodNullable<import("zod").ZodNumber>;
169
+ minTotalSpent: import("zod").ZodNullable<import("zod").ZodNumber>;
170
+ minHireRate: import("zod").ZodNullable<import("zod").ZodNumber>;
171
+ 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">>;
172
+ 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">>;
173
+ minJobsPosted: import("zod").ZodNullable<import("zod").ZodNumber>;
174
+ minAvgHourlyRate: import("zod").ZodNullable<import("zod").ZodNumber>;
175
+ minNumReviews: import("zod").ZodNullable<import("zod").ZodNumber>;
176
+ memberSinceFrom: import("zod").ZodNullable<import("zod").ZodString>;
177
+ memberSinceTo: import("zod").ZodNullable<import("zod").ZodString>;
178
+ }, "strip", import("zod").ZodTypeAny, {
179
+ isPaymentVerified: "all" | "true" | "false";
180
+ isPhoneVerified: "all" | "true" | "false";
181
+ enterpriseClient: "all" | "true" | "false";
182
+ clientLocationIncludes: string[] | null;
183
+ clientLocationExcludes: string[] | null;
184
+ minReviewScore: number | null;
185
+ minTotalSpent: number | null;
186
+ minHireRate: number | null;
187
+ clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
188
+ companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
189
+ minJobsPosted: number | null;
190
+ minAvgHourlyRate: number | null;
191
+ minNumReviews: number | null;
192
+ memberSinceFrom: string | null;
193
+ memberSinceTo: string | null;
194
+ }, {
195
+ clientLocationIncludes: string[] | null;
196
+ clientLocationExcludes: string[] | null;
197
+ minReviewScore: number | null;
198
+ minTotalSpent: number | null;
199
+ minHireRate: number | null;
200
+ clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
201
+ companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
202
+ minJobsPosted: number | null;
203
+ minAvgHourlyRate: number | null;
204
+ minNumReviews: number | null;
205
+ memberSinceFrom: string | null;
206
+ memberSinceTo: string | null;
207
+ isPaymentVerified?: "all" | "true" | "false" | undefined;
208
+ isPhoneVerified?: "all" | "true" | "false" | undefined;
209
+ enterpriseClient?: "all" | "true" | "false" | undefined;
210
+ }>>;
211
+ vendorQualifications: import("zod").ZodNullable<import("zod").ZodObject<{
212
+ locationIncludes: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString, "many">>;
213
+ locationExcludes: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString, "many">>;
214
+ talentTypes: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Agency", "Independent", "Unspecified"]>, "many">>;
215
+ englishLevels: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<["Fluent", "Conversational", "Native or Bilingual", "Unspecified"]>, "many">>;
216
+ includeRisingTalent: import("zod").ZodNullable<import("zod").ZodString>;
217
+ requiredEarnings: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodLiteral<100>, import("zod").ZodLiteral<1000>, import("zod").ZodLiteral<10000>]>>;
218
+ requiredJSS: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodEnum<[">80%", ">90%", "100%", "RT"]>, "many">>;
219
+ }, "strip", import("zod").ZodTypeAny, {
220
+ locationIncludes: string[] | null;
221
+ locationExcludes: string[] | null;
222
+ talentTypes: ("Unspecified" | "Independent" | "Agency")[] | null;
223
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
224
+ includeRisingTalent: string | null;
225
+ requiredEarnings: 100 | 1000 | 10000 | null;
226
+ requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
227
+ }, {
228
+ locationIncludes: string[] | null;
229
+ locationExcludes: string[] | null;
230
+ talentTypes: ("Unspecified" | "Independent" | "Agency")[] | null;
231
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
232
+ includeRisingTalent: string | null;
233
+ requiredEarnings: 100 | 1000 | 10000 | null;
234
+ requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
235
+ }>>;
236
+ }, "strip", import("zod").ZodTypeAny, {
237
+ isFeatured: "all" | "true" | "false" | null;
238
+ keywords: {
239
+ includes: string | null;
240
+ excludes: string | null;
241
+ } | null;
242
+ regions: ("USOnly" | "UKOnly" | "Worldwide" | "all")[] | null;
243
+ categories: {
244
+ 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;
245
+ 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;
246
+ } | null;
247
+ payment: {
248
+ paymentType: ("Unspecified" | "Fixed-price" | "Hourly")[] | null;
249
+ minFixedPrice: number | null;
250
+ maxFixedPrice: number | null;
251
+ minHourlyRate: number | null;
252
+ maxHourlyRate: number | null;
253
+ } | null;
254
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
255
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
256
+ questions: {
257
+ hasQuestions: "all" | "yes" | "no";
258
+ } | null;
259
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
260
+ clientInfo: {
261
+ isPaymentVerified: "all" | "true" | "false";
262
+ isPhoneVerified: "all" | "true" | "false";
263
+ enterpriseClient: "all" | "true" | "false";
264
+ clientLocationIncludes: string[] | null;
265
+ clientLocationExcludes: string[] | null;
266
+ minReviewScore: number | null;
267
+ minTotalSpent: number | null;
268
+ minHireRate: number | null;
269
+ clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
270
+ companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
271
+ minJobsPosted: number | null;
272
+ minAvgHourlyRate: number | null;
273
+ minNumReviews: number | null;
274
+ memberSinceFrom: string | null;
275
+ memberSinceTo: string | null;
276
+ } | null;
277
+ vendorQualifications: {
278
+ locationIncludes: string[] | null;
279
+ locationExcludes: string[] | null;
280
+ talentTypes: ("Unspecified" | "Independent" | "Agency")[] | null;
281
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
282
+ includeRisingTalent: string | null;
283
+ requiredEarnings: 100 | 1000 | 10000 | null;
284
+ requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
285
+ } | null;
286
+ }, {
287
+ isFeatured: "all" | "true" | "false" | null;
288
+ keywords: {
289
+ includes: string | null;
290
+ excludes: string | null;
291
+ } | null;
292
+ regions: ("USOnly" | "UKOnly" | "Worldwide" | "all")[] | null;
293
+ categories: {
294
+ 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;
295
+ 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;
296
+ } | null;
297
+ payment: {
298
+ paymentType: ("Unspecified" | "Fixed-price" | "Hourly")[] | null;
299
+ minFixedPrice: number | null;
300
+ maxFixedPrice: number | null;
301
+ minHourlyRate: number | null;
302
+ maxHourlyRate: number | null;
303
+ } | null;
304
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
305
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
306
+ questions: {
307
+ hasQuestions?: "all" | "yes" | "no" | undefined;
308
+ } | null;
309
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
310
+ clientInfo: {
311
+ clientLocationIncludes: string[] | null;
312
+ clientLocationExcludes: string[] | null;
313
+ minReviewScore: number | null;
314
+ minTotalSpent: number | null;
315
+ minHireRate: number | null;
316
+ clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
317
+ companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
318
+ minJobsPosted: number | null;
319
+ minAvgHourlyRate: number | null;
320
+ minNumReviews: number | null;
321
+ memberSinceFrom: string | null;
322
+ memberSinceTo: string | null;
323
+ isPaymentVerified?: "all" | "true" | "false" | undefined;
324
+ isPhoneVerified?: "all" | "true" | "false" | undefined;
325
+ enterpriseClient?: "all" | "true" | "false" | undefined;
326
+ } | null;
327
+ vendorQualifications: {
328
+ locationIncludes: string[] | null;
329
+ locationExcludes: string[] | null;
330
+ talentTypes: ("Unspecified" | "Independent" | "Agency")[] | null;
331
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
332
+ includeRisingTalent: string | null;
333
+ requiredEarnings: 100 | 1000 | 10000 | null;
334
+ requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
335
+ } | null;
336
+ }>;
337
+ createdAt: import("zod").ZodNumber;
338
+ updatedAt: import("zod").ZodNumber;
339
+ confirmedBillingAt: import("zod").ZodNullable<import("zod").ZodNumber>;
340
+ automatedSuitability: import("zod").ZodNullable<import("zod").ZodBoolean>;
341
+ automatedBidding: import("zod").ZodNullable<import("zod").ZodBoolean>;
342
+ boostingEnabled: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodBoolean>>;
343
+ maximumBoost: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
344
+ minimumBoost: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
345
+ webhookUrl: import("zod").ZodNullable<import("zod").ZodString>;
346
+ monthlyBudget: import("zod").ZodNullable<import("zod").ZodNumber>;
347
+ suitabilityThreshold: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
348
+ boostingThreshold: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
349
+ leadCounts: import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodEnum<["leads", "contacted", "viewed", "replied", "interview", "won", "lost"]>, import("zod").ZodNumber>>;
350
+ expenses: import("zod").ZodObject<{
351
+ biddingAmount: import("zod").ZodDefault<import("zod").ZodNumber>;
352
+ boostingAmount: import("zod").ZodDefault<import("zod").ZodNumber>;
353
+ boosted: import("zod").ZodDefault<import("zod").ZodNumber>;
354
+ }, "strip", import("zod").ZodTypeAny, {
355
+ biddingAmount: number;
356
+ boostingAmount: number;
357
+ boosted: number;
358
+ }, {
359
+ biddingAmount?: number | undefined;
360
+ boostingAmount?: number | undefined;
361
+ boosted?: number | undefined;
362
+ }>;
363
+ notificationWebhooks: import("zod").ZodRecord<import("zod").ZodEnum<["suitableLead", "proposalSent", "proposalFailed", "proposalViewed", "proposalReplied", "lowConnects", "leadAnalyzed", "accountHealth"]>, import("zod").ZodNullable<import("zod").ZodString>>;
364
+ status: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"active">, import("zod").ZodLiteral<"draft">, import("zod").ZodLiteral<"paused">, import("zod").ZodLiteral<"error">]>>;
365
+ bidConfig: import("zod").ZodNullable<import("zod").ZodObject<{
366
+ agencyName: import("zod").ZodNullable<import("zod").ZodString>;
367
+ bidderId: import("zod").ZodNullable<import("zod").ZodString>;
368
+ contractorName: import("zod").ZodNullable<import("zod").ZodString>;
369
+ specialisedProfile: import("zod").ZodNullable<import("zod").ZodString>;
370
+ }, "strip", import("zod").ZodTypeAny, {
371
+ agencyName: string | null;
372
+ bidderId: string | null;
373
+ contractorName: string | null;
374
+ specialisedProfile: string | null;
375
+ }, {
376
+ agencyName: string | null;
377
+ bidderId: string | null;
378
+ contractorName: string | null;
379
+ specialisedProfile: string | null;
380
+ }>>;
381
+ }, "strip", import("zod").ZodTypeAny, {
382
+ id: string;
383
+ name: string;
384
+ filters: {
385
+ isFeatured: "all" | "true" | "false" | null;
386
+ keywords: {
387
+ includes: string | null;
388
+ excludes: string | null;
389
+ } | null;
390
+ regions: ("USOnly" | "UKOnly" | "Worldwide" | "all")[] | null;
391
+ categories: {
392
+ 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;
393
+ 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;
394
+ } | null;
395
+ payment: {
396
+ paymentType: ("Unspecified" | "Fixed-price" | "Hourly")[] | null;
397
+ minFixedPrice: number | null;
398
+ maxFixedPrice: number | null;
399
+ minHourlyRate: number | null;
400
+ maxHourlyRate: number | null;
401
+ } | null;
402
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
403
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
404
+ questions: {
405
+ hasQuestions: "all" | "yes" | "no";
406
+ } | null;
407
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
408
+ clientInfo: {
409
+ isPaymentVerified: "all" | "true" | "false";
410
+ isPhoneVerified: "all" | "true" | "false";
411
+ enterpriseClient: "all" | "true" | "false";
412
+ clientLocationIncludes: string[] | null;
413
+ clientLocationExcludes: string[] | null;
414
+ minReviewScore: number | null;
415
+ minTotalSpent: number | null;
416
+ minHireRate: number | null;
417
+ clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
418
+ companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
419
+ minJobsPosted: number | null;
420
+ minAvgHourlyRate: number | null;
421
+ minNumReviews: number | null;
422
+ memberSinceFrom: string | null;
423
+ memberSinceTo: string | null;
424
+ } | null;
425
+ vendorQualifications: {
426
+ locationIncludes: string[] | null;
427
+ locationExcludes: string[] | null;
428
+ talentTypes: ("Unspecified" | "Independent" | "Agency")[] | null;
429
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
430
+ includeRisingTalent: string | null;
431
+ requiredEarnings: 100 | 1000 | 10000 | null;
432
+ requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
433
+ } | null;
434
+ };
435
+ createdAt: number;
436
+ updatedAt: number;
437
+ confirmedBillingAt: number | null;
438
+ automatedSuitability: boolean | null;
439
+ automatedBidding: boolean | null;
440
+ boostingEnabled: boolean | null;
441
+ maximumBoost: number | null;
442
+ minimumBoost: number | null;
443
+ webhookUrl: string | null;
444
+ monthlyBudget: number | null;
445
+ suitabilityThreshold: number | null;
446
+ boostingThreshold: number | null;
447
+ leadCounts: Partial<Record<"leads" | "contacted" | "viewed" | "replied" | "interview" | "won" | "lost", number>> | null;
448
+ expenses: {
449
+ biddingAmount: number;
450
+ boostingAmount: number;
451
+ boosted: number;
452
+ };
453
+ notificationWebhooks: Partial<Record<"suitableLead" | "proposalSent" | "proposalFailed" | "proposalViewed" | "proposalReplied" | "lowConnects" | "leadAnalyzed" | "accountHealth", string | null>>;
454
+ bidConfig: {
455
+ agencyName: string | null;
456
+ bidderId: string | null;
457
+ contractorName: string | null;
458
+ specialisedProfile: string | null;
459
+ } | null;
460
+ status?: "active" | "draft" | "paused" | "error" | undefined;
461
+ }, {
462
+ id: string;
463
+ name: string;
464
+ filters: {
465
+ isFeatured: "all" | "true" | "false" | null;
466
+ keywords: {
467
+ includes: string | null;
468
+ excludes: string | null;
469
+ } | null;
470
+ regions: ("USOnly" | "UKOnly" | "Worldwide" | "all")[] | null;
471
+ categories: {
472
+ 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;
473
+ 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;
474
+ } | null;
475
+ payment: {
476
+ paymentType: ("Unspecified" | "Fixed-price" | "Hourly")[] | null;
477
+ minFixedPrice: number | null;
478
+ maxFixedPrice: number | null;
479
+ minHourlyRate: number | null;
480
+ maxHourlyRate: number | null;
481
+ } | null;
482
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
483
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
484
+ questions: {
485
+ hasQuestions?: "all" | "yes" | "no" | undefined;
486
+ } | null;
487
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
488
+ clientInfo: {
489
+ clientLocationIncludes: string[] | null;
490
+ clientLocationExcludes: string[] | null;
491
+ minReviewScore: number | null;
492
+ minTotalSpent: number | null;
493
+ minHireRate: number | null;
494
+ clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
495
+ companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
496
+ minJobsPosted: number | null;
497
+ minAvgHourlyRate: number | null;
498
+ minNumReviews: number | null;
499
+ memberSinceFrom: string | null;
500
+ memberSinceTo: string | null;
501
+ isPaymentVerified?: "all" | "true" | "false" | undefined;
502
+ isPhoneVerified?: "all" | "true" | "false" | undefined;
503
+ enterpriseClient?: "all" | "true" | "false" | undefined;
504
+ } | null;
505
+ vendorQualifications: {
506
+ locationIncludes: string[] | null;
507
+ locationExcludes: string[] | null;
508
+ talentTypes: ("Unspecified" | "Independent" | "Agency")[] | null;
509
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
510
+ includeRisingTalent: string | null;
511
+ requiredEarnings: 100 | 1000 | 10000 | null;
512
+ requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
513
+ } | null;
514
+ };
515
+ createdAt: number;
516
+ updatedAt: number;
517
+ confirmedBillingAt: number | null;
518
+ automatedSuitability: boolean | null;
519
+ automatedBidding: boolean | null;
520
+ webhookUrl: string | null;
521
+ monthlyBudget: number | null;
522
+ leadCounts: Partial<Record<"leads" | "contacted" | "viewed" | "replied" | "interview" | "won" | "lost", number>> | null;
523
+ expenses: {
524
+ biddingAmount?: number | undefined;
525
+ boostingAmount?: number | undefined;
526
+ boosted?: number | undefined;
527
+ };
528
+ notificationWebhooks: Partial<Record<"suitableLead" | "proposalSent" | "proposalFailed" | "proposalViewed" | "proposalReplied" | "lowConnects" | "leadAnalyzed" | "accountHealth", string | null>>;
529
+ bidConfig: {
530
+ agencyName: string | null;
531
+ bidderId: string | null;
532
+ contractorName: string | null;
533
+ specialisedProfile: string | null;
534
+ } | null;
535
+ status?: "active" | "draft" | "paused" | "error" | undefined;
536
+ boostingEnabled?: boolean | null | undefined;
537
+ maximumBoost?: number | null | undefined;
538
+ minimumBoost?: number | null | undefined;
539
+ suitabilityThreshold?: number | null | undefined;
540
+ boostingThreshold?: number | null | undefined;
541
+ }>;
124
542
  organization: import("zod").ZodObject<{
125
543
  id: import("zod").ZodString;
126
544
  name: import("zod").ZodString;
@@ -193,7 +611,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
193
611
  source: import("zod").ZodEnum<["stripe", "manual"]>;
194
612
  usage: import("zod").ZodRecord<import("zod").ZodEnum<["suitabilityComplete", "proposalComplete", "biddingComplete"]>, import("zod").ZodNumber>;
195
613
  }, "strip", import("zod").ZodTypeAny, {
196
- status: "active" | "trialing" | "cancelled" | "paused" | "payment_pending" | "payment_failed";
614
+ status: "active" | "paused" | "trialing" | "cancelled" | "payment_pending" | "payment_failed";
197
615
  planId: string;
198
616
  pendingPlanId: string | null;
199
617
  startedAt: number;
@@ -214,7 +632,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
214
632
  source: "stripe" | "manual";
215
633
  usage: Partial<Record<"suitabilityComplete" | "proposalComplete" | "biddingComplete", number>>;
216
634
  }, {
217
- status: "active" | "trialing" | "cancelled" | "paused" | "payment_pending" | "payment_failed";
635
+ status: "active" | "paused" | "trialing" | "cancelled" | "payment_pending" | "payment_failed";
218
636
  planId: string;
219
637
  pendingPlanId: string | null;
220
638
  startedAt: number;
@@ -289,11 +707,13 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
289
707
  type: "agency" | "freelancer";
290
708
  id: string;
291
709
  name: string;
710
+ createdAt: number;
711
+ updatedAt: number;
712
+ active: boolean;
292
713
  associatedBidders: string[] | null;
293
714
  tierId: "free" | "premium";
294
- active: boolean;
295
715
  subscription: {
296
- status: "active" | "trialing" | "cancelled" | "paused" | "payment_pending" | "payment_failed";
716
+ status: "active" | "paused" | "trialing" | "cancelled" | "payment_pending" | "payment_failed";
297
717
  planId: string;
298
718
  pendingPlanId: string | null;
299
719
  startedAt: number;
@@ -327,17 +747,17 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
327
747
  };
328
748
  savedCard: boolean;
329
749
  } | null;
330
- createdAt: number;
331
- updatedAt: number;
332
750
  }, {
333
751
  type: "agency" | "freelancer";
334
752
  id: string;
335
753
  name: string;
754
+ createdAt: number;
755
+ updatedAt: number;
756
+ active: boolean;
336
757
  associatedBidders: string[] | null;
337
758
  tierId: "free" | "premium";
338
- active: boolean;
339
759
  subscription: {
340
- status: "active" | "trialing" | "cancelled" | "paused" | "payment_pending" | "payment_failed";
760
+ status: "active" | "paused" | "trialing" | "cancelled" | "payment_pending" | "payment_failed";
341
761
  planId: string;
342
762
  pendingPlanId: string | null;
343
763
  startedAt: number;
@@ -371,8 +791,6 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
371
791
  };
372
792
  savedCard: boolean;
373
793
  } | null;
374
- createdAt: number;
375
- updatedAt: number;
376
794
  }>;
377
795
  lead: import("zod").ZodObject<Omit<import("zod").objectUtil.extendShape<{
378
796
  id: import("zod").ZodNullable<import("zod").ZodString>;
@@ -412,24 +830,24 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
412
830
  paymentType: import("zod").ZodNullable<import("zod").ZodString>;
413
831
  fixedPrice: import("zod").ZodNullable<import("zod").ZodNumber>;
414
832
  }, "strip", import("zod").ZodTypeAny, {
833
+ paymentType: string | null;
834
+ experienceLevel: string | null;
415
835
  hours: string | null;
416
836
  duration: string | null;
417
- experienceLevel: string | null;
418
837
  hourlyRate: {
419
838
  min: number | null;
420
839
  max: number | null;
421
840
  } | null;
422
- paymentType: string | null;
423
841
  fixedPrice: number | null;
424
842
  }, {
843
+ paymentType: string | null;
844
+ experienceLevel: string | null;
425
845
  hours: string | null;
426
846
  duration: string | null;
427
- experienceLevel: string | null;
428
847
  hourlyRate: {
429
848
  min: number | null;
430
849
  max: number | null;
431
850
  } | null;
432
- paymentType: string | null;
433
851
  fixedPrice: number | null;
434
852
  }>>;
435
853
  clientInfo: import("zod").ZodNullable<import("zod").ZodObject<{
@@ -454,6 +872,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
454
872
  region: string | null;
455
873
  isPaymentVerified: boolean | null;
456
874
  isPhoneVerified: boolean | null;
875
+ enterpriseClient: boolean | null;
876
+ companySize: string | null;
457
877
  numberOfReviews: number | null;
458
878
  rating: number | null;
459
879
  country: string | null;
@@ -465,13 +885,13 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
465
885
  hireRate: number | null;
466
886
  memberSince: string | null;
467
887
  companyIndustry: string | null;
468
- companySize: string | null;
469
- enterpriseClient: boolean | null;
470
888
  avgHourlyRatePaid: number | null;
471
889
  }, {
472
890
  region: string | null;
473
891
  isPaymentVerified: boolean | null;
474
892
  isPhoneVerified: boolean | null;
893
+ enterpriseClient: boolean | null;
894
+ companySize: string | null;
475
895
  numberOfReviews: number | null;
476
896
  rating: number | null;
477
897
  country: string | null;
@@ -483,8 +903,6 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
483
903
  hireRate: number | null;
484
904
  memberSince: string | null;
485
905
  companyIndustry: string | null;
486
- companySize: string | null;
487
- enterpriseClient: boolean | null;
488
906
  avgHourlyRatePaid: number | null;
489
907
  }>>;
490
908
  vendorQualifications: import("zod").ZodNullable<import("zod").ZodObject<{
@@ -495,19 +913,19 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
495
913
  jobSuccessScore: import("zod").ZodNullable<import("zod").ZodString>;
496
914
  includeRisingTalent: import("zod").ZodNullable<import("zod").ZodString>;
497
915
  }, "strip", import("zod").ZodTypeAny, {
916
+ includeRisingTalent: string | null;
498
917
  location: string | null;
499
- talentType: "Agency" | "Independent" | "unspecified" | null;
918
+ talentType: "Independent" | "Agency" | "unspecified" | null;
500
919
  englishLevel: string | null;
501
920
  minimumEarnings: number | null;
502
921
  jobSuccessScore: string | null;
503
- includeRisingTalent: string | null;
504
922
  }, {
923
+ includeRisingTalent: string | null;
505
924
  location: string | null;
506
- talentType: "Agency" | "Independent" | "unspecified" | null;
925
+ talentType: "Independent" | "Agency" | "unspecified" | null;
507
926
  englishLevel: string | null;
508
927
  minimumEarnings: number | null;
509
928
  jobSuccessScore: string | null;
510
- includeRisingTalent: string | null;
511
929
  }>>;
512
930
  processed: import("zod").ZodNullable<import("zod").ZodBoolean>;
513
931
  isFeatured: import("zod").ZodNullable<import("zod").ZodBoolean>;
@@ -525,8 +943,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
525
943
  numHours: import("zod").ZodNullable<import("zod").ZodNumber>;
526
944
  totalBilled: import("zod").ZodNullable<import("zod").ZodNumber>;
527
945
  }, "strip", import("zod").ZodTypeAny, {
528
- hourlyRate: number | null;
529
946
  paymentType: string | null;
947
+ hourlyRate: number | null;
530
948
  fixedPrice: number | null;
531
949
  jobTitle: string | null;
532
950
  freelancerName: string | null;
@@ -538,8 +956,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
538
956
  numHours: number | null;
539
957
  totalBilled: number | null;
540
958
  }, {
541
- hourlyRate: number | null;
542
959
  paymentType: string | null;
960
+ hourlyRate: number | null;
543
961
  fixedPrice: number | null;
544
962
  jobTitle: string | null;
545
963
  freelancerName: string | null;
@@ -703,33 +1121,14 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
703
1121
  isFeatured: boolean | null;
704
1122
  region: "USOnly" | "UKOnly" | "Worldwide" | null;
705
1123
  id: string | null;
706
- createdAt: number | null;
707
- updatedAt: number | null;
708
- category: string | null;
709
- skills: {
710
- name: string;
711
- }[] | null;
712
- description: string | null;
713
- descriptionLength: number | null;
714
- connectsRequired: number | null;
715
- projectType: string | null;
716
1124
  projectDuration: string | null;
717
1125
  questions: string[] | null;
718
- metadata: {
719
- hours: string | null;
720
- duration: string | null;
721
- experienceLevel: string | null;
722
- hourlyRate: {
723
- min: number | null;
724
- max: number | null;
725
- } | null;
726
- paymentType: string | null;
727
- fixedPrice: number | null;
728
- } | null;
729
1126
  clientInfo: {
730
1127
  region: string | null;
731
1128
  isPaymentVerified: boolean | null;
732
1129
  isPhoneVerified: boolean | null;
1130
+ enterpriseClient: boolean | null;
1131
+ companySize: string | null;
733
1132
  numberOfReviews: number | null;
734
1133
  rating: number | null;
735
1134
  country: string | null;
@@ -741,21 +1140,43 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
741
1140
  hireRate: number | null;
742
1141
  memberSince: string | null;
743
1142
  companyIndustry: string | null;
744
- companySize: string | null;
745
- enterpriseClient: boolean | null;
746
1143
  avgHourlyRatePaid: number | null;
747
1144
  } | null;
748
1145
  vendorQualifications: {
1146
+ includeRisingTalent: string | null;
749
1147
  location: string | null;
750
- talentType: "Agency" | "Independent" | "unspecified" | null;
1148
+ talentType: "Independent" | "Agency" | "unspecified" | null;
751
1149
  englishLevel: string | null;
752
1150
  minimumEarnings: number | null;
753
1151
  jobSuccessScore: string | null;
754
- includeRisingTalent: string | null;
1152
+ } | null;
1153
+ createdAt: number | null;
1154
+ updatedAt: number | null;
1155
+ biddingAmount: number | null;
1156
+ boostingAmount: number | null;
1157
+ boosted: boolean | null;
1158
+ category: string | null;
1159
+ skills: {
1160
+ name: string;
1161
+ }[] | null;
1162
+ description: string | null;
1163
+ descriptionLength: number | null;
1164
+ connectsRequired: number | null;
1165
+ projectType: string | null;
1166
+ metadata: {
1167
+ paymentType: string | null;
1168
+ experienceLevel: string | null;
1169
+ hours: string | null;
1170
+ duration: string | null;
1171
+ hourlyRate: {
1172
+ min: number | null;
1173
+ max: number | null;
1174
+ } | null;
1175
+ fixedPrice: number | null;
755
1176
  } | null;
756
1177
  clientReviews: {
757
- hourlyRate: number | null;
758
1178
  paymentType: string | null;
1179
+ hourlyRate: number | null;
759
1180
  fixedPrice: number | null;
760
1181
  jobTitle: string | null;
761
1182
  freelancerName: string | null;
@@ -794,11 +1215,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
794
1215
  question: string;
795
1216
  answer: string;
796
1217
  }[] | null;
797
- agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
1218
+ agentStatus: "proposalFailed" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
798
1219
  leadStatus: "leads" | "contacted" | "viewed" | "replied" | "interview" | "won" | "lost" | null;
799
- biddingAmount: number | null;
800
- boosted: boolean | null;
801
- boostingAmount: number | null;
802
1220
  biddingTaskScheduled: boolean | null;
803
1221
  scheduledBiddingTime: number | null;
804
1222
  activity?: Partial<Record<"4h" | "24h", {
@@ -830,33 +1248,14 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
830
1248
  isFeatured: boolean | null;
831
1249
  region: "USOnly" | "UKOnly" | "Worldwide" | null;
832
1250
  id: string | null;
833
- createdAt: number | null;
834
- updatedAt: number | null;
835
- category: string | null;
836
- skills: {
837
- name: string;
838
- }[] | null;
839
- description: string | null;
840
- descriptionLength: number | null;
841
- connectsRequired: number | null;
842
- projectType: string | null;
843
1251
  projectDuration: string | null;
844
1252
  questions: string[] | null;
845
- metadata: {
846
- hours: string | null;
847
- duration: string | null;
848
- experienceLevel: string | null;
849
- hourlyRate: {
850
- min: number | null;
851
- max: number | null;
852
- } | null;
853
- paymentType: string | null;
854
- fixedPrice: number | null;
855
- } | null;
856
1253
  clientInfo: {
857
1254
  region: string | null;
858
1255
  isPaymentVerified: boolean | null;
859
1256
  isPhoneVerified: boolean | null;
1257
+ enterpriseClient: boolean | null;
1258
+ companySize: string | null;
860
1259
  numberOfReviews: number | null;
861
1260
  rating: number | null;
862
1261
  country: string | null;
@@ -868,21 +1267,43 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
868
1267
  hireRate: number | null;
869
1268
  memberSince: string | null;
870
1269
  companyIndustry: string | null;
871
- companySize: string | null;
872
- enterpriseClient: boolean | null;
873
1270
  avgHourlyRatePaid: number | null;
874
1271
  } | null;
875
1272
  vendorQualifications: {
1273
+ includeRisingTalent: string | null;
876
1274
  location: string | null;
877
- talentType: "Agency" | "Independent" | "unspecified" | null;
1275
+ talentType: "Independent" | "Agency" | "unspecified" | null;
878
1276
  englishLevel: string | null;
879
1277
  minimumEarnings: number | null;
880
1278
  jobSuccessScore: string | null;
881
- includeRisingTalent: string | null;
1279
+ } | null;
1280
+ createdAt: number | null;
1281
+ updatedAt: number | null;
1282
+ biddingAmount: number | null;
1283
+ boostingAmount: number | null;
1284
+ boosted: boolean | null;
1285
+ category: string | null;
1286
+ skills: {
1287
+ name: string;
1288
+ }[] | null;
1289
+ description: string | null;
1290
+ descriptionLength: number | null;
1291
+ connectsRequired: number | null;
1292
+ projectType: string | null;
1293
+ metadata: {
1294
+ paymentType: string | null;
1295
+ experienceLevel: string | null;
1296
+ hours: string | null;
1297
+ duration: string | null;
1298
+ hourlyRate: {
1299
+ min: number | null;
1300
+ max: number | null;
1301
+ } | null;
1302
+ fixedPrice: number | null;
882
1303
  } | null;
883
1304
  clientReviews: {
884
- hourlyRate: number | null;
885
1305
  paymentType: string | null;
1306
+ hourlyRate: number | null;
886
1307
  fixedPrice: number | null;
887
1308
  jobTitle: string | null;
888
1309
  freelancerName: string | null;
@@ -921,11 +1342,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
921
1342
  question: string;
922
1343
  answer: string;
923
1344
  }[] | null;
924
- agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
1345
+ agentStatus: "proposalFailed" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
925
1346
  leadStatus: "leads" | "contacted" | "viewed" | "replied" | "interview" | "won" | "lost" | null;
926
- biddingAmount: number | null;
927
- boosted: boolean | null;
928
- boostingAmount: number | null;
929
1347
  biddingTaskScheduled: boolean | null;
930
1348
  scheduledBiddingTime: number | null;
931
1349
  activity?: Partial<Record<"4h" | "24h", {
@@ -982,13 +1400,13 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
982
1400
  createdAt: import("zod").ZodNumber;
983
1401
  updatedAt: import("zod").ZodNumber;
984
1402
  }, "strip", import("zod").ZodTypeAny, {
985
- password: string;
986
1403
  id: string;
987
1404
  name: string | null;
988
1405
  createdAt: number;
989
1406
  updatedAt: number;
990
1407
  provider: "user-provided" | "lancer-provided";
991
1408
  email: string;
1409
+ password: string;
992
1410
  securityQuestionAnswer: string | null;
993
1411
  assignedOrganizations: string[];
994
1412
  lastUsed: number | null;
@@ -1003,13 +1421,13 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1003
1421
  }[] | null;
1004
1422
  googleOauthTokens?: any;
1005
1423
  }, {
1006
- password: string;
1007
1424
  id: string;
1008
1425
  name: string | null;
1009
1426
  createdAt: number;
1010
1427
  updatedAt: number;
1011
1428
  provider: "user-provided" | "lancer-provided";
1012
1429
  email: string;
1430
+ password: string;
1013
1431
  securityQuestionAnswer: string | null;
1014
1432
  assignedOrganizations: string[];
1015
1433
  lastUsed: number | null;
@@ -1027,16 +1445,99 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1027
1445
  firstExecutionTime: import("zod").ZodNumber;
1028
1446
  }, "strip", import("zod").ZodTypeAny, {
1029
1447
  userId: string;
1030
- campaignId: string;
1448
+ tmp: string;
1449
+ campaign: {
1450
+ id: string;
1451
+ name: string;
1452
+ filters: {
1453
+ isFeatured: "all" | "true" | "false" | null;
1454
+ keywords: {
1455
+ includes: string | null;
1456
+ excludes: string | null;
1457
+ } | null;
1458
+ regions: ("USOnly" | "UKOnly" | "Worldwide" | "all")[] | null;
1459
+ categories: {
1460
+ 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;
1461
+ 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;
1462
+ } | null;
1463
+ payment: {
1464
+ paymentType: ("Unspecified" | "Fixed-price" | "Hourly")[] | null;
1465
+ minFixedPrice: number | null;
1466
+ maxFixedPrice: number | null;
1467
+ minHourlyRate: number | null;
1468
+ maxHourlyRate: number | null;
1469
+ } | null;
1470
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
1471
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
1472
+ questions: {
1473
+ hasQuestions: "all" | "yes" | "no";
1474
+ } | null;
1475
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
1476
+ clientInfo: {
1477
+ isPaymentVerified: "all" | "true" | "false";
1478
+ isPhoneVerified: "all" | "true" | "false";
1479
+ enterpriseClient: "all" | "true" | "false";
1480
+ clientLocationIncludes: string[] | null;
1481
+ clientLocationExcludes: string[] | null;
1482
+ minReviewScore: number | null;
1483
+ minTotalSpent: number | null;
1484
+ minHireRate: number | null;
1485
+ clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
1486
+ companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
1487
+ minJobsPosted: number | null;
1488
+ minAvgHourlyRate: number | null;
1489
+ minNumReviews: number | null;
1490
+ memberSinceFrom: string | null;
1491
+ memberSinceTo: string | null;
1492
+ } | null;
1493
+ vendorQualifications: {
1494
+ locationIncludes: string[] | null;
1495
+ locationExcludes: string[] | null;
1496
+ talentTypes: ("Unspecified" | "Independent" | "Agency")[] | null;
1497
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
1498
+ includeRisingTalent: string | null;
1499
+ requiredEarnings: 100 | 1000 | 10000 | null;
1500
+ requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
1501
+ } | null;
1502
+ };
1503
+ createdAt: number;
1504
+ updatedAt: number;
1505
+ confirmedBillingAt: number | null;
1506
+ automatedSuitability: boolean | null;
1507
+ automatedBidding: boolean | null;
1508
+ boostingEnabled: boolean | null;
1509
+ maximumBoost: number | null;
1510
+ minimumBoost: number | null;
1511
+ webhookUrl: string | null;
1512
+ monthlyBudget: number | null;
1513
+ suitabilityThreshold: number | null;
1514
+ boostingThreshold: number | null;
1515
+ leadCounts: Partial<Record<"leads" | "contacted" | "viewed" | "replied" | "interview" | "won" | "lost", number>> | null;
1516
+ expenses: {
1517
+ biddingAmount: number;
1518
+ boostingAmount: number;
1519
+ boosted: number;
1520
+ };
1521
+ notificationWebhooks: Partial<Record<"suitableLead" | "proposalSent" | "proposalFailed" | "proposalViewed" | "proposalReplied" | "lowConnects" | "leadAnalyzed" | "accountHealth", string | null>>;
1522
+ bidConfig: {
1523
+ agencyName: string | null;
1524
+ bidderId: string | null;
1525
+ contractorName: string | null;
1526
+ specialisedProfile: string | null;
1527
+ } | null;
1528
+ status?: "active" | "draft" | "paused" | "error" | undefined;
1529
+ };
1031
1530
  organization: {
1032
1531
  type: "agency" | "freelancer";
1033
1532
  id: string;
1034
1533
  name: string;
1534
+ createdAt: number;
1535
+ updatedAt: number;
1536
+ active: boolean;
1035
1537
  associatedBidders: string[] | null;
1036
1538
  tierId: "free" | "premium";
1037
- active: boolean;
1038
1539
  subscription: {
1039
- status: "active" | "trialing" | "cancelled" | "paused" | "payment_pending" | "payment_failed";
1540
+ status: "active" | "paused" | "trialing" | "cancelled" | "payment_pending" | "payment_failed";
1040
1541
  planId: string;
1041
1542
  pendingPlanId: string | null;
1042
1543
  startedAt: number;
@@ -1070,8 +1571,6 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1070
1571
  };
1071
1572
  savedCard: boolean;
1072
1573
  } | null;
1073
- createdAt: number;
1074
- updatedAt: number;
1075
1574
  };
1076
1575
  lead: {
1077
1576
  uid: string | null;
@@ -1081,33 +1580,14 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1081
1580
  isFeatured: boolean | null;
1082
1581
  region: "USOnly" | "UKOnly" | "Worldwide" | null;
1083
1582
  id: string | null;
1084
- createdAt: number | null;
1085
- updatedAt: number | null;
1086
- category: string | null;
1087
- skills: {
1088
- name: string;
1089
- }[] | null;
1090
- description: string | null;
1091
- descriptionLength: number | null;
1092
- connectsRequired: number | null;
1093
- projectType: string | null;
1094
1583
  projectDuration: string | null;
1095
1584
  questions: string[] | null;
1096
- metadata: {
1097
- hours: string | null;
1098
- duration: string | null;
1099
- experienceLevel: string | null;
1100
- hourlyRate: {
1101
- min: number | null;
1102
- max: number | null;
1103
- } | null;
1104
- paymentType: string | null;
1105
- fixedPrice: number | null;
1106
- } | null;
1107
1585
  clientInfo: {
1108
1586
  region: string | null;
1109
1587
  isPaymentVerified: boolean | null;
1110
1588
  isPhoneVerified: boolean | null;
1589
+ enterpriseClient: boolean | null;
1590
+ companySize: string | null;
1111
1591
  numberOfReviews: number | null;
1112
1592
  rating: number | null;
1113
1593
  country: string | null;
@@ -1119,21 +1599,43 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1119
1599
  hireRate: number | null;
1120
1600
  memberSince: string | null;
1121
1601
  companyIndustry: string | null;
1122
- companySize: string | null;
1123
- enterpriseClient: boolean | null;
1124
1602
  avgHourlyRatePaid: number | null;
1125
1603
  } | null;
1126
1604
  vendorQualifications: {
1605
+ includeRisingTalent: string | null;
1127
1606
  location: string | null;
1128
- talentType: "Agency" | "Independent" | "unspecified" | null;
1607
+ talentType: "Independent" | "Agency" | "unspecified" | null;
1129
1608
  englishLevel: string | null;
1130
1609
  minimumEarnings: number | null;
1131
1610
  jobSuccessScore: string | null;
1132
- includeRisingTalent: string | null;
1611
+ } | null;
1612
+ createdAt: number | null;
1613
+ updatedAt: number | null;
1614
+ biddingAmount: number | null;
1615
+ boostingAmount: number | null;
1616
+ boosted: boolean | null;
1617
+ category: string | null;
1618
+ skills: {
1619
+ name: string;
1620
+ }[] | null;
1621
+ description: string | null;
1622
+ descriptionLength: number | null;
1623
+ connectsRequired: number | null;
1624
+ projectType: string | null;
1625
+ metadata: {
1626
+ paymentType: string | null;
1627
+ experienceLevel: string | null;
1628
+ hours: string | null;
1629
+ duration: string | null;
1630
+ hourlyRate: {
1631
+ min: number | null;
1632
+ max: number | null;
1633
+ } | null;
1634
+ fixedPrice: number | null;
1133
1635
  } | null;
1134
1636
  clientReviews: {
1135
- hourlyRate: number | null;
1136
1637
  paymentType: string | null;
1638
+ hourlyRate: number | null;
1137
1639
  fixedPrice: number | null;
1138
1640
  jobTitle: string | null;
1139
1641
  freelancerName: string | null;
@@ -1172,11 +1674,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1172
1674
  question: string;
1173
1675
  answer: string;
1174
1676
  }[] | null;
1175
- agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
1677
+ agentStatus: "proposalFailed" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
1176
1678
  leadStatus: "leads" | "contacted" | "viewed" | "replied" | "interview" | "won" | "lost" | null;
1177
- biddingAmount: number | null;
1178
- boosted: boolean | null;
1179
- boostingAmount: number | null;
1180
1679
  biddingTaskScheduled: boolean | null;
1181
1680
  scheduledBiddingTime: number | null;
1182
1681
  activity?: Partial<Record<"4h" | "24h", {
@@ -1202,13 +1701,13 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1202
1701
  proposalId?: string | undefined;
1203
1702
  };
1204
1703
  bidder: {
1205
- password: string;
1206
1704
  id: string;
1207
1705
  name: string | null;
1208
1706
  createdAt: number;
1209
1707
  updatedAt: number;
1210
1708
  provider: "user-provided" | "lancer-provided";
1211
1709
  email: string;
1710
+ password: string;
1212
1711
  securityQuestionAnswer: string | null;
1213
1712
  assignedOrganizations: string[];
1214
1713
  lastUsed: number | null;
@@ -1226,16 +1725,99 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1226
1725
  firstExecutionTime: number;
1227
1726
  }, {
1228
1727
  userId: string;
1229
- campaignId: string;
1728
+ tmp: string;
1729
+ campaign: {
1730
+ id: string;
1731
+ name: string;
1732
+ filters: {
1733
+ isFeatured: "all" | "true" | "false" | null;
1734
+ keywords: {
1735
+ includes: string | null;
1736
+ excludes: string | null;
1737
+ } | null;
1738
+ regions: ("USOnly" | "UKOnly" | "Worldwide" | "all")[] | null;
1739
+ categories: {
1740
+ 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;
1741
+ 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;
1742
+ } | null;
1743
+ payment: {
1744
+ paymentType: ("Unspecified" | "Fixed-price" | "Hourly")[] | null;
1745
+ minFixedPrice: number | null;
1746
+ maxFixedPrice: number | null;
1747
+ minHourlyRate: number | null;
1748
+ maxHourlyRate: number | null;
1749
+ } | null;
1750
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
1751
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
1752
+ questions: {
1753
+ hasQuestions?: "all" | "yes" | "no" | undefined;
1754
+ } | null;
1755
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
1756
+ clientInfo: {
1757
+ clientLocationIncludes: string[] | null;
1758
+ clientLocationExcludes: string[] | null;
1759
+ minReviewScore: number | null;
1760
+ minTotalSpent: number | null;
1761
+ minHireRate: number | null;
1762
+ clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
1763
+ companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
1764
+ minJobsPosted: number | null;
1765
+ minAvgHourlyRate: number | null;
1766
+ minNumReviews: number | null;
1767
+ memberSinceFrom: string | null;
1768
+ memberSinceTo: string | null;
1769
+ isPaymentVerified?: "all" | "true" | "false" | undefined;
1770
+ isPhoneVerified?: "all" | "true" | "false" | undefined;
1771
+ enterpriseClient?: "all" | "true" | "false" | undefined;
1772
+ } | null;
1773
+ vendorQualifications: {
1774
+ locationIncludes: string[] | null;
1775
+ locationExcludes: string[] | null;
1776
+ talentTypes: ("Unspecified" | "Independent" | "Agency")[] | null;
1777
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
1778
+ includeRisingTalent: string | null;
1779
+ requiredEarnings: 100 | 1000 | 10000 | null;
1780
+ requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
1781
+ } | null;
1782
+ };
1783
+ createdAt: number;
1784
+ updatedAt: number;
1785
+ confirmedBillingAt: number | null;
1786
+ automatedSuitability: boolean | null;
1787
+ automatedBidding: boolean | null;
1788
+ webhookUrl: string | null;
1789
+ monthlyBudget: number | null;
1790
+ leadCounts: Partial<Record<"leads" | "contacted" | "viewed" | "replied" | "interview" | "won" | "lost", number>> | null;
1791
+ expenses: {
1792
+ biddingAmount?: number | undefined;
1793
+ boostingAmount?: number | undefined;
1794
+ boosted?: number | undefined;
1795
+ };
1796
+ notificationWebhooks: Partial<Record<"suitableLead" | "proposalSent" | "proposalFailed" | "proposalViewed" | "proposalReplied" | "lowConnects" | "leadAnalyzed" | "accountHealth", string | null>>;
1797
+ bidConfig: {
1798
+ agencyName: string | null;
1799
+ bidderId: string | null;
1800
+ contractorName: string | null;
1801
+ specialisedProfile: string | null;
1802
+ } | null;
1803
+ status?: "active" | "draft" | "paused" | "error" | undefined;
1804
+ boostingEnabled?: boolean | null | undefined;
1805
+ maximumBoost?: number | null | undefined;
1806
+ minimumBoost?: number | null | undefined;
1807
+ suitabilityThreshold?: number | null | undefined;
1808
+ boostingThreshold?: number | null | undefined;
1809
+ };
1230
1810
  organization: {
1231
1811
  type: "agency" | "freelancer";
1232
1812
  id: string;
1233
1813
  name: string;
1814
+ createdAt: number;
1815
+ updatedAt: number;
1816
+ active: boolean;
1234
1817
  associatedBidders: string[] | null;
1235
1818
  tierId: "free" | "premium";
1236
- active: boolean;
1237
1819
  subscription: {
1238
- status: "active" | "trialing" | "cancelled" | "paused" | "payment_pending" | "payment_failed";
1820
+ status: "active" | "paused" | "trialing" | "cancelled" | "payment_pending" | "payment_failed";
1239
1821
  planId: string;
1240
1822
  pendingPlanId: string | null;
1241
1823
  startedAt: number;
@@ -1269,8 +1851,6 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1269
1851
  };
1270
1852
  savedCard: boolean;
1271
1853
  } | null;
1272
- createdAt: number;
1273
- updatedAt: number;
1274
1854
  };
1275
1855
  lead: {
1276
1856
  uid: string | null;
@@ -1280,33 +1860,14 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1280
1860
  isFeatured: boolean | null;
1281
1861
  region: "USOnly" | "UKOnly" | "Worldwide" | null;
1282
1862
  id: string | null;
1283
- createdAt: number | null;
1284
- updatedAt: number | null;
1285
- category: string | null;
1286
- skills: {
1287
- name: string;
1288
- }[] | null;
1289
- description: string | null;
1290
- descriptionLength: number | null;
1291
- connectsRequired: number | null;
1292
- projectType: string | null;
1293
1863
  projectDuration: string | null;
1294
1864
  questions: string[] | null;
1295
- metadata: {
1296
- hours: string | null;
1297
- duration: string | null;
1298
- experienceLevel: string | null;
1299
- hourlyRate: {
1300
- min: number | null;
1301
- max: number | null;
1302
- } | null;
1303
- paymentType: string | null;
1304
- fixedPrice: number | null;
1305
- } | null;
1306
1865
  clientInfo: {
1307
1866
  region: string | null;
1308
1867
  isPaymentVerified: boolean | null;
1309
1868
  isPhoneVerified: boolean | null;
1869
+ enterpriseClient: boolean | null;
1870
+ companySize: string | null;
1310
1871
  numberOfReviews: number | null;
1311
1872
  rating: number | null;
1312
1873
  country: string | null;
@@ -1318,21 +1879,43 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1318
1879
  hireRate: number | null;
1319
1880
  memberSince: string | null;
1320
1881
  companyIndustry: string | null;
1321
- companySize: string | null;
1322
- enterpriseClient: boolean | null;
1323
1882
  avgHourlyRatePaid: number | null;
1324
1883
  } | null;
1325
1884
  vendorQualifications: {
1885
+ includeRisingTalent: string | null;
1326
1886
  location: string | null;
1327
- talentType: "Agency" | "Independent" | "unspecified" | null;
1887
+ talentType: "Independent" | "Agency" | "unspecified" | null;
1328
1888
  englishLevel: string | null;
1329
1889
  minimumEarnings: number | null;
1330
1890
  jobSuccessScore: string | null;
1331
- includeRisingTalent: string | null;
1891
+ } | null;
1892
+ createdAt: number | null;
1893
+ updatedAt: number | null;
1894
+ biddingAmount: number | null;
1895
+ boostingAmount: number | null;
1896
+ boosted: boolean | null;
1897
+ category: string | null;
1898
+ skills: {
1899
+ name: string;
1900
+ }[] | null;
1901
+ description: string | null;
1902
+ descriptionLength: number | null;
1903
+ connectsRequired: number | null;
1904
+ projectType: string | null;
1905
+ metadata: {
1906
+ paymentType: string | null;
1907
+ experienceLevel: string | null;
1908
+ hours: string | null;
1909
+ duration: string | null;
1910
+ hourlyRate: {
1911
+ min: number | null;
1912
+ max: number | null;
1913
+ } | null;
1914
+ fixedPrice: number | null;
1332
1915
  } | null;
1333
1916
  clientReviews: {
1334
- hourlyRate: number | null;
1335
1917
  paymentType: string | null;
1918
+ hourlyRate: number | null;
1336
1919
  fixedPrice: number | null;
1337
1920
  jobTitle: string | null;
1338
1921
  freelancerName: string | null;
@@ -1371,11 +1954,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1371
1954
  question: string;
1372
1955
  answer: string;
1373
1956
  }[] | null;
1374
- agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
1957
+ agentStatus: "proposalFailed" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
1375
1958
  leadStatus: "leads" | "contacted" | "viewed" | "replied" | "interview" | "won" | "lost" | null;
1376
- biddingAmount: number | null;
1377
- boosted: boolean | null;
1378
- boostingAmount: number | null;
1379
1959
  biddingTaskScheduled: boolean | null;
1380
1960
  scheduledBiddingTime: number | null;
1381
1961
  activity?: Partial<Record<"4h" | "24h", {
@@ -1401,13 +1981,13 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1401
1981
  proposalId?: string | undefined;
1402
1982
  };
1403
1983
  bidder: {
1404
- password: string;
1405
1984
  id: string;
1406
1985
  name: string | null;
1407
1986
  createdAt: number;
1408
1987
  updatedAt: number;
1409
1988
  provider: "user-provided" | "lancer-provided";
1410
1989
  email: string;
1990
+ password: string;
1411
1991
  securityQuestionAnswer: string | null;
1412
1992
  assignedOrganizations: string[];
1413
1993
  lastUsed: number | null;
@@ -1433,4 +2013,5 @@ export interface ScrapeJobPayload extends infer<typeof scrapeJobPayloadSchema> {
1433
2013
  export interface ScrapeJobActivityPayload extends infer<typeof scrapeJobActivityPayloadSchema> {
1434
2014
  }
1435
2015
  export interface CheckLeadStatusPayload extends infer<typeof checkLeadStatusPayloadSchema> {
2016
+ bidder: BidderAccount;
1436
2017
  }