lancer-shared 1.2.241 → 1.2.242

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 (53) hide show
  1. package/dist/bundle.cjs.js.map +1 -0
  2. package/dist/bundle.esm.js.map +1 -0
  3. package/dist/schemas/account/bidder-account.d.ts +75 -75
  4. package/dist/schemas/account/scraper-account.d.ts +37 -37
  5. package/dist/schemas/agent/index.d.ts +285 -285
  6. package/dist/schemas/agent/proposal.d.ts +6 -6
  7. package/dist/schemas/bidder/bid.d.ts +2345 -2345
  8. package/dist/schemas/campaign/campaign-analytics.d.ts +857 -857
  9. package/dist/schemas/campaign/campaign-chat-bot.d.ts +25 -25
  10. package/dist/schemas/campaign/campaign-expenses.d.ts +2 -2
  11. package/dist/schemas/campaign/campaign-insights.d.ts +12 -12
  12. package/dist/schemas/campaign/campaign.d.ts +201 -201
  13. package/dist/schemas/campaign/sequence/boost-node.d.ts +2 -2
  14. package/dist/schemas/campaign/sequence/client-size-node.d.ts +8 -8
  15. package/dist/schemas/campaign/sequence/client-spent-node.d.ts +16 -16
  16. package/dist/schemas/campaign/sequence/hire-rate-node.d.ts +16 -16
  17. package/dist/schemas/campaign/sequence/hourly-rate-node.d.ts +16 -16
  18. package/dist/schemas/campaign/sequence/rating-node.d.ts +16 -16
  19. package/dist/schemas/campaign/sequence/suitability-node.d.ts +16 -16
  20. package/dist/schemas/dashboard/index.d.ts +34 -34
  21. package/dist/schemas/infrastructure/index.d.ts +8 -8
  22. package/dist/schemas/invoice/index.d.ts +51 -51
  23. package/dist/schemas/job/index.d.ts +212 -212
  24. package/dist/schemas/job/job-api.d.ts +4 -4
  25. package/dist/schemas/job/job-details.d.ts +736 -736
  26. package/dist/schemas/job/job-filters.d.ts +14 -14
  27. package/dist/schemas/job/job-listing.d.ts +94 -94
  28. package/dist/schemas/job/nuxt.d.ts +150 -150
  29. package/dist/schemas/lead/index.d.ts +1022 -1022
  30. package/dist/schemas/lead/lead-status.d.ts +10 -10
  31. package/dist/schemas/logger/feed/feed-chunk-enrich.d.ts +25 -25
  32. package/dist/schemas/logger/feed/feed-enrich.d.ts +15 -15
  33. package/dist/schemas/logger/feed/feed-job-enrich.d.ts +321 -321
  34. package/dist/schemas/logger/feed/feed-scrape.d.ts +15 -15
  35. package/dist/schemas/logger/log-event.d.ts +91 -91
  36. package/dist/schemas/logger/scraper-events.d.ts +90 -90
  37. package/dist/schemas/notifications/index.d.ts +4 -4
  38. package/dist/schemas/organization/cover-letter.d.ts +2 -2
  39. package/dist/schemas/organization/index.d.ts +104 -104
  40. package/dist/schemas/organization/subscription.d.ts +6 -6
  41. package/dist/schemas/plan/index.d.ts +14 -14
  42. package/dist/schemas/proxy/proxy.d.ts +20 -20
  43. package/dist/schemas/saved-search/index.d.ts +4 -4
  44. package/dist/schemas/scraper/scrape-payload.d.ts +621 -621
  45. package/dist/schemas/scraper/scrape-result.d.ts +214 -214
  46. package/dist/schemas/scraper/upwork-profile.d.ts +16 -16
  47. package/dist/schemas/shared.d.ts +1 -1
  48. package/dist/schemas/talent/index.d.ts +854 -854
  49. package/dist/schemas/transaction/index.d.ts +18 -18
  50. package/dist/schemas/usage/index.d.ts +16 -16
  51. package/dist/schemas/usage-event/index.d.ts +4 -4
  52. package/dist/schemas/user/index.d.ts +4 -4
  53. package/package.json +8 -6
