shoal-web-sdk 0.0.123 → 0.0.124

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.
@@ -14,9 +14,9 @@ export type Logs = {
14
14
  nextPage?: string;
15
15
  limit: unknown;
16
16
  };
17
- export type PlatformTier = 'free' | 'hobby' | 'pro';
17
+ export type PlatformTier = 'free' | 'pro' | 'enterprise';
18
18
  export type BillingInterval = 'monthly' | 'annual';
19
- export type BillingPlanLookupKey = 'free-monthly' | 'hobby-monthly' | 'hobby-annual' | 'pro-monthly' | 'pro-annual';
19
+ export type BillingPlanLookupKey = 'free-monthly' | 'pro-monthly' | 'pro-annual';
20
20
  export type HealthResponse = {
21
21
  status: string;
22
22
  };
@@ -21,8 +21,8 @@ export declare const zLogs: z.ZodObject<{
21
21
  }, z.core.$strip>;
22
22
  export declare const zPlatformTier: z.ZodEnum<{
23
23
  free: "free";
24
- hobby: "hobby";
25
24
  pro: "pro";
25
+ enterprise: "enterprise";
26
26
  }>;
27
27
  export declare const zBillingInterval: z.ZodEnum<{
28
28
  monthly: "monthly";
@@ -30,8 +30,6 @@ export declare const zBillingInterval: z.ZodEnum<{
30
30
  }>;
31
31
  export declare const zBillingPlanLookupKey: z.ZodEnum<{
32
32
  "free-monthly": "free-monthly";
33
- "hobby-monthly": "hobby-monthly";
34
- "hobby-annual": "hobby-annual";
35
33
  "pro-monthly": "pro-monthly";
36
34
  "pro-annual": "pro-annual";
37
35
  }>;
@@ -1045,8 +1043,8 @@ export declare const zSignedUrlUploadResponse: z.ZodObject<{
1045
1043
  export declare const zBillingPlan: z.ZodObject<{
1046
1044
  tier: z.ZodEnum<{
1047
1045
  free: "free";
1048
- hobby: "hobby";
1049
1046
  pro: "pro";
1047
+ enterprise: "enterprise";
1050
1048
  }>;
1051
1049
  interval: z.ZodOptional<z.ZodEnum<{
1052
1050
  monthly: "monthly";
@@ -1056,8 +1054,8 @@ export declare const zBillingPlan: z.ZodObject<{
1056
1054
  currentPeriodEnd: z.ZodOptional<z.ZodISODateTime>;
1057
1055
  pendingDowngrade: z.ZodOptional<z.ZodEnum<{
1058
1056
  free: "free";
1059
- hobby: "hobby";
1060
1057
  pro: "pro";
1058
+ enterprise: "enterprise";
1061
1059
  }>>;
1062
1060
  entitlements: z.ZodArray<z.ZodString>;
1063
1061
  }, z.core.$strip>;
@@ -2653,8 +2651,8 @@ export declare const zGetBillingPlanData: z.ZodObject<{
2653
2651
  export declare const zGetBillingPlanResponse: z.ZodObject<{
2654
2652
  tier: z.ZodEnum<{
2655
2653
  free: "free";
2656
- hobby: "hobby";
2657
2654
  pro: "pro";
2655
+ enterprise: "enterprise";
2658
2656
  }>;
2659
2657
  interval: z.ZodOptional<z.ZodEnum<{
2660
2658
  monthly: "monthly";
@@ -2664,8 +2662,8 @@ export declare const zGetBillingPlanResponse: z.ZodObject<{
2664
2662
  currentPeriodEnd: z.ZodOptional<z.ZodISODateTime>;
2665
2663
  pendingDowngrade: z.ZodOptional<z.ZodEnum<{
2666
2664
  free: "free";
2667
- hobby: "hobby";
2668
2665
  pro: "pro";
2666
+ enterprise: "enterprise";
2669
2667
  }>>;
2670
2668
  entitlements: z.ZodArray<z.ZodString>;
2671
2669
  }, z.core.$strip>;
@@ -15,8 +15,8 @@ export const zLogs = z.object({
15
15
  });
16
16
  export const zPlatformTier = z.enum([
17
17
  'free',
18
- 'hobby',
19
- 'pro'
18
+ 'pro',
19
+ 'enterprise'
20
20
  ]);
21
21
  export const zBillingInterval = z.enum([
22
22
  'monthly',
@@ -24,8 +24,6 @@ export const zBillingInterval = z.enum([
24
24
  ]);
25
25
  export const zBillingPlanLookupKey = z.enum([
26
26
  'free-monthly',
27
- 'hobby-monthly',
28
- 'hobby-annual',
29
27
  'pro-monthly',
30
28
  'pro-annual'
31
29
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.123",
3
+ "version": "0.0.124",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",