lancer-shared 1.0.174 → 1.0.175

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.
@@ -92,6 +92,7 @@ export declare const jobActivityScrapedEventMetadata: z.ZodObject<{
92
92
  max: number | null;
93
93
  }>;
94
94
  lastViewedByClient: z.ZodNullable<z.ZodString>;
95
+ lastViewedByClientTimestamp: z.ZodNullable<z.ZodNumber>;
95
96
  hires: z.ZodNullable<z.ZodNumber>;
96
97
  interviewing: z.ZodNullable<z.ZodNumber>;
97
98
  invitesSent: z.ZodNullable<z.ZodNumber>;
@@ -103,6 +104,7 @@ export declare const jobActivityScrapedEventMetadata: z.ZodObject<{
103
104
  max: number | null;
104
105
  };
105
106
  lastViewedByClient: string | null;
107
+ lastViewedByClientTimestamp: number | null;
106
108
  hires: number | null;
107
109
  interviewing: number | null;
108
110
  invitesSent: number | null;
@@ -114,6 +116,7 @@ export declare const jobActivityScrapedEventMetadata: z.ZodObject<{
114
116
  max: number | null;
115
117
  };
116
118
  lastViewedByClient: string | null;
119
+ lastViewedByClientTimestamp: number | null;
117
120
  hires: number | null;
118
121
  interviewing: number | null;
119
122
  invitesSent: number | null;
@@ -131,6 +134,7 @@ export declare const jobActivityScrapedEventMetadata: z.ZodObject<{
131
134
  max: number | null;
132
135
  };
133
136
  lastViewedByClient: string | null;
137
+ lastViewedByClientTimestamp: number | null;
134
138
  hires: number | null;
135
139
  interviewing: number | null;
136
140
  invitesSent: number | null;
@@ -147,6 +151,7 @@ export declare const jobActivityScrapedEventMetadata: z.ZodObject<{
147
151
  max: number | null;
148
152
  };
149
153
  lastViewedByClient: string | null;
154
+ lastViewedByClientTimestamp: number | null;
150
155
  hires: number | null;
151
156
  interviewing: number | null;
152
157
  invitesSent: number | null;
@@ -1,6 +1,7 @@
1
1
  export declare const scrapeResultSchema: import("zod").ZodObject<{
2
2
  jobs: import("zod").ZodArray<import("zod").ZodObject<{
3
3
  id: import("zod").ZodNullable<import("zod").ZodString>;
4
+ uid: import("zod").ZodNullable<import("zod").ZodString>;
4
5
  createdAt: import("zod").ZodNullable<import("zod").ZodNumber>;
5
6
  title: import("zod").ZodNullable<import("zod").ZodString>;
6
7
  category: import("zod").ZodNullable<import("zod").ZodString>;
@@ -201,6 +202,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
201
202
  max: number | null;
202
203
  }>;
203
204
  lastViewedByClient: import("zod").ZodNullable<import("zod").ZodString>;
205
+ lastViewedByClientTimestamp: import("zod").ZodNullable<import("zod").ZodNumber>;
204
206
  hires: import("zod").ZodNullable<import("zod").ZodNumber>;
205
207
  interviewing: import("zod").ZodNullable<import("zod").ZodNumber>;
206
208
  invitesSent: import("zod").ZodNullable<import("zod").ZodNumber>;
@@ -212,6 +214,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
212
214
  max: number | null;
213
215
  };
214
216
  lastViewedByClient: string | null;
217
+ lastViewedByClientTimestamp: number | null;
215
218
  hires: number | null;
216
219
  interviewing: number | null;
217
220
  invitesSent: number | null;
@@ -223,6 +226,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
223
226
  max: number | null;
224
227
  };
225
228
  lastViewedByClient: string | null;
229
+ lastViewedByClientTimestamp: number | null;
226
230
  hires: number | null;
227
231
  interviewing: number | null;
228
232
  invitesSent: number | null;
@@ -242,6 +246,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
242
246
  max: number | null;
