lancer-shared 1.0.0

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 (131) hide show
  1. package/dist/constants/common-questions.d.ts +5 -0
  2. package/dist/constants/common-questions.js +60 -0
  3. package/dist/constants/index.d.ts +16 -0
  4. package/dist/constants/index.js +38 -0
  5. package/dist/constants/job-filter-options.d.ts +61 -0
  6. package/dist/constants/job-filter-options.js +265 -0
  7. package/dist/constants/job-status.d.ts +4 -0
  8. package/dist/constants/job-status.js +26 -0
  9. package/dist/constants/mappings/countryMapping.d.ts +2 -0
  10. package/dist/constants/mappings/countryMapping.js +122 -0
  11. package/dist/constants/mappings/regionMapping.d.ts +2 -0
  12. package/dist/constants/mappings/regionMapping.js +242 -0
  13. package/dist/constants/routes.d.ts +57 -0
  14. package/dist/constants/routes.js +63 -0
  15. package/dist/index.d.ts +3 -0
  16. package/dist/index.js +19 -0
  17. package/dist/schemas/ai/ai-config.d.ts +36 -0
  18. package/dist/schemas/ai/ai-config.js +12 -0
  19. package/dist/schemas/ai/index.d.ts +3 -0
  20. package/dist/schemas/ai/index.js +19 -0
  21. package/dist/schemas/ai/proposal.d.ts +82 -0
  22. package/dist/schemas/ai/proposal.js +16 -0
  23. package/dist/schemas/ai/suitability.d.ts +37 -0
  24. package/dist/schemas/ai/suitability.js +17 -0
  25. package/dist/schemas/bidding/index.d.ts +1 -0
  26. package/dist/schemas/bidding/index.js +17 -0
  27. package/dist/schemas/bidding/proposal-bidding-status.d.ts +26 -0
  28. package/dist/schemas/bidding/proposal-bidding-status.js +18 -0
  29. package/dist/schemas/campaign/campaign-expenses.d.ts +14 -0
  30. package/dist/schemas/campaign/campaign-expenses.js +9 -0
  31. package/dist/schemas/campaign/campaign-insights.d.ts +118 -0
  32. package/dist/schemas/campaign/campaign-insights.js +31 -0
  33. package/dist/schemas/campaign/campaign-integrations.d.ts +82 -0
  34. package/dist/schemas/campaign/campaign-integrations.js +16 -0
  35. package/dist/schemas/campaign/campaign-job-count.d.ts +2 -0
  36. package/dist/schemas/campaign/campaign-job-count.js +6 -0
  37. package/dist/schemas/campaign/campaign.d.ts +1146 -0
  38. package/dist/schemas/campaign/campaign.js +37 -0
  39. package/dist/schemas/campaign/index.d.ts +5 -0
  40. package/dist/schemas/campaign/index.js +21 -0
  41. package/dist/schemas/chat-message/chat-message.d.ts +31 -0
  42. package/dist/schemas/chat-message/chat-message.js +13 -0
  43. package/dist/schemas/chat-message/index.d.ts +1 -0
  44. package/dist/schemas/chat-message/index.js +17 -0
  45. package/dist/schemas/index.d.ts +10 -0
  46. package/dist/schemas/index.js +26 -0
  47. package/dist/schemas/job/index.d.ts +3 -0
  48. package/dist/schemas/job/index.js +19 -0
  49. package/dist/schemas/job/job-details.d.ts +335 -0
  50. package/dist/schemas/job/job-details.js +29 -0
  51. package/dist/schemas/job/job-note.d.ts +83 -0
  52. package/dist/schemas/job/job-note.js +30 -0
  53. package/dist/schemas/job/job-status.d.ts +3 -0
  54. package/dist/schemas/job/job-status.js +27 -0
  55. package/dist/schemas/job/job.d.ts +1160 -0
  56. package/dist/schemas/job/job.js +90 -0
  57. package/dist/schemas/job/pipeline-job.d.ts +602 -0
  58. package/dist/schemas/job/pipeline-job.js +42 -0
  59. package/dist/schemas/job/upwork-job.d.ts +334 -0
  60. package/dist/schemas/job/upwork-job.js +60 -0
  61. package/dist/schemas/job-filters/index.d.ts +1 -0
  62. package/dist/schemas/job-filters/index.js +17 -0
  63. package/dist/schemas/job-filters/job-filters.d.ts +187 -0
  64. package/dist/schemas/job-filters/job-filters.js +69 -0
  65. package/dist/schemas/saved-search/index.d.ts +19 -0
  66. package/dist/schemas/saved-search/index.js +12 -0
  67. package/dist/schemas/scraper/index.d.ts +2 -0
  68. package/dist/schemas/scraper/index.js +18 -0
  69. package/dist/schemas/scraper/scrape-payload.d.ts +17 -0
  70. package/dist/schemas/scraper/scrape-payload.js +10 -0
  71. package/dist/schemas/scraper/scrape-result.d.ts +345 -0
  72. package/dist/schemas/scraper/scrape-result.js +9 -0
  73. package/dist/schemas/shared.d.ts +7 -0
  74. package/dist/schemas/shared.js +16 -0
  75. package/dist/schemas/user/index.d.ts +72 -0
  76. package/dist/schemas/user/index.js +33 -0
  77. package/dist/types/ai/ai-config.d.ts +6 -0
  78. package/dist/types/ai/ai-config.js +2 -0
  79. package/dist/types/ai/index.d.ts +3 -0
  80. package/dist/types/ai/index.js +19 -0
  81. package/dist/types/ai/proposal.d.ts +10 -0
  82. package/dist/types/ai/proposal.js +2 -0
  83. package/dist/types/ai/suitability.d.ts +6 -0
  84. package/dist/types/ai/suitability.js +2 -0
  85. package/dist/types/bidding/index.d.ts +1 -0
  86. package/dist/types/bidding/index.js +17 -0
  87. package/dist/types/bidding/proposal-bidding-status.d.ts +3 -0
  88. package/dist/types/bidding/proposal-bidding-status.js +2 -0
  89. package/dist/types/campaign/campaign-expenses.d.ts +3 -0
  90. package/dist/types/campaign/campaign-expenses.js +2 -0
  91. package/dist/types/campaign/campaign-insights.d.ts +8 -0
  92. package/dist/types/campaign/campaign-insights.js +2 -0
  93. package/dist/types/campaign/campaign-integrations.d.ts +6 -0
  94. package/dist/types/campaign/campaign-integrations.js +2 -0
  95. package/dist/types/campaign/campaign-job-count.d.ts +4 -0
  96. package/dist/types/campaign/campaign-job-count.js +2 -0
  97. package/dist/types/campaign/campaign.d.ts +16 -0
  98. package/dist/types/campaign/campaign.js +2 -0
  99. package/dist/types/campaign/index.d.ts +5 -0
  100. package/dist/types/campaign/index.js +21 -0
  101. package/dist/types/chat-message/chat-message.d.ts +4 -0
  102. package/dist/types/chat-message/chat-message.js +2 -0
  103. package/dist/types/chat-message/index.d.ts +1 -0
  104. package/dist/types/chat-message/index.js +17 -0
  105. package/dist/types/index.d.ts +9 -0
  106. package/dist/types/index.js +25 -0
  107. package/dist/types/job/index.d.ts +3 -0
  108. package/dist/types/job/index.js +19 -0
  109. package/dist/types/job/job-details.d.ts +36 -0
  110. package/dist/types/job/job-details.js +2 -0
  111. package/dist/types/job/job-note.d.ts +10 -0
  112. package/dist/types/job/job-note.js +2 -0
  113. package/dist/types/job/job-status.d.ts +5 -0
  114. package/dist/types/job/job-status.js +12 -0
  115. package/dist/types/job/job.d.ts +32 -0
  116. package/dist/types/job/job.js +2 -0
  117. package/dist/types/job-filters/index.d.ts +1 -0
  118. package/dist/types/job-filters/index.js +17 -0
  119. package/dist/types/job-filters/job-filters.d.ts +4 -0
  120. package/dist/types/job-filters/job-filters.js +2 -0
  121. package/dist/types/saved-search/index.d.ts +6 -0
  122. package/dist/types/saved-search/index.js +2 -0
  123. package/dist/types/scraper/index.d.ts +2 -0
  124. package/dist/types/scraper/index.js +18 -0
  125. package/dist/types/scraper/scrape-payload.d.ts +4 -0
  126. package/dist/types/scraper/scrape-payload.js +2 -0
  127. package/dist/types/scraper/scrape-result.d.ts +4 -0
  128. package/dist/types/scraper/scrape-result.js +2 -0
  129. package/dist/types/user/index.d.ts +12 -0
  130. package/dist/types/user/index.js +2 -0
  131. package/package.json +35 -0
