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.
package/dist/bundle.cjs.js
CHANGED
|
@@ -6811,6 +6811,7 @@ const getCampaignLeadsRequestQuerySchema = z.object({
|
|
|
6811
6811
|
cursor: z.string().optional(),
|
|
6812
6812
|
limit: z.number().default(20).optional(),
|
|
6813
6813
|
status: getCampaignLeadsStatusEnum.optional(),
|
|
6814
|
+
campaignId: z.string().optional(),
|
|
6814
6815
|
});
|
|
6815
6816
|
const getCampaignLeadsResponseSchema = z.object({
|
|
6816
6817
|
data: z.array(leadSchema),
|
|
@@ -8462,7 +8463,7 @@ const createSampleSchema = z.object({
|
|
|
8462
8463
|
});
|
|
8463
8464
|
const getSamplesRequestSchema = z.object({
|
|
8464
8465
|
organizationId: z.string(),
|
|
8465
|
-
campaignId: z.string(),
|
|
8466
|
+
campaignId: z.string().optional(),
|
|
8466
8467
|
leadIds: z.array(z.string()),
|
|
8467
8468
|
});
|
|
8468
8469
|
const updateSampleSchema = z.object({
|