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.esm.js
CHANGED
|
@@ -7006,6 +7006,8 @@ const subscriptionSchema = objectType({
|
|
|
7006
7006
|
usage: recordType(usageEventTypeEnum, numberType()),
|
|
7007
7007
|
trialEndsAt: numberType().nullable(),
|
|
7008
7008
|
billingInterval: billingIntervalEnum,
|
|
7009
|
+
hasUsBidderAccess: booleanType().nullable(),
|
|
7010
|
+
usBidderSubscriptionItemId: stringType().nullable(),
|
|
7009
7011
|
});
|
|
7010
7012
|
|
|
7011
7013
|
const coverLetterTemplateSchema = z.object({
|
|
@@ -7085,7 +7087,7 @@ const organizationSchema = objectType({
|
|
|
7085
7087
|
updatedAt: numberType(),
|
|
7086
7088
|
openRouterApiKey: stringType().nullable(),
|
|
7087
7089
|
nextProposalStatusSyncTime: numberType().nullable(),
|
|
7088
|
-
|
|
7090
|
+
usBidderAccountSubscription: oneTimePaymentsSchema.optional(),
|
|
7089
7091
|
});
|
|
7090
7092
|
const organizationUpdateSchema = objectType({ planId: stringType() });
|
|
7091
7093
|
const caseStudySchema = objectType({
|
|
@@ -15265,7 +15267,7 @@ const ROUTES = {
|
|
|
15265
15267
|
PAYMENT_METHODS: (id) => `organizations/${id}/payment-methods`,
|
|
15266
15268
|
TRACK_USAGE: (id) => `organizations/${id}/track-usage`,
|
|
15267
15269
|
SUBSCRIBE: (id) => `organizations/${id}/subscribe`,
|
|
15268
|
-
|
|
15270
|
+
SUBSCRIBE_US_BIDDER_ACCOUNT: (id) => `organizations/${id}/subscribe-us-bidder-account`,
|
|
15269
15271
|
PAUSE_CAMPAIGNS: (id) => `organizations/${id}/pause-campaigns`,
|
|
15270
15272
|
BIDDER_ACCOUNTS: {
|
|
15271
15273
|
BASE: (id) => `organizations/${id}/bidder-accounts`,
|