lancer-shared 1.0.26 → 1.0.27

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,11 @@
1
+ import { z } from 'zod';
2
+ export declare const agencyConfigSchema: z.ZodObject<{
3
+ agencyName: z.ZodString;
4
+ contractorName: z.ZodString;
5
+ }, "strip", z.ZodTypeAny, {
6
+ agencyName: string;
7
+ contractorName: string;
8
+ }, {
9
+ agencyName: string;
10
+ contractorName: string;
11
+ }>;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.agencyConfigSchema = void 0;
4
+ const zod_1 = require("zod");
5
+ exports.agencyConfigSchema = zod_1.z.object({
6
+ agencyName: zod_1.z.string(),
7
+ contractorName: zod_1.z.string(),
8
+ });
@@ -0,0 +1 @@
1
+ export * from './agency-config';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./agency-config"), exports);
@@ -1,10 +1,11 @@
1
- export * from "./lead";
2
- export * from "./saved-search";
3
- export * from "./shared";
4
- export * from "./user";
5
- export * from "./chat-message";
6
- export * from "./job-filters";
7
- export * from "./campaign";
8
- export * from "./ai";
9
- export * from "./bidding";
10
- export * from "./scraper";
1
+ export * from './lead';
2
+ export * from './saved-search';
3
+ export * from './shared';
4
+ export * from './user';
5
+ export * from './chat-message';
6
+ export * from './job-filters';
7
+ export * from './campaign';
8
+ export * from './ai';
9
+ export * from './bidding';
10
+ export * from './scraper';
11
+ export * from './config';
@@ -24,3 +24,4 @@ __exportStar(require("./campaign"), exports);
24
24
  __exportStar(require("./ai"), exports);
25
25
  __exportStar(require("./bidding"), exports);
26
26
  __exportStar(require("./scraper"), exports);
27
+ __exportStar(require("./config"), exports);
@@ -0,0 +1,4 @@
1
+ import { z } from 'zod';
2
+ import { agencyConfigSchema } from '../../schemas';
3
+ export interface AgencyConfig extends z.infer<typeof agencyConfigSchema> {
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1 @@
1
+ export * from './agency-config';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./agency-config"), exports);
@@ -7,3 +7,4 @@ export * from './campaign';
7
7
  export * from './bidding';
8
8
  export * from './ai';
9
9
  export * from './scraper';
10
+ export * from './config';
@@ -23,3 +23,4 @@ __exportStar(require("./campaign"), exports);
23
23
  __exportStar(require("./bidding"), exports);
24
24
  __exportStar(require("./ai"), exports);
25
25
  __exportStar(require("./scraper"), exports);
26
+ __exportStar(require("./config"), exports);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "lancer-shared",
4
- "version": "1.0.26",
4
+ "version": "1.0.27",
5
5
  "description": "This package contains shared stuff.",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",