lancer-shared 1.2.306 → 1.2.308
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.
- package/dist/bundle.cjs.js +8 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +8 -1
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/account/bidder-account.d.ts +56 -0
- package/dist/schemas/campaign/campaign.d.ts +16 -0
- package/dist/schemas/logger/log-event.d.ts +20 -2
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -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(),
|
|
@@ -7289,6 +7294,7 @@ const bidConfigSchema = z.object({
|
|
|
7289
7294
|
contractorName: z.string().nullable(),
|
|
7290
7295
|
specialisedProfile: z.string().nullable(),
|
|
7291
7296
|
bidAs: bidAsEnum.nullable(),
|
|
7297
|
+
selectedPortfoliosIds: z.array(z.string()).nullable(),
|
|
7292
7298
|
});
|
|
7293
7299
|
const campaignStatusSchema = z.union([
|
|
7294
7300
|
z.literal('active'),
|
|
@@ -9111,6 +9117,7 @@ const verifyCredentialsSucceededEventMetadataSchema = objectType({
|
|
|
9111
9117
|
accountPhotoUrl: z.string(),
|
|
9112
9118
|
agencies: z.array(bidderAccountAgencySchema),
|
|
9113
9119
|
specialisedProfiles: z.array(z.string()),
|
|
9120
|
+
portfolios: z.array(bidderAccountPortfolioSchema),
|
|
9114
9121
|
});
|
|
9115
9122
|
const verifyCredentialsFailedEventMetadataSchema = objectType({
|
|
9116
9123
|
bidderAccountId: z.string(),
|
|
@@ -24406,6 +24413,7 @@ exports.bidWithWarningEnum = bidWithWarningEnum;
|
|
|
24406
24413
|
exports.bidderAccountAgencyContractorSchema = bidderAccountAgencyContractorSchema;
|
|
24407
24414
|
exports.bidderAccountAgencySchema = bidderAccountAgencySchema;
|
|
24408
24415
|
exports.bidderAccountAlreadyConnectedException = bidderAccountAlreadyConnectedException;
|
|
24416
|
+
exports.bidderAccountPortfolioSchema = bidderAccountPortfolioSchema;
|
|
24409
24417
|
exports.bidderAccountProvider = bidderAccountProvider;
|
|
24410
24418
|
exports.bidderAccountProviderDisplayMap = bidderAccountProviderDisplayMap;
|
|
24411
24419
|
exports.bidderAccountSchema = bidderAccountSchema;
|