@beeblock/svelar 0.4.1 → 0.4.3
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/Cli.d.ts +1 -0
- package/dist/cli/bin.js +1398 -810
- package/dist/cli/commands/NewCommandTemplates.d.ts +11 -0
- package/dist/cli/index.js +69 -66
- package/dist/hooks/index.js +2 -2
- package/dist/index.js +2 -2
- package/dist/search/index.d.ts +112 -0
- package/dist/search/index.js +1 -0
- package/dist/session/index.js +1 -1
- package/package.json +10 -2
|
@@ -73,6 +73,7 @@ export declare class NewCommandTemplates {
|
|
|
73
73
|
static verifyEmailPageServer(): string;
|
|
74
74
|
static verifyEmailPageSvelte(): string;
|
|
75
75
|
static dashboardLayoutServer(): string;
|
|
76
|
+
static dashboardLayoutSvelte(): string;
|
|
76
77
|
static dashboardPageServer(): string;
|
|
77
78
|
static dashboardPageSvelte(): string;
|
|
78
79
|
static apiKeysPageServer(): string;
|
|
@@ -80,6 +81,7 @@ export declare class NewCommandTemplates {
|
|
|
80
81
|
static teamPageServer(): string;
|
|
81
82
|
static teamPageSvelte(): string;
|
|
82
83
|
static adminLayoutServer(): string;
|
|
84
|
+
static adminLayoutSvelte(): string;
|
|
83
85
|
static adminPageServer(): string;
|
|
84
86
|
static adminPageSvelte(): string;
|
|
85
87
|
static apiHealth(): string;
|
|
@@ -104,6 +106,15 @@ export declare class NewCommandTemplates {
|
|
|
104
106
|
static apiAdminUserRoles(): string;
|
|
105
107
|
static apiAdminUserPermissions(): string;
|
|
106
108
|
static apiAdminExport(): string;
|
|
109
|
+
static apiAdminHealth(): string;
|
|
110
|
+
static apiAdminQueue(): string;
|
|
111
|
+
static apiAdminQueueRetry(): string;
|
|
112
|
+
static apiAdminQueueDelete(): string;
|
|
113
|
+
static apiAdminScheduler(): string;
|
|
114
|
+
static apiAdminSchedulerRun(): string;
|
|
115
|
+
static apiAdminSchedulerToggle(): string;
|
|
116
|
+
static apiAdminLogs(): string;
|
|
117
|
+
static apiAdminStats(): string;
|
|
107
118
|
static sendWelcomeEmail(): string;
|
|
108
119
|
static dailyDigestJob(): string;
|
|
109
120
|
static exportDataJob(): string;
|