lancer-shared 1.2.298 → 1.2.300

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.
@@ -7417,6 +7417,27 @@ const campaignAnalyticsSchema = z.object({
7417
7417
  replyRateByTemplateId: z.record(z.string(), z.number()).optional(),
7418
7418
  viewRateByTemplateId: z.record(z.string(), z.number()).optional(),
7419
7419
  contactedByTemplateId: z.record(z.string(), z.number()).optional(),
7420
+ contactedByContractor: z
7421
+ .array(z.object({
7422
+ contractorName: z.string(),
7423
+ specialisedProfile: z.string(),
7424
+ count: z.number(),
7425
+ }))
7426
+ .optional(),
7427
+ viewedByContractor: z
7428
+ .array(z.object({
7429
+ contractorName: z.string(),
7430
+ specialisedProfile: z.string(),
7431
+ count: z.number(),
7432
+ }))
7433
+ .optional(),
7434
+ repliedByContractor: z
7435
+ .array(z.object({
7436
+ contractorName: z.string(),
7437
+ specialisedProfile: z.string(),
7438
+ count: z.number(),
7439
+ }))
7440
+ .optional(),
7420
7441
  });
7421
7442
  const campaignAnalyticsStatsSchema = z.object({
7422
7443
  totalStats: campaignAnalyticsSchema,