@beeblock/svelar 0.4.4 → 0.4.6
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/README.md +1 -0
- package/dist/cli/Command.d.ts +14 -0
- package/dist/cli/bin.js +731 -91
- package/dist/cli/commands/NewCommandTemplates.d.ts +10 -0
- package/dist/cli/index.js +97 -94
- package/dist/cli/ts-resolve-hook.mjs +22 -1
- package/dist/stripe/Invoice.d.ts +44 -0
- package/dist/stripe/StripeService.d.ts +52 -0
- package/dist/stripe/StripeWebhookHandler.d.ts +14 -0
- package/dist/stripe/Subscription.d.ts +40 -0
- package/dist/stripe/SubscriptionManager.d.ts +39 -0
- package/dist/stripe/SubscriptionPlan.d.ts +41 -0
- package/dist/stripe/SyncStripeCustomerJob.d.ts +11 -0
- package/dist/stripe/index.d.ts +22 -0
- package/dist/stripe/index.js +1 -0
- package/package.json +17 -4
|
@@ -136,4 +136,14 @@ export declare class NewCommandTemplates {
|
|
|
136
136
|
static welcomeNotification(): string;
|
|
137
137
|
static eventServiceProvider(): string;
|
|
138
138
|
static homePage(name: string): string;
|
|
139
|
+
static addStripeToUsers(): string;
|
|
140
|
+
static createSubscriptionPlansTable(): string;
|
|
141
|
+
static createSubscriptionsTable(): string;
|
|
142
|
+
static createInvoicesTable(): string;
|
|
143
|
+
static billingPageServer(): string;
|
|
144
|
+
static billingPageSvelte(): string;
|
|
145
|
+
static stripeWebhookRoute(): string;
|
|
146
|
+
static apiAdminBillingSubscriptions(): string;
|
|
147
|
+
static apiAdminBillingRefund(): string;
|
|
148
|
+
static apiAdminBillingCancel(): string;
|
|
139
149
|
}
|