lancer-shared 1.2.214 → 1.2.215

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.
@@ -11196,6 +11196,7 @@ const jobFiltersSchema = z.object({
11196
11196
  })
11197
11197
  .nullable(),
11198
11198
  includeClientsWithZeroReviews: z.boolean().nullable(),
11199
+ includeClientsWithLessThanPostedJobs: z.boolean().nullable(),
11199
11200
  vendorQualifications: z
11200
11201
  .object({
11201
11202
  locationIncludes: z.array(z.string()).nullable(),
@@ -131,6 +131,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
131
131
  enterpriseClient?: "all" | "true" | "false" | undefined;
132
132
  }>>;
133
133
  includeClientsWithZeroReviews: z.ZodNullable<z.ZodBoolean>;
134
+ includeClientsWithLessThanPostedJobs: z.ZodNullable<z.ZodBoolean>;
134
135
  vendorQualifications: z.ZodNullable<z.ZodObject<{
135
136
  locationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
136
137
  locationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
@@ -203,6 +204,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
203
204
  memberSinceTo: string | null;
204
205
  } | null;
205
206
  includeClientsWithZeroReviews: boolean | null;
207
+ includeClientsWithLessThanPostedJobs: boolean | null;
206
208
  vendorQualifications: {
207
209
  locationIncludes: string[] | null;
208
210
  locationExcludes: string[] | null;
@@ -259,6 +261,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
259
261
  enterpriseClient?: "all" | "true" | "false" | undefined;
260
262
  } | null;
261
263
  includeClientsWithZeroReviews: boolean | null;
264
+ includeClientsWithLessThanPostedJobs: boolean | null;
262
265
  vendorQualifications: {
263
266
  locationIncludes: string[] | null;
264
267
  locationExcludes: string[] | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.2.214",
3
+ "version": "1.2.215",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",