243
247
  }>;
244
248
  lastViewedByClient: import("zod").ZodNullable<import("zod").ZodString>;
249
+ lastViewedByClientTimestamp: import("zod").ZodNullable<import("zod").ZodNumber>;
245
250
  hires: import("zod").ZodNullable<import("zod").ZodNumber>;
246
251
  interviewing: import("zod").ZodNullable<import("zod").ZodNumber>;
247
252
  invitesSent: import("zod").ZodNullable<import("zod").ZodNumber>;
@@ -253,6 +258,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
253
258
  max: number | null;
254
259
  };
255
260
  lastViewedByClient: string | null;
261
+ lastViewedByClientTimestamp: number | null;
256
262
  hires: number | null;
257
263
  interviewing: number | null;
258
264
  invitesSent: number | null;
@@ -264,6 +270,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
264
270
  max: number | null;
265
271
  };
266
272
  lastViewedByClient: string | null;
273
+ lastViewedByClientTimestamp: number | null;
267
274
  hires: number | null;
268
275
  interviewing: number | null;
269
276
  invitesSent: number | null;
@@ -291,6 +298,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
291
298
  }>>>;
292
299
  }, "strip", import("zod").ZodTypeAny, {
293
300
  id: string | null;
301
+ uid: string | null;
294
302
  createdAt: number | null;
295
303
  title: string | null;
296
304
  category: string | null;
@@ -371,6 +379,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
371
379
  max: number | null;
372
380
  };
373
381
  lastViewedByClient: string | null;
382
+ lastViewedByClientTimestamp: number | null;
374
383
  hires: number | null;
375
384
  interviewing: number | null;
376
385
  invitesSent: number | null;
@@ -384,6 +393,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
384
393
  max: number | null;
385
394
  };
386
395
  lastViewedByClient: string | null;
396
+ lastViewedByClientTimestamp: number | null;
387
397
  hires: number | null;
388
398
  interviewing: number | null;
389
399
  invitesSent: number | null;
@@ -399,6 +409,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
399
409
  } | null | undefined;
400
410
  }, {
401
411
  id: string | null;
412
+ uid: string | null;
402
413
  createdAt: number | null;
403
414
  title: string | null;
404
415
  category: string | null;
@@ -479,6 +490,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
479
490
  max: number | null;
480
491
  };
481
492
  lastViewedByClient: string | null;
493
+ lastViewedByClientTimestamp: number | null;
482
494
  hires: number | null;
483
495
  interviewing: number | null;
484
496
  invitesSent: number | null;
@@ -492,6 +504,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
492
504
  max: number | null;
493
505
  };
494
506
  lastViewedByClient: string | null;
507
+ lastViewedByClientTimestamp: number | null;
495
508
  hires: number | null;
496
509
  interviewing: number | null;
497
510
  invitesSent: number | null;
@@ -513,6 +526,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
513
526
  }, "strip", import("zod").ZodTypeAny, {
514
527
  jobs: {
515
528
  id: string | null;
529
+ uid: string | null;
516
530
  createdAt: number | null;
517
531
  title: string | null;
518
532
  category: string | null;
@@ -593,6 +607,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
593
607
  max: number | null;
594
608
  };
595
609
  lastViewedByClient: string | null;
610
+ lastViewedByClientTimestamp: number | null;
596
611
  hires: number | null;
597
612
  interviewing: number | null;
598
613
  invitesSent: number | null;
@@ -606,6 +621,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
606
621
  max: number | null;
607
622
  };
608
623
  lastViewedByClient: string | null;
624
+ lastViewedByClientTimestamp: number | null;
609
625
  hires: number | null;
610
626
  interviewing: number | null;
611
627
  invitesSent: number | null;
@@ -627,6 +643,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
627
643
  }, {
628
644
  jobs: {
629
645
  id: string | null;
646
+ uid: string | null;
630
647
  createdAt: number | null;
631
648
  title: string | null;
632
649
  category: string | null;
@@ -707,6 +724,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
707
724
  max: number | null;
708
725
  };
709
726
  lastViewedByClient: string | null;
727
+ lastViewedByClientTimestamp: number | null;
710
728
  hires: number | null;
711
729
  interviewing: number | null;
712
730
  invitesSent: number | null;
@@ -720,6 +738,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
720
738
  max: number | null;
721
739
  };
722
740
  lastViewedByClient: string | null;
741
+ lastViewedByClientTimestamp: number | null;
723
742
  hires: number | null;
724
743
  interviewing: number | null;
725
744
  invitesSent: number | null;
@@ -869,19 +888,19 @@ export declare const scrapeFeedResultSchema: import("zod").ZodObject<{
869
888
  isFeatured: import("zod").ZodNullable<import("zod").ZodBoolean>;
870
889
  region: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodLiteral<"USOnly">, import("zod").ZodLiteral<"UKOnly">, import("zod").ZodLiteral<"Worldwide">]>>;
871
890
  }, "strip", import("zod").ZodTypeAny, {
891
+ uid: string | null;
872
892
  title: string | null;
873
893
  datetime: string | null;
874
894
  jobUrl: string | null;
875
895
  region: "USOnly" | "UKOnly" | "Worldwide" | null;
876
896
  isFeatured: boolean | null;
877
- uid: string | null;
878
897
  }, {
898
+ uid: string | null;
879
899
  title: string | null;
880
900
  datetime: string | null;
881
901
  jobUrl: string | null;
882
902
  region: "USOnly" | "UKOnly" | "Worldwide" | null;
883
903
  isFeatured: boolean | null;
884
- uid: string | null;
885
904
  }>, "many">;
886
905
  cookies: import("zod").ZodArray<import("zod").ZodAny, "many">;
887
906
  region: import("zod").ZodUnion<[import("zod").ZodLiteral<"USOnly">, import("zod").ZodLiteral<"UKOnly">, import("zod").ZodLiteral<"Worldwide">]>;
@@ -891,12 +910,12 @@ export declare const scrapeFeedResultSchema: import("zod").ZodObject<{
891
910
  region: "USOnly" | "UKOnly" | "Worldwide";
892
911
  cookies: any[];
893
912
  listings: {
913
+ uid: string | null;
894
914
  title: string | null;
895
915
  datetime: string | null;
896
916
  jobUrl: string | null;
897
917
  region: "USOnly" | "UKOnly" | "Worldwide" | null;
898
918
  isFeatured: boolean | null;
899
- uid: string | null;
900
919
  }[];
901
920
  usAccountCookies?: any[] | undefined;
902
921
  ukAccountCookies?: any[] | undefined;
@@ -904,12 +923,12 @@ export declare const scrapeFeedResultSchema: import("zod").ZodObject<{
904
923
  region: "USOnly" | "UKOnly" | "Worldwide";
905
924
  cookies: any[];
906
925
  listings: {
926
+ uid: string | null;
907
927
  title: string | null;
908
928
  datetime: string | null;
909
929
  jobUrl: string | null;
910
930
  region: "USOnly" | "UKOnly" | "Worldwide" | null;
911
931
  isFeatured: boolean | null;
912
- uid: string | null;
913
932
  }[];
914
933
  usAccountCookies?: any[] | undefined;
915
934
  ukAccountCookies?: any[] | undefined;
@@ -44,3 +44,4 @@ export interface JobActivitySnapshot extends z.infer<typeof jobActivitySnapshotS
44
44
  }
45
45
  export * from "./job-note";
46
46
  export * from "./job-status";
47
+ export * from "./nuxt";
@@ -0,0 +1,4 @@
1
+ import { infer } from "zod";
2
+ import { nuxtStateJobSchema } from "../../schemas";
3
+ export interface NuxtStateJobSchema extends infer<typeof nuxtStateJobSchema> {
4
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.0.174",
3
+ "version": "1.0.175",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",