lancer-shared 1.2.332 → 1.2.333
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 +3 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +3 -1
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/campaign/campaign-analytics.d.ts +24 -0
- package/dist/schemas/campaign/campaign.d.ts +15 -0
- package/dist/schemas/job/job-filters.d.ts +5 -0
- package/dist/schemas/scraper/scrape-payload.d.ts +7 -0
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -5301,6 +5301,7 @@ const requiredJSSEnum = z.enum(JOB_FILTER_OPTIONS.REQUIRED_JSS);
|
|
|
5301
5301
|
const isPaymentVerifiedEnum = z.enum(['all', 'true', 'false']);
|
|
5302
5302
|
const isPhoneVerifiedEnum = z.enum(['all', 'true', 'false']);
|
|
5303
5303
|
const hasQuestionsEnum = z.enum(['all', 'yes', 'no']);
|
|
5304
|
+
const searchQueryModeEnum = z.enum(['builder', 'custom']);
|
|
5304
5305
|
// Main job filters schema
|
|
5305
5306
|
const jobFiltersSchema = z.object({
|
|
5306
5307
|
keywords: z
|
|
@@ -5310,6 +5311,7 @@ const jobFiltersSchema = z.object({
|
|
|
5310
5311
|
})
|
|
5311
5312
|
.nullable(),
|
|
5312
5313
|
searchQuery: z.string().nullable(),
|
|
5314
|
+
searchQueryMode: searchQueryModeEnum.nullable().optional(),
|
|
5313
5315
|
isFeatured: z.enum(['all', 'true', 'false']).nullable(),
|
|
5314
5316
|
regions: z.array(regionEnum).nullable(),
|
|
5315
5317
|
categories: z
|
|
@@ -25045,6 +25047,7 @@ exports.scraperAccountSwapCompletedEventMetadata = scraperAccountSwapCompletedEv
|
|
|
25045
25047
|
exports.scraperAccountSwapFailedEventMetadata = scraperAccountSwapFailedEventMetadata;
|
|
25046
25048
|
exports.scraperAccountSwapStartedEventMetadata = scraperAccountSwapStartedEventMetadata;
|
|
25047
25049
|
exports.scraperAccountTypeEnum = scraperAccountTypeEnum;
|
|
25050
|
+
exports.searchQueryModeEnum = searchQueryModeEnum;
|
|
25048
25051
|
exports.selectAgencyException = selectAgencyException;
|
|
25049
25052
|
exports.selectContractorException = selectContractorException;
|
|
25050
25053
|
exports.selectorNotFoundError = selectorNotFoundError;
|