lancer-shared 1.2.32 → 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 (207) hide show
  1. package/dist/bundle.cjs.js +17 -1
  2. package/dist/constants/account-status.d.ts +3 -0
  3. package/dist/constants/account-status.js +17 -0
  4. package/dist/constants/collections.js +13 -11
  5. package/dist/constants/common-questions.js +4 -1
  6. package/dist/constants/index.js +32 -10
  7. package/dist/constants/job-filter-options.js +4 -1
  8. package/dist/constants/job-status.js +12 -7
  9. package/dist/constants/mappings/countryMapping.js +3 -1
  10. package/dist/constants/mappings/regionMapping.js +3 -1
  11. package/dist/constants/organization.d.ts +2 -2
  12. package/dist/constants/proxies.d.ts +4 -0
  13. package/dist/constants/routes.d.ts +4 -0
  14. package/dist/constants/routes.js +37 -39
  15. package/dist/constants/upwork-accounts.js +6 -3
  16. package/dist/constants/upwork-filters.d.ts +5 -0
  17. package/dist/constants/upwork-filters.js +75 -0
  18. package/dist/index.js +20 -4
  19. package/dist/schemas/account/account-status.js +5 -2
  20. package/dist/schemas/account/bidder-account.js +24 -22
  21. package/dist/schemas/account/exceptions/bidder-account-alreay-connected.exception.d.ts +6 -0
  22. package/dist/schemas/account/exceptions/index.d.ts +1 -0
  23. package/dist/schemas/account/exceptions/no-bidder-accounts-available.d.ts +5 -0
  24. package/dist/schemas/account/index.js +19 -3
  25. package/dist/schemas/account/manager-account.d.ts +116 -0
  26. package/dist/schemas/account/manager-account.js +38 -0
  27. package/dist/schemas/account/scraper-account.js +24 -21
  28. package/dist/schemas/ai/ai-config.js +11 -8
  29. package/dist/schemas/ai/index.js +19 -3
  30. package/dist/schemas/ai/proposal.js +13 -10
  31. package/dist/schemas/ai/suitability.js +11 -8
  32. package/dist/schemas/ai-config/ai-config.d.ts +39 -0
  33. package/dist/schemas/ai-config/ai-config.js +12 -0
  34. package/dist/schemas/ai-config/index.d.ts +1 -0
  35. package/dist/schemas/ai-config/index.js +17 -0
  36. package/dist/schemas/bid/bid-result.js +13 -9
  37. package/dist/schemas/bid/bid-status.d.ts +30 -0
  38. package/dist/schemas/bid/bid-status.js +15 -0
  39. package/dist/schemas/bid/bid.js +30 -29
  40. package/dist/schemas/bid/exceptions/base-exception.d.ts +4 -0
  41. package/dist/schemas/bid/exceptions/evalute-element.exception.d.ts +5 -0
  42. package/dist/schemas/bid/exceptions/wait-for-function-timeout.d.ts +5 -0
  43. package/dist/schemas/bid/index.js +18 -2
  44. package/dist/schemas/bidding/index.d.ts +1 -0
  45. package/dist/schemas/bidding/index.js +17 -0
  46. package/dist/schemas/bidding/proposal-bidding-status.d.ts +26 -0
  47. package/dist/schemas/bidding/proposal-bidding-status.js +18 -0
  48. package/dist/schemas/bidding/proposal-dto.d.ts +26 -0
  49. package/dist/schemas/bidding/proposal-dto.js +18 -0
  50. package/dist/schemas/campaign/campaign-ai-metrics.js +8 -5
  51. package/dist/schemas/campaign/campaign-analytics.js +31 -32
  52. package/dist/schemas/campaign/campaign-expenses.js +8 -5
  53. package/dist/schemas/campaign/campaign-insights.js +30 -30
  54. package/dist/schemas/campaign/campaign-integrations.d.ts +0 -5
  55. package/dist/schemas/campaign/campaign-integrations.js +13 -10
  56. package/dist/schemas/campaign/campaign-job-count.js +6 -3
  57. package/dist/schemas/campaign/campaign.js +35 -32
  58. package/dist/schemas/campaign/index.js +23 -7
  59. package/dist/schemas/chat-message/chat-message.js +10 -7
  60. package/dist/schemas/chat-message/index.js +17 -1
  61. package/dist/schemas/config/agency-config.js +9 -6
  62. package/dist/schemas/config/index.js +17 -1
  63. package/dist/schemas/index.js +32 -17
  64. package/dist/schemas/job/index.js +19 -0
  65. package/dist/schemas/job/job-details.d.ts +335 -0
  66. package/dist/schemas/job/job-details.js +29 -0
  67. package/dist/schemas/job/job-note.d.ts +83 -0
  68. package/dist/schemas/job/job-note.js +30 -0
  69. package/dist/schemas/job/job-pipeline.d.ts +74 -0
  70. package/dist/schemas/job/job-pipeline.js +29 -0
  71. package/dist/schemas/job/job-status.d.ts +3 -0
  72. package/dist/schemas/job/job-status.js +27 -0
  73. package/dist/schemas/job/job-suitability.d.ts +12 -0
  74. package/dist/schemas/job/job-suitability.js +13 -0
  75. package/dist/schemas/job/job.d.ts +1160 -0
  76. package/dist/schemas/job/job.js +90 -0
  77. package/dist/schemas/job/pipeline-job.d.ts +608 -0
  78. package/dist/schemas/job/pipeline-job.js +43 -0
  79. package/dist/schemas/job/upwork-job.d.ts +334 -0
  80. package/dist/schemas/job/upwork-job.js +60 -0
  81. package/dist/schemas/job-filters/index.js +17 -1
  82. package/dist/schemas/job-filters/job-filters.js +65 -62
  83. package/dist/schemas/knowledge-object/index.d.ts +1 -0
  84. package/dist/schemas/knowledge-object/index.js +17 -0
  85. package/dist/schemas/knowledge-object/knowledge-object.d.ts +128 -0
  86. package/dist/schemas/knowledge-object/knowledge-object.js +47 -0
  87. package/dist/schemas/lead/index.js +19 -173
  88. package/dist/schemas/lead/lead-note.js +16 -13
  89. package/dist/schemas/lead/lead-status.js +6 -3
  90. package/dist/schemas/lead/lead.d.ts +1897 -0
  91. package/dist/schemas/lead/lead.js +143 -0
  92. package/dist/schemas/logger/index.js +17 -1
  93. package/dist/schemas/logger/log-event.js +49 -100
  94. package/dist/schemas/organization/index.js +17 -70
  95. package/dist/schemas/organization/organization.d.ts +7 -177
  96. package/dist/schemas/organization/organization.js +17 -14
  97. package/dist/schemas/proxy/index.js +17 -3
  98. package/dist/schemas/proxy/proxy.js +19 -25
  99. package/dist/schemas/saved-search/index.js +11 -8
  100. package/dist/schemas/scraper/index.js +18 -2
  101. package/dist/schemas/scraper/scrape-payload.d.ts +749 -155
  102. package/dist/schemas/scraper/scrape-payload.js +14 -19
  103. package/dist/schemas/scraper/scrape-response.d.ts +345 -0
  104. package/dist/schemas/scraper/scrape-response.js +9 -0
  105. package/dist/schemas/scraper/scrape-result.js +21 -21
  106. package/dist/schemas/shared.js +9 -12
  107. package/dist/schemas/time-filter/index.js +8 -5
  108. package/dist/schemas/upwork-account/index.d.ts +3 -0
  109. package/dist/schemas/upwork-account/index.js +19 -0
  110. package/dist/schemas/upwork-account/upwork-account-status.d.ts +2 -0
  111. package/dist/schemas/upwork-account/upwork-account-status.js +11 -0
  112. package/dist/schemas/upwork-account/upwork-business-manager-account.d.ts +95 -0
  113. package/dist/schemas/upwork-account/upwork-business-manager-account.js +35 -0
  114. package/dist/schemas/upwork-account/upwork-scraper-account.d.ts +92 -0
  115. package/dist/schemas/upwork-account/upwork-scraper-account.js +31 -0
  116. package/dist/schemas/upwork-account/upwork-scraping-account.d.ts +90 -0
  117. package/dist/schemas/upwork-account/upwork-scraping-account.js +30 -0
  118. package/dist/schemas/user/index.js +41 -38
  119. package/dist/types/account/account-status.js +2 -1
  120. package/dist/types/account/bidder-account.js +2 -1
  121. package/dist/types/account/index.js +19 -3
  122. package/dist/types/account/manager-account.d.ts +7 -0
  123. package/dist/types/account/manager-account.js +2 -0
  124. package/dist/types/account/scraper-account.js +2 -1
  125. package/dist/types/ai/ai-config.js +2 -1
  126. package/dist/types/ai/index.js +19 -3
  127. package/dist/types/ai/proposal.js +2 -1
  128. package/dist/types/ai/suitability.js +2 -1
  129. package/dist/types/ai-config/ai-config.d.ts +6 -0
  130. package/dist/types/ai-config/ai-config.js +2 -0
  131. package/dist/types/ai-config/index.d.ts +1 -0
  132. package/dist/types/ai-config/index.js +17 -0
  133. package/dist/types/bid/bid-result.js +2 -1
  134. package/dist/types/bid/bid-status.d.ts +5 -0
  135. package/dist/types/bid/bid-status.js +2 -0
  136. package/dist/types/bid/bid.js +2 -1
  137. package/dist/types/bid/index.js +18 -2
  138. package/dist/types/bidding/index.d.ts +1 -0
  139. package/dist/types/bidding/index.js +17 -0
  140. package/dist/types/bidding/proposal-bidding-status.d.ts +3 -0
  141. package/dist/types/bidding/proposal-bidding-status.js +2 -0
  142. package/dist/types/bidding/proposal-dto.d.ts +3 -0
  143. package/dist/types/bidding/proposal-dto.js +2 -0
  144. package/dist/types/campaign/campaign-analytics.js +2 -1
  145. package/dist/types/campaign/campaign-expenses.js +2 -1
  146. package/dist/types/campaign/campaign-insights.js +2 -1
  147. package/dist/types/campaign/campaign-integrations.js +2 -1
  148. package/dist/types/campaign/campaign-job-count.js +2 -1
  149. package/dist/types/campaign/campaign.js +2 -1
  150. package/dist/types/campaign/index.js +22 -6
  151. package/dist/types/chat-message/chat-message.js +2 -1
  152. package/dist/types/chat-message/index.js +17 -1
  153. package/dist/types/config/agency-config.js +2 -1
  154. package/dist/types/config/index.js +17 -1
  155. package/dist/types/index.js +29 -15
  156. package/dist/types/job/index.js +19 -3
  157. package/dist/types/job/job-details.d.ts +36 -0
  158. package/dist/types/job/job-details.js +2 -0
  159. package/dist/types/job/job-note.js +2 -1
  160. package/dist/types/job/job-pipeline.d.ts +4 -0
  161. package/dist/types/job/job-pipeline.js +2 -0
  162. package/dist/types/job/job-status.js +4 -1
  163. package/dist/types/job/job-suitability.d.ts +3 -0
  164. package/dist/types/job/job-suitability.js +2 -0
  165. package/dist/types/job/job.d.ts +36 -0
  166. package/dist/types/job/job.js +2 -0
  167. package/dist/types/job-filters/index.js +17 -1
  168. package/dist/types/job-filters/job-filters.js +2 -1
  169. package/dist/types/knowledge-object/index.d.ts +1 -0
  170. package/dist/types/knowledge-object/index.js +17 -0
  171. package/dist/types/knowledge-object/knowledge-object.d.ts +4 -0
  172. package/dist/types/knowledge-object/knowledge-object.js +2 -0
  173. package/dist/types/logger/index.js +17 -1
  174. package/dist/types/logger/log-event.js +2 -1
  175. package/dist/types/saved-search/index.js +2 -1
  176. package/dist/types/scraper/index.js +18 -2
  177. package/dist/types/scraper/scrape-payload.js +2 -1
  178. package/dist/types/scraper/scrape-response.d.ts +4 -0
  179. package/dist/types/scraper/scrape-response.js +2 -0
  180. package/dist/types/scraper/scrape-result.js +2 -1
  181. package/dist/types/time-filter/index.js +2 -1
  182. package/dist/types/upwork-account/index.d.ts +3 -0
  183. package/dist/types/upwork-account/index.js +19 -0
  184. package/dist/types/upwork-account/upwork-account-status.d.ts +3 -0
  185. package/dist/types/upwork-account/upwork-account-status.js +2 -0
  186. package/dist/types/upwork-account/upwork-business-manager-account.d.ts +7 -0
  187. package/dist/types/upwork-account/upwork-business-manager-account.js +2 -0
  188. package/dist/types/upwork-account/upwork-scraping-account.d.ts +5 -0
  189. package/dist/types/upwork-account/upwork-scraping-account.js +2 -0
  190. package/dist/types/user/index.js +2 -1
  191. package/dist/utils/index.js +17 -1
  192. package/dist/utils/try-catch.js +23 -8
  193. package/package.json +1 -1
  194. package/dist/schemas/event/index.d.ts +0 -58
  195. package/dist/schemas/lead/nuxt.js +0 -287
  196. package/dist/schemas/meter-event/index.d.ts +0 -12
  197. package/dist/schemas/organization/member.js +0 -7
  198. package/dist/schemas/organization/subscription.js +0 -17
  199. package/dist/schemas/proxy/proxy-available-replacements.js +0 -3
  200. package/dist/schemas/proxy/proxy-country.js +0 -249
  201. package/dist/schemas/tier/index.d.ts +0 -119
  202. package/dist/schemas/transaction/index.js +0 -17
  203. package/dist/schemas/usage/index.js +0 -18
  204. package/dist/types/job/nuxt.js +0 -1
  205. package/dist/types/shared.js +0 -1
  206. package/dist/types/transaction/index.js +0 -1
  207. package/dist/types/usage/index.js +0 -1
