@beeblock/svelar 0.5.0 → 0.6.0
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 +25 -7
- package/dist/cli/bin.js +230 -702
- package/dist/cli/commands/NewCommandTemplates.d.ts +2 -10
- package/dist/cli/commands/UpdateCommand.d.ts +3 -0
- package/dist/cli/index.js +48 -48
- package/dist/plugins/PluginInstaller.js +1 -1
- package/dist/plugins/PluginRegistry.js +1 -1
- package/package.json +5 -13
- package/dist/stripe/Invoice.d.ts +0 -44
- package/dist/stripe/StripeService.d.ts +0 -52
- package/dist/stripe/StripeWebhookHandler.d.ts +0 -14
- package/dist/stripe/Subscription.d.ts +0 -40
- package/dist/stripe/SubscriptionManager.d.ts +0 -39
- package/dist/stripe/SubscriptionPlan.d.ts +0 -41
- package/dist/stripe/SyncStripeCustomerJob.d.ts +0 -11
- package/dist/stripe/index.d.ts +0 -22
- package/dist/stripe/index.js +0 -1
|
@@ -12,6 +12,8 @@ export declare class NewCommandTemplates {
|
|
|
12
12
|
static appHtml(): string;
|
|
13
13
|
static faviconSvg(): string;
|
|
14
14
|
static appCss(): string;
|
|
15
|
+
static componentsJson(): string;
|
|
16
|
+
static utilsCn(): string;
|
|
15
17
|
static appTs(): string;
|
|
16
18
|
static hooksServerTs(): string;
|
|
17
19
|
static envExample(): string;
|
|
@@ -136,16 +138,6 @@ export declare class NewCommandTemplates {
|
|
|
136
138
|
static welcomeNotification(): string;
|
|
137
139
|
static eventServiceProvider(): string;
|
|
138
140
|
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;
|
|
149
141
|
static vitestConfig(): string;
|
|
150
142
|
static playwrightConfig(): string;
|
|
151
143
|
static exampleUnitTest(): string;
|
|
@@ -16,6 +16,9 @@ export declare class UpdateCommand extends Command {
|
|
|
16
16
|
default: string;
|
|
17
17
|
})[];
|
|
18
18
|
handle(_args: string[], flags: Record<string, any>): Promise<void>;
|
|
19
|
+
private handleNewFiles;
|
|
20
|
+
private handleChangedFiles;
|
|
21
|
+
private backupAndWrite;
|
|
19
22
|
private normalize;
|
|
20
23
|
private writeFile;
|
|
21
24
|
private showDiff;
|