lancer-shared 1.2.257 → 1.2.258

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.
@@ -6809,6 +6809,7 @@ const getCampaignLeadsRequestQuerySchema = z.object({
6809
6809
  cursor: z.string().optional(),
6810
6810
  limit: z.number().default(20).optional(),
6811
6811
  status: getCampaignLeadsStatusEnum.optional(),
6812
+ campaignId: z.string().optional(),
6812
6813
  });
6813
6814
  const getCampaignLeadsResponseSchema = z.object({
6814
6815
  data: z.array(leadSchema),
@@ -8460,7 +8461,7 @@ const createSampleSchema = z.object({
8460
8461
  });
8461
8462
  const getSamplesRequestSchema = z.object({
8462
8463
  organizationId: z.string(),
8463
- campaignId: z.string(),
8464
+ campaignId: z.string().optional(),
8464
8465
  leadIds: z.array(z.string()),
8465
8466
  });
8466
8467
  const updateSampleSchema = z.object({