lancer-shared 1.2.275 → 1.2.277

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.
@@ -6578,6 +6578,9 @@ const proxySchema = z.object({
6578
6578
  username: z.string(),
6579
6579
  password: z.string(),
6580
6580
  provider: proxyProviderSchema,
6581
+ ip: z.string(),
6582
+ oldIds: z.array(z.string()).nullable(),
6583
+ oldAccounts: z.array(z.string()).nullable(),
6581
6584
  fraudScore: z.number().nullable(),
6582
6585
  claimedCountry: proxyCountryEnum,
6583
6586
  status: proxyStatusSchema.nullable(),
@@ -6624,6 +6627,7 @@ const bidderAccountSchema = z.object({
6624
6627
  lastUsed: z.number().nullable(),
6625
6628
  multiLoginProfileId: z.string().nullable(),
6626
6629
  proxyId: z.string().nullable(),
6630
+ newProxyId: z.string().nullable(),
6627
6631
  profilePhotoUrl: z.string().nullable(),
6628
6632
  name: z.string().nullable(),
6629
6633
  agencies: z.array(bidderAccountAgencySchema).nullable(),
@@ -7359,6 +7363,7 @@ const campaignAIMetricsSchema = z.object({
7359
7363
 
7360
7364
  const campaignAnalyticsSchema = z.object({
7361
7365
  contacted: z.number().optional(),
7366
+ contactedSync: z.number().optional(),
7362
7367
  viewed: z.number().optional(),
7363
7368
  replied: z.number().optional(),
7364
7369
  won: z.number().optional(),
@@ -7374,6 +7379,7 @@ const campaignAnalyticsStatsSchema = z.object({
7374
7379
  statsByDate: z.array(z.object({
7375
7380
  label: z.string(),
7376
7381
  contacted: z.number(),
7382
+ contactedSync: z.number(),
7377
7383
  viewed: z.number(),
7378
7384
  replied: z.number(),
7379
7385
  won: z.number(),
@@ -7383,6 +7389,7 @@ const campaignAnalyticsStatsSchema = z.object({
7383
7389
  const campaignAnalyticsResponseSchema = z.object({
7384
7390
  jobsAnalyzed: z.number(),
7385
7391
  contacted: z.number(),
7392
+ contactedSync: z.number(),
7386
7393
  viewed: z.number(),
7387
7394
  replied: z.number(),
7388
7395
  won: z.number(),