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.
@@ -6435,6 +6435,7 @@ const ROUTES = {
6435
6435
  FILTER_OPTIONS: 'jobs/filter-options',
6436
6436
  TOTAL_JOBS: 'jobs/total-jobs',
6437
6437
  GET_JOB_TITLE: (jobId) => `jobs/get-job-title/${jobId}`,
6438
+ GET_JOBS_COUNT: "jobs/get-jobs-count",
6438
6439
  },
6439
6440
  USERS: {
6440
6441
  BASE: 'users',
@@ -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 'zod';
2
- import { BidderAccount } from '../account';
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, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.2.67",
3
+ "version": "1.2.68",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",