lancer-shared 1.2.305 → 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.
- 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/constants/routes.d.ts +1 -0
- package/dist/schemas/account/bidder-account.d.ts +56 -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(),
|
|
@@ -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(),
|
|
@@ -15586,6 +15592,7 @@ const ROUTES = {
|
|
|
15586
15592
|
DUPLICATE: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/duplicate`,
|
|
15587
15593
|
CONNECTS_SAVED: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/connects-saved`,
|
|
15588
15594
|
LAST_MONTH_LEAD_COUNTS: (organizationId) => `organizations/${organizationId}/campaigns/last-month-leads-count`,
|
|
15595
|
+
TOP_KEYWORDS: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/top-keywords`,
|
|
15589
15596
|
BIDDER_ACCOUNTS: {
|
|
15590
15597
|
BASE: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/bidder-account`,
|
|
15591
15598
|
CONNECT: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/bidder-account/connect`,
|
|
@@ -24405,6 +24412,7 @@ exports.bidWithWarningEnum = bidWithWarningEnum;
|
|
|
24405
24412
|
exports.bidderAccountAgencyContractorSchema = bidderAccountAgencyContractorSchema;
|
|
24406
24413
|
exports.bidderAccountAgencySchema = bidderAccountAgencySchema;
|
|
24407
24414
|
exports.bidderAccountAlreadyConnectedException = bidderAccountAlreadyConnectedException;
|
|
24415
|
+
exports.bidderAccountPortfolioSchema = bidderAccountPortfolioSchema;
|
|
24408
24416
|
exports.bidderAccountProvider = bidderAccountProvider;
|
|
24409
24417
|
exports.bidderAccountProviderDisplayMap = bidderAccountProviderDisplayMap;
|
|
24410
24418
|
exports.bidderAccountSchema = bidderAccountSchema;
|