@@ -103,8 +103,442 @@ export declare const scrapeJobActivityPayloadSchema: import("zod").ZodObject<{
103
103
  }>;
104
104
  export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
105
105
  userId: import("zod").ZodString;
106
- campaignId: import("zod").ZodString;
107
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
+ }>;
108
542
  organization: import("zod").ZodObject<{
109
543
  id: import("zod").ZodString;
110
544
  name: import("zod").ZodString;
@@ -177,7 +611,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
177
611
  source: import("zod").ZodEnum<["stripe", "manual"]>;
178
612
  usage: import("zod").ZodRecord<import("zod").ZodEnum<["suitabilityComplete", "proposalComplete", "biddingComplete"]>, import("zod").ZodNumber>;
179
613
  }, "strip", import("zod").ZodTypeAny, {
180
- status: "active" | "trialing" | "cancelled" | "paused" | "payment_pending" | "payment_failed";
614
+ status: "active" | "paused" | "trialing" | "cancelled" | "payment_pending" | "payment_failed";
181
615
  planId: string;
182
616
  pendingPlanId: string | null;
183
617
  startedAt: number;
@@ -198,7 +632,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
198
632
  source: "stripe" | "manual";
199
633
  usage: Partial<Record<"suitabilityComplete" | "proposalComplete" | "biddingComplete", number>>;
200
634
  }, {
201
- status: "active" | "trialing" | "cancelled" | "paused" | "payment_pending" | "payment_failed";
635
+ status: "active" | "paused" | "trialing" | "cancelled" | "payment_pending" | "payment_failed";
202
636
  planId: string;
203
637
  pendingPlanId: string | null;
204
638
  startedAt: number;
@@ -273,11 +707,13 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
273
707
  type: "agency" | "freelancer";
274
708
  id: string;
275
709
  name: string;
710
+ createdAt: number;
711
+ updatedAt: number;
712
+ active: boolean;
276
713
  associatedBidders: string[] | null;
277
714
  tierId: "free" | "premium";
278
- active: boolean;
279
715
  subscription: {
280
- status: "active" | "trialing" | "cancelled" | "paused" | "payment_pending" | "payment_failed";
716
+ status: "active" | "paused" | "trialing" | "cancelled" | "payment_pending" | "payment_failed";
281
717
  planId: string;
282
718
  pendingPlanId: string | null;
283
719
  startedAt: number;
@@ -311,17 +747,17 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
311
747
  };
312
748
  savedCard: boolean;
313
749
  } | null;
