lancer-shared 1.2.243 → 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/agent/index.d.ts +8 -8
- 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.esm.js
CHANGED
|
@@ -5199,6 +5199,8 @@ const jobFiltersSchema = z.object({
|
|
|
5199
5199
|
.nullable(),
|
|
5200
5200
|
includeClientsWithZeroReviews: z.boolean().nullable(),
|
|
5201
5201
|
includeClientsWithLessThanXPostedJobs: z.number().nullable(),
|
|
5202
|
+
totalSpentIncludeClientsWithLessThanXPostedJobs: z.number().nullable(),
|
|
5203
|
+
averageHourlyRateIncludeClientsWithLessThanXPostedJobs: z.number().nullable(),
|
|
5202
5204
|
vendorQualifications: z
|
|
5203
5205
|
.object({
|
|
5204
5206
|
locationIncludes: z.array(z.string()).nullable(),
|
|
@@ -6862,7 +6864,7 @@ const agentPickSpecialisedProfileResponseSchema = z.object({
|
|
|
6862
6864
|
reason: z.string(),
|
|
6863
6865
|
});
|
|
6864
6866
|
const suitabilityRatingSchema = z.object({
|
|
6865
|
-
|
|
6867
|
+
rating: z.number(),
|
|
6866
6868
|
reason: z.string(),
|
|
6867
6869
|
});
|
|
6868
6870
|
const jobQualityScoreSchema = z.object({
|