@moonbase.sh/storefront 0.2.66 → 0.2.71

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.
@@ -2,10 +2,10 @@ declare type DeepPartial<T> = T extends object ? {
2
2
  [P in keyof T]?: DeepPartial<T[P]>;
3
3
  } : T;
4
4
 
5
- declare const moonbase: Moonbase_2;
6
- export default moonbase;
5
+ declare const Moonbase_2: MoonbaseImpl;
6
+ export default Moonbase_2;
7
7
 
8
- declare class Moonbase_2 implements MoonbaseInstance {
8
+ declare class MoonbaseImpl implements MoonbaseInstance {
9
9
  private initialized;
10
10
  private pinia;
11
11
  private storefront;
@@ -118,13 +118,14 @@ declare interface MoonbaseOptions {
118
118
  };
119
119
  };
120
120
  auth: {
121
- enable: {
122
- signUp: boolean;
121
+ signUp: {
122
+ enabled: boolean;
123
123
  };
124
124
  };
125
125
  checkout: {
126
126
  redirect: boolean;
127
127
  };
128
+ target: HTMLElement | null;
128
129
  }
129
130
 
130
131
  export { }