lancer-shared 1.2.273 → 1.2.274
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 +14 -7
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +14 -7
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/routes.d.ts +5 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +8 -0
- package/dist/schemas/organization/index.d.ts +4 -2
- package/dist/schemas/organization/onboarding.d.ts +21 -18
- package/dist/schemas/scraper/scrape-payload.d.ts +5 -0
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -7105,12 +7105,13 @@ const organizationMemberSchema = objectType({
|
|
|
7105
7105
|
invitedBy: stringType(),
|
|
7106
7106
|
});
|
|
7107
7107
|
|
|
7108
|
-
const
|
|
7109
|
-
|
|
7110
|
-
|
|
7111
|
-
|
|
7112
|
-
|
|
7113
|
-
|
|
7108
|
+
const onboardingSectionSchema = z.object({
|
|
7109
|
+
id: z.string(),
|
|
7110
|
+
parentId: z.string().nullable(),
|
|
7111
|
+
title: z.string(),
|
|
7112
|
+
stepNumber: z.string(),
|
|
7113
|
+
videoUrl: z.string().nullable(),
|
|
7114
|
+
description: z.string(),
|
|
7114
7115
|
});
|
|
7115
7116
|
|
|
7116
7117
|
const getOrganizationLeadsStatusEnum = z.enum([
|
|
@@ -7164,6 +7165,7 @@ const organizationSchema = objectType({
|
|
|
7164
7165
|
nextProposalStatusSyncTime: numberType().nullable(),
|
|
7165
7166
|
usBidderAccountSubscription: oneTimePaymentsSchema.optional(),
|
|
7166
7167
|
insufficientConnectsAction: insufficientConnectsActionEnum.nullable(),
|
|
7168
|
+
onboardingCompletions: recordType(stringType(), booleanType()).nullable(),
|
|
7167
7169
|
});
|
|
7168
7170
|
const organizationUpdateSchema = objectType({ planId: stringType() });
|
|
7169
7171
|
const caseStudySchema = objectType({
|
|
@@ -15312,6 +15314,10 @@ const ROUTES = {
|
|
|
15312
15314
|
BASE: 'bidder-accounts',
|
|
15313
15315
|
BY_ID: (id) => `bidder-accounts/${id}`,
|
|
15314
15316
|
},
|
|
15317
|
+
ONBOARDING: {
|
|
15318
|
+
BASE: 'onboarding',
|
|
15319
|
+
SECTIONS: 'onboarding/sections/v1',
|
|
15320
|
+
},
|
|
15315
15321
|
ORGANIZATIONS: {
|
|
15316
15322
|
BASE: 'organizations',
|
|
15317
15323
|
BY_ID: (id) => `organizations/${id}`,
|
|
@@ -15343,6 +15349,7 @@ const ROUTES = {
|
|
|
15343
15349
|
SUBSCRIBE: (id) => `organizations/${id}/subscribe`,
|
|
15344
15350
|
SUBSCRIBE_US_BIDDER_ACCOUNT: (id) => `organizations/${id}/subscribe-us-bidder-account`,
|
|
15345
15351
|
PAUSE_CAMPAIGNS: (id) => `organizations/${id}/pause-campaigns`,
|
|
15352
|
+
MARK_ONBOARDING_SECTION_COMPLETED: (id, sectionId) => `organizations/${id}/onboarding/${sectionId}/completed`,
|
|
15346
15353
|
BIDDER_ACCOUNTS: {
|
|
15347
15354
|
BASE: (id) => `organizations/${id}/bidder-accounts`,
|
|
15348
15355
|
BY_ID: (id, bidderId) => `organizations/${id}/bidder-accounts/${bidderId}`,
|
|
@@ -24327,7 +24334,7 @@ exports.notificationConfigSchema = notificationConfigSchema;
|
|
|
24327
24334
|
exports.nuxtStateJobDetailsSchema = nuxtStateJobDetailsSchema;
|
|
24328
24335
|
exports.nuxtStateJobSchema = nuxtStateJobSchema;
|
|
24329
24336
|
exports.nuxtStateJobsSearchSchema = nuxtStateJobsSearchSchema;
|
|
24330
|
-
exports.
|
|
24337
|
+
exports.onboardingSectionSchema = onboardingSectionSchema;
|
|
24331
24338
|
exports.openPageException = openPageException;
|
|
24332
24339
|
exports.organizationCampaignStatsSchema = organizationCampaignStatsSchema;
|
|
24333
24340
|
exports.organizationMemberRoleEnum = organizationMemberRoleEnum;
|