314
- createdAt: number;
315
- updatedAt: number;
316
750
  }, {
317
751
  type: "agency" | "freelancer";
318
752
  id: string;
319
753
  name: string;
754
+ createdAt: number;
755
+ updatedAt: number;
756
+ active: boolean;
320
757
  associatedBidders: string[] | null;
321
758
  tierId: "free" | "premium";
322
- active: boolean;
323
759
  subscription: {
324
- status: "active" | "trialing" | "cancelled" | "paused" | "payment_pending" | "payment_failed";
760
+ status: "active" | "paused" | "trialing" | "cancelled" | "payment_pending" | "payment_failed";
325
761
  planId: string;
326
762
  pendingPlanId: string | null;
327
763
  startedAt: number;
@@ -355,8 +791,6 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
355
791
  };
356
792
  savedCard: boolean;
357
793
  } | null;
358
- createdAt: number;
359
- updatedAt: number;
360
794
  }>;
361
795
  lead: import("zod").ZodObject<Omit<import("zod").objectUtil.extendShape<{
362
796
  id: import("zod").ZodNullable<import("zod").ZodString>;
@@ -396,24 +830,24 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
396
830
  paymentType: import("zod").ZodNullable<import("zod").ZodString>;
397
831
  fixedPrice: import("zod").ZodNullable<import("zod").ZodNumber>;
398
832
  }, "strip", import("zod").ZodTypeAny, {
833
+ paymentType: string | null;
834
+ experienceLevel: string | null;
399
835
  hours: string | null;
400
836
  duration: string | null;
401
- experienceLevel: string | null;
402
837
  hourlyRate: {
403
838
  min: number | null;
404
839
  max: number | null;
405
840
  } | null;
406
- paymentType: string | null;
407
841
  fixedPrice: number | null;
408
842
  }, {
843
+ paymentType: string | null;
844
+ experienceLevel: string | null;
409
845
  hours: string | null;
410
846
  duration: string | null;
411
- experienceLevel: string | null;
412
847
  hourlyRate: {
413
848
  min: number | null;
414
849
  max: number | null;
415
850
  } | null;
416
- paymentType: string | null;
417
851
  fixedPrice: number | null;
418
852
  }>>;
