lancer-shared 1.0.37 → 1.0.38
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.
|
@@ -890,13 +890,16 @@ export declare const jobListItemSchema: z.ZodObject<{
|
|
|
890
890
|
jobUrl: z.ZodNullable<z.ZodString>;
|
|
891
891
|
datetime: z.ZodNullable<z.ZodString>;
|
|
892
892
|
isFeatured: z.ZodNullable<z.ZodBoolean>;
|
|
893
|
+
region: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>>;
|
|
893
894
|
}, "strip", z.ZodTypeAny, {
|
|
894
895
|
title: string | null;
|
|
896
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | null;
|
|
895
897
|
datetime: string | null;
|
|
896
898
|
jobUrl: string | null;
|
|
897
899
|
isFeatured: boolean | null;
|
|
898
900
|
}, {
|
|
899
901
|
title: string | null;
|
|
902
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | null;
|
|
900
903
|
datetime: string | null;
|
|
901
904
|
jobUrl: string | null;
|
|
902
905
|
isFeatured: boolean | null;
|
|
@@ -105,6 +105,7 @@ exports.jobListItemSchema = zod_1.z.object({
|
|
|
105
105
|
jobUrl: zod_1.z.string().nullable(),
|
|
106
106
|
datetime: zod_1.z.string().nullable(),
|
|
107
107
|
isFeatured: zod_1.z.boolean().nullable(),
|
|
108
|
+
region: scraper_1.regionSchema.nullable(),
|
|
108
109
|
});
|
|
109
110
|
exports.leadResponseSchema = zod_1.z.object({
|
|
110
111
|
leads: zod_1.z.array(exports.leadSchema),
|