lancer-shared 1.0.16 → 1.0.17

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.
@@ -11,6 +11,7 @@ export declare const ROUTES: {
11
11
  readonly BY_ID: (campaignId: string, leadId: string) => string;
12
12
  readonly SYNC: (campaignId: string) => string;
13
13
  readonly NOTES: (campaignId: string, leadId: string, noteId: string) => string;
14
+ readonly SEARCH: (campaignId: string) => string;
14
15
  };
15
16
  readonly INSIGHTS: (campaignId: string) => string;
16
17
  readonly INTEGRATIONS: {
@@ -35,7 +36,6 @@ export declare const ROUTES: {
35
36
  readonly FILTER_OPTIONS: "jobs/filter-options";
36
37
  readonly TOTAL_JOBS: "jobs/total-jobs";
37
38
  readonly GET_JOB_TITLE: (jobId: string) => string;
38
- readonly SEARCH: "jobs/search";
39
39
  };
40
40
  readonly USERS: {
41
41
  readonly BASE: "users";
@@ -14,6 +14,7 @@ exports.ROUTES = {
14
14
  BY_ID: (campaignId, leadId) => `campaigns/${campaignId}/leads/${leadId}`,
15
15
  SYNC: (campaignId) => `campaigns/${campaignId}/leads/sync`,
16
16
  NOTES: (campaignId, leadId, noteId) => `campaigns/${campaignId}/leads/${leadId}/notes/${noteId}`,
17
+ SEARCH: (campaignId) => `campaigns/${campaignId}/leads/search`,
17
18
  },
18
19
  INSIGHTS: (campaignId) => `campaigns/${campaignId}/insights`,
19
20
  INTEGRATIONS: {
@@ -38,7 +39,6 @@ exports.ROUTES = {
38
39
  FILTER_OPTIONS: "jobs/filter-options",
39
40
  TOTAL_JOBS: "jobs/total-jobs",
40
41
  GET_JOB_TITLE: (jobId) => `jobs/get-job-title/${jobId}`,
41
- SEARCH: "jobs/search",
42
42
  },
43
43
  USERS: {
44
44
  BASE: "users",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "lancer-shared",
4
- "version": "1.0.16",
4
+ "version": "1.0.17",
5
5
  "description": "This package contains shared stuff.",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",