lancer-shared 1.2.180 → 1.2.181

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.
@@ -13043,7 +13043,6 @@ const organizationSettingsSchema = objectType({
13043
13043
  });
13044
13044
  const subscribePayloadSchema = objectType({
13045
13045
  planId: stringType().min(1, 'Plan id is required.'),
13046
- paymentMethodId: stringType().min(1, 'Payment method is required.'),
13047
13046
  toltReferral: stringType().optional(),
13048
13047
  couponCode: stringType().nullish(),
13049
13048
  });
@@ -1022,17 +1022,14 @@ export declare const organizationSettingsSchema: z.ZodObject<{
1022
1022
  }>;
1023
1023
  export declare const subscribePayloadSchema: z.ZodObject<{
1024
1024
  planId: z.ZodString;
1025
- paymentMethodId: z.ZodString;
1026
1025
  toltReferral: z.ZodOptional<z.ZodString>;
1027
1026
  couponCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1028
1027
  }, "strip", z.ZodTypeAny, {
1029
1028
  planId: string;
1030
- paymentMethodId: string;
1031
1029
  toltReferral?: string | undefined;
1032
1030
  couponCode?: string | null | undefined;
1033
1031
  }, {
1034
1032
  planId: string;
1035
- paymentMethodId: string;
1036
1033
  toltReferral?: string | undefined;
1037
1034
  couponCode?: string | null | undefined;
1038
1035
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.2.180",
3
+ "version": "1.2.181",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",