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.
@@ -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
- classification: z.enum(['suitable', 'unsuitable', 'not sure']),
6867
+ rating: z.number(),
6866
6868
  reason: z.string(),
6867
6869
  });
6868
6870
  const jobQualityScoreSchema = z.object({