lancer-shared 1.2.28 → 1.2.29
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
CHANGED
|
@@ -12327,6 +12327,7 @@ const organizationSettingsSchema = objectType({
|
|
|
12327
12327
|
const subscribePayloadSchema = objectType({
|
|
12328
12328
|
planId: stringType().min(1, "Plan id is required."),
|
|
12329
12329
|
paymentMethodId: stringType().min(1, "Payment method is required."),
|
|
12330
|
+
toltReferral: stringType().optional(),
|
|
12330
12331
|
});
|
|
12331
12332
|
|
|
12332
12333
|
const systemPromptSchema = objectType({
|
|
@@ -539,12 +539,15 @@ export declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
539
539
|
export declare const subscribePayloadSchema: z.ZodObject<{
|
|
540
540
|
planId: z.ZodString;
|
|
541
541
|
paymentMethodId: z.ZodString;
|
|
542
|
+
toltReferral: z.ZodOptional<z.ZodString>;
|
|
542
543
|
}, "strip", z.ZodTypeAny, {
|
|
543
544
|
planId: string;
|
|
544
545
|
paymentMethodId: string;
|
|
546
|
+
toltReferral?: string | undefined;
|
|
545
547
|
}, {
|
|
546
548
|
planId: string;
|
|
547
549
|
paymentMethodId: string;
|
|
550
|
+
toltReferral?: string | undefined;
|
|
548
551
|
}>;
|
|
549
552
|
export interface Organization extends infer<typeof organizationSchema> {
|
|
550
553
|
}
|