lancer-shared 1.2.340 → 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(),
@@ -15846,6 +15848,7 @@ const ROUTES = {
15846
15848
  BY_PROVIDER_AND_ID: (provider, id) => `admin/bidder-accounts/${provider}/${id}`,
15847
15849
  REFRESH_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/refresh-proxy`,
15848
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`,
15849
15852
  AGENCIES: 'admin/bidder-accounts/agencies',
15850
15853
  ASSIGN_IPROYAL_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/assign-iproyal-proxy`,
15851
15854
  ASSIGN_DECODO_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/assign-decodo-proxy`,