lancer-shared 1.2.339 → 1.2.341

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.
@@ -9104,6 +9104,7 @@ const monitoringBidFailureRecordSchema = z.object({
9104
9104
  organizationName: z.string().nullable(),
9105
9105
  campaignId: z.string().nullable(),
9106
9106
  leadId: z.string().nullable(),
9107
+ skipBidding: z.boolean().nullable(),
9107
9108
  reason: z.string().nullable(),
9108
9109
  errorCode: z.string().nullable(),
9109
9110
  errorMessage: z.string().nullable(),
@@ -9113,6 +9114,7 @@ const bidderMonitoringRowSchema = z.object({
9113
9114
  'biddingFailed',
9114
9115
  'syncProposalsStatusFailed',
9115
9116
  'refreshRoomsFailed',
9117
+ 'unauthenticatedSessionDetected',
9116
9118
  ]),
9117
9119
  eventId: z.string(),
9118
9120
  bidderAccountId: z.string().nullable(),
@@ -9409,6 +9411,7 @@ const LogEventTypeEnum = z.enum([
9409
9411
  'verifyCredentialsSucceeded',
9410
9412
  'verifyCredentialsFailed',
9411
9413
  'refreshRoomsFailed',
9414
+ 'unauthenticatedSessionDetected',
9412
9415
  ]);
9413
9416
  const logEventSchema = z.object({
9414
9417
  // The type of event (use a z.enum if possible)
@@ -9506,6 +9509,12 @@ const refreshRoomsFailedEventMetadataSchema = objectType({
9506
9509
  errorCode: z.string().optional(),
9507
9510
  context: z.string().optional(),
9508
9511
  });
9512
+ const unauthenticatedSessionDetectedEventMetadataSchema = objectType({
9513
+ bidderAccountId: z.string(),
9514
+ multiLoginProfileId: z.string(),
9515
+ currentUrl: z.string().optional(),
9516
+ targetUrl: z.string().optional(),
9517
+ });
9509
9518
  const suitabilityPendingEventMetadataSchema = objectType({
9510
9519
  jobId: z.string(),
9511
9520
  jobUrl: z.string(),
@@ -15839,6 +15848,7 @@ const ROUTES = {
15839
15848
  BY_PROVIDER_AND_ID: (provider, id) => `admin/bidder-accounts/${provider}/${id}`,
15840
15849
  REFRESH_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/refresh-proxy`,
15841
15850
  REFRESH_WITH_IPROYAL_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/refresh-with-iproyal-proxy`,
15851
+ REFRESH_WITH_MARS_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/refresh-with-mars-proxy`,
15842
15852
  AGENCIES: 'admin/bidder-accounts/agencies',
15843
15853
  ASSIGN_IPROYAL_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/assign-iproyal-proxy`,
15844
15854
  ASSIGN_DECODO_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/assign-decodo-proxy`,
@@ -25189,6 +25199,7 @@ exports.tryCatch = tryCatch;
25189
25199
  exports.twoFactorPresentException = twoFactorPresentException;
25190
25200
  exports.typedValueInFieldNotMatchingException = typedValueInFieldNotMatchingException;
25191
25201
  exports.typingInputFieldException = typingInputFieldException;
25202
+ exports.unauthenticatedSessionDetectedEventMetadataSchema = unauthenticatedSessionDetectedEventMetadataSchema;
25192
25203
  exports.updateBidderAccountSchema = updateBidderAccountSchema;
25193
25204
  exports.updateCampaignAnalyticsSchema = updateCampaignAnalyticsSchema;
25194
25205
  exports.updateCampaignSchema = updateCampaignSchema;