lancer-shared 1.2.240 → 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.
- package/dist/bundle.cjs.js.map +1 -0
- package/dist/bundle.esm.js +23749 -0
- package/dist/bundle.esm.js.map +1 -0
- package/dist/schemas/account/bidder-account.d.ts +75 -75
- package/dist/schemas/account/scraper-account.d.ts +37 -37
- package/dist/schemas/agent/index.d.ts +285 -285
- package/dist/schemas/agent/proposal.d.ts +6 -6
- package/dist/schemas/bidder/bid.d.ts +2345 -2345
- package/dist/schemas/campaign/campaign-analytics.d.ts +857 -857
- package/dist/schemas/campaign/campaign-chat-bot.d.ts +25 -25
- package/dist/schemas/campaign/campaign-expenses.d.ts +2 -2
- package/dist/schemas/campaign/campaign-insights.d.ts +12 -12
- package/dist/schemas/campaign/campaign.d.ts +201 -201
- package/dist/schemas/campaign/sequence/boost-node.d.ts +2 -2
- package/dist/schemas/campaign/sequence/client-size-node.d.ts +8 -8
- package/dist/schemas/campaign/sequence/client-spent-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/hire-rate-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/hourly-rate-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/rating-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/suitability-node.d.ts +16 -16
- package/dist/schemas/dashboard/index.d.ts +34 -34
- package/dist/schemas/infrastructure/index.d.ts +8 -8
- package/dist/schemas/invoice/index.d.ts +51 -51
- package/dist/schemas/job/index.d.ts +212 -212
- package/dist/schemas/job/job-api.d.ts +4 -4
- package/dist/schemas/job/job-details.d.ts +736 -736
- package/dist/schemas/job/job-filters.d.ts +14 -14
- package/dist/schemas/job/job-listing.d.ts +94 -94
- package/dist/schemas/job/nuxt.d.ts +150 -150
- package/dist/schemas/lead/index.d.ts +1022 -1022
- package/dist/schemas/lead/lead-status.d.ts +10 -10
- package/dist/schemas/logger/feed/feed-chunk-enrich.d.ts +25 -25
- package/dist/schemas/logger/feed/feed-enrich.d.ts +15 -15
- package/dist/schemas/logger/feed/feed-job-enrich.d.ts +321 -321
- package/dist/schemas/logger/feed/feed-scrape.d.ts +15 -15
- package/dist/schemas/logger/log-event.d.ts +91 -91
- package/dist/schemas/logger/scraper-events.d.ts +90 -90
- package/dist/schemas/notifications/index.d.ts +4 -4
- package/dist/schemas/organization/cover-letter.d.ts +2 -2
- package/dist/schemas/organization/index.d.ts +104 -104
- package/dist/schemas/organization/subscription.d.ts +6 -6
- package/dist/schemas/plan/index.d.ts +14 -14
- package/dist/schemas/proxy/proxy.d.ts +20 -20
- package/dist/schemas/saved-search/index.d.ts +4 -4
- package/dist/schemas/scraper/scrape-payload.d.ts +621 -621
- package/dist/schemas/scraper/scrape-result.d.ts +214 -214
- package/dist/schemas/scraper/upwork-profile.d.ts +16 -16
- package/dist/schemas/shared.d.ts +1 -1
- package/dist/schemas/talent/index.d.ts +854 -854
- package/dist/schemas/transaction/index.d.ts +18 -18
- package/dist/schemas/usage/index.d.ts +16 -16
- package/dist/schemas/usage-event/index.d.ts +4 -4
- package/dist/schemas/user/index.d.ts +4 -4
- package/package.json +10 -8
|
@@ -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: "
|
|
94
|
-
isPhoneVerified: "
|
|
95
|
-
enterpriseClient: "
|
|
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?: "
|
|
130
|
-
isPhoneVerified?: "
|
|
131
|
-
enterpriseClient?: "
|
|
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: "
|
|
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: "
|
|
187
|
-
isPhoneVerified: "
|
|
188
|
-
enterpriseClient: "
|
|
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: "
|
|
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?: "
|
|
260
|
-
isPhoneVerified?: "
|
|
261
|
-
enterpriseClient?: "
|
|
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;
|