lancer-shared 1.2.304 → 1.2.306

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.
@@ -7007,6 +7007,7 @@ const agentGenerateProposalRequestSchema = z.object({
7007
7007
  applyToLeads: z
7008
7008
  .array(z.object({ leadId: z.string(), campaignId: z.string() }))
7009
7009
  .optional(),
7010
+ clientReviews: z.array(clientReviewSchema).optional(),
7010
7011
  });
7011
7012
  const agentGenerateProposalResponseSchema = z.object({
7012
7013
  coverLetter: z.string(),
@@ -15583,6 +15584,7 @@ const ROUTES = {
15583
15584
  DUPLICATE: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/duplicate`,
15584
15585
  CONNECTS_SAVED: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/connects-saved`,
15585
15586
  LAST_MONTH_LEAD_COUNTS: (organizationId) => `organizations/${organizationId}/campaigns/last-month-leads-count`,
15587
+ TOP_KEYWORDS: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/top-keywords`,
15586
15588
  BIDDER_ACCOUNTS: {
15587
15589
  BASE: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/bidder-account`,
15588
15590
  CONNECT: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/bidder-account/connect`,