lancer-shared 1.2.275 → 1.2.276

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.
@@ -7359,6 +7359,7 @@ const campaignAIMetricsSchema = z.object({
7359
7359
 
7360
7360
  const campaignAnalyticsSchema = z.object({
7361
7361
  contacted: z.number().optional(),
7362
+ contactedSync: z.number().optional(),
7362
7363
  viewed: z.number().optional(),
7363
7364
  replied: z.number().optional(),
7364
7365
  won: z.number().optional(),
@@ -7374,6 +7375,7 @@ const campaignAnalyticsStatsSchema = z.object({
7374
7375
  statsByDate: z.array(z.object({
7375
7376
  label: z.string(),
7376
7377
  contacted: z.number(),
7378
+ contactedSync: z.number(),
7377
7379
  viewed: z.number(),
7378
7380
  replied: z.number(),
7379
7381
  won: z.number(),
@@ -7383,6 +7385,7 @@ const campaignAnalyticsStatsSchema = z.object({
7383
7385
  const campaignAnalyticsResponseSchema = z.object({
7384
7386
  jobsAnalyzed: z.number(),
7385
7387
  contacted: z.number(),
7388
+ contactedSync: z.number(),
7386
7389
  viewed: z.number(),
7387
7390
  replied: z.number(),
7388
7391
  won: z.number(),