shoal-web-sdk 1.0.80 → 1.0.81

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.
@@ -56,7 +56,6 @@ export type UpdatePlan = {
56
56
  };
57
57
  export type CreateCustomerRequest = {
58
58
  plan: string;
59
- seats: number;
60
59
  billingInterval: BillingInterval;
61
60
  };
62
61
  export type SetupIntentResponse = {
@@ -165,7 +165,6 @@ export declare const zUpdatePlan: z.ZodObject<{
165
165
  }, z.core.$strip>;
166
166
  export declare const zCreateCustomerRequest: z.ZodObject<{
167
167
  plan: z.ZodString;
168
- seats: z.ZodInt;
169
168
  billingInterval: z.ZodEnum<{
170
169
  monthly: "monthly";
171
170
  annual: "annual";
@@ -397,7 +396,6 @@ export declare const zGetCustomerResponse: z.ZodObject<{
397
396
  export declare const zCreateCustomerData: z.ZodObject<{
398
397
  body: z.ZodObject<{
399
398
  plan: z.ZodString;
400
- seats: z.ZodInt;
401
399
  billingInterval: z.ZodEnum<{
402
400
  monthly: "monthly";
403
401
  annual: "annual";
@@ -64,7 +64,6 @@ export const zUpdatePlan = z.object({
64
64
  });
65
65
  export const zCreateCustomerRequest = z.object({
66
66
  plan: z.string(),
67
- seats: z.int(),
68
67
  billingInterval: zBillingInterval
69
68
  });
70
69
  export const zSetupIntentResponse = z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "1.0.80",
3
+ "version": "1.0.81",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",