lancer-shared 1.2.158 → 1.2.159

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.
@@ -12891,7 +12891,6 @@ const organizationSchema = objectType({
12891
12891
  createdAt: numberType(),
12892
12892
  updatedAt: numberType(),
12893
12893
  openRouterApiKey: stringType().nullable(),
12894
- appTrialEndsAt: numberType().nullable(),
12895
12894
  oneTimePayments: oneTimePaymentsSchema.optional(),
12896
12895
  });
12897
12896
  const caseStudySchema = objectType({
@@ -150,6 +150,7 @@ export declare const organizationSchema: z.ZodObject<{
150
150
  }>;
151
151
  source: z.ZodEnum<["stripe", "manual"]>;
152
152
  usage: z.ZodRecord<z.ZodEnum<["suitabilityComplete", "proposalComplete", "biddingComplete"]>, z.ZodNumber>;
153
+ trialEndsAt: z.ZodNullable<z.ZodNumber>;
153
154
  }, "strip", z.ZodTypeAny, {
154
155
  status: "active" | "trialing" | "cancelled" | "paused" | "payment_processing" | "payment_pending" | "payment_failed";
155
156
  planId: string;
@@ -171,6 +172,7 @@ export declare const organizationSchema: z.ZodObject<{
171
172
  };
172
173
  source: "stripe" | "manual";
173
174
  usage: Partial<Record<"suitabilityComplete" | "proposalComplete" | "biddingComplete", number>>;
175
+ trialEndsAt: number | null;
174
176
  }, {
175
177
  status: "active" | "trialing" | "cancelled" | "paused" | "payment_processing" | "payment_pending" | "payment_failed";
176
178
  planId: string;
@@ -192,6 +194,7 @@ export declare const organizationSchema: z.ZodObject<{
192
194
  };
193
195
  source: "stripe" | "manual";
194
196
  usage: Partial<Record<"suitabilityComplete" | "proposalComplete" | "biddingComplete", number>>;
197
+ trialEndsAt: number | null;
195
198
  }>>;
196
199
  active: z.ZodBoolean;
197
200
  limits: z.ZodObject<{
@@ -246,7 +249,6 @@ export declare const organizationSchema: z.ZodObject<{
246
249
  createdAt: z.ZodNumber;
247
250
  updatedAt: z.ZodNumber;
248
251
  openRouterApiKey: z.ZodNullable<z.ZodString>;
249
- appTrialEndsAt: z.ZodNullable<z.ZodNumber>;
250
252
  oneTimePayments: z.ZodOptional<z.ZodObject<{
251
253
  usBidderAccountPayment: z.ZodOptional<z.ZodObject<{
252
254
  paidAt: z.ZodOptional<z.ZodNumber>;
@@ -316,6 +318,7 @@ export declare const organizationSchema: z.ZodObject<{
316
318
  };
317
319
  source: "stripe" | "manual";
318
320
  usage: Partial<Record<"suitabilityComplete" | "proposalComplete" | "biddingComplete", number>>;
321
+ trialEndsAt: number | null;
319
322
  } | null;
320
323
  limits: {
321
324
  monthlyCredits: number;
@@ -335,7 +338,6 @@ export declare const organizationSchema: z.ZodObject<{
335
338
  createdAt: number;
336
339
  updatedAt: number;
337
340
  openRouterApiKey: string | null;
338
- appTrialEndsAt: number | null;
339
341
  oneTimePayments?: {
340
342
  usBidderAccountPayment?: {
341
343
  status: string;
@@ -373,6 +375,7 @@ export declare const organizationSchema: z.ZodObject<{
373
375
  };
374
376
  source: "stripe" | "manual";
375
377
  usage: Partial<Record<"suitabilityComplete" | "proposalComplete" | "biddingComplete", number>>;
378
+ trialEndsAt: number | null;
376
379
  } | null;
377
380
  limits: {
378
381
  monthlyCredits: number;
@@ -392,7 +395,6 @@ export declare const organizationSchema: z.ZodObject<{
392
395
  createdAt: number;
393
396
  updatedAt: number;
394
397
  openRouterApiKey: string | null;
395
- appTrialEndsAt: number | null;
396
398
  oneTimePayments?: {
397
399
  usBidderAccountPayment?: {
398
400
  status: string;
@@ -566,6 +568,7 @@ export declare const createOrganizationSchema: z.ZodObject<Pick<{
566
568
  }>;
567
569
  source: z.ZodEnum<["stripe", "manual"]>;
568
570
  usage: z.ZodRecord<z.ZodEnum<["suitabilityComplete", "proposalComplete", "biddingComplete"]>, z.ZodNumber>;
571
+ trialEndsAt: z.ZodNullable<z.ZodNumber>;
569
572
  }, "strip", z.ZodTypeAny, {
570
573
  status: "active" | "trialing" | "cancelled" | "paused" | "payment_processing" | "payment_pending" | "payment_failed";
571
574
  planId: string;
@@ -587,6 +590,7 @@ export declare const createOrganizationSchema: z.ZodObject<Pick<{
587
590
  };
588
591
  source: "stripe" | "manual";
589
592
  usage: Partial<Record<"suitabilityComplete" | "proposalComplete" | "biddingComplete", number>>;
593
+ trialEndsAt: number | null;
590
594
  }, {
591
595
  status: "active" | "trialing" | "cancelled" | "paused" | "payment_processing" | "payment_pending" | "payment_failed";
592
596
  planId: string;
@@ -608,6 +612,7 @@ export declare const createOrganizationSchema: z.ZodObject<Pick<{
608
612
  };
609
613
  source: "stripe" | "manual";
610
614
  usage: Partial<Record<"suitabilityComplete" | "proposalComplete" | "biddingComplete", number>>;
615
+ trialEndsAt: number | null;
611
616
  }>>;
612
617
  active: z.ZodBoolean;
613
618
  limits: z.ZodObject<{
@@ -662,7 +667,6 @@ export declare const createOrganizationSchema: z.ZodObject<Pick<{
662
667
  createdAt: z.ZodNumber;
663
668
  updatedAt: z.ZodNumber;
664
669
  openRouterApiKey: z.ZodNullable<z.ZodString>;
665
- appTrialEndsAt: z.ZodNullable<z.ZodNumber>;
666
670
  oneTimePayments: z.ZodOptional<z.ZodObject<{
667
671
  usBidderAccountPayment: z.ZodOptional<z.ZodObject<{
668
672
  paidAt: z.ZodOptional<z.ZodNumber>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.2.158",
3
+ "version": "1.2.159",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",