lancer-shared 1.2.334 → 1.2.335

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.
@@ -6674,6 +6674,7 @@ const proxyProviderSchema = z.enum([
6674
6674
  'rayobyte',
6675
6675
  'brightdata',
6676
6676
  'iproyal',
6677
+ 'mars',
6677
6678
  ]);
6678
6679
  const proxyTypeSchema = z.enum(['rotating', 'static']);
6679
6680
  const proxySchema = z.object({
@@ -7545,6 +7546,7 @@ const campaignAnalyticsSchema = z.object({
7545
7546
  submissionDelayCount: z.number().optional(),
7546
7547
  totalBiddingAmount: z.number().optional(),
7547
7548
  totalBoostedAmount: z.number().optional(),
7549
+ effectiveBoostedAmount: z.number().optional(),
7548
7550
  replyRateByTemplateId: z.record(z.string(), z.number()).optional(),
7549
7551
  viewRateByTemplateId: z.record(z.string(), z.number()).optional(),
7550
7552
  contactedByTemplateId: z.record(z.string(), z.number()).optional(),
@@ -7584,6 +7586,7 @@ const campaignAnalyticsStatsSchema = z.object({
7584
7586
  submissionDelayCount: z.number(),
7585
7587
  totalBiddingAmount: z.number(),
7586
7588
  totalBoostedAmount: z.number(),
7589
+ effectiveBoostedAmount: z.number(),
7587
7590
  replyRateByTemplateId: z.record(z.string(), z.number()),
7588
7591
  viewRateByTemplateId: z.record(z.string(), z.number()),
7589
7592
  contactedByTemplateId: z.record(z.string(), z.number()),
@@ -7600,6 +7603,7 @@ const campaignAnalyticsResponseSchema = z.object({
7600
7603
  submissionDelayCount: z.number(),
7601
7604
  totalBiddingAmount: z.number(),
7602
7605
  totalBoostedAmount: z.number(),
7606
+ effectiveBoostedAmount: z.number(),
7603
7607
  replyRateByTemplateId: z.record(z.string(), z.number()),
7604
7608
  viewRateByTemplateId: z.record(z.string(), z.number()),
7605
7609
  contactedByTemplateId: z.record(z.string(), z.number()),
@@ -7819,6 +7823,7 @@ const campaignInsightsSchema = z.object({
7819
7823
  pipelineHealth: campaignCountByStatusSchema,
7820
7824
  biddingAmount: z.number().default(0),
7821
7825
  boostingAmount: z.number().default(0),
7826
+ effectiveBoostedAmount: z.number().default(0),
7822
7827
  boostedProposalsCount: z.number().default(0),
7823
7828
  totalProposalsCount: z.number().default(0),
7824
7829
  totalExpenses: z.number().default(0),