lancer-shared 1.2.270 → 1.2.272
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 +13 -6
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +13 -7
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/routes.d.ts +1 -1
- package/dist/schemas/account/bidder-account.d.ts +20 -20
- package/dist/schemas/account/scraper-account.d.ts +22 -22
- package/dist/schemas/agent/index.d.ts +216 -216
- package/dist/schemas/agent/proposal.d.ts +2 -2
- package/dist/schemas/bidder/bid.d.ts +2062 -2043
- package/dist/schemas/campaign/campaign-analytics.d.ts +840 -784
- package/dist/schemas/campaign/campaign-chat-bot.d.ts +9 -9
- package/dist/schemas/campaign/campaign.d.ts +378 -378
- package/dist/schemas/dashboard/index.d.ts +12 -12
- package/dist/schemas/golden-dataset/sample.d.ts +8 -8
- package/dist/schemas/invoice/index.d.ts +4 -4
- package/dist/schemas/job/index.d.ts +112 -112
- package/dist/schemas/job/job-api.d.ts +6 -6
- package/dist/schemas/job/job-details.d.ts +74 -74
- package/dist/schemas/job/job-filters.d.ts +47 -47
- package/dist/schemas/job/job-listing.d.ts +22 -22
- package/dist/schemas/job/nuxt.d.ts +24 -24
- package/dist/schemas/lead/index.d.ts +845 -844
- package/dist/schemas/lead/insufficient-connects-action.d.ts +3 -0
- package/dist/schemas/lead/lead-status.d.ts +10 -10
- package/dist/schemas/logger/feed/feed-chunk-enrich.d.ts +6 -6
- package/dist/schemas/logger/feed/feed-enrich.d.ts +6 -6
- package/dist/schemas/logger/feed/feed-job-enrich.d.ts +140 -140
- package/dist/schemas/logger/feed/feed-scrape.d.ts +6 -6
- package/dist/schemas/logger/log-event.d.ts +72 -72
- package/dist/schemas/logger/scraper-events.d.ts +28 -28
- package/dist/schemas/notifications/index.d.ts +4 -4
- package/dist/schemas/organization/billing.d.ts +2 -2
- package/dist/schemas/organization/index.d.ts +86 -66
- package/dist/schemas/organization/organization-leads.d.ts +4 -4
- package/dist/schemas/organization/subscription.d.ts +15 -9
- package/dist/schemas/plan/index.d.ts +22 -22
- package/dist/schemas/proxy/proxy.d.ts +2 -2
- package/dist/schemas/scraper/scrape-payload.d.ts +514 -495
- package/dist/schemas/scraper/scrape-result.d.ts +136 -136
- package/dist/schemas/talent/index.d.ts +148 -148
- package/dist/schemas/transaction/index.d.ts +2 -2
- package/dist/schemas/usage/index.d.ts +2 -2
- package/dist/schemas/usage-event/index.d.ts +8 -8
- package/package.json +1 -1
|
@@ -90,8 +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: "false" | "all" | "true";
|
|
94
93
|
isPhoneVerified: "false" | "all" | "true";
|
|
94
|
+
isPaymentVerified: "false" | "all" | "true";
|
|
95
|
+
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;
|
|
95
96
|
enterpriseClient: "false" | "all" | "true";
|
|
96
97
|
clientLocationIncludes: string[] | null;
|
|
97
98
|
clientLocationExcludes: string[] | null;
|
|
@@ -102,7 +103,6 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
102
103
|
minHireRate: number | null;
|
|
103
104
|
maxHireRate: number | null;
|
|
104
105
|
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;
|
|
105
|
-
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;
|
|
106
106
|
minJobsPosted: number | null;
|
|
107
107
|
minAvgHourlyRate: number | null;
|
|
108
108
|
maxAvgHourlyRate: number | null;
|
|
@@ -110,6 +110,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
110
110
|
memberSinceFrom: string | null;
|
|
111
111
|
memberSinceTo: string | null;
|
|
112
112
|
}, {
|
|
113
|
+
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;
|
|
113
114
|
clientLocationIncludes: string[] | null;
|
|
114
115
|
clientLocationExcludes: string[] | null;
|
|
115
116
|
minReviewScore: number | null;
|
|
@@ -119,15 +120,14 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
119
120
|
minHireRate: number | null;
|
|
120
121
|
maxHireRate: number | null;
|
|
121
122
|
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;
|
|
122
|
-
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;
|
|
123
123
|
minJobsPosted: number | null;
|
|
124
124
|
minAvgHourlyRate: number | null;
|
|
125
125
|
maxAvgHourlyRate: number | null;
|
|
126
126
|
minNumReviews: number | null;
|
|
127
127
|
memberSinceFrom: string | null;
|
|
128
128
|
memberSinceTo: string | null;
|
|
129
|
-
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
130
129
|
isPhoneVerified?: "false" | "all" | "true" | undefined;
|
|
130
|
+
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
131
131
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
132
132
|
}>>;
|
|
133
133
|
includeClientsWithZeroReviews: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -143,50 +143,33 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
143
143
|
requiredEarnings: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<100>, z.ZodLiteral<1000>, z.ZodLiteral<10000>]>>;
|
|
144
144
|
requiredJSS: z.ZodNullable<z.ZodArray<z.ZodEnum<[">80%", ">90%", "100%", "RT"]>, "many">>;
|
|
145
145
|
}, "strip", z.ZodTypeAny, {
|
|
146
|
+
includeRisingTalent: string | null;
|
|
146
147
|
locationIncludes: string[] | null;
|
|
147
148
|
locationExcludes: string[] | null;
|
|
148
149
|
talentTypes: ("Unspecified" | "Independent" | "Agency")[] | null;
|
|
149
150
|
englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
|
|
150
|
-
includeRisingTalent: string | null;
|
|
151
151
|
requiredEarnings: 100 | 1000 | 10000 | null;
|
|
152
152
|
requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
|
|
153
153
|
}, {
|
|
154
|
+
includeRisingTalent: string | null;
|
|
154
155
|
locationIncludes: string[] | null;
|
|
155
156
|
locationExcludes: string[] | null;
|
|
156
157
|
talentTypes: ("Unspecified" | "Independent" | "Agency")[] | null;
|
|
157
158
|
englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
|
|
158
|
-
includeRisingTalent: string | null;
|
|
159
159
|
requiredEarnings: 100 | 1000 | 10000 | null;
|
|
160
160
|
requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
|
|
161
161
|
}>>;
|
|
162
162
|
}, "strip", z.ZodTypeAny, {
|
|
163
|
-
|
|
164
|
-
includes: string | null;
|
|
165
|
-
excludes: string | null;
|
|
166
|
-
} | null;
|
|
167
|
-
searchQuery: string | null;
|
|
168
|
-
isFeatured: "false" | "all" | "true" | null;
|
|
169
|
-
regions: ("Worldwide" | "USOnly" | "UKOnly" | "All")[] | null;
|
|
170
|
-
categories: {
|
|
171
|
-
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;
|
|
172
|
-
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" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
|
|
173
|
-
} | null;
|
|
174
|
-
payment: {
|
|
175
|
-
paymentType: ("Unspecified" | "Hourly" | "Fixed-price")[] | null;
|
|
176
|
-
minFixedPrice: number | null;
|
|
177
|
-
maxFixedPrice: number | null;
|
|
178
|
-
minHourlyRate: number | null;
|
|
179
|
-
maxHourlyRate: number | null;
|
|
180
|
-
} | null;
|
|
181
|
-
projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
|
|
182
|
-
experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
|
|
163
|
+
regions: ("USOnly" | "UKOnly" | "Worldwide" | "All")[] | null;
|
|
183
164
|
questions: {
|
|
184
165
|
hasQuestions: ("all" | "yes" | "no")[];
|
|
185
166
|
} | null;
|
|
186
|
-
|
|
167
|
+
projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
|
|
168
|
+
experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
|
|
187
169
|
clientInfo: {
|
|
188
|
-
isPaymentVerified: "false" | "all" | "true";
|
|
189
170
|
isPhoneVerified: "false" | "all" | "true";
|
|
171
|
+
isPaymentVerified: "false" | "all" | "true";
|
|
172
|
+
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;
|
|
190
173
|
enterpriseClient: "false" | "all" | "true";
|
|
191
174
|
clientLocationIncludes: string[] | null;
|
|
192
175
|
clientLocationExcludes: string[] | null;
|
|
@@ -197,7 +180,6 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
197
180
|
minHireRate: number | null;
|
|
198
181
|
maxHireRate: number | null;
|
|
199
182
|
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;
|
|
200
|
-
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;
|
|
201
183
|
minJobsPosted: number | null;
|
|
202
184
|
minAvgHourlyRate: number | null;
|
|
203
185
|
maxAvgHourlyRate: number | null;
|
|
@@ -205,27 +187,21 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
205
187
|
memberSinceFrom: string | null;
|
|
206
188
|
memberSinceTo: string | null;
|
|
207
189
|
} | null;
|
|
208
|
-
includeClientsWithZeroReviews: boolean | null;
|
|
209
|
-
includeClientsWithLessThanXPostedJobs: number | null;
|
|
210
|
-
totalSpentIncludeClientsWithLessThanXPostedJobs: number | null;
|
|
211
|
-
averageHourlyRateIncludeClientsWithLessThanXPostedJobs: number | null;
|
|
212
190
|
vendorQualifications: {
|
|
191
|
+
includeRisingTalent: string | null;
|
|
213
192
|
locationIncludes: string[] | null;
|
|
214
193
|
locationExcludes: string[] | null;
|
|
215
194
|
talentTypes: ("Unspecified" | "Independent" | "Agency")[] | null;
|
|
216
195
|
englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
|
|
217
|
-
includeRisingTalent: string | null;
|
|
218
196
|
requiredEarnings: 100 | 1000 | 10000 | null;
|
|
219
197
|
requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
|
|
220
198
|
} | null;
|
|
221
|
-
|
|
199
|
+
isFeatured: "false" | "all" | "true" | null;
|
|
222
200
|
keywords: {
|
|
223
201
|
includes: string | null;
|
|
224
202
|
excludes: string | null;
|
|
225
203
|
} | null;
|
|
226
204
|
searchQuery: string | null;
|
|
227
|
-
isFeatured: "false" | "all" | "true" | null;
|
|
228
|
-
regions: ("Worldwide" | "USOnly" | "UKOnly" | "All")[] | null;
|
|
229
205
|
categories: {
|
|
230
206
|
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;
|
|
231
207
|
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" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
|
|
@@ -237,13 +213,20 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
237
213
|
minHourlyRate: number | null;
|
|
238
214
|
maxHourlyRate: number | null;
|
|
239
215
|
} | null;
|
|
240
|
-
|
|
241
|
-
|
|
216
|
+
engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
|
|
217
|
+
includeClientsWithZeroReviews: boolean | null;
|
|
218
|
+
includeClientsWithLessThanXPostedJobs: number | null;
|
|
219
|
+
totalSpentIncludeClientsWithLessThanXPostedJobs: number | null;
|
|
220
|
+
averageHourlyRateIncludeClientsWithLessThanXPostedJobs: number | null;
|
|
221
|
+
}, {
|
|
222
|
+
regions: ("USOnly" | "UKOnly" | "Worldwide" | "All")[] | null;
|
|
242
223
|
questions: {
|
|
243
224
|
hasQuestions: ("all" | "yes" | "no")[];
|
|
244
225
|
} | null;
|
|
245
|
-
|
|
226
|
+
projectDuration: ("Less than 1 month" | "1 to 3 months" | "3 to 6 months" | "More than 6 months" | "Unspecified")[] | null;
|
|
227
|
+
experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
|
|
246
228
|
clientInfo: {
|
|
229
|
+
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;
|
|
247
230
|
clientLocationIncludes: string[] | null;
|
|
248
231
|
clientLocationExcludes: string[] | null;
|
|
249
232
|
minReviewScore: number | null;
|
|
@@ -253,30 +236,47 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
253
236
|
minHireRate: number | null;
|
|
254
237
|
maxHireRate: number | null;
|
|
255
238
|
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;
|
|
256
|
-
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;
|
|
257
239
|
minJobsPosted: number | null;
|
|
258
240
|
minAvgHourlyRate: number | null;
|
|
259
241
|
maxAvgHourlyRate: number | null;
|
|
260
242
|
minNumReviews: number | null;
|
|
261
243
|
memberSinceFrom: string | null;
|
|
262
244
|
memberSinceTo: string | null;
|
|
263
|
-
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
264
245
|
isPhoneVerified?: "false" | "all" | "true" | undefined;
|
|
246
|
+
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
265
247
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
266
248
|
} | null;
|
|
267
|
-
includeClientsWithZeroReviews: boolean | null;
|
|
268
|
-
includeClientsWithLessThanXPostedJobs: number | null;
|
|
269
|
-
totalSpentIncludeClientsWithLessThanXPostedJobs: number | null;
|
|
270
|
-
averageHourlyRateIncludeClientsWithLessThanXPostedJobs: number | null;
|
|
271
249
|
vendorQualifications: {
|
|
250
|
+
includeRisingTalent: string | null;
|
|
272
251
|
locationIncludes: string[] | null;
|
|
273
252
|
locationExcludes: string[] | null;
|
|
274
253
|
talentTypes: ("Unspecified" | "Independent" | "Agency")[] | null;
|
|
275
254
|
englishLevels: ("Unspecified" | "Fluent" | "Conversational" | "Native or Bilingual")[] | null;
|
|
276
|
-
includeRisingTalent: string | null;
|
|
277
255
|
requiredEarnings: 100 | 1000 | 10000 | null;
|
|
278
256
|
requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
|
|
279
257
|
} | null;
|
|
258
|
+
isFeatured: "false" | "all" | "true" | null;
|
|
259
|
+
keywords: {
|
|
260
|
+
includes: string | null;
|
|
261
|
+
excludes: string | null;
|
|
262
|
+
} | null;
|
|
263
|
+
searchQuery: string | null;
|
|
264
|
+
categories: {
|
|
265
|
+
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;
|
|
266
|
+
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" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
|
|
267
|
+
} | null;
|
|
268
|
+
payment: {
|
|
269
|
+
paymentType: ("Unspecified" | "Hourly" | "Fixed-price")[] | null;
|
|
270
|
+
minFixedPrice: number | null;
|
|
271
|
+
maxFixedPrice: number | null;
|
|
272
|
+
minHourlyRate: number | null;
|
|
273
|
+
maxHourlyRate: number | null;
|
|
274
|
+
} | null;
|
|
275
|
+
engagementType: ("Unspecified" | "Less than 30 hrs/week" | "More than 30 hrs/week")[] | null;
|
|
276
|
+
includeClientsWithZeroReviews: boolean | null;
|
|
277
|
+
includeClientsWithLessThanXPostedJobs: number | null;
|
|
278
|
+
totalSpentIncludeClientsWithLessThanXPostedJobs: number | null;
|
|
279
|
+
averageHourlyRateIncludeClientsWithLessThanXPostedJobs: number | null;
|
|
280
280
|
}>;
|
|
281
281
|
export interface JobFilters extends z.infer<typeof jobFiltersSchema> {
|
|
282
282
|
}
|
|
@@ -105,7 +105,6 @@ export declare const jobListingSchema: z.ZodObject<{
|
|
|
105
105
|
type: number;
|
|
106
106
|
title: string;
|
|
107
107
|
description: string;
|
|
108
|
-
premium: boolean;
|
|
109
108
|
amount: {
|
|
110
109
|
amount: number;
|
|
111
110
|
};
|
|
@@ -133,6 +132,7 @@ export declare const jobListingSchema: z.ZodObject<{
|
|
|
133
132
|
tierText: string | null;
|
|
134
133
|
isApplied: boolean;
|
|
135
134
|
proposalsTier: string | null;
|
|
135
|
+
premium: boolean;
|
|
136
136
|
attrs: {
|
|
137
137
|
uid: string;
|
|
138
138
|
prefLabel: string;
|
|
@@ -156,7 +156,6 @@ export declare const jobListingSchema: z.ZodObject<{
|
|
|
156
156
|
type: number;
|
|
157
157
|
title: string;
|
|
158
158
|
description: string;
|
|
159
|
-
premium: boolean;
|
|
160
159
|
amount: {
|
|
161
160
|
amount: number;
|
|
162
161
|
};
|
|
@@ -184,6 +183,7 @@ export declare const jobListingSchema: z.ZodObject<{
|
|
|
184
183
|
tierText: string | null;
|
|
185
184
|
isApplied: boolean;
|
|
186
185
|
proposalsTier: string | null;
|
|
186
|
+
premium: boolean;
|
|
187
187
|
attrs: {
|
|
188
188
|
uid: string;
|
|
189
189
|
prefLabel: string;
|
|
@@ -325,7 +325,6 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
325
325
|
type: number;
|
|
326
326
|
title: string;
|
|
327
327
|
description: string;
|
|
328
|
-
premium: boolean;
|
|
329
328
|
amount: {
|
|
330
329
|
amount: number;
|
|
331
330
|
};
|
|
@@ -353,6 +352,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
353
352
|
tierText: string | null;
|
|
354
353
|
isApplied: boolean;
|
|
355
354
|
proposalsTier: string | null;
|
|
355
|
+
premium: boolean;
|
|
356
356
|
attrs: {
|
|
357
357
|
uid: string;
|
|
358
358
|
prefLabel: string;
|
|
@@ -376,7 +376,6 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
376
376
|
type: number;
|
|
377
377
|
title: string;
|
|
378
378
|
description: string;
|
|
379
|
-
premium: boolean;
|
|
380
379
|
amount: {
|
|
381
380
|
amount: number;
|
|
382
381
|
};
|
|
@@ -404,6 +403,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
404
403
|
tierText: string | null;
|
|
405
404
|
isApplied: boolean;
|
|
406
405
|
proposalsTier: string | null;
|
|
406
|
+
premium: boolean;
|
|
407
407
|
attrs: {
|
|
408
408
|
uid: string;
|
|
409
409
|
prefLabel: string;
|
|
@@ -451,7 +451,6 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
451
451
|
type: number;
|
|
452
452
|
title: string;
|
|
453
453
|
description: string;
|
|
454
|
-
premium: boolean;
|
|
455
454
|
amount: {
|
|
456
455
|
amount: number;
|
|
457
456
|
};
|
|
@@ -479,6 +478,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
479
478
|
tierText: string | null;
|
|
480
479
|
isApplied: boolean;
|
|
481
480
|
proposalsTier: string | null;
|
|
481
|
+
premium: boolean;
|
|
482
482
|
attrs: {
|
|
483
483
|
uid: string;
|
|
484
484
|
prefLabel: string;
|
|
@@ -499,14 +499,14 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
499
499
|
jobUrl?: string | undefined;
|
|
500
500
|
clientRelation?: any;
|
|
501
501
|
}[];
|
|
502
|
+
currentPage: number;
|
|
502
503
|
paging: {
|
|
503
504
|
offset: number;
|
|
504
505
|
total: number;
|
|
505
506
|
count: number;
|
|
506
507
|
};
|
|
507
|
-
currentPage: number;
|
|
508
|
-
jobsPerPage: number;
|
|
509
508
|
searchQueryCache: Record<string, string>;
|
|
509
|
+
jobsPerPage: number;
|
|
510
510
|
abortController?: any;
|
|
511
511
|
}, {
|
|
512
512
|
status: {
|
|
@@ -518,7 +518,6 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
518
518
|
type: number;
|
|
519
519
|
title: string;
|
|
520
520
|
description: string;
|
|
521
|
-
premium: boolean;
|
|
522
521
|
amount: {
|
|
523
522
|
amount: number;
|
|
524
523
|
};
|
|
@@ -546,6 +545,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
546
545
|
tierText: string | null;
|
|
547
546
|
isApplied: boolean;
|
|
548
547
|
proposalsTier: string | null;
|
|
548
|
+
premium: boolean;
|
|
549
549
|
attrs: {
|
|
550
550
|
uid: string;
|
|
551
551
|
prefLabel: string;
|
|
@@ -566,14 +566,14 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
566
566
|
jobUrl?: string | undefined;
|
|
567
567
|
clientRelation?: any;
|
|
568
568
|
}[];
|
|
569
|
+
currentPage: number;
|
|
569
570
|
paging: {
|
|
570
571
|
offset: number;
|
|
571
572
|
total: number;
|
|
572
573
|
count: number;
|
|
573
574
|
};
|
|
574
|
-
currentPage: number;
|
|
575
|
-
jobsPerPage: number;
|
|
576
575
|
searchQueryCache: Record<string, string>;
|
|
576
|
+
jobsPerPage: number;
|
|
577
577
|
abortController?: any;
|
|
578
578
|
}>;
|
|
579
579
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -587,7 +587,6 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
587
587
|
type: number;
|
|
588
588
|
title: string;
|
|
589
589
|
description: string;
|
|
590
|
-
premium: boolean;
|
|
591
590
|
amount: {
|
|
592
591
|
amount: number;
|
|
593
592
|
};
|
|
@@ -615,6 +614,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
615
614
|
tierText: string | null;
|
|
616
615
|
isApplied: boolean;
|
|
617
616
|
proposalsTier: string | null;
|
|
617
|
+
premium: boolean;
|
|
618
618
|
attrs: {
|
|
619
619
|
uid: string;
|
|
620
620
|
prefLabel: string;
|
|
@@ -635,14 +635,14 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
635
635
|
jobUrl?: string | undefined;
|
|
636
636
|
clientRelation?: any;
|
|
637
637
|
}[];
|
|
638
|
+
currentPage: number;
|
|
638
639
|
paging: {
|
|
639
640
|
offset: number;
|
|
640
641
|
total: number;
|
|
641
642
|
count: number;
|
|
642
643
|
};
|
|
643
|
-
currentPage: number;
|
|
644
|
-
jobsPerPage: number;
|
|
645
644
|
searchQueryCache: Record<string, string>;
|
|
645
|
+
jobsPerPage: number;
|
|
646
646
|
abortController?: any;
|
|
647
647
|
};
|
|
648
648
|
}, {
|
|
@@ -656,7 +656,6 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
656
656
|
type: number;
|
|
657
657
|
title: string;
|
|
658
658
|
description: string;
|
|
659
|
-
premium: boolean;
|
|
660
659
|
amount: {
|
|
661
660
|
amount: number;
|
|
662
661
|
};
|
|
@@ -684,6 +683,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
684
683
|
tierText: string | null;
|
|
685
684
|
isApplied: boolean;
|
|
686
685
|
proposalsTier: string | null;
|
|
686
|
+
premium: boolean;
|
|
687
687
|
attrs: {
|
|
688
688
|
uid: string;
|
|
689
689
|
prefLabel: string;
|
|
@@ -704,14 +704,14 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
704
704
|
jobUrl?: string | undefined;
|
|
705
705
|
clientRelation?: any;
|
|
706
706
|
}[];
|
|
707
|
+
currentPage: number;
|
|
707
708
|
paging: {
|
|
708
709
|
offset: number;
|
|
709
710
|
total: number;
|
|
710
711
|
count: number;
|
|
711
712
|
};
|
|
712
|
-
currentPage: number;
|
|
713
|
-
jobsPerPage: number;
|
|
714
713
|
searchQueryCache: Record<string, string>;
|
|
714
|
+
jobsPerPage: number;
|
|
715
715
|
abortController?: any;
|
|
716
716
|
};
|
|
717
717
|
}>;
|
|
@@ -727,7 +727,6 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
727
727
|
type: number;
|
|
728
728
|
title: string;
|
|
729
729
|
description: string;
|
|
730
|
-
premium: boolean;
|
|
731
730
|
amount: {
|
|
732
731
|
amount: number;
|
|
733
732
|
};
|
|
@@ -755,6 +754,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
755
754
|
tierText: string | null;
|
|
756
755
|
isApplied: boolean;
|
|
757
756
|
proposalsTier: string | null;
|
|
757
|
+
premium: boolean;
|
|
758
758
|
attrs: {
|
|
759
759
|
uid: string;
|
|
760
760
|
prefLabel: string;
|
|
@@ -775,14 +775,14 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
775
775
|
jobUrl?: string | undefined;
|
|
776
776
|
clientRelation?: any;
|
|
777
777
|
}[];
|
|
778
|
+
currentPage: number;
|
|
778
779
|
paging: {
|
|
779
780
|
offset: number;
|
|
780
781
|
total: number;
|
|
781
782
|
count: number;
|
|
782
783
|
};
|
|
783
|
-
currentPage: number;
|
|
784
|
-
jobsPerPage: number;
|
|
785
784
|
searchQueryCache: Record<string, string>;
|
|
785
|
+
jobsPerPage: number;
|
|
786
786
|
abortController?: any;
|
|
787
787
|
};
|
|
788
788
|
};
|
|
@@ -798,7 +798,6 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
798
798
|
type: number;
|
|
799
799
|
title: string;
|
|
800
800
|
description: string;
|
|
801
|
-
premium: boolean;
|
|
802
801
|
amount: {
|
|
803
802
|
amount: number;
|
|
804
803
|
};
|
|
@@ -826,6 +825,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
826
825
|
tierText: string | null;
|
|
827
826
|
isApplied: boolean;
|
|
828
827
|
proposalsTier: string | null;
|
|
828
|
+
premium: boolean;
|
|
829
829
|
attrs: {
|
|
830
830
|
uid: string;
|
|
831
831
|
prefLabel: string;
|
|
@@ -846,14 +846,14 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
846
846
|
jobUrl?: string | undefined;
|
|
847
847
|
clientRelation?: any;
|
|
848
848
|
}[];
|
|
849
|
+
currentPage: number;
|
|
849
850
|
paging: {
|
|
850
851
|
offset: number;
|
|
851
852
|
total: number;
|
|
852
853
|
count: number;
|
|
853
854
|
};
|
|
854
|
-
currentPage: number;
|
|
855
|
-
jobsPerPage: number;
|
|
856
855
|
searchQueryCache: Record<string, string>;
|
|
856
|
+
jobsPerPage: number;
|
|
857
857
|
abortController?: any;
|
|
858
858
|
};
|
|
859
859
|
};
|