lancer-shared 1.2.269 → 1.2.270
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 +22 -1
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +20 -2
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/routes.d.ts +2 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +24 -0
- package/dist/schemas/organization/index.d.ts +14 -3
- package/dist/schemas/organization/subscription.d.ts +5 -0
- package/dist/schemas/plan/index.d.ts +275 -0
- package/dist/schemas/scraper/scrape-payload.d.ts +7 -0
- package/package.json +1 -1
|
@@ -1108,6 +1108,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1108
1108
|
source: z.ZodEnum<["stripe", "manual"]>;
|
|
1109
1109
|
usage: z.ZodRecord<z.ZodEnum<["suitabilityComplete", "proposalComplete", "biddingComplete"]>, z.ZodNumber>;
|
|
1110
1110
|
trialEndsAt: z.ZodNullable<z.ZodNumber>;
|
|
1111
|
+
billingInterval: z.ZodEnum<["monthly", "quarterly", "yearly"]>;
|
|
1111
1112
|
}, "strip", z.ZodTypeAny, {
|
|
1112
1113
|
source: "manual" | "stripe";
|
|
1113
1114
|
status: "active" | "paused" | "trialing" | "cancelled" | "payment_processing" | "payment_pending" | "payment_failed";
|
|
@@ -1130,6 +1131,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1130
1131
|
currentPeriodEnd: number;
|
|
1131
1132
|
usage: Partial<Record<"suitabilityComplete" | "proposalComplete" | "biddingComplete", number>>;
|
|
1132
1133
|
trialEndsAt: number | null;
|
|
1134
|
+
billingInterval: "monthly" | "quarterly" | "yearly";
|
|
1133
1135
|
}, {
|
|
1134
1136
|
source: "manual" | "stripe";
|
|
1135
1137
|
status: "active" | "paused" | "trialing" | "cancelled" | "payment_processing" | "payment_pending" | "payment_failed";
|
|
@@ -1152,6 +1154,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1152
1154
|
currentPeriodEnd: number;
|
|
1153
1155
|
usage: Partial<Record<"suitabilityComplete" | "proposalComplete" | "biddingComplete", number>>;
|
|
1154
1156
|
trialEndsAt: number | null;
|
|
1157
|
+
billingInterval: "monthly" | "quarterly" | "yearly";
|
|
1155
1158
|
}>>;
|
|
1156
1159
|
active: z.ZodBoolean;
|
|
1157
1160
|
limits: z.ZodObject<{
|
|
@@ -1285,6 +1288,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1285
1288
|
currentPeriodEnd: number;
|
|
1286
1289
|
usage: Partial<Record<"suitabilityComplete" | "proposalComplete" | "biddingComplete", number>>;
|
|
1287
1290
|
trialEndsAt: number | null;
|
|
1291
|
+
billingInterval: "monthly" | "quarterly" | "yearly";
|
|
1288
1292
|
} | null;
|
|
1289
1293
|
limits: {
|
|
1290
1294
|
monthlyCredits: number;
|
|
@@ -1343,6 +1347,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1343
1347
|
currentPeriodEnd: number;
|
|
1344
1348
|
usage: Partial<Record<"suitabilityComplete" | "proposalComplete" | "biddingComplete", number>>;
|
|
1345
1349
|
trialEndsAt: number | null;
|
|
1350
|
+
billingInterval: "monthly" | "quarterly" | "yearly";
|
|
1346
1351
|
} | null;
|
|
1347
1352
|
limits: {
|
|
1348
1353
|
monthlyCredits: number;
|
|
@@ -2249,6 +2254,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2249
2254
|
currentPeriodEnd: number;
|
|
2250
2255
|
usage: Partial<Record<"suitabilityComplete" | "proposalComplete" | "biddingComplete", number>>;
|
|
2251
2256
|
trialEndsAt: number | null;
|
|
2257
|
+
billingInterval: "monthly" | "quarterly" | "yearly";
|
|
2252
2258
|
} | null;
|
|
2253
2259
|
limits: {
|
|
2254
2260
|
monthlyCredits: number;
|
|
@@ -2626,6 +2632,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2626
2632
|
currentPeriodEnd: number;
|
|
2627
2633
|
usage: Partial<Record<"suitabilityComplete" | "proposalComplete" | "biddingComplete", number>>;
|
|
2628
2634
|
trialEndsAt: number | null;
|
|
2635
|
+
billingInterval: "monthly" | "quarterly" | "yearly";
|
|
2629
2636
|
} | null;
|
|
2630
2637
|
limits: {
|
|
2631
2638
|
monthlyCredits: number;
|