@stigg/js-client-sdk 0.51.0 → 0.52.0

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.
@@ -2833,7 +2833,6 @@ export declare type AddonFragment = {
2833
2833
  };
2834
2834
  export declare type PlanFragment = {
2835
2835
  __typename?: 'Plan';
2836
- id: string;
2837
2836
  refId: string;
2838
2837
  description?: string | null | undefined;
2839
2838
  displayName: string;
@@ -2848,7 +2847,6 @@ export declare type PlanFragment = {
2848
2847
  };
2849
2848
  basePlan?: {
2850
2849
  __typename?: 'Plan';
2851
- id: string;
2852
2850
  refId: string;
2853
2851
  displayName: string;
2854
2852
  } | null | undefined;
@@ -2875,9 +2873,12 @@ export declare type GetPaywallQueryVariables = Exact<{
2875
2873
  }>;
2876
2874
  export declare type GetPaywallQuery = {
2877
2875
  __typename?: 'Query';
2878
- getPaywall: Array<{
2879
- __typename?: 'Plan';
2880
- } & PlanFragment>;
2876
+ paywall: {
2877
+ __typename?: 'Paywall';
2878
+ plans: Array<{
2879
+ __typename?: 'Plan';
2880
+ } & PlanFragment>;
2881
+ };
2881
2882
  };
2882
2883
  export declare type SdkConfigurationQueryVariables = Exact<{
2883
2884
  [key: string]: never;