lancer-shared 1.2.244 → 1.2.245
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 -1
- 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 +48 -0
- package/dist/schemas/campaign/campaign.d.ts +30 -0
- package/dist/schemas/job/job-filters.d.ts +6 -0
- package/dist/schemas/scraper/scrape-payload.d.ts +14 -0
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -5201,6 +5201,8 @@ const jobFiltersSchema = z.object({
|
|
|
5201
5201
|
.nullable(),
|
|
5202
5202
|
includeClientsWithZeroReviews: z.boolean().nullable(),
|
|
5203
5203
|
includeClientsWithLessThanXPostedJobs: z.number().nullable(),
|
|
5204
|
+
totalSpentIncludeClientsWithLessThanXPostedJobs: z.number().nullable(),
|
|
5205
|
+
averageHourlyRateIncludeClientsWithLessThanXPostedJobs: z.number().nullable(),
|
|
5204
5206
|
vendorQualifications: z
|
|
5205
5207
|
.object({
|
|
5206
5208
|
locationIncludes: z.array(z.string()).nullable(),
|
|
@@ -6864,7 +6866,7 @@ const agentPickSpecialisedProfileResponseSchema = z.object({
|
|
|
6864
6866
|
reason: z.string(),
|
|
6865
6867
|
});
|
|
6866
6868
|
const suitabilityRatingSchema = z.object({
|
|
6867
|
-
|
|
6869
|
+
rating: z.number(),
|
|
6868
6870
|
reason: z.string(),
|
|
6869
6871
|
});
|
|
6870
6872
|
const jobQualityScoreSchema = z.object({
|