lancer-shared 1.0.15 → 1.0.16

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.
@@ -0,0 +1,6 @@
1
+ export declare const COLLECTIONS: {
2
+ readonly USERS: "users";
3
+ readonly SETTINGS: "settings";
4
+ readonly CAMPAIGNS: "campaigns";
5
+ readonly LEADS: "leads";
6
+ };
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.COLLECTIONS = void 0;
4
+ // Base collection names
5
+ exports.COLLECTIONS = {
6
+ USERS: "users",
7
+ SETTINGS: "settings",
8
+ CAMPAIGNS: "campaigns",
9
+ LEADS: "leads",
10
+ };
@@ -14,3 +14,4 @@ export * from "./job-filter-options";
14
14
  export * from "./common-questions";
15
15
  export * from "./job-status";
16
16
  export * from "./routes";
17
+ export * from "./collections";
@@ -36,3 +36,4 @@ __exportStar(require("./job-filter-options"), exports);
36
36
  __exportStar(require("./common-questions"), exports);
37
37
  __exportStar(require("./job-status"), exports);
38
38
  __exportStar(require("./routes"), exports);
39
+ __exportStar(require("./collections"), exports);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "lancer-shared",
4
- "version": "1.0.15",
4
+ "version": "1.0.16",
5
5
  "description": "This package contains shared stuff.",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",