lancer-shared 1.2.276 → 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(),