@@ -90,9 +90,9 @@ export declare const jobFiltersSchema: z.ZodObject<{
90
90
  memberSinceFrom: z.ZodNullable<z.ZodString>;
91
91
  memberSinceTo: z.ZodNullable<z.ZodString>;
92
92
  }, "strip", z.ZodTypeAny, {
93
- isPaymentVerified: "all" | "true" | "false";
94
- isPhoneVerified: "all" | "true" | "false";
95
- enterpriseClient: "all" | "true" | "false";
93
+ isPaymentVerified: "false" | "all" | "true";
94
+ isPhoneVerified: "false" | "all" | "true";
95
+ enterpriseClient: "false" | "all" | "true";
96
96
  clientLocationIncludes: string[] | null;
97
97
  clientLocationExcludes: string[] | null;
98
98
  minReviewScore: number | null;
@@ -126,9 +126,9 @@ export declare const jobFiltersSchema: z.ZodObject<{
126
126
  minNumReviews: number | null;
127
127
  memberSinceFrom: string | null;
128
128
  memberSinceTo: string | null;
129
- isPaymentVerified?: "all" | "true" | "false" | undefined;
130
- isPhoneVerified?: "all" | "true" | "false" | undefined;
131
- enterpriseClient?: "all" | "true" | "false" | undefined;
129
+ isPaymentVerified?: "false" | "all" | "true" | undefined;
130
+ isPhoneVerified?: "false" | "all" | "true" | undefined;
131
+ enterpriseClient?: "false" | "all" | "true" | undefined;
132
132
  }>>;
133
133
  includeClientsWithZeroReviews: z.ZodNullable<z.ZodBoolean>;
134
134
  includeClientsWithLessThanXPostedJobs: z.ZodNullable<z.ZodNumber>;
@@ -163,7 +163,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
163
163
  excludes: string | null;
164
164
  } | null;
165
165
  searchQuery: string | null;
166
- isFeatured: "all" | "true" | "false" | null;
166
+ isFeatured: "false" | "all" | "true" | null;
167
167
  regions: ("Worldwide" | "USOnly" | "UKOnly" | "All")[] | null;
168
168
  categories: {
169
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" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
@@ -183,9 +183,9 @@ export declare const jobFiltersSchema: z.ZodObject<{
183
183
  } | null;
184
184
  engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
185
185
  clientInfo: {
186
- isPaymentVerified: "all" | "true" | "false";
187
- isPhoneVerified: "all" | "true" | "false";
188
- enterpriseClient: "all" | "true" | "false";
186
+ isPaymentVerified: "false" | "all" | "true";
187
+ isPhoneVerified: "false" | "all" | "true";
188
+ enterpriseClient: "false" | "all" | "true";
189
189
  clientLocationIncludes: string[] | null;
190
190
  clientLocationExcludes: string[] | null;
191
191
  minReviewScore: number | null;
@@ -220,7 +220,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
220
220
  excludes: string | null;
221
221
  } | null;
222
222
  searchQuery: string | null;
223
- isFeatured: "all" | "true" | "false" | null;
223
+ isFeatured: "false" | "all" | "true" | null;
224
224
  regions: ("Worldwide" | "USOnly" | "UKOnly" | "All")[] | null;
225
225
  categories: {
226
226
  includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
@@ -256,9 +256,9 @@ export declare const jobFiltersSchema: z.ZodObject<{
256
256
  minNumReviews: number | null;
257
257
  memberSinceFrom: string | null;
258
258
  memberSinceTo: string | null;
259
- isPaymentVerified?: "all" | "true" | "false" | undefined;
260
- isPhoneVerified?: "all" | "true" | "false" | undefined;
261
- enterpriseClient?: "all" | "true" | "false" | undefined;
259
+ isPaymentVerified?: "false" | "all" | "true" | undefined;
260
+ isPhoneVerified?: "false" | "all" | "true" | undefined;
261
+ enterpriseClient?: "false" | "all" | "true" | undefined;
262
262
  } | null;
263
263
  includeClientsWithZeroReviews: boolean | null;
264
264
  includeClientsWithLessThanXPostedJobs: number | null;