lancer-shared 1.2.338 → 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 +9 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +9 -1
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/agent/index.d.ts +5 -0
- package/dist/schemas/bidder/bid.d.ts +49 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +9 -0
- package/dist/schemas/lead/index.d.ts +18 -0
- package/dist/schemas/logger/log-event.d.ts +27 -10
- package/dist/schemas/scraper/scrape-payload.d.ts +5 -0
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -7054,6 +7054,7 @@ const leadSchema = upworkJobSchema
|
|
|
7054
7054
|
applicationId: stringType().nullable(),
|
|
7055
7055
|
leadBiddingConfig: leadBiddingConfigSchema.nullable(),
|
|
7056
7056
|
statusSynced: booleanType().nullable(),
|
|
7057
|
+
skipBidding: booleanType().optional(),
|
|
7057
7058
|
})
|
|
7058
7059
|
.omit({
|
|
7059
7060
|
processed: true,
|
|
@@ -9408,6 +9409,7 @@ const LogEventTypeEnum = z.enum([
|
|
|
9408
9409
|
'verifyCredentialsSucceeded',
|
|
9409
9410
|
'verifyCredentialsFailed',
|
|
9410
9411
|
'refreshRoomsFailed',
|
|
9412
|
+
'unauthenticatedSessionDetected',
|
|
9411
9413
|
]);
|
|
9412
9414
|
const logEventSchema = z.object({
|
|
9413
9415
|
// The type of event (use a z.enum if possible)
|
|
@@ -9505,6 +9507,12 @@ const refreshRoomsFailedEventMetadataSchema = objectType({
|
|
|
9505
9507
|
errorCode: z.string().optional(),
|
|
9506
9508
|
context: z.string().optional(),
|
|
9507
9509
|
});
|
|
9510
|
+
const unauthenticatedSessionDetectedEventMetadataSchema = objectType({
|
|
9511
|
+
bidderAccountId: z.string(),
|
|
9512
|
+
multiLoginProfileId: z.string(),
|
|
9513
|
+
currentUrl: z.string().optional(),
|
|
9514
|
+
targetUrl: z.string().optional(),
|
|
9515
|
+
});
|
|
9508
9516
|
const suitabilityPendingEventMetadataSchema = objectType({
|
|
9509
9517
|
jobId: z.string(),
|
|
9510
9518
|
jobUrl: z.string(),
|
|
@@ -25188,6 +25196,7 @@ exports.tryCatch = tryCatch;
|
|
|
25188
25196
|
exports.twoFactorPresentException = twoFactorPresentException;
|
|
25189
25197
|
exports.typedValueInFieldNotMatchingException = typedValueInFieldNotMatchingException;
|
|
25190
25198
|
exports.typingInputFieldException = typingInputFieldException;
|
|
25199
|
+
exports.unauthenticatedSessionDetectedEventMetadataSchema = unauthenticatedSessionDetectedEventMetadataSchema;
|
|
25191
25200
|
exports.updateBidderAccountSchema = updateBidderAccountSchema;
|
|
25192
25201
|
exports.updateCampaignAnalyticsSchema = updateCampaignAnalyticsSchema;
|
|
25193
25202
|
exports.updateCampaignSchema = updateCampaignSchema;
|