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