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