lancer-shared 1.2.339 → 1.2.340
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
CHANGED
|
@@ -9409,6 +9409,7 @@ const LogEventTypeEnum = z.enum([
|
|
|
9409
9409
|
'verifyCredentialsSucceeded',
|
|
9410
9410
|
'verifyCredentialsFailed',
|
|
9411
9411
|
'refreshRoomsFailed',
|
|
9412
|
+
'unauthenticatedSessionDetected',
|
|
9412
9413
|
]);
|
|
9413
9414
|
const logEventSchema = z.object({
|
|
9414
9415
|
// The type of event (use a z.enum if possible)
|
|
@@ -9506,6 +9507,12 @@ const refreshRoomsFailedEventMetadataSchema = objectType({
|
|
|
9506
9507
|
errorCode: z.string().optional(),
|
|
9507
9508
|
context: z.string().optional(),
|
|
9508
9509
|
});
|
|
9510
|
+
const unauthenticatedSessionDetectedEventMetadataSchema = objectType({
|
|
9511
|
+
bidderAccountId: z.string(),
|
|
9512
|
+
multiLoginProfileId: z.string(),
|
|
9513
|
+
currentUrl: z.string().optional(),
|
|
9514
|
+
targetUrl: z.string().optional(),
|
|
9515
|
+
});
|
|
9509
9516
|
const suitabilityPendingEventMetadataSchema = objectType({
|
|
9510
9517
|
jobId: z.string(),
|
|
9511
9518
|
jobUrl: z.string(),
|
|
@@ -25189,6 +25196,7 @@ exports.tryCatch = tryCatch;
|
|
|
25189
25196
|
exports.twoFactorPresentException = twoFactorPresentException;
|
|
25190
25197
|
exports.typedValueInFieldNotMatchingException = typedValueInFieldNotMatchingException;
|
|
25191
25198
|
exports.typingInputFieldException = typingInputFieldException;
|
|
25199
|
+
exports.unauthenticatedSessionDetectedEventMetadataSchema = unauthenticatedSessionDetectedEventMetadataSchema;
|
|
25192
25200
|
exports.updateBidderAccountSchema = updateBidderAccountSchema;
|
|
25193
25201
|
exports.updateCampaignAnalyticsSchema = updateCampaignAnalyticsSchema;
|
|
25194
25202
|
exports.updateCampaignSchema = updateCampaignSchema;
|