lancer-shared 1.2.270 → 1.2.271
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 +4 -2
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +4 -2
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/routes.d.ts +1 -1
- package/dist/schemas/campaign/campaign-analytics.d.ts +56 -8
- package/dist/schemas/organization/index.d.ts +20 -4
- package/dist/schemas/organization/subscription.d.ts +6 -0
- package/dist/schemas/scraper/scrape-payload.d.ts +19 -5
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -7008,6 +7008,8 @@ const subscriptionSchema = objectType({
|
|
|
7008
7008
|
usage: recordType(usageEventTypeEnum, numberType()),
|
|
7009
7009
|
trialEndsAt: numberType().nullable(),
|
|
7010
7010
|
billingInterval: billingIntervalEnum,
|
|
7011
|
+
hasUsBidderAccess: booleanType().nullable(),
|
|
7012
|
+
usBidderSubscriptionItemId: stringType().nullable(),
|
|
7011
7013
|
});
|
|
7012
7014
|
|
|
7013
7015
|
const coverLetterTemplateSchema = z.object({
|
|
@@ -7087,7 +7089,7 @@ const organizationSchema = objectType({
|
|
|
7087
7089
|
updatedAt: numberType(),
|
|
7088
7090
|
openRouterApiKey: stringType().nullable(),
|
|
7089
7091
|
nextProposalStatusSyncTime: numberType().nullable(),
|
|
7090
|
-
|
|
7092
|
+
usBidderAccountSubscription: oneTimePaymentsSchema.optional(),
|
|
7091
7093
|
});
|
|
7092
7094
|
const organizationUpdateSchema = objectType({ planId: stringType() });
|
|
7093
7095
|
const caseStudySchema = objectType({
|
|
@@ -15267,7 +15269,7 @@ const ROUTES = {
|
|
|
15267
15269
|
PAYMENT_METHODS: (id) => `organizations/${id}/payment-methods`,
|
|
15268
15270
|
TRACK_USAGE: (id) => `organizations/${id}/track-usage`,
|
|
15269
15271
|
SUBSCRIBE: (id) => `organizations/${id}/subscribe`,
|
|
15270
|
-
|
|
15272
|
+
SUBSCRIBE_US_BIDDER_ACCOUNT: (id) => `organizations/${id}/subscribe-us-bidder-account`,
|
|
15271
15273
|
PAUSE_CAMPAIGNS: (id) => `organizations/${id}/pause-campaigns`,
|
|
15272
15274
|
BIDDER_ACCOUNTS: {
|
|
15273
15275
|
BASE: (id) => `organizations/${id}/bidder-accounts`,
|