@moonbase.sh/storefront 0.2.66 → 0.2.69
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 +3 -2
- package/dist/moonbase.js +1679 -1630
- package/dist/moonbase.umd.cjs +13 -13
- package/package.json +2 -2
package/dist/moonbase.d.ts
CHANGED
|
@@ -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 { }
|