@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.
- package/dist/moonbase.d.ts +6 -5
- package/dist/moonbase.js +1679 -1630
- package/dist/moonbase.umd.cjs +13 -13
- package/package.json +2 -2
package/dist/moonbase.d.ts
CHANGED
|
@@ -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
|
|
6
|
-
export default
|
|
5
|
+
declare const Moonbase_2: MoonbaseImpl;
|
|
6
|
+
export default Moonbase_2;
|
|
7
7
|
|
|
8
|
-
declare class
|
|
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
|
-
|
|
122
|
-
|
|
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 { }
|