@moonbase.sh/storefront 1.0.6 → 1.0.12
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 +5 -0
- package/dist/moonbase.js +6921 -6385
- package/dist/moonbase.umd.cjs +15 -15
- package/package.json +2 -2
package/dist/moonbase.d.ts
CHANGED
|
@@ -97,6 +97,7 @@ declare class MoonbaseImpl implements MoonbaseInstance {
|
|
|
97
97
|
confirm_account(parameters?: MoonbaseIntentArgs['confirm_account']): void;
|
|
98
98
|
confirm_email(parameters?: MoonbaseIntentArgs['confirm_email']): void;
|
|
99
99
|
confirm_email_change(parameters?: MoonbaseIntentArgs['confirm_email_change']): void;
|
|
100
|
+
connect_account(parameters?: MoonbaseIntentArgs['connect_account']): void;
|
|
100
101
|
view_account(): void;
|
|
101
102
|
view_products(): void;
|
|
102
103
|
view_subscriptions(): void;
|
|
@@ -135,6 +136,7 @@ export declare enum MoonbaseIntent {
|
|
|
135
136
|
ViewProducts = "view_products",
|
|
136
137
|
ViewSubscriptions = "view_subscriptions",
|
|
137
138
|
RedeemVoucher = "redeem_voucher",
|
|
139
|
+
ConnectAccount = "connect_account",
|
|
138
140
|
ViewProduct = "view_product",
|
|
139
141
|
DownloadProduct = "download_product",
|
|
140
142
|
ActivateProduct = "activate_product",
|
|
@@ -179,6 +181,9 @@ export declare interface MoonbaseIntentArgs {
|
|
|
179
181
|
[MoonbaseIntent.RedeemVoucher]: {
|
|
180
182
|
code?: string;
|
|
181
183
|
};
|
|
184
|
+
[MoonbaseIntent.ConnectAccount]: {
|
|
185
|
+
provider_id: string;
|
|
186
|
+
};
|
|
182
187
|
[MoonbaseIntent.ViewProduct]: {
|
|
183
188
|
product_id: string;
|
|
184
189
|
version?: string;
|