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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.2.269",
3
+ "version": "1.2.270",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",