lancer-shared 1.2.147 → 1.2.149

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.
@@ -19,11 +19,11 @@ export declare class ParseJobListingsException extends Error {
19
19
  constructor(message?: string);
20
20
  }
21
21
  export declare const parseJobListingsException: (message?: string) => ParseJobListingsException;
22
- export declare class FeedJobRefineException extends Error {
23
- readonly code = "FEED_JOB_REFINE_FAILED";
22
+ export declare class FeedJobEnrichException extends Error {
23
+ readonly code = "FEED_JOB_ENRICH_FAILED";
24
24
  constructor(jobListing: JobListing);
25
25
  }
26
- export declare const feedJobRefineFailedException: (jobListing: JobListing) => FeedJobRefineException;
26
+ export declare const feedJobEnrichFailedException: (jobListing: JobListing) => FeedJobEnrichException;
27
27
  export declare class ScraperAccountProxyNotFoundException extends Error {
28
28
  readonly scraperAccountId: string;
29
29
  readonly proxyId: string;
@@ -756,7 +756,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
756
756
  usAccountCookies?: any[] | undefined;
757
757
  ukAccountCookies?: any[] | undefined;
758
758
  }>;
759
- export declare const scrapeFeedResultSchema: import("zod").ZodObject<{
759
+ export declare const feedScrapeResultSchema: import("zod").ZodObject<{
760
760
  listings: import("zod").ZodArray<import("zod").ZodObject<{
761
761
  uid: import("zod").ZodNullable<import("zod").ZodString>;
762
762
  title: import("zod").ZodNullable<import("zod").ZodString>;
@@ -809,5 +809,5 @@ export declare const scrapeFeedResultSchema: import("zod").ZodObject<{
809
809
  }>;
810
810
  export interface ScrapeResult extends infer<typeof scrapeResultSchema> {
811
811
  }
812
- export interface ScrapeFeedResult extends infer<typeof scrapeFeedResultSchema> {
812
+ export interface FeedScrapeResult extends infer<typeof feedScrapeResultSchema> {
813
813
  }
@@ -1,4 +1,4 @@
1
- import { z } from "zod";
1
+ import { z } from 'zod';
2
2
  export declare const booleanSchema: z.ZodEffects<z.ZodUnion<[z.ZodBoolean, z.ZodLiteral<"true">, z.ZodLiteral<"false">]>, boolean, boolean | "true" | "false">;
3
3
  export declare const dateSchema: (params?: {
4
4
  invalid_type_error?: string;
@@ -1,5 +1,5 @@
1
- import { z } from "zod";
2
- import { Organization } from "../organization";
1
+ import { z } from 'zod';
2
+ import { Organization } from '../organization';
3
3
  export declare const userSchema: z.ZodObject<{
4
4
  id: z.ZodString;
5
5
  name: z.ZodString;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.2.147",
3
+ "version": "1.2.149",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",