@@ -0,0 +1,1146 @@
1
+ import { z } from "zod";
2
+ export declare const campaignSchema: z.ZodObject<{
3
+ id: z.ZodString;
4
+ name: z.ZodString;
5
+ filters: z.ZodObject<{
6
+ keywords: z.ZodNullable<z.ZodObject<{
7
+ includes: z.ZodNullable<z.ZodString>;
8
+ excludes: z.ZodNullable<z.ZodString>;
9
+ }, "strip", z.ZodTypeAny, {
10
+ includes: string | null;
11
+ excludes: string | null;
12
+ }, {
13
+ includes: string | null;
14
+ excludes: string | null;
15
+ }>>;
16
+ categories: z.ZodNullable<z.ZodObject<{
17
+ includes: z.ZodNullable<z.ZodArray<z.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">>;
18
+ excludes: z.ZodNullable<z.ZodArray<z.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">>;
19
+ }, "strip", z.ZodTypeAny, {
20
+ 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;
21
+ 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;
22
+ }, {
23
+ 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;
24
+ 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;
25
+ }>>;
26
+ payment: z.ZodNullable<z.ZodObject<{
27
+ paymentType: z.ZodNullable<z.ZodArray<z.ZodEnum<["Fixed-price", "Hourly"]>, "many">>;
28
+ minFixedPrice: z.ZodNullable<z.ZodNumber>;
29
+ maxFixedPrice: z.ZodNullable<z.ZodNumber>;
30
+ minHourlyRate: z.ZodNullable<z.ZodNumber>;
31
+ maxHourlyRate: z.ZodNullable<z.ZodNumber>;
32
+ }, "strip", z.ZodTypeAny, {
33
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
34
+ minFixedPrice: number | null;
35
+ maxFixedPrice: number | null;
36
+ minHourlyRate: number | null;
37
+ maxHourlyRate: number | null;
38
+ }, {
39
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
40
+ minFixedPrice: number | null;
41
+ maxFixedPrice: number | null;
42
+ minHourlyRate: number | null;
43
+ maxHourlyRate: number | null;
44
+ }>>;
45
+ projectDuration: z.ZodNullable<z.ZodArray<z.ZodEnum<["Less than 1 month", "1 to 3 months", "3 to 6 months", "More than 6 months", "Unspecified"]>, "many">>;
46
+ experienceLevel: z.ZodNullable<z.ZodArray<z.ZodEnum<["Entry level", "Intermediate", "Expert"]>, "many">>;
47
+ questions: z.ZodNullable<z.ZodObject<{
48
+ hasQuestions: z.ZodDefault<z.ZodEnum<["all", "yes", "no"]>>;
49
+ }, "strip", z.ZodTypeAny, {
50
+ hasQuestions: "all" | "yes" | "no";
51
+ }, {
52
+ hasQuestions?: "all" | "yes" | "no" | undefined;
53
+ }>>;
54
+ engagementType: z.ZodNullable<z.ZodArray<z.ZodEnum<["Less than 30 hrs/week", "More than 30 hrs/week", "Unspecified"]>, "many">>;
55
+ clientInfo: z.ZodNullable<z.ZodObject<{
56
+ isPaymentVerified: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
57
+ enterpriseClient: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
58
+ clientLocationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
59
+ clientLocationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
60
+ minReviewScore: z.ZodNullable<z.ZodNumber>;
61
+ minTotalSpent: z.ZodNullable<z.ZodNumber>;
62
+ minHireRate: z.ZodNullable<z.ZodNumber>;
63
+ clientIndustry: z.ZodNullable<z.ZodArray<z.ZodEnum<["Aerospace", "Agriculture & Forestry", "Art & Design", "Automotive", "Aviation", "Education", "Energy & Utilities", "Engineering & Architecture", "Fashion & Beauty", "Finance & Accounting", "Food & Beverage", "Government & Public Sector", "Health & Fitness", "HR & Business Services", "Legal", "Manufacturing & Construction", "Media & Entertainment", "Military & Defense", "Mining", "Real Estate", "Retail & Consumer Goods", "Sales & Marketing", "Science & Medicine", "Sports & Recreation", "Supply Chain & Logistics", "Tech & IT", "Transportation & Warehousing", "Travel & Hospitality"]>, "many">>;
64
+ companySize: z.ZodNullable<z.ZodArray<z.ZodEnum<["Individual client", "Small company (2-9 people)", "Mid-sized company (10-99 people)", "Large company (100-1,000 people)", "Large company (1,000+ people)", "Unspecified"]>, "many">>;
65
+ }, "strip", z.ZodTypeAny, {
66
+ isPaymentVerified: "false" | "all" | "true";
67
+ 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;
68
+ enterpriseClient: "false" | "all" | "true";
69
+ clientLocationIncludes: string[] | null;
70
+ clientLocationExcludes: string[] | null;
71
+ minReviewScore: number | null;
72
+ minTotalSpent: number | null;
73
+ minHireRate: number | null;
74
+ 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;
75
+ }, {
76
+ 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;
77
+ clientLocationIncludes: string[] | null;
78
+ clientLocationExcludes: string[] | null;
79
+ minReviewScore: number | null;
80
+ minTotalSpent: number | null;
81
+ minHireRate: number | null;
82
+ 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;
83
+ isPaymentVerified?: "false" | "all" | "true" | undefined;
84
+ enterpriseClient?: "false" | "all" | "true" | undefined;
85
+ }>>;
86
+ vendorQualifications: z.ZodNullable<z.ZodObject<{
87
+ locationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
88
+ locationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
89
+ talentTypes: z.ZodNullable<z.ZodArray<z.ZodEnum<["Agency", "Independent", "Unspecified"]>, "many">>;
90
+ englishLevels: z.ZodNullable<z.ZodArray<z.ZodEnum<["Fluent", "Conversational", "Native or Bilingual", "Unspecified"]>, "many">>;
91
+ }, "strip", z.ZodTypeAny, {
92
+ locationIncludes: string[] | null;
93
+ locationExcludes: string[] | null;
94
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
95
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
96
+ }, {
97
+ locationIncludes: string[] | null;
98
+ locationExcludes: string[] | null;
99
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
100
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
101
+ }>>;
102
+ }, "strip", z.ZodTypeAny, {
103
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
104
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
105
+ questions: {
106
+ hasQuestions: "all" | "yes" | "no";
107
+ } | null;
108
+ clientInfo: {
109
+ isPaymentVerified: "false" | "all" | "true";
110
+ 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;
111
+ enterpriseClient: "false" | "all" | "true";
112
+ clientLocationIncludes: string[] | null;
113
+ clientLocationExcludes: string[] | null;
114
+ minReviewScore: number | null;
115
+ minTotalSpent: number | null;
116
+ minHireRate: number | null;
117
+ 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;
118
+ } | null;
119
+ vendorQualifications: {
120
+ locationIncludes: string[] | null;
121
+ locationExcludes: string[] | null;
122
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
123
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
124
+ } | null;
125
+ keywords: {
126
+ includes: string | null;
127
+ excludes: string | null;
128
+ } | null;
129
+ categories: {
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
+ } | null;
133
+ payment: {
134
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
135
+ minFixedPrice: number | null;
136
+ maxFixedPrice: number | null;
137
+ minHourlyRate: number | null;
138
+ maxHourlyRate: number | null;
139
+ } | null;
140
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
141
+ }, {
142
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
143
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
144
+ questions: {
145
+ hasQuestions?: "all" | "yes" | "no" | undefined;
146
+ } | null;
147
+ clientInfo: {
148
+ companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
149
+ clientLocationIncludes: string[] | null;
150
+ clientLocationExcludes: string[] | null;
151
+ minReviewScore: number | null;
152
+ minTotalSpent: number | null;
153
+ minHireRate: number | null;
154
+ clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
155
+ isPaymentVerified?: "false" | "all" | "true" | undefined;
156
+ enterpriseClient?: "false" | "all" | "true" | undefined;
157
+ } | null;
158
+ vendorQualifications: {
159
+ locationIncludes: string[] | null;
160
+ locationExcludes: string[] | null;
161
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
162
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
163
+ } | null;
164
+ keywords: {
165
+ includes: string | null;
166
+ excludes: string | null;
167
+ } | null;
168
+ categories: {
169
+ 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;
170
+ 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;
171
+ } | null;
172
+ payment: {
173
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
174
+ minFixedPrice: number | null;
175
+ maxFixedPrice: number | null;
176
+ minHourlyRate: number | null;
177
+ maxHourlyRate: number | null;
178
+ } | null;
179
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
180
+ }>;
181
+ createdAt: z.ZodDate;
182
+ updatedAt: z.ZodDate;
183
+ automatedSuitability: z.ZodNullable<z.ZodBoolean>;
184
+ automatedBidding: z.ZodNullable<z.ZodBoolean>;
185
+ boostingEnabled: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
186
+ maximumBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
187
+ minimumBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
188
+ webhookUrl: z.ZodNullable<z.ZodString>;
189
+ monthlyBudget: z.ZodNullable<z.ZodNumber>;
190
+ suitabilityThreshold: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
191
+ boostingThreshold: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
192
+ jobCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalPending", "proposalProcessing", "proposalComplete", "biddingPending", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>, z.ZodNumber>>;
193
+ expenses: z.ZodObject<{
194
+ biddingAmount: z.ZodDefault<z.ZodNumber>;
195
+ boostingAmount: z.ZodDefault<z.ZodNumber>;
196
+ boosted: z.ZodDefault<z.ZodNumber>;
197
+ }, "strip", z.ZodTypeAny, {
198
+ biddingAmount: number;
199
+ boosted: number;
200
+ boostingAmount: number;
201
+ }, {
202
+ biddingAmount?: number | undefined;
203
+ boosted?: number | undefined;
204
+ boostingAmount?: number | undefined;
205
+ }>;
206
+ integrations: z.ZodObject<{
207
+ suitabilityHooks: z.ZodObject<{
208
+ discord: z.ZodNullable<z.ZodString>;
209
+ slack: z.ZodNullable<z.ZodString>;
210
+ }, "strip", z.ZodTypeAny, {
211
+ discord: string | null;
212
+ slack: string | null;
213
+ }, {
214
+ discord: string | null;
215
+ slack: string | null;
216
+ }>;
217
+ proposalSentHooks: z.ZodObject<{
218
+ discord: z.ZodNullable<z.ZodString>;
219
+ slack: z.ZodNullable<z.ZodString>;
220
+ }, "strip", z.ZodTypeAny, {
221
+ discord: string | null;
222
+ slack: string | null;
223
+ }, {
224
+ discord: string | null;
225
+ slack: string | null;
226
+ }>;
227
+ }, "strip", z.ZodTypeAny, {
228
+ suitabilityHooks: {
229
+ discord: string | null;
230
+ slack: string | null;
231
+ };
232
+ proposalSentHooks: {
233
+ discord: string | null;
234
+ slack: string | null;
235
+ };
236
+ }, {
237
+ suitabilityHooks: {
238
+ discord: string | null;
239
+ slack: string | null;
240
+ };
241
+ proposalSentHooks: {
242
+ discord: string | null;
243
+ slack: string | null;
244
+ };
245
+ }>;
246
+ }, "strip", z.ZodTypeAny, {
247
+ id: string;
248
+ name: string;
249
+ createdAt: Date;
250
+ updatedAt: Date;
251
+ jobCounts: Partial<Record<"suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalPending" | "proposalProcessing" | "proposalComplete" | "biddingPending" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived", number>> | null;
252
+ filters: {
253
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
254
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
255
+ questions: {
256
+ hasQuestions: "all" | "yes" | "no";
257
+ } | null;
258
+ clientInfo: {
259
+ isPaymentVerified: "false" | "all" | "true";
260
+ 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;
261
+ enterpriseClient: "false" | "all" | "true";
262
+ clientLocationIncludes: string[] | null;
263
+ clientLocationExcludes: string[] | null;
264
+ minReviewScore: number | null;
265
+ minTotalSpent: number | null;
266
+ minHireRate: number | null;
267
+ 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;
268
+ } | null;
269
+ vendorQualifications: {
270
+ locationIncludes: string[] | null;
271
+ locationExcludes: string[] | null;
272
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
273
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
274
+ } | null;
275
+ keywords: {
276
+ includes: string | null;
277
+ excludes: string | null;
278
+ } | null;
279
+ categories: {
280
+ 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;
281
+ 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;
282
+ } | null;
283
+ payment: {
284
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
285
+ minFixedPrice: number | null;
286
+ maxFixedPrice: number | null;
287
+ minHourlyRate: number | null;
288
+ maxHourlyRate: number | null;
289
+ } | null;
290
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
291
+ };
292
+ automatedSuitability: boolean | null;
293
+ automatedBidding: boolean | null;
294
+ boostingEnabled: boolean | null;
295
+ maximumBoost: number | null;
296
+ minimumBoost: number | null;
297
+ webhookUrl: string | null;
298
+ monthlyBudget: number | null;
299
+ suitabilityThreshold: number | null;
300
+ boostingThreshold: number | null;
301
+ expenses: {
302
+ biddingAmount: number;
303
+ boosted: number;
304
+ boostingAmount: number;
305
+ };
306
+ integrations: {
307
+ suitabilityHooks: {
308
+ discord: string | null;
309
+ slack: string | null;
310
+ };
311
+ proposalSentHooks: {
312
+ discord: string | null;
313
+ slack: string | null;
314
+ };
315
+ };
316
+ }, {
317
+ id: string;
318
+ name: string;
319
+ createdAt: Date;
320
+ updatedAt: Date;
321
+ jobCounts: Partial<Record<"suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalPending" | "proposalProcessing" | "proposalComplete" | "biddingPending" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived", number>> | null;
322
+ filters: {
323
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
324
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
325
+ questions: {
326
+ hasQuestions?: "all" | "yes" | "no" | undefined;
327
+ } | null;
328
+ clientInfo: {
329
+ 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;
330
+ clientLocationIncludes: string[] | null;
331
+ clientLocationExcludes: string[] | null;
332
+ minReviewScore: number | null;
333
+ minTotalSpent: number | null;
334
+ minHireRate: number | null;
335
+ 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;
336
+ isPaymentVerified?: "false" | "all" | "true" | undefined;
337
+ enterpriseClient?: "false" | "all" | "true" | undefined;
338
+ } | null;
339
+ vendorQualifications: {
340
+ locationIncludes: string[] | null;
341
+ locationExcludes: string[] | null;
342
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
343
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
344
+ } | null;
345
+ keywords: {
346
+ includes: string | null;
347
+ excludes: string | null;
348
+ } | null;
349
+ categories: {
350
+ 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;
351
+ 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;
352
+ } | null;
353
+ payment: {
354
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
355
+ minFixedPrice: number | null;
356
+ maxFixedPrice: number | null;
357
+ minHourlyRate: number | null;
358
+ maxHourlyRate: number | null;
359
+ } | null;
360
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
361
+ };
362
+ automatedSuitability: boolean | null;
363
+ automatedBidding: boolean | null;
364
+ webhookUrl: string | null;
365
+ monthlyBudget: number | null;
366
+ expenses: {
367
+ biddingAmount?: number | undefined;
368
+ boosted?: number | undefined;
369
+ boostingAmount?: number | undefined;
370
+ };
371
+ integrations: {
372
+ suitabilityHooks: {
373
+ discord: string | null;
374
+ slack: string | null;
375
+ };
376
+ proposalSentHooks: {
377
+ discord: string | null;
378
+ slack: string | null;
379
+ };
380
+ };
381
+ boostingEnabled?: boolean | null | undefined;
382
+ maximumBoost?: number | null | undefined;
383
+ minimumBoost?: number | null | undefined;
384
+ suitabilityThreshold?: number | null | undefined;
385
+ boostingThreshold?: number | null | undefined;
386
+ }>;
387
+ export declare const createCampaignSchema: z.ZodObject<Omit<{
388
+ id: z.ZodString;
389
+ name: z.ZodString;
390
+ filters: z.ZodObject<{
391
+ keywords: z.ZodNullable<z.ZodObject<{
392
+ includes: z.ZodNullable<z.ZodString>;
393
+ excludes: z.ZodNullable<z.ZodString>;
394
+ }, "strip", z.ZodTypeAny, {
395
+ includes: string | null;
396
+ excludes: string | null;
397
+ }, {
398
+ includes: string | null;
399
+ excludes: string | null;
400
+ }>>;
401
+ categories: z.ZodNullable<z.ZodObject<{
402
+ includes: z.ZodNullable<z.ZodArray<z.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">>;
403
+ excludes: z.ZodNullable<z.ZodArray<z.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">>;
404
+ }, "strip", z.ZodTypeAny, {
405
+ 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;
406
+ 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;
407
+ }, {
408
+ 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;
409
+ 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;
410
+ }>>;
411
+ payment: z.ZodNullable<z.ZodObject<{
412
+ paymentType: z.ZodNullable<z.ZodArray<z.ZodEnum<["Fixed-price", "Hourly"]>, "many">>;
413
+ minFixedPrice: z.ZodNullable<z.ZodNumber>;
414
+ maxFixedPrice: z.ZodNullable<z.ZodNumber>;
415
+ minHourlyRate: z.ZodNullable<z.ZodNumber>;
416
+ maxHourlyRate: z.ZodNullable<z.ZodNumber>;
417
+ }, "strip", z.ZodTypeAny, {
418
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
419
+ minFixedPrice: number | null;
420
+ maxFixedPrice: number | null;
421
+ minHourlyRate: number | null;
422
+ maxHourlyRate: number | null;
423
+ }, {
424
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
425
+ minFixedPrice: number | null;
426
+ maxFixedPrice: number | null;
427
+ minHourlyRate: number | null;
428
+ maxHourlyRate: number | null;
429
+ }>>;
430
+ projectDuration: z.ZodNullable<z.ZodArray<z.ZodEnum<["Less than 1 month", "1 to 3 months", "3 to 6 months", "More than 6 months", "Unspecified"]>, "many">>;
431
+ experienceLevel: z.ZodNullable<z.ZodArray<z.ZodEnum<["Entry level", "Intermediate", "Expert"]>, "many">>;
432
+ questions: z.ZodNullable<z.ZodObject<{
433
+ hasQuestions: z.ZodDefault<z.ZodEnum<["all", "yes", "no"]>>;
434
+ }, "strip", z.ZodTypeAny, {
435
+ hasQuestions: "all" | "yes" | "no";
436
+ }, {
437
+ hasQuestions?: "all" | "yes" | "no" | undefined;
438
+ }>>;
439
+ engagementType: z.ZodNullable<z.ZodArray<z.ZodEnum<["Less than 30 hrs/week", "More than 30 hrs/week", "Unspecified"]>, "many">>;
440
+ clientInfo: z.ZodNullable<z.ZodObject<{
441
+ isPaymentVerified: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
442
+ enterpriseClient: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
443
+ clientLocationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
444
+ clientLocationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
445
+ minReviewScore: z.ZodNullable<z.ZodNumber>;
446
+ minTotalSpent: z.ZodNullable<z.ZodNumber>;
447
+ minHireRate: z.ZodNullable<z.ZodNumber>;
448
+ clientIndustry: z.ZodNullable<z.ZodArray<z.ZodEnum<["Aerospace", "Agriculture & Forestry", "Art & Design", "Automotive", "Aviation", "Education", "Energy & Utilities", "Engineering & Architecture", "Fashion & Beauty", "Finance & Accounting", "Food & Beverage", "Government & Public Sector", "Health & Fitness", "HR & Business Services", "Legal", "Manufacturing & Construction", "Media & Entertainment", "Military & Defense", "Mining", "Real Estate", "Retail & Consumer Goods", "Sales & Marketing", "Science & Medicine", "Sports & Recreation", "Supply Chain & Logistics", "Tech & IT", "Transportation & Warehousing", "Travel & Hospitality"]>, "many">>;
449
+ companySize: z.ZodNullable<z.ZodArray<z.ZodEnum<["Individual client", "Small company (2-9 people)", "Mid-sized company (10-99 people)", "Large company (100-1,000 people)", "Large company (1,000+ people)", "Unspecified"]>, "many">>;
450
+ }, "strip", z.ZodTypeAny, {
451
+ isPaymentVerified: "false" | "all" | "true";
452
+ 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;
453
+ enterpriseClient: "false" | "all" | "true";
454
+ clientLocationIncludes: string[] | null;
455
+ clientLocationExcludes: string[] | null;
456
+ minReviewScore: number | null;
457
+ minTotalSpent: number | null;
458
+ minHireRate: number | null;
459
+ 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;
460
+ }, {
461
+ 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;
462
+ clientLocationIncludes: string[] | null;
463
+ clientLocationExcludes: string[] | null;
464
+ minReviewScore: number | null;
465
+ minTotalSpent: number | null;
466
+ minHireRate: number | null;
467
+ 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;
468
+ isPaymentVerified?: "false" | "all" | "true" | undefined;
469
+ enterpriseClient?: "false" | "all" | "true" | undefined;
470
+ }>>;
471
+ vendorQualifications: z.ZodNullable<z.ZodObject<{
472
+ locationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
473
+ locationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
474
+ talentTypes: z.ZodNullable<z.ZodArray<z.ZodEnum<["Agency", "Independent", "Unspecified"]>, "many">>;
475
+ englishLevels: z.ZodNullable<z.ZodArray<z.ZodEnum<["Fluent", "Conversational", "Native or Bilingual", "Unspecified"]>, "many">>;
476
+ }, "strip", z.ZodTypeAny, {
477
+ locationIncludes: string[] | null;
478
+ locationExcludes: string[] | null;
479
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
480
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
481
+ }, {
482
+ locationIncludes: string[] | null;
483
+ locationExcludes: string[] | null;
484
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
485
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
486
+ }>>;
487
+ }, "strip", z.ZodTypeAny, {
488
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
489
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
490
+ questions: {
491
+ hasQuestions: "all" | "yes" | "no";
492
+ } | null;
493
+ clientInfo: {
494
+ isPaymentVerified: "false" | "all" | "true";
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
+ enterpriseClient: "false" | "all" | "true";
497
+ clientLocationIncludes: string[] | null;
498
+ clientLocationExcludes: string[] | null;
499
+ minReviewScore: number | null;
500
+ minTotalSpent: number | null;
501
+ minHireRate: number | null;
502
+ 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;
503
+ } | null;
504
+ vendorQualifications: {
505
+ locationIncludes: string[] | null;
506
+ locationExcludes: string[] | null;
507
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
508
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
509
+ } | null;
510
+ keywords: {
511
+ includes: string | null;
512
+ excludes: string | null;
513
+ } | null;
514
+ categories: {
515
+ 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;
516
+ 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;
517
+ } | null;
518
+ payment: {
519
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
520
+ minFixedPrice: number | null;
521
+ maxFixedPrice: number | null;
522
+ minHourlyRate: number | null;
523
+ maxHourlyRate: number | null;
524
+ } | null;
525
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
526
+ }, {
527
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
528
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
529
+ questions: {
530
+ hasQuestions?: "all" | "yes" | "no" | undefined;
531
+ } | null;
532
+ clientInfo: {
533
+ 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;
534
+ clientLocationIncludes: string[] | null;
535
+ clientLocationExcludes: string[] | null;
536
+ minReviewScore: number | null;
537
+ minTotalSpent: number | null;
538
+ minHireRate: number | null;
539
+ 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;
540
+ isPaymentVerified?: "false" | "all" | "true" | undefined;
541
+ enterpriseClient?: "false" | "all" | "true" | undefined;
542
+ } | null;
543
+ vendorQualifications: {
544
+ locationIncludes: string[] | null;
545
+ locationExcludes: string[] | null;
546
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
547
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
548
+ } | null;
549
+ keywords: {
550
+ includes: string | null;
551
+ excludes: string | null;
552
+ } | null;
553
+ categories: {
554
+ 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;
555
+ 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;
556
+ } | null;
557
+ payment: {
558
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
559
+ minFixedPrice: number | null;
560
+ maxFixedPrice: number | null;
561
+ minHourlyRate: number | null;
562
+ maxHourlyRate: number | null;
563
+ } | null;
564
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
565
+ }>;
566
+ createdAt: z.ZodDate;
567
+ updatedAt: z.ZodDate;
568
+ automatedSuitability: z.ZodNullable<z.ZodBoolean>;
569
+ automatedBidding: z.ZodNullable<z.ZodBoolean>;
570
+ boostingEnabled: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
571
+ maximumBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
572
+ minimumBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
573
+ webhookUrl: z.ZodNullable<z.ZodString>;
574
+ monthlyBudget: z.ZodNullable<z.ZodNumber>;
575
+ suitabilityThreshold: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
576
+ boostingThreshold: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
577
+ jobCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalPending", "proposalProcessing", "proposalComplete", "biddingPending", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>, z.ZodNumber>>;
578
+ expenses: z.ZodObject<{
579
+ biddingAmount: z.ZodDefault<z.ZodNumber>;
580
+ boostingAmount: z.ZodDefault<z.ZodNumber>;
581
+ boosted: z.ZodDefault<z.ZodNumber>;
582
+ }, "strip", z.ZodTypeAny, {
583
+ biddingAmount: number;
584
+ boosted: number;
585
+ boostingAmount: number;
586
+ }, {
587
+ biddingAmount?: number | undefined;
588
+ boosted?: number | undefined;
589
+ boostingAmount?: number | undefined;
590
+ }>;
591
+ integrations: z.ZodObject<{
592
+ suitabilityHooks: z.ZodObject<{
593
+ discord: z.ZodNullable<z.ZodString>;
594
+ slack: z.ZodNullable<z.ZodString>;
595
+ }, "strip", z.ZodTypeAny, {
596
+ discord: string | null;
597
+ slack: string | null;
598
+ }, {
599
+ discord: string | null;
600
+ slack: string | null;
601
+ }>;
602
+ proposalSentHooks: z.ZodObject<{
603
+ discord: z.ZodNullable<z.ZodString>;
604
+ slack: z.ZodNullable<z.ZodString>;
605
+ }, "strip", z.ZodTypeAny, {
606
+ discord: string | null;
607
+ slack: string | null;
608
+ }, {
609
+ discord: string | null;
610
+ slack: string | null;
611
+ }>;
612
+ }, "strip", z.ZodTypeAny, {
613
+ suitabilityHooks: {
614
+ discord: string | null;
615
+ slack: string | null;
616
+ };
617
+ proposalSentHooks: {
618
+ discord: string | null;
619
+ slack: string | null;
620
+ };
621
+ }, {
622
+ suitabilityHooks: {
623
+ discord: string | null;
624
+ slack: string | null;
625
+ };
626
+ proposalSentHooks: {
627
+ discord: string | null;
628
+ slack: string | null;
629
+ };
630
+ }>;
631
+ }, "id" | "createdAt" | "updatedAt">, "strip", z.ZodTypeAny, {
632
+ name: string;
633
+ jobCounts: Partial<Record<"suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalPending" | "proposalProcessing" | "proposalComplete" | "biddingPending" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived", number>> | null;
634
+ filters: {
635
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
636
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
637
+ questions: {
638
+ hasQuestions: "all" | "yes" | "no";
639
+ } | null;
640
+ clientInfo: {
641
+ isPaymentVerified: "false" | "all" | "true";
642
+ 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;
643
+ enterpriseClient: "false" | "all" | "true";
644
+ clientLocationIncludes: string[] | null;
645
+ clientLocationExcludes: string[] | null;
646
+ minReviewScore: number | null;
647
+ minTotalSpent: number | null;
648
+ minHireRate: number | null;
649
+ 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;
650
+ } | null;
651
+ vendorQualifications: {
652
+ locationIncludes: string[] | null;
653
+ locationExcludes: string[] | null;
654
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
655
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
656
+ } | null;
657
+ keywords: {
658
+ includes: string | null;
659
+ excludes: string | null;
660
+ } | null;
661
+ categories: {
662
+ 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;
663
+ 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;
664
+ } | null;
665
+ payment: {
666
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
667
+ minFixedPrice: number | null;
668
+ maxFixedPrice: number | null;
669
+ minHourlyRate: number | null;
670
+ maxHourlyRate: number | null;
671
+ } | null;
672
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
673
+ };
674
+ automatedSuitability: boolean | null;
675
+ automatedBidding: boolean | null;
676
+ boostingEnabled: boolean | null;
677
+ maximumBoost: number | null;
678
+ minimumBoost: number | null;
679
+ webhookUrl: string | null;
680
+ monthlyBudget: number | null;
681
+ suitabilityThreshold: number | null;
682
+ boostingThreshold: number | null;
683
+ expenses: {
684
+ biddingAmount: number;
685
+ boosted: number;
686
+ boostingAmount: number;
687
+ };
688
+ integrations: {
689
+ suitabilityHooks: {
690
+ discord: string | null;
691
+ slack: string | null;
692
+ };
693
+ proposalSentHooks: {
694
+ discord: string | null;
695
+ slack: string | null;
696
+ };
697
+ };
698
+ }, {
699
+ name: string;
700
+ jobCounts: Partial<Record<"suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalPending" | "proposalProcessing" | "proposalComplete" | "biddingPending" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived", number>> | null;
701
+ filters: {
702
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
703
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
704
+ questions: {
705
+ hasQuestions?: "all" | "yes" | "no" | undefined;
706
+ } | null;
707
+ clientInfo: {
708
+ 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;
709
+ clientLocationIncludes: string[] | null;
710
+ clientLocationExcludes: string[] | null;
711
+ minReviewScore: number | null;
712
+ minTotalSpent: number | null;
713
+ minHireRate: number | null;
714
+ 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;
715
+ isPaymentVerified?: "false" | "all" | "true" | undefined;
716
+ enterpriseClient?: "false" | "all" | "true" | undefined;
717
+ } | null;
718
+ vendorQualifications: {
719
+ locationIncludes: string[] | null;
720
+ locationExcludes: string[] | null;
721
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
722
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
723
+ } | null;
724
+ keywords: {
725
+ includes: string | null;
726
+ excludes: string | null;
727
+ } | null;
728
+ categories: {
729
+ 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;
730
+ 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;
731
+ } | null;
732
+ payment: {
733
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
734
+ minFixedPrice: number | null;
735
+ maxFixedPrice: number | null;
736
+ minHourlyRate: number | null;
737
+ maxHourlyRate: number | null;
738
+ } | null;
739
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
740
+ };
741
+ automatedSuitability: boolean | null;
742
+ automatedBidding: boolean | null;
743
+ webhookUrl: string | null;
744
+ monthlyBudget: number | null;
745
+ expenses: {
746
+ biddingAmount?: number | undefined;
747
+ boosted?: number | undefined;
748
+ boostingAmount?: number | undefined;
749
+ };
750
+ integrations: {
751
+ suitabilityHooks: {
752
+ discord: string | null;
753
+ slack: string | null;
754
+ };
755
+ proposalSentHooks: {
756
+ discord: string | null;
757
+ slack: string | null;
758
+ };
759
+ };
760
+ boostingEnabled?: boolean | null | undefined;
761
+ maximumBoost?: number | null | undefined;
762
+ minimumBoost?: number | null | undefined;
763
+ suitabilityThreshold?: number | null | undefined;
764
+ boostingThreshold?: number | null | undefined;
765
+ }>;
766
+ export declare const updateCampaignSchema: z.ZodObject<Omit<{
767
+ id: z.ZodString;
768
+ name: z.ZodString;
769
+ filters: z.ZodObject<{
770
+ keywords: z.ZodNullable<z.ZodObject<{
771
+ includes: z.ZodNullable<z.ZodString>;
772
+ excludes: z.ZodNullable<z.ZodString>;
773
+ }, "strip", z.ZodTypeAny, {
774
+ includes: string | null;
775
+ excludes: string | null;
776
+ }, {
777
+ includes: string | null;
778
+ excludes: string | null;
779
+ }>>;
780
+ categories: z.ZodNullable<z.ZodObject<{
781
+ includes: z.ZodNullable<z.ZodArray<z.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">>;
782
+ excludes: z.ZodNullable<z.ZodArray<z.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">>;
783
+ }, "strip", z.ZodTypeAny, {
784
+ 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;
785
+ 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;
786
+ }, {
787
+ 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;
788
+ 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;
789
+ }>>;
790
+ payment: z.ZodNullable<z.ZodObject<{
791
+ paymentType: z.ZodNullable<z.ZodArray<z.ZodEnum<["Fixed-price", "Hourly"]>, "many">>;
792
+ minFixedPrice: z.ZodNullable<z.ZodNumber>;
793
+ maxFixedPrice: z.ZodNullable<z.ZodNumber>;
794
+ minHourlyRate: z.ZodNullable<z.ZodNumber>;
795
+ maxHourlyRate: z.ZodNullable<z.ZodNumber>;
796
+ }, "strip", z.ZodTypeAny, {
797
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
798
+ minFixedPrice: number | null;
799
+ maxFixedPrice: number | null;
800
+ minHourlyRate: number | null;
801
+ maxHourlyRate: number | null;
802
+ }, {
803
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
804
+ minFixedPrice: number | null;
805
+ maxFixedPrice: number | null;
806
+ minHourlyRate: number | null;
807
+ maxHourlyRate: number | null;
808
+ }>>;
809
+ projectDuration: z.ZodNullable<z.ZodArray<z.ZodEnum<["Less than 1 month", "1 to 3 months", "3 to 6 months", "More than 6 months", "Unspecified"]>, "many">>;
810
+ experienceLevel: z.ZodNullable<z.ZodArray<z.ZodEnum<["Entry level", "Intermediate", "Expert"]>, "many">>;
811
+ questions: z.ZodNullable<z.ZodObject<{
812
+ hasQuestions: z.ZodDefault<z.ZodEnum<["all", "yes", "no"]>>;
813
+ }, "strip", z.ZodTypeAny, {
814
+ hasQuestions: "all" | "yes" | "no";
815
+ }, {
816
+ hasQuestions?: "all" | "yes" | "no" | undefined;
817
+ }>>;
818
+ engagementType: z.ZodNullable<z.ZodArray<z.ZodEnum<["Less than 30 hrs/week", "More than 30 hrs/week", "Unspecified"]>, "many">>;
819
+ clientInfo: z.ZodNullable<z.ZodObject<{
820
+ isPaymentVerified: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
821
+ enterpriseClient: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
822
+ clientLocationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
823
+ clientLocationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
824
+ minReviewScore: z.ZodNullable<z.ZodNumber>;
825
+ minTotalSpent: z.ZodNullable<z.ZodNumber>;
826
+ minHireRate: z.ZodNullable<z.ZodNumber>;
827
+ clientIndustry: z.ZodNullable<z.ZodArray<z.ZodEnum<["Aerospace", "Agriculture & Forestry", "Art & Design", "Automotive", "Aviation", "Education", "Energy & Utilities", "Engineering & Architecture", "Fashion & Beauty", "Finance & Accounting", "Food & Beverage", "Government & Public Sector", "Health & Fitness", "HR & Business Services", "Legal", "Manufacturing & Construction", "Media & Entertainment", "Military & Defense", "Mining", "Real Estate", "Retail & Consumer Goods", "Sales & Marketing", "Science & Medicine", "Sports & Recreation", "Supply Chain & Logistics", "Tech & IT", "Transportation & Warehousing", "Travel & Hospitality"]>, "many">>;
828
+ companySize: z.ZodNullable<z.ZodArray<z.ZodEnum<["Individual client", "Small company (2-9 people)", "Mid-sized company (10-99 people)", "Large company (100-1,000 people)", "Large company (1,000+ people)", "Unspecified"]>, "many">>;
829
+ }, "strip", z.ZodTypeAny, {
830
+ isPaymentVerified: "false" | "all" | "true";
831
+ 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;
832
+ enterpriseClient: "false" | "all" | "true";
833
+ clientLocationIncludes: string[] | null;
834
+ clientLocationExcludes: string[] | null;
835
+ minReviewScore: number | null;
836
+ minTotalSpent: number | null;
837
+ minHireRate: number | null;
838
+ 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;
839
+ }, {
840
+ 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;
841
+ clientLocationIncludes: string[] | null;
842
+ clientLocationExcludes: string[] | null;
843
+ minReviewScore: number | null;
844
+ minTotalSpent: number | null;
845
+ minHireRate: number | null;
846
+ 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;
847
+ isPaymentVerified?: "false" | "all" | "true" | undefined;
848
+ enterpriseClient?: "false" | "all" | "true" | undefined;
849
+ }>>;
850
+ vendorQualifications: z.ZodNullable<z.ZodObject<{
851
+ locationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
852
+ locationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
853
+ talentTypes: z.ZodNullable<z.ZodArray<z.ZodEnum<["Agency", "Independent", "Unspecified"]>, "many">>;
854
+ englishLevels: z.ZodNullable<z.ZodArray<z.ZodEnum<["Fluent", "Conversational", "Native or Bilingual", "Unspecified"]>, "many">>;
855
+ }, "strip", z.ZodTypeAny, {
856
+ locationIncludes: string[] | null;
857
+ locationExcludes: string[] | null;
858
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
859
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
860
+ }, {
861
+ locationIncludes: string[] | null;
862
+ locationExcludes: string[] | null;
863
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
864
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
865
+ }>>;
866
+ }, "strip", z.ZodTypeAny, {
867
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
868
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
869
+ questions: {
870
+ hasQuestions: "all" | "yes" | "no";
871
+ } | null;
872
+ clientInfo: {
873
+ isPaymentVerified: "false" | "all" | "true";
874
+ companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
875
+ enterpriseClient: "false" | "all" | "true";
876
+ clientLocationIncludes: string[] | null;
877
+ clientLocationExcludes: string[] | null;
878
+ minReviewScore: number | null;
879
+ minTotalSpent: number | null;
880
+ minHireRate: number | null;
881
+ 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;
882
+ } | null;
883
+ vendorQualifications: {
884
+ locationIncludes: string[] | null;
885
+ locationExcludes: string[] | null;
886
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
887
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
888
+ } | null;
889
+ keywords: {
890
+ includes: string | null;
891
+ excludes: string | null;
892
+ } | null;
893
+ categories: {
894
+ 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;
895
+ 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;
896
+ } | null;
897
+ payment: {
898
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
899
+ minFixedPrice: number | null;
900
+ maxFixedPrice: number | null;
901
+ minHourlyRate: number | null;
902
+ maxHourlyRate: number | null;
903
+ } | null;
904
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
905
+ }, {
906
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
907
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
908
+ questions: {
909
+ hasQuestions?: "all" | "yes" | "no" | undefined;
910
+ } | null;
911
+ clientInfo: {
912
+ 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;
913
+ clientLocationIncludes: string[] | null;
914
+ clientLocationExcludes: string[] | null;
915
+ minReviewScore: number | null;
916
+ minTotalSpent: number | null;
917
+ minHireRate: number | null;
918
+ 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;
919
+ isPaymentVerified?: "false" | "all" | "true" | undefined;
920
+ enterpriseClient?: "false" | "all" | "true" | undefined;
921
+ } | null;
922
+ vendorQualifications: {
923
+ locationIncludes: string[] | null;
924
+ locationExcludes: string[] | null;
925
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
926
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
927
+ } | null;
928
+ keywords: {
929
+ includes: string | null;
930
+ excludes: string | null;
931
+ } | null;
932
+ categories: {
933
+ 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;
934
+ 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;
935
+ } | null;
936
+ payment: {
937
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
938
+ minFixedPrice: number | null;
939
+ maxFixedPrice: number | null;
940
+ minHourlyRate: number | null;
941
+ maxHourlyRate: number | null;
942
+ } | null;
943
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
944
+ }>;
945
+ createdAt: z.ZodDate;
946
+ updatedAt: z.ZodDate;
947
+ automatedSuitability: z.ZodNullable<z.ZodBoolean>;
948
+ automatedBidding: z.ZodNullable<z.ZodBoolean>;
949
+ boostingEnabled: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
950
+ maximumBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
951
+ minimumBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
952
+ webhookUrl: z.ZodNullable<z.ZodString>;
953
+ monthlyBudget: z.ZodNullable<z.ZodNumber>;
954
+ suitabilityThreshold: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
955
+ boostingThreshold: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
956
+ jobCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalPending", "proposalProcessing", "proposalComplete", "biddingPending", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>, z.ZodNumber>>;
957
+ expenses: z.ZodObject<{
958
+ biddingAmount: z.ZodDefault<z.ZodNumber>;
959
+ boostingAmount: z.ZodDefault<z.ZodNumber>;
960
+ boosted: z.ZodDefault<z.ZodNumber>;
961
+ }, "strip", z.ZodTypeAny, {
962
+ biddingAmount: number;
963
+ boosted: number;
964
+ boostingAmount: number;
965
+ }, {
966
+ biddingAmount?: number | undefined;
967
+ boosted?: number | undefined;
968
+ boostingAmount?: number | undefined;
969
+ }>;
970
+ integrations: z.ZodObject<{
971
+ suitabilityHooks: z.ZodObject<{
972
+ discord: z.ZodNullable<z.ZodString>;
973
+ slack: z.ZodNullable<z.ZodString>;
974
+ }, "strip", z.ZodTypeAny, {
975
+ discord: string | null;
976
+ slack: string | null;
977
+ }, {
978
+ discord: string | null;
979
+ slack: string | null;
980
+ }>;
981
+ proposalSentHooks: z.ZodObject<{
982
+ discord: z.ZodNullable<z.ZodString>;
983
+ slack: z.ZodNullable<z.ZodString>;
984
+ }, "strip", z.ZodTypeAny, {
985
+ discord: string | null;
986
+ slack: string | null;
987
+ }, {
988
+ discord: string | null;
989
+ slack: string | null;
990
+ }>;
991
+ }, "strip", z.ZodTypeAny, {
992
+ suitabilityHooks: {
993
+ discord: string | null;
994
+ slack: string | null;
995
+ };
996
+ proposalSentHooks: {
997
+ discord: string | null;
998
+ slack: string | null;
999
+ };
1000
+ }, {
1001
+ suitabilityHooks: {
1002
+ discord: string | null;
1003
+ slack: string | null;
1004
+ };
1005
+ proposalSentHooks: {
1006
+ discord: string | null;
1007
+ slack: string | null;
1008
+ };
1009
+ }>;
1010
+ }, "createdAt" | "updatedAt">, "strip", z.ZodTypeAny, {
1011
+ id: string;
1012
+ name: string;
1013
+ jobCounts: Partial<Record<"suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalPending" | "proposalProcessing" | "proposalComplete" | "biddingPending" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived", number>> | null;
1014
+ filters: {
1015
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
1016
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
1017
+ questions: {
1018
+ hasQuestions: "all" | "yes" | "no";
1019
+ } | null;
1020
+ clientInfo: {
1021
+ isPaymentVerified: "false" | "all" | "true";
1022
+ 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;
1023
+ enterpriseClient: "false" | "all" | "true";
1024
+ clientLocationIncludes: string[] | null;
1025
+ clientLocationExcludes: string[] | null;
1026
+ minReviewScore: number | null;
1027
+ minTotalSpent: number | null;
1028
+ minHireRate: number | null;
1029
+ 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;
1030
+ } | null;
1031
+ vendorQualifications: {
1032
+ locationIncludes: string[] | null;
1033
+ locationExcludes: string[] | null;
1034
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
1035
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
1036
+ } | null;
1037
+ keywords: {
1038
+ includes: string | null;
1039
+ excludes: string | null;
1040
+ } | null;
1041
+ categories: {
1042
+ 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;
1043
+ 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;
1044
+ } | null;
1045
+ payment: {
1046
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
1047
+ minFixedPrice: number | null;
1048
+ maxFixedPrice: number | null;
1049
+ minHourlyRate: number | null;
1050
+ maxHourlyRate: number | null;
1051
+ } | null;
1052
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
1053
+ };
1054
+ automatedSuitability: boolean | null;
1055
+ automatedBidding: boolean | null;
1056
+ boostingEnabled: boolean | null;
1057
+ maximumBoost: number | null;
1058
+ minimumBoost: number | null;
1059
+ webhookUrl: string | null;
1060
+ monthlyBudget: number | null;
1061
+ suitabilityThreshold: number | null;
1062
+ boostingThreshold: number | null;
1063
+ expenses: {
1064
+ biddingAmount: number;
1065
+ boosted: number;
1066
+ boostingAmount: number;
1067
+ };
1068
+ integrations: {
1069
+ suitabilityHooks: {
1070
+ discord: string | null;
1071
+ slack: string | null;
1072
+ };
1073
+ proposalSentHooks: {
1074
+ discord: string | null;
1075
+ slack: string | null;
1076
+ };
1077
+ };
1078
+ }, {
1079
+ id: string;
1080
+ name: string;
1081
+ jobCounts: Partial<Record<"suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalPending" | "proposalProcessing" | "proposalComplete" | "biddingPending" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived", number>> | null;
1082
+ filters: {
1083
+ experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
1084
+ projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
1085
+ questions: {
1086
+ hasQuestions?: "all" | "yes" | "no" | undefined;
1087
+ } | null;
1088
+ clientInfo: {
1089
+ 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;
1090
+ clientLocationIncludes: string[] | null;
1091
+ clientLocationExcludes: string[] | null;
1092
+ minReviewScore: number | null;
1093
+ minTotalSpent: number | null;
1094
+ minHireRate: number | null;
1095
+ 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;
1096
+ isPaymentVerified?: "false" | "all" | "true" | undefined;
1097
+ enterpriseClient?: "false" | "all" | "true" | undefined;
1098
+ } | null;
1099
+ vendorQualifications: {
1100
+ locationIncludes: string[] | null;
1101
+ locationExcludes: string[] | null;
1102
+ talentTypes: ("Agency" | "Independent" | "Unspecified")[] | null;
1103
+ englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
1104
+ } | null;
1105
+ keywords: {
1106
+ includes: string | null;
1107
+ excludes: string | null;
1108
+ } | null;
1109
+ categories: {
1110
+ 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;
1111
+ 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;
1112
+ } | null;
1113
+ payment: {
1114
+ paymentType: ("Fixed-price" | "Hourly")[] | null;
1115
+ minFixedPrice: number | null;
1116
+ maxFixedPrice: number | null;
1117
+ minHourlyRate: number | null;
1118
+ maxHourlyRate: number | null;
1119
+ } | null;
1120
+ engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
1121
+ };
1122
+ automatedSuitability: boolean | null;
1123
+ automatedBidding: boolean | null;
1124
+ webhookUrl: string | null;
1125
+ monthlyBudget: number | null;
1126
+ expenses: {
1127
+ biddingAmount?: number | undefined;
1128
+ boosted?: number | undefined;
1129
+ boostingAmount?: number | undefined;
1130
+ };
1131
+ integrations: {
1132
+ suitabilityHooks: {
1133
+ discord: string | null;
1134
+ slack: string | null;
1135
+ };
1136
+ proposalSentHooks: {
1137
+ discord: string | null;
1138
+ slack: string | null;
1139
+ };
1140
+ };
1141
+ boostingEnabled?: boolean | null | undefined;
1142
+ maximumBoost?: number | null | undefined;
1143
+ minimumBoost?: number | null | undefined;
1144
+ suitabilityThreshold?: number | null | undefined;
1145
+ boostingThreshold?: number | null | undefined;
1146
+ }>;