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