@moonbase.sh/storefront 0.4.25 → 0.4.26
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 +8 -0
- package/dist/moonbase.js +7355 -6978
- package/dist/moonbase.umd.cjs +16 -16
- package/package.json +9 -9
package/dist/moonbase.d.ts
CHANGED
|
@@ -199,6 +199,7 @@ export declare interface MoonbaseIntentArgs {
|
|
|
199
199
|
bundle_id?: string;
|
|
200
200
|
variation_id?: string;
|
|
201
201
|
quantity?: number;
|
|
202
|
+
offer_id?: string;
|
|
202
203
|
show_cart?: boolean;
|
|
203
204
|
};
|
|
204
205
|
[MoonbaseIntent.Purchase]: {
|
|
@@ -244,6 +245,13 @@ declare interface MoonbaseOptions {
|
|
|
244
245
|
};
|
|
245
246
|
cart: {
|
|
246
247
|
quantity: 'selectable' | 'single';
|
|
248
|
+
bundles: {
|
|
249
|
+
onAdd: 'append' | 'replace';
|
|
250
|
+
showProducts: boolean;
|
|
251
|
+
};
|
|
252
|
+
offers: {
|
|
253
|
+
label: string;
|
|
254
|
+
};
|
|
247
255
|
};
|
|
248
256
|
activation: {
|
|
249
257
|
deviceTokenFileExtension: string;
|