lancer-shared 1.2.181 → 1.2.182
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
CHANGED
|
@@ -11179,6 +11179,7 @@ const jobFiltersSchema = z.object({
|
|
|
11179
11179
|
memberSinceTo: z.string().date().nullable(),
|
|
11180
11180
|
})
|
|
11181
11181
|
.nullable(),
|
|
11182
|
+
includeClientsWithZeroReviews: z.enum(['all', 'true', 'false']).nullable(),
|
|
11182
11183
|
vendorQualifications: z
|
|
11183
11184
|
.object({
|
|
11184
11185
|
locationIncludes: z.array(z.string()).nullable(),
|
|
@@ -117,6 +117,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
117
117
|
isPhoneVerified?: "all" | "true" | "false" | undefined;
|
|
118
118
|
enterpriseClient?: "all" | "true" | "false" | undefined;
|
|
119
119
|
}>>;
|
|
120
|
+
includeClientsWithZeroReviews: z.ZodNullable<z.ZodEnum<["all", "true", "false"]>>;
|
|
120
121
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
121
122
|
locationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
122
123
|
locationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -183,6 +184,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
183
184
|
memberSinceFrom: string | null;
|
|
184
185
|
memberSinceTo: string | null;
|
|
185
186
|
} | null;
|
|
187
|
+
includeClientsWithZeroReviews: "all" | "true" | "false" | null;
|
|
186
188
|
vendorQualifications: {
|
|
187
189
|
locationIncludes: string[] | null;
|
|
188
190
|
locationExcludes: string[] | null;
|
|
@@ -233,6 +235,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
233
235
|
isPhoneVerified?: "all" | "true" | "false" | undefined;
|
|
234
236
|
enterpriseClient?: "all" | "true" | "false" | undefined;
|
|
235
237
|
} | null;
|
|
238
|
+
includeClientsWithZeroReviews: "all" | "true" | "false" | null;
|
|
236
239
|
vendorQualifications: {
|
|
237
240
|
locationIncludes: string[] | null;
|
|
238
241
|
locationExcludes: string[] | null;
|