lancer-shared 1.2.194 → 1.2.196
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.
- package/dist/bundle.cjs.js +14 -1
- package/dist/constants/job-filter-options.d.ts +1 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +160 -0
- package/dist/schemas/campaign/campaign.d.ts +84 -0
- package/dist/schemas/job/job-filters.d.ts +20 -0
- package/dist/schemas/scraper/scrape-payload.d.ts +36 -0
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -341,6 +341,14 @@ const regionNames = {
|
|
|
341
341
|
USOnly: 'US Only',
|
|
342
342
|
UKOnly: 'UK Only',
|
|
343
343
|
};
|
|
344
|
+
const CLIENT_SIZE_TO_NUMBER = {
|
|
345
|
+
'Individual client': 1,
|
|
346
|
+
'Small company (2-9 people)': 2,
|
|
347
|
+
'Mid-sized company (10-99 people)': 10,
|
|
348
|
+
'Large company (100-1,000 people)': 100,
|
|
349
|
+
'Large company (1,000+ people)': 1000,
|
|
350
|
+
Unspecified: null,
|
|
351
|
+
};
|
|
344
352
|
|
|
345
353
|
const jobStatusOrder = [
|
|
346
354
|
"leads",
|
|
@@ -11170,12 +11178,16 @@ const jobFiltersSchema = z.object({
|
|
|
11170
11178
|
clientLocationIncludes: z.array(z.string()).nullable(),
|
|
11171
11179
|
clientLocationExcludes: z.array(z.string()).nullable(),
|
|
11172
11180
|
minReviewScore: z.number().min(0).max(5).nullable(),
|
|
11173
|
-
|
|
11181
|
+
maxReviewScore: z.number().min(0).max(5).nullable(),
|
|
11182
|
+
minTotalSpent: z.number().min(0).nullable(),
|
|
11183
|
+
maxTotalSpent: z.number().min(0).nullable(),
|
|
11174
11184
|
minHireRate: z.number().min(0).max(100).nullable(),
|
|
11185
|
+
maxHireRate: z.number().min(0).max(100).nullable(),
|
|
11175
11186
|
clientIndustry: z.array(clientIndustryEnum).nullable(),
|
|
11176
11187
|
companySize: z.array(clientSizeEnum).nullable(),
|
|
11177
11188
|
minJobsPosted: z.number().nullable(),
|
|
11178
11189
|
minAvgHourlyRate: z.number().nullable(),
|
|
11190
|
+
maxAvgHourlyRate: z.number().nullable(),
|
|
11179
11191
|
minNumReviews: z.number().nullable(),
|
|
11180
11192
|
memberSinceFrom: z.string().date().nullable(),
|
|
11181
11193
|
memberSinceTo: z.string().date().nullable(),
|
|
@@ -23678,6 +23690,7 @@ exports.BidderAccountAlreadyConnectedException = BidderAccountAlreadyConnectedEx
|
|
|
23678
23690
|
exports.BoostAboveMaxConnectsException = BoostAboveMaxConnectsException;
|
|
23679
23691
|
exports.CAMPAIGN_NOTIFICATION_SETTINGS = CAMPAIGN_NOTIFICATION_SETTINGS;
|
|
23680
23692
|
exports.CAMPAIGN_NOTIFICATION_TYPES = CAMPAIGN_NOTIFICATION_TYPES;
|
|
23693
|
+
exports.CLIENT_SIZE_TO_NUMBER = CLIENT_SIZE_TO_NUMBER;
|
|
23681
23694
|
exports.CloudflareChallengeFailedException = CloudflareChallengeFailedException;
|
|
23682
23695
|
exports.DeleteMultiloginProfileException = DeleteMultiloginProfileException;
|
|
23683
23696
|
exports.DropdownOptionNotPresentException = DropdownOptionNotPresentException;
|
|
@@ -65,3 +65,4 @@ export declare const JOB_FILTER_OPTIONS: {
|
|
|
65
65
|
};
|
|
66
66
|
export declare const HIERARCHICAL_CATEGORIES_TO_CHILDREN: Record<"Accounting & Consulting" | "Admin Support" | "Customer Service" | "Data Science & Analytics" | "Design & Creative" | "Engineering & Architecture" | "IT & Networking" | "Legal" | "Sales & Marketing" | "Translation" | "Software Development" | "Writing", readonly ["Accounting & Bookkeeping", "Financial Planning", "Management Consulting & Analysis", "Other - Accounting & Consulting", "Personal & Professional Coaching", "Recruiting & Human Resources"] | readonly ["Data Entry & Transcription Services", "Market Research & Product Reviews", "Project Management", "Virtual Assistance"] | readonly ["Community Management & Tagging", "Customer Service & Tech Support"] | readonly ["AI & Machine Learning", "Data Analysis & Testing", "Data Extraction/ETL", "Data Mining & Management"] | readonly ["Art & Illustration", "Audio & Music Production", "Branding & Logo Design", "Graphic, Editorial & Presentation Design", "NFT, AR/VR & Game Art", "Performing Arts", "Photography", "Product Design", "Video & Animation"] | readonly ["3D Modeling & CAD", "Building & Landscape Architecture", "Chemical Engineering", "Civil & Structural Engineering", "Contract Manufacturing", "Electrical & Electronic Engineering", "Energy & Mechanical Engineering"] | readonly ["Database Management & Administration", "DevOps & Solution Architecture", "ERP/CRM Software", "Information Security & Compliance", "Network & System Administration"] | readonly ["Corporate & Contract Law", "Finance & Tax Law", "International & Immigration Law", "Public Law"] | readonly ["Digital Marketing", "Lead Generation & Telemarketing", "Marketing, PR & Brand Strategy"] | readonly ["Language Tutoring & Interpretation", "Translation & Localization Services"] | readonly ["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"] | readonly ["Content Writing", "Editing & Proofreading Services", "Professional & Business Writing", "Sales & Marketing Copywriting"]>;
|
|
67
67
|
export declare const regionNames: Record<Region, string>;
|
|
68
|
+
export declare const CLIENT_SIZE_TO_NUMBER: Record<(typeof JOB_FILTER_OPTIONS.CLIENT_SIZE)[number], number | null>;
|