lancer-shared 1.2.306 → 1.2.307

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.
@@ -6629,6 +6629,10 @@ const bidderAccountAgencyContractorSchema = z.object({
6629
6629
  name: z.string(),
6630
6630
  specializedProfiles: z.array(z.string()),
6631
6631
  });
6632
+ const bidderAccountPortfolioSchema = z.object({
6633
+ title: z.string(),
6634
+ imageUrl: z.string(),
6635
+ });
6632
6636
  const bidderAccountAgencySchema = z.object({
6633
6637
  name: z.string(),
6634
6638
  logoUrl: z.string().nullable(),
@@ -6654,6 +6658,7 @@ const bidderAccountSchema = z.object({
6654
6658
  name: z.string().nullable(),
6655
6659
  agencies: z.array(bidderAccountAgencySchema).nullable(),
6656
6660
  specialisedProfiles: z.array(z.string()).nullable(),
6661
+ portfolios: z.array(bidderAccountPortfolioSchema).nullable(),
6657
6662
  instanceId: stringType().nullable(),
6658
6663
  createdAt: z.number(),
6659
6664
  updatedAt: z.number(),
@@ -9111,6 +9116,7 @@ const verifyCredentialsSucceededEventMetadataSchema = objectType({
9111
9116
  accountPhotoUrl: z.string(),
9112
9117
  agencies: z.array(bidderAccountAgencySchema),
9113
9118
  specialisedProfiles: z.array(z.string()),
9119
+ portfolios: z.array(bidderAccountPortfolioSchema),
9114
9120
  });
9115
9121
  const verifyCredentialsFailedEventMetadataSchema = objectType({
9116
9122
  bidderAccountId: z.string(),
@@ -24406,6 +24412,7 @@ exports.bidWithWarningEnum = bidWithWarningEnum;
24406
24412
  exports.bidderAccountAgencyContractorSchema = bidderAccountAgencyContractorSchema;
24407
24413
  exports.bidderAccountAgencySchema = bidderAccountAgencySchema;
24408
24414
  exports.bidderAccountAlreadyConnectedException = bidderAccountAlreadyConnectedException;
24415
+ exports.bidderAccountPortfolioSchema = bidderAccountPortfolioSchema;
24409
24416
  exports.bidderAccountProvider = bidderAccountProvider;
24410
24417
  exports.bidderAccountProviderDisplayMap = bidderAccountProviderDisplayMap;
24411
24418
  exports.bidderAccountSchema = bidderAccountSchema;