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