lancer-shared 1.0.109 → 1.0.110

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,23 @@
1
+ import { z } from "zod";
2
+ export declare const campaignAnalyticsResponseSchema: z.ZodObject<{
3
+ jobsAnalyzed: z.ZodNumber;
4
+ contacted: z.ZodNumber;
5
+ viewed: z.ZodNumber;
6
+ replied: z.ZodNumber;
7
+ negotiations: z.ZodNumber;
8
+ won: z.ZodNumber;
9
+ }, "strip", z.ZodTypeAny, {
10
+ contacted: number;
11
+ viewed: number;
12
+ replied: number;
13
+ negotiations: number;
14
+ won: number;
15
+ jobsAnalyzed: number;
16
+ }, {
17
+ contacted: number;
18
+ viewed: number;
19
+ replied: number;
20
+ negotiations: number;
21
+ won: number;
22
+ jobsAnalyzed: number;
23
+ }>;
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.campaignAnalyticsResponseSchema = void 0;
4
+ const zod_1 = require("zod");
5
+ exports.campaignAnalyticsResponseSchema = zod_1.z.object({
6
+ jobsAnalyzed: zod_1.z.number(),
7
+ contacted: zod_1.z.number(),
8
+ viewed: zod_1.z.number(),
9
+ replied: zod_1.z.number(),
10
+ negotiations: zod_1.z.number(),
11
+ won: zod_1.z.number(),
12
+ });
@@ -1373,25 +1373,3 @@ export declare const updateCampaignSchema: z.ZodObject<Omit<{
1373
1373
  suitabilityThreshold?: number | null | undefined;
1374
1374
  boostingThreshold?: number | null | undefined;
1375
1375
  }>;
1376
- export declare const campaignAnalyticsResponseSchema: z.ZodObject<{
1377
- jobsAnalyzed: z.ZodNumber;
1378
- contacted: z.ZodNumber;
1379
- viewed: z.ZodNumber;
1380
- replied: z.ZodNumber;
1381
- negotiations: z.ZodNumber;
1382
- won: z.ZodNumber;
1383
- }, "strip", z.ZodTypeAny, {
1384
- contacted: number;
1385
- viewed: number;
1386
- replied: number;
1387
- negotiations: number;
1388
- won: number;
1389
- jobsAnalyzed: number;
1390
- }, {
1391
- contacted: number;
1392
- viewed: number;
1393
- replied: number;
1394
- negotiations: number;
1395
- won: number;
1396
- jobsAnalyzed: number;
1397
- }>;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.campaignAnalyticsResponseSchema = exports.updateCampaignSchema = exports.createCampaignSchema = exports.campaignSchema = exports.campaignStatusSchema = void 0;
3
+ exports.updateCampaignSchema = exports.createCampaignSchema = exports.campaignSchema = exports.campaignStatusSchema = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const job_filters_1 = require("../job-filters");
6
6
  const lead_1 = require("../lead");
@@ -41,11 +41,3 @@ exports.updateCampaignSchema = exports.campaignSchema.omit({
41
41
  createdAt: true,
42
42
  updatedAt: true,
43
43
  });
44
- exports.campaignAnalyticsResponseSchema = zod_1.z.object({
45
- jobsAnalyzed: zod_1.z.number(),
46
- contacted: zod_1.z.number(),
47
- viewed: zod_1.z.number(),
48
- replied: zod_1.z.number(),
49
- negotiations: zod_1.z.number(),
50
- won: zod_1.z.number(),
51
- });
@@ -1,5 +1,6 @@
1
- export * from './campaign';
2
- export * from './campaign-insights';
3
- export * from './campaign-job-count';
4
- export * from './campaign-expenses';
5
- export * from './campaign-integrations';
1
+ export * from "./campaign";
2
+ export * from "./campaign-insights";
3
+ export * from "./campaign-job-count";
4
+ export * from "./campaign-expenses";
5
+ export * from "./campaign-integrations";
6
+ export * from "./campaign-analytics";
@@ -19,3 +19,4 @@ __exportStar(require("./campaign-insights"), exports);
19
19
  __exportStar(require("./campaign-job-count"), exports);
20
20
  __exportStar(require("./campaign-expenses"), exports);
21
21
  __exportStar(require("./campaign-integrations"), exports);
22
+ __exportStar(require("./campaign-analytics"), exports);
@@ -1,5 +1,6 @@
1
- export * from './campaign';
2
- export * from './campaign-insights';
3
- export * from './campaign-job-count';
4
- export * from './campaign-expenses';
5
- export * from './campaign-integrations';
1
+ export * from "./campaign";
2
+ export * from "./campaign-insights";
3
+ export * from "./campaign-job-count";
4
+ export * from "./campaign-expenses";
5
+ export * from "./campaign-integrations";
6
+ export * from "./campaign-analytics";
@@ -19,3 +19,4 @@ __exportStar(require("./campaign-insights"), exports);
19
19
  __exportStar(require("./campaign-job-count"), exports);
20
20
  __exportStar(require("./campaign-expenses"), exports);
21
21
  __exportStar(require("./campaign-integrations"), exports);
22
+ __exportStar(require("./campaign-analytics"), exports);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "lancer-shared",
4
- "version": "1.0.109",
4
+ "version": "1.0.110",
5
5
  "description": "This package contains shared stuff.",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",