lancer-shared 1.2.180 → 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(),
|
|
@@ -13043,7 +13044,6 @@ const organizationSettingsSchema = objectType({
|
|
|
13043
13044
|
});
|
|
13044
13045
|
const subscribePayloadSchema = objectType({
|
|
13045
13046
|
planId: stringType().min(1, 'Plan id is required.'),
|
|
13046
|
-
paymentMethodId: stringType().min(1, 'Payment method is required.'),
|
|
13047
13047
|
toltReferral: stringType().optional(),
|
|
13048
13048
|
couponCode: stringType().nullish(),
|
|
13049
13049
|
});
|
|
@@ -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;
|
|
@@ -1022,17 +1022,14 @@ export declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
1022
1022
|
}>;
|
|
1023
1023
|
export declare const subscribePayloadSchema: z.ZodObject<{
|
|
1024
1024
|
planId: z.ZodString;
|
|
1025
|
-
paymentMethodId: z.ZodString;
|
|
1026
1025
|
toltReferral: z.ZodOptional<z.ZodString>;
|
|
1027
1026
|
couponCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1028
1027
|
}, "strip", z.ZodTypeAny, {
|
|
1029
1028
|
planId: string;
|
|
1030
|
-
paymentMethodId: string;
|
|
1031
1029
|
toltReferral?: string | undefined;
|
|
1032
1030
|
couponCode?: string | null | undefined;
|
|
1033
1031
|
}, {
|
|
1034
1032
|
planId: string;
|
|
1035
|
-
paymentMethodId: string;
|
|
1036
1033
|
toltReferral?: string | undefined;
|
|
1037
1034
|
couponCode?: string | null | undefined;
|
|
1038
1035
|
}>;
|