419
853
  clientInfo: import("zod").ZodNullable<import("zod").ZodObject<{
@@ -438,6 +872,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
438
872
  region: string | null;
439
873
  isPaymentVerified: boolean | null;
440
874
  isPhoneVerified: boolean | null;
875
+ enterpriseClient: boolean | null;
876
+ companySize: string | null;
441
877
  numberOfReviews: number | null;
442
878
  rating: number | null;
443
879
  country: string | null;
@@ -449,13 +885,13 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
449
885
  hireRate: number | null;
450
886
  memberSince: string | null;
451
887
  companyIndustry: string | null;
452
- companySize: string | null;
453
- enterpriseClient: boolean | null;
454
888
  avgHourlyRatePaid: number | null;
455
889
  }, {
456
890
  region: string | null;
457
891
  isPaymentVerified: boolean | null;
458
892
  isPhoneVerified: boolean | null;
893
+ enterpriseClient: boolean | null;
894
+ companySize: string | null;
459
895
  numberOfReviews: number | null;
460
896
  rating: number | null;
461
897
  country: string | null;
@@ -467,8 +903,6 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
467
903
  hireRate: number | null;
468
904
  memberSince: string | null;
469
905
  companyIndustry: string | null;
470
- companySize: string | null;
471
- enterpriseClient: boolean | null;
472
906
  avgHourlyRatePaid: number | null;
473
907
  }>>;
