lancer-shared 1.0.172 → 1.0.173

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.
@@ -5120,6 +5120,7 @@ const jobListingSchema = objectType({
5120
5120
  });
5121
5121
  const jobActivityOffsetHourSchema = custom((val) => jobActivityOffsetHours.includes(val));
5122
5122
  const jobActivityUpdateSchema = objectType({
5123
+ jobUrl: stringType(),
5123
5124
  data: jobActivitySchema,
5124
5125
  offsetHour: jobActivityOffsetHourSchema,
5125
5126
  scrapedAt: numberType(),
@@ -2250,6 +2250,7 @@ export declare const jobListingSchema: z.ZodObject<{
2250
2250
  }>;
2251
2251
  export declare const jobActivityOffsetHourSchema: z.ZodType<4 | 24, z.ZodTypeDef, 4 | 24>;
2252
2252
  export declare const jobActivityUpdateSchema: z.ZodObject<{
2253
+ jobUrl: z.ZodString;
2253
2254
  data: z.ZodObject<{
2254
2255
  proposals: z.ZodObject<{
2255
2256
  min: z.ZodNullable<z.ZodNumber>;
@@ -2293,6 +2294,7 @@ export declare const jobActivityUpdateSchema: z.ZodObject<{
2293
2294
  offsetHour: z.ZodType<4 | 24, z.ZodTypeDef, 4 | 24>;
2294
2295
  scrapedAt: z.ZodNumber;
2295
2296
  }, "strip", z.ZodTypeAny, {
2297
+ jobUrl: string;
2296
2298
  data: {
2297
2299
  proposals: {
2298
2300
  min: number | null;
@@ -2308,6 +2310,7 @@ export declare const jobActivityUpdateSchema: z.ZodObject<{
2308
2310
  offsetHour: 4 | 24;
2309
2311
  scrapedAt: number;
2310
2312
  }, {
2313
+ jobUrl: string;
2311
2314
  data: {
2312
2315
  proposals: {
2313
2316
  min: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.0.172",
3
+ "version": "1.0.173",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",