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.
@@ -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(),