474
908
  vendorQualifications: import("zod").ZodNullable<import("zod").ZodObject<{
@@ -479,19 +913,19 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
479
913
  jobSuccessScore: import("zod").ZodNullable<import("zod").ZodString>;
480
914
  includeRisingTalent: import("zod").ZodNullable<import("zod").ZodString>;
481
915
  }, "strip", import("zod").ZodTypeAny, {
916
+ includeRisingTalent: string | null;
482
917
  location: string | null;
483
- talentType: "Agency" | "Independent" | "unspecified" | null;
918
+ talentType: "Independent" | "Agency" | "unspecified" | null;
484
919
  englishLevel: string | null;
485
920
  minimumEarnings: number | null;
486
921
  jobSuccessScore: string | null;
487
- includeRisingTalent: string | null;
488
922
  }, {
923
+ includeRisingTalent: string | null;
489
924
  location: string | null;
490
- talentType: "Agency" | "Independent" | "unspecified" | null;
925
+ talentType: "Independent" | "Agency" | "unspecified" | null;
491
926
  englishLevel: string | null;
492
927
  minimumEarnings: number | null;
493
928
  jobSuccessScore: string | null;
494
- includeRisingTalent: string | null;
495
929
  }>>;
496
930
  processed: import("zod").ZodNullable<import("zod").ZodBoolean>;
497
931
  isFeatured: import("zod").ZodNullable<import("zod").ZodBoolean>;
@@ -509,8 +943,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
509
943
  numHours: import("zod").ZodNullable<import("zod").ZodNumber>;
510
944
  totalBilled: import("zod").ZodNullable<import("zod").ZodNumber>;
511
945
  }, "strip", import("zod").ZodTypeAny, {
512
- hourlyRate: number | null;
513
946
  paymentType: string | null;
947
+ hourlyRate: number | null;
514
948
  fixedPrice: number | null;
515
949
  jobTitle: string | null;
516
950
  freelancerName: string | null;
@@ -522,8 +956,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
522
956
  numHours: number | null;
523
957
  totalBilled: number | null;
524
958
  }, {
525
- hourlyRate: number | null;
526
959
  paymentType: string | null;
960
+ hourlyRate: number | null;
527
961
  fixedPrice: number | null;
528
962
  jobTitle: string | null;
529
963
  freelancerName: string | null;
@@ -687,33 +1121,14 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
687
1121
  isFeatured: boolean | null;
688
1122
  region: "USOnly" | "UKOnly" | "Worldwide" | null;
689
1123
  id: string | null;
690
- createdAt: number | null;
691
- updatedAt: number | null;
692
- category: string | null;
693
- skills: {
694
- name: string;
695
- }[] | null;
696
- description: string | null;
697
- descriptionLength: number | null;
698
- connectsRequired: number | null;
699
- projectType: string | null;
700
1124
  projectDuration: string | null;
701
1125
  questions: string[] | null;
702
- metadata: {
703
- hours: string | null;
704
- duration: string | null;
705
- experienceLevel: string | null;
706
- hourlyRate: {
707
- min: number | null;
708
- max: number | null;
709
- } | null;
710
- paymentType: string | null;
711
- fixedPrice: number | null;
712
- } | null;
713
1126
  clientInfo: {
714
1127
  region: string | null;
715
1128
  isPaymentVerified: boolean | null;
716
1129
  isPhoneVerified: boolean | null;
1130
+ enterpriseClient: boolean | null;
1131
+ companySize: string | null;
717
1132
  numberOfReviews: number | null;
718
1133
  rating: number | null;
719
1134
  country: string | null;
@@ -725,21 +1140,43 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
725
1140
  hireRate: number | null;
726
1141
  memberSince: string | null;
727
1142
  companyIndustry: string | null;
728
- companySize: string | null;
729
- enterpriseClient: boolean | null;
730
1143
  avgHourlyRatePaid: number | null;
731
1144
  } | null;
732
1145
  vendorQualifications: {
1146
+ includeRisingTalent: string | null;
733
1147
  location: string | null;
734
- talentType: "Agency" | "Independent" | "unspecified" | null;
1148
+ talentType: "Independent" | "Agency" | "unspecified" | null;
735
1149
  englishLevel: string | null;
736
1150
  minimumEarnings: number | null;
737
1151
  jobSuccessScore: string | null;
738
- 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;
739
1176
  } | null;
740
1177
  clientReviews: {
741
- hourlyRate: number | null;
742
1178
  paymentType: string | null;
1179
+ hourlyRate: number | null;
743
1180
  fixedPrice: number | null;
744
1181
  jobTitle: string | null;
745
1182
  freelancerName: string | null;
@@ -778,11 +1215,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
778
1215
  question: string;
779
1216
  answer: string;
780
1217
  }[] | null;
781
- 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;
782
1219
  leadStatus: "leads" | "contacted" | "viewed" | "replied" | "interview" | "won" | "lost" | null;
783
- biddingAmount: number | null;
784
- boosted: boolean | null;
785
- boostingAmount: number | null;
786
1220
  biddingTaskScheduled: boolean | null;
787
1221
  scheduledBiddingTime: number | null;
788
1222
  activity?: Partial<Record<"4h" | "24h", {
@@ -814,33 +1248,14 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
814
1248
  isFeatured: boolean | null;
815
1249
  region: "USOnly" | "UKOnly" | "Worldwide" | null;
816
1250
  id: string | null;
817
- createdAt: number | null;
818
- updatedAt: number | null;
819
- category: string | null;
820
- skills: {
821
- name: string;
822
- }[] | null;
823
- description: string | null;
824
- descriptionLength: number | null;
825
- connectsRequired: number | null;
826
- projectType: string | null;
827
1251
  projectDuration: string | null;
828
1252
  questions: string[] | null;
829
- metadata: {
830
- hours: string | null;
831
- duration: string | null;
832
- experienceLevel: string | null;
833
- hourlyRate: {
834
- min: number | null;
835
- max: number | null;
836
- } | null;
837
- paymentType: string | null;
838
- fixedPrice: number | null;
839
- } | null;
840
1253
  clientInfo: {
841
1254
  region: string | null;
842
1255
  isPaymentVerified: boolean | null;
843
1256
  isPhoneVerified: boolean | null;
1257
+ enterpriseClient: boolean | null;
1258
+ companySize: string | null;
844
1259
  numberOfReviews: number | null;
845
1260
  rating: number | null;
846
1261
  country: string | null;
@@ -852,21 +1267,43 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
852
1267
  hireRate: number | null;
853
1268
  memberSince: string | null;
854
1269
  companyIndustry: string | null;
855
- companySize: string | null;
856
- enterpriseClient: boolean | null;
857
1270
  avgHourlyRatePaid: number | null;
858
1271
  } | null;
859
1272
  vendorQualifications: {
1273
+ includeRisingTalent: string | null;
860
1274
  location: string | null;
861
- talentType: "Agency" | "Independent" | "unspecified" | null;
1275
+ talentType: "Independent" | "Agency" | "unspecified" | null;
862
1276
  englishLevel: string | null;
863
1277
  minimumEarnings: number | null;
864
1278
  jobSuccessScore: string | null;
865
- 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;
866
1303
  } | null;
867
1304
  clientReviews: {
868
- hourlyRate: number | null;
869
1305
  paymentType: string | null;
1306
+ hourlyRate: number | null;
870
1307
  fixedPrice: number | null;
871
1308
  jobTitle: string | null;
872
1309
  freelancerName: string | null;
@@ -905,11 +1342,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
905
1342
  question: string;
906
1343
  answer: string;
907
1344
  }[] | null;
908
- 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;
909
1346
  leadStatus: "leads" | "contacted" | "viewed" | "replied" | "interview" | "won" | "lost" | null;
910
- biddingAmount: number | null;
911
- boosted: boolean | null;
912
- boostingAmount: number | null;
913
1347
  biddingTaskScheduled: boolean | null;
914
1348
  scheduledBiddingTime: number | null;
915
1349
  activity?: Partial<Record<"4h" | "24h", {
@@ -1011,17 +1445,99 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1011
1445
  firstExecutionTime: import("zod").ZodNumber;
1012
1446
  }, "strip", import("zod").ZodTypeAny, {
1013
1447
  userId: string;
1014
- campaignId: string;
1015
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
+ };
1016
1530
  organization: {
1017
1531
  type: "agency" | "freelancer";
1018
1532
  id: string;
1019
1533
  name: string;
1534
+ createdAt: number;
1535
+ updatedAt: number;
1536
+ active: boolean;
1020
1537
  associatedBidders: string[] | null;
1021
1538
  tierId: "free" | "premium";
1022
- active: boolean;
1023
1539
  subscription: {
1024
- status: "active" | "trialing" | "cancelled" | "paused" | "payment_pending" | "payment_failed";
1540
+ status: "active" | "paused" | "trialing" | "cancelled" | "payment_pending" | "payment_failed";
1025
1541
  planId: string;
1026
1542
  pendingPlanId: string | null;
1027
1543
  startedAt: number;
@@ -1055,8 +1571,6 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1055
1571
  };
1056
1572
  savedCard: boolean;
1057
1573
  } | null;
1058
- createdAt: number;
1059
- updatedAt: number;
1060
1574
  };
1061
1575
  lead: {
1062
1576
  uid: string | null;
@@ -1066,33 +1580,14 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1066
1580
  isFeatured: boolean | null;
1067
1581
  region: "USOnly" | "UKOnly" | "Worldwide" | null;
1068
1582
  id: string | null;
1069
- createdAt: number | null;
1070
- updatedAt: number | null;
1071
- category: string | null;
1072
- skills: {
1073
- name: string;
1074
- }[] | null;
1075
- description: string | null;
1076
- descriptionLength: number | null;
1077
- connectsRequired: number | null;
1078
- projectType: string | null;
1079
1583
  projectDuration: string | null;
1080
1584
  questions: string[] | null;
1081
- metadata: {
1082
- hours: string | null;
1083
- duration: string | null;
1084
- experienceLevel: string | null;
1085
- hourlyRate: {
1086
- min: number | null;
1087
- max: number | null;
1088
- } | null;
1089
- paymentType: string | null;
1090
- fixedPrice: number | null;
1091
- } | null;
1092
1585
  clientInfo: {
1093
1586
  region: string | null;
1094
1587
  isPaymentVerified: boolean | null;
1095
1588
  isPhoneVerified: boolean | null;
1589
+ enterpriseClient: boolean | null;
1590
+ companySize: string | null;
1096
1591
  numberOfReviews: number | null;
1097
1592
  rating: number | null;
1098
1593
  country: string | null;
@@ -1104,21 +1599,43 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1104
1599
  hireRate: number | null;
1105
1600
  memberSince: string | null;
1106
1601
  companyIndustry: string | null;
1107
- companySize: string | null;
1108
- enterpriseClient: boolean | null;
1109
1602
  avgHourlyRatePaid: number | null;
1110
1603
  } | null;
1111
1604
  vendorQualifications: {
1605
+ includeRisingTalent: string | null;
1112
1606
  location: string | null;
1113
- talentType: "Agency" | "Independent" | "unspecified" | null;
1607
+ talentType: "Independent" | "Agency" | "unspecified" | null;
1114
1608
  englishLevel: string | null;
1115
1609
  minimumEarnings: number | null;
1116
1610
  jobSuccessScore: string | null;
1117
- 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;
1118
1635
  } | null;
1119
1636
  clientReviews: {
1120
- hourlyRate: number | null;
1121
1637
  paymentType: string | null;
1638
+ hourlyRate: number | null;
1122
1639
  fixedPrice: number | null;
1123
1640
  jobTitle: string | null;
1124
1641
  freelancerName: string | null;
@@ -1157,11 +1674,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1157
1674
  question: string;
1158
1675
  answer: string;
1159
1676
  }[] | null;
1160
- 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;
1161
1678
  leadStatus: "leads" | "contacted" | "viewed" | "replied" | "interview" | "won" | "lost" | null;
1162
- biddingAmount: number | null;
1163
- boosted: boolean | null;
1164
- boostingAmount: number | null;
1165
1679
  biddingTaskScheduled: boolean | null;
1166
1680
  scheduledBiddingTime: number | null;
1167
1681
  activity?: Partial<Record<"4h" | "24h", {
@@ -1211,17 +1725,99 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1211
1725
  firstExecutionTime: number;
1212
1726
  }, {
1213
1727
  userId: string;
1214
- campaignId: string;
1215
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
+ };
1216
1810
  organization: {
1217
1811
  type: "agency" | "freelancer";
1218
1812
  id: string;
1219
1813
  name: string;
1814
+ createdAt: number;
1815
+ updatedAt: number;
1816
+ active: boolean;
1220
1817
  associatedBidders: string[] | null;
1221
1818
  tierId: "free" | "premium";
1222
- active: boolean;
1223
1819
  subscription: {
1224
- status: "active" | "trialing" | "cancelled" | "paused" | "payment_pending" | "payment_failed";
1820
+ status: "active" | "paused" | "trialing" | "cancelled" | "payment_pending" | "payment_failed";
1225
1821
  planId: string;
1226
1822
  pendingPlanId: string | null;
1227
1823
  startedAt: number;
@@ -1255,8 +1851,6 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1255
1851
  };
1256
1852
  savedCard: boolean;
1257
1853
  } | null;
1258
- createdAt: number;
1259
- updatedAt: number;
1260
1854
  };
1261
1855
  lead: {
1262
1856
  uid: string | null;
@@ -1266,33 +1860,14 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1266
1860
  isFeatured: boolean | null;
1267
1861
  region: "USOnly" | "UKOnly" | "Worldwide" | null;
1268
1862
  id: string | null;
1269
- createdAt: number | null;
1270
- updatedAt: number | null;
1271
- category: string | null;
1272
- skills: {
1273
- name: string;
1274
- }[] | null;
1275
- description: string | null;
1276
- descriptionLength: number | null;
1277
- connectsRequired: number | null;
1278
- projectType: string | null;
1279
1863
  projectDuration: string | null;
1280
1864
  questions: string[] | null;
1281
- metadata: {
1282
- hours: string | null;
1283
- duration: string | null;
1284
- experienceLevel: string | null;
1285
- hourlyRate: {
1286
- min: number | null;
1287
- max: number | null;
1288
- } | null;
1289
- paymentType: string | null;
1290
- fixedPrice: number | null;
1291
- } | null;
1292
1865
  clientInfo: {
1293
1866
  region: string | null;
1294
1867
  isPaymentVerified: boolean | null;
1295
1868
  isPhoneVerified: boolean | null;
1869
+ enterpriseClient: boolean | null;
1870
+ companySize: string | null;
1296
1871
  numberOfReviews: number | null;
1297
1872
  rating: number | null;
1298
1873
  country: string | null;
@@ -1304,21 +1879,43 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1304
1879
  hireRate: number | null;
1305
1880
  memberSince: string | null;
1306
1881
  companyIndustry: string | null;
1307
- companySize: string | null;
1308
- enterpriseClient: boolean | null;
1309
1882
  avgHourlyRatePaid: number | null;
1310
1883
  } | null;
1311
1884
  vendorQualifications: {
1885
+ includeRisingTalent: string | null;
1312
1886
  location: string | null;
1313
- talentType: "Agency" | "Independent" | "unspecified" | null;
1887
+ talentType: "Independent" | "Agency" | "unspecified" | null;
1314
1888
  englishLevel: string | null;
1315
1889
  minimumEarnings: number | null;
1316
1890
  jobSuccessScore: string | null;
1317
- 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;
1318
1915
  } | null;
1319
1916
  clientReviews: {
1320
- hourlyRate: number | null;
1321
1917
  paymentType: string | null;
1918
+ hourlyRate: number | null;
1322
1919
  fixedPrice: number | null;
1323
1920
  jobTitle: string | null;
1324
1921
  freelancerName: string | null;
@@ -1357,11 +1954,8 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
1357
1954
  question: string;
1358
1955
  answer: string;
1359
1956
  }[] | null;
1360
- 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;
1361
1958
  leadStatus: "leads" | "contacted" | "viewed" | "replied" | "interview" | "won" | "lost" | null;
1362
- biddingAmount: number | null;
1363
- boosted: boolean | null;
1364
- boostingAmount: number | null;
1365
1959
  biddingTaskScheduled: boolean | null;
1366
1960
  scheduledBiddingTime: number | null;
1367
1961
  activity?: Partial<Record<"4h" | "24h", {