lancer-shared 1.0.118 → 1.0.119

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.
@@ -1,4 +1,5 @@
1
1
  import { z } from "zod";
2
- import { campaignActivitySchema, campaignAnalyticsResponseSchema } from "../../schemas";
2
+ import { campaignActivitySchema, campaignAnalyticsResponseSchema, campaignAnalyticsStatsSchema } from "../../schemas";
3
+ export type CampaignAnalyticsStats = z.infer<typeof campaignAnalyticsStatsSchema>;
3
4
  export type CampaignAnalyticsResponse = z.infer<typeof campaignAnalyticsResponseSchema>;
4
5
  export type CampaignActivity = z.infer<typeof campaignActivitySchema>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "lancer-shared",
4
- "version": "1.0.118",
4
+ "version": "1.0.119",
5
5
  "description": "This package contains shared stuff.",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",