lancer-shared 1.2.67 → 1.2.68
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
|
@@ -22,6 +22,7 @@ export declare const ROUTES: {
|
|
|
22
22
|
readonly FILTER_OPTIONS: "jobs/filter-options";
|
|
23
23
|
readonly TOTAL_JOBS: "jobs/total-jobs";
|
|
24
24
|
readonly GET_JOB_TITLE: (jobId: string) => string;
|
|
25
|
+
readonly GET_JOBS_COUNT: "jobs/get-jobs-count";
|
|
25
26
|
};
|
|
26
27
|
readonly USERS: {
|
|
27
28
|
readonly BASE: "users";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { infer } from
|
|
2
|
-
import { BidderAccount } from
|
|
1
|
+
import { infer } from "zod";
|
|
2
|
+
import { BidderAccount } from "../account";
|
|
3
3
|
export declare const scrapePayloadSchema: import("zod").ZodObject<{
|
|
4
4
|
latestJobsUrls: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
5
5
|
}, "strip", import("zod").ZodTypeAny, {
|