@beeblock/svelar 0.4.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.
Files changed (207) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +110 -0
  3. package/dist/actions/index.d.ts +101 -0
  4. package/dist/actions/index.js +1 -0
  5. package/dist/api-keys/index.d.ts +58 -0
  6. package/dist/api-keys/index.js +1 -0
  7. package/dist/audit/index.d.ts +52 -0
  8. package/dist/audit/index.js +1 -0
  9. package/dist/auth/Auth.d.ts +283 -0
  10. package/dist/auth/Gate.d.ts +166 -0
  11. package/dist/auth/index.d.ts +2 -0
  12. package/dist/auth/index.js +80 -0
  13. package/dist/broadcasting/client.d.ts +195 -0
  14. package/dist/broadcasting/client.js +1 -0
  15. package/dist/broadcasting/index.d.ts +318 -0
  16. package/dist/broadcasting/index.js +20 -0
  17. package/dist/cache/index.d.ts +77 -0
  18. package/dist/cache/index.js +1 -0
  19. package/dist/cli/Cli.d.ts +23 -0
  20. package/dist/cli/Command.d.ts +36 -0
  21. package/dist/cli/bin.d.ts +8 -0
  22. package/dist/cli/bin.js +5856 -0
  23. package/dist/cli/commands/KeyGenerateCommand.d.ts +16 -0
  24. package/dist/cli/commands/MakeActionCommand.d.ts +15 -0
  25. package/dist/cli/commands/MakeBroadcastingCommand.d.ts +29 -0
  26. package/dist/cli/commands/MakeChannelCommand.d.ts +18 -0
  27. package/dist/cli/commands/MakeCommandCommand.d.ts +16 -0
  28. package/dist/cli/commands/MakeConfigCommand.d.ts +13 -0
  29. package/dist/cli/commands/MakeControllerCommand.d.ts +28 -0
  30. package/dist/cli/commands/MakeDashboardCommand.d.ts +34 -0
  31. package/dist/cli/commands/MakeDockerCommand.d.ts +32 -0
  32. package/dist/cli/commands/MakeEventCommand.d.ts +11 -0
  33. package/dist/cli/commands/MakeJobCommand.d.ts +11 -0
  34. package/dist/cli/commands/MakeListenerCommand.d.ts +16 -0
  35. package/dist/cli/commands/MakeMiddlewareCommand.d.ts +11 -0
  36. package/dist/cli/commands/MakeMigrationCommand.d.ts +17 -0
  37. package/dist/cli/commands/MakeModelCommand.d.ts +25 -0
  38. package/dist/cli/commands/MakeObserverCommand.d.ts +23 -0
  39. package/dist/cli/commands/MakePluginCommand.d.ts +11 -0
  40. package/dist/cli/commands/MakeProviderCommand.d.ts +11 -0
  41. package/dist/cli/commands/MakeRepositoryCommand.d.ts +22 -0
  42. package/dist/cli/commands/MakeRequestCommand.d.ts +15 -0
  43. package/dist/cli/commands/MakeResourceCommand.d.ts +30 -0
  44. package/dist/cli/commands/MakeRouteCommand.d.ts +42 -0
  45. package/dist/cli/commands/MakeSchemaCommand.d.ts +20 -0
  46. package/dist/cli/commands/MakeSeederCommand.d.ts +11 -0
  47. package/dist/cli/commands/MakeServiceCommand.d.ts +28 -0
  48. package/dist/cli/commands/MakeTaskCommand.d.ts +12 -0
  49. package/dist/cli/commands/MigrateCommand.d.ts +26 -0
  50. package/dist/cli/commands/NewCommand.d.ts +21 -0
  51. package/dist/cli/commands/NewCommandTemplates.d.ts +123 -0
  52. package/dist/cli/commands/PluginInstallCommand.d.ts +16 -0
  53. package/dist/cli/commands/PluginListCommand.d.ts +11 -0
  54. package/dist/cli/commands/PluginPublishCommand.d.ts +22 -0
  55. package/dist/cli/commands/QueueFailedCommand.d.ts +9 -0
  56. package/dist/cli/commands/QueueFlushCommand.d.ts +9 -0
  57. package/dist/cli/commands/QueueRetryCommand.d.ts +16 -0
  58. package/dist/cli/commands/QueueWorkCommand.d.ts +25 -0
  59. package/dist/cli/commands/RoutesListCommand.d.ts +30 -0
  60. package/dist/cli/commands/ScheduleRunCommand.d.ts +15 -0
  61. package/dist/cli/commands/SeedCommand.d.ts +14 -0
  62. package/dist/cli/commands/TinkerCommand.d.ts +10 -0
  63. package/dist/cli/index.d.ts +36 -0
  64. package/dist/cli/index.js +1973 -0
  65. package/dist/cli/ts-resolve-hook.mjs +74 -0
  66. package/dist/cli/ts-resolver.mjs +8 -0
  67. package/dist/config/Config.d.ts +65 -0
  68. package/dist/config/index.d.ts +1 -0
  69. package/dist/config/index.js +1 -0
  70. package/dist/container/Application.d.ts +33 -0
  71. package/dist/container/Container.d.ts +70 -0
  72. package/dist/container/ServiceProvider.d.ts +21 -0
  73. package/dist/container/index.d.ts +3 -0
  74. package/dist/container/index.js +1 -0
  75. package/dist/dashboard/index.d.ts +123 -0
  76. package/dist/dashboard/index.js +5 -0
  77. package/dist/database/Connection.d.ts +80 -0
  78. package/dist/database/Migration.d.ts +76 -0
  79. package/dist/database/SchemaBuilder.d.ts +91 -0
  80. package/dist/database/Seeder.d.ts +9 -0
  81. package/dist/database/index.d.ts +4 -0
  82. package/dist/database/index.js +4 -0
  83. package/dist/email-templates/index.d.ts +51 -0
  84. package/dist/email-templates/index.js +57 -0
  85. package/dist/errors/Handler.d.ts +100 -0
  86. package/dist/errors/index.d.ts +1 -0
  87. package/dist/errors/index.js +5 -0
  88. package/dist/events/EventServiceProvider.d.ts +82 -0
  89. package/dist/events/Listener.d.ts +28 -0
  90. package/dist/events/index.d.ts +80 -0
  91. package/dist/events/index.js +1 -0
  92. package/dist/excel/index.d.ts +154 -0
  93. package/dist/excel/index.js +1 -0
  94. package/dist/feature-flags/index.d.ts +158 -0
  95. package/dist/feature-flags/index.js +59 -0
  96. package/dist/forms/index.d.ts +81 -0
  97. package/dist/forms/index.js +1 -0
  98. package/dist/hashing/Hash.d.ts +51 -0
  99. package/dist/hashing/index.d.ts +1 -0
  100. package/dist/hashing/index.js +1 -0
  101. package/dist/hooks/index.d.ts +135 -0
  102. package/dist/hooks/index.js +5 -0
  103. package/dist/http/index.d.ts +201 -0
  104. package/dist/http/index.js +2 -0
  105. package/dist/i18n/index.d.ts +81 -0
  106. package/dist/i18n/index.js +1 -0
  107. package/dist/index.d.ts +54 -0
  108. package/dist/index.js +127 -0
  109. package/dist/logging/LogViewer.d.ts +95 -0
  110. package/dist/logging/LogViewer.js +1 -0
  111. package/dist/logging/index.d.ts +83 -0
  112. package/dist/logging/index.js +3 -0
  113. package/dist/mail/index.d.ts +149 -0
  114. package/dist/mail/index.js +1 -0
  115. package/dist/middleware/Middleware.d.ts +208 -0
  116. package/dist/middleware/index.d.ts +1 -0
  117. package/dist/middleware/index.js +1 -0
  118. package/dist/notifications/index.d.ts +85 -0
  119. package/dist/notifications/index.js +2 -0
  120. package/dist/orm/Model.d.ts +123 -0
  121. package/dist/orm/Observer.d.ts +34 -0
  122. package/dist/orm/QueryBuilder.d.ts +119 -0
  123. package/dist/orm/Relationship.d.ts +58 -0
  124. package/dist/orm/index.d.ts +4 -0
  125. package/dist/orm/index.js +1 -0
  126. package/dist/pagination/index.d.ts +8 -0
  127. package/dist/pagination/index.js +0 -0
  128. package/dist/pdf/GeneratePdfJob.d.ts +99 -0
  129. package/dist/pdf/GeneratePdfJob.js +41 -0
  130. package/dist/pdf/index.d.ts +328 -0
  131. package/dist/pdf/index.js +41 -0
  132. package/dist/permissions/index.d.ts +161 -0
  133. package/dist/permissions/index.js +60 -0
  134. package/dist/plugins/BootstrapPlugins.d.ts +11 -0
  135. package/dist/plugins/PluginInstaller.d.ts +30 -0
  136. package/dist/plugins/PluginInstaller.js +1 -0
  137. package/dist/plugins/PluginPublisher.d.ts +32 -0
  138. package/dist/plugins/PluginPublisher.js +1 -0
  139. package/dist/plugins/PluginRegistry.d.ts +55 -0
  140. package/dist/plugins/PluginRegistry.js +1 -0
  141. package/dist/plugins/index.d.ts +206 -0
  142. package/dist/plugins/index.js +1 -0
  143. package/dist/queue/JobMonitor.d.ts +109 -0
  144. package/dist/queue/JobMonitor.js +5 -0
  145. package/dist/queue/index.d.ts +279 -0
  146. package/dist/queue/index.js +5 -0
  147. package/dist/repositories/index.d.ts +147 -0
  148. package/dist/repositories/index.js +1 -0
  149. package/dist/routing/Controller.d.ts +115 -0
  150. package/dist/routing/FormRequest.d.ts +94 -0
  151. package/dist/routing/Resource.d.ts +213 -0
  152. package/dist/routing/Response.d.ts +138 -0
  153. package/dist/routing/index.d.ts +4 -0
  154. package/dist/routing/index.js +5 -0
  155. package/dist/scheduler/ScheduleMonitor.d.ts +141 -0
  156. package/dist/scheduler/ScheduleMonitor.js +1 -0
  157. package/dist/scheduler/SchedulerLock.d.ts +33 -0
  158. package/dist/scheduler/index.d.ts +208 -0
  159. package/dist/scheduler/index.js +34 -0
  160. package/dist/services/index.d.ts +79 -0
  161. package/dist/services/index.js +1 -0
  162. package/dist/session/Session.d.ts +166 -0
  163. package/dist/session/index.d.ts +1 -0
  164. package/dist/session/index.js +16 -0
  165. package/dist/storage/index.d.ts +154 -0
  166. package/dist/storage/index.js +1 -0
  167. package/dist/support/Pipeline.d.ts +65 -0
  168. package/dist/support/date.d.ts +136 -0
  169. package/dist/support/date.js +1 -0
  170. package/dist/support/index.d.ts +8 -0
  171. package/dist/support/index.js +1 -0
  172. package/dist/support/singleton.d.ts +10 -0
  173. package/dist/support/uuid.d.ts +40 -0
  174. package/dist/teams/index.d.ts +91 -0
  175. package/dist/teams/index.js +78 -0
  176. package/dist/uploads/index.d.ts +63 -0
  177. package/dist/uploads/index.js +2 -0
  178. package/dist/validation/index.d.ts +46 -0
  179. package/dist/validation/index.js +1 -0
  180. package/dist/webhooks/index.d.ts +66 -0
  181. package/dist/webhooks/index.js +1 -0
  182. package/package.json +338 -0
  183. package/src/i18n/LanguageSwitcher.svelte +47 -0
  184. package/src/i18n/index.ts +113 -0
  185. package/src/ui/Alert.svelte +22 -0
  186. package/src/ui/Avatar.svelte +18 -0
  187. package/src/ui/AvatarFallback.svelte +18 -0
  188. package/src/ui/AvatarImage.svelte +12 -0
  189. package/src/ui/Badge.svelte +27 -0
  190. package/src/ui/Button.svelte +51 -0
  191. package/src/ui/Card.svelte +15 -0
  192. package/src/ui/CardContent.svelte +15 -0
  193. package/src/ui/CardDescription.svelte +15 -0
  194. package/src/ui/CardFooter.svelte +15 -0
  195. package/src/ui/CardHeader.svelte +15 -0
  196. package/src/ui/CardTitle.svelte +15 -0
  197. package/src/ui/Icon.svelte +81 -0
  198. package/src/ui/Input.svelte +40 -0
  199. package/src/ui/Label.svelte +20 -0
  200. package/src/ui/Separator.svelte +10 -0
  201. package/src/ui/Tabs.svelte +23 -0
  202. package/src/ui/TabsContent.svelte +27 -0
  203. package/src/ui/TabsList.svelte +19 -0
  204. package/src/ui/TabsTrigger.svelte +28 -0
  205. package/src/ui/Toaster.svelte +279 -0
  206. package/src/ui/index.ts +31 -0
  207. package/src/ui/toast.ts +212 -0
@@ -0,0 +1,123 @@
1
+ /**
2
+ * NewCommandTemplates — All scaffold file templates for `npx svelar new`.
3
+ *
4
+ * Each static method returns the full file content as a string.
5
+ * Used by NewCommand.ts to write project files.
6
+ */
7
+ export declare class NewCommandTemplates {
8
+ static packageJson(name: string, svelarVersion?: string): string;
9
+ static svelteConfig(): string;
10
+ static viteConfig(): string;
11
+ static tsConfig(): string;
12
+ static appHtml(): string;
13
+ static appCss(): string;
14
+ static appTs(): string;
15
+ static hooksServerTs(): string;
16
+ static envExample(): string;
17
+ static gitignore(): string;
18
+ static svelarDatabaseJson(): string;
19
+ static userModel(): string;
20
+ static postModel(): string;
21
+ static userRepository(): string;
22
+ static postRepository(): string;
23
+ static authService(): string;
24
+ static postService(): string;
25
+ static authController(): string;
26
+ static postController(): string;
27
+ static adminController(): string;
28
+ static registerRequest(): string;
29
+ static loginRequest(): string;
30
+ static createPostRequest(): string;
31
+ static updatePostRequest(): string;
32
+ static registerUserAction(): string;
33
+ static createPostAction(): string;
34
+ static userResource(): string;
35
+ static postResource(): string;
36
+ static adminSchema(): string;
37
+ static updateUserRoleRequest(): string;
38
+ static deleteUserRequest(): string;
39
+ static createRoleRequest(): string;
40
+ static deleteRoleRequest(): string;
41
+ static createPermissionRequest(): string;
42
+ static deletePermissionRequest(): string;
43
+ static rolePermissionRequest(): string;
44
+ static userRoleRequest(): string;
45
+ static userPermissionRequest(): string;
46
+ static exportDataRequest(): string;
47
+ static roleResource(): string;
48
+ static permissionResource(): string;
49
+ static adminService(): string;
50
+ static gates(): string;
51
+ static authSchema(): string;
52
+ static postSchema(): string;
53
+ static createUsersTable(): string;
54
+ static createPostsTable(): string;
55
+ static createPermissionsTables(): string;
56
+ static addRoleToUsers(): string;
57
+ static createSessionsTable(): string;
58
+ static createAuditLogsTable(): string;
59
+ static createNotificationsTable(): string;
60
+ static createFailedJobsTable(): string;
61
+ static databaseSeeder(): string;
62
+ static loginPageServer(): string;
63
+ static loginPageSvelte(): string;
64
+ static registerPageServer(): string;
65
+ static registerPageSvelte(): string;
66
+ static logoutPageServer(): string;
67
+ static forgotPasswordPageServer(): string;
68
+ static forgotPasswordPageSvelte(): string;
69
+ static resetPasswordPageServer(): string;
70
+ static resetPasswordPageSvelte(): string;
71
+ static otpLoginPageServer(): string;
72
+ static otpLoginPageSvelte(): string;
73
+ static verifyEmailPageServer(): string;
74
+ static verifyEmailPageSvelte(): string;
75
+ static dashboardLayoutServer(): string;
76
+ static dashboardPageServer(): string;
77
+ static dashboardPageSvelte(): string;
78
+ static apiKeysPageServer(): string;
79
+ static apiKeysPageSvelte(): string;
80
+ static teamPageServer(): string;
81
+ static teamPageSvelte(): string;
82
+ static adminLayoutServer(): string;
83
+ static adminPageServer(): string;
84
+ static adminPageSvelte(): string;
85
+ static apiHealth(): string;
86
+ static apiAuthRegister(): string;
87
+ static apiAuthLogin(): string;
88
+ static apiAuthLogout(): string;
89
+ static apiAuthMe(): string;
90
+ static apiAuthForgotPassword(): string;
91
+ static apiAuthResetPassword(): string;
92
+ static apiAuthOtpSend(): string;
93
+ static apiAuthOtpVerify(): string;
94
+ static apiAuthVerifyEmail(): string;
95
+ static apiPosts(): string;
96
+ static apiPostsSingle(): string;
97
+ static apiPostsMine(): string;
98
+ static apiBroadcasting(): string;
99
+ static apiInternalBroadcast(): string;
100
+ static apiAdminUsers(): string;
101
+ static apiAdminRoles(): string;
102
+ static apiAdminPermissions(): string;
103
+ static apiAdminRolePermissions(): string;
104
+ static apiAdminUserRoles(): string;
105
+ static apiAdminUserPermissions(): string;
106
+ static apiAdminExport(): string;
107
+ static sendWelcomeEmail(): string;
108
+ static dailyDigestJob(): string;
109
+ static exportDataJob(): string;
110
+ static cleanupExpiredTokens(): string;
111
+ static cleanExpiredSessions(): string;
112
+ static dailyDigestEmail(): string;
113
+ static pruneAuditLogs(): string;
114
+ static queueHealthCheck(): string;
115
+ static rootLayoutSvelte(name: string): string;
116
+ static rootLayoutServer(): string;
117
+ static errorSvelte(): string;
118
+ static userRegisteredEvent(): string;
119
+ static sendWelcomeEmailListener(): string;
120
+ static welcomeNotification(): string;
121
+ static eventServiceProvider(): string;
122
+ static homePage(name: string): string;
123
+ }
@@ -0,0 +1,16 @@
1
+ /**
2
+ * plugin:install — Install a plugin from npm
3
+ */
4
+ import { Command } from '../Command.js';
5
+ export declare class PluginInstallCommand extends Command {
6
+ name: string;
7
+ description: string;
8
+ arguments: string[];
9
+ flags: {
10
+ name: string;
11
+ alias: string;
12
+ description: string;
13
+ type: "boolean";
14
+ }[];
15
+ handle(args: string[], flags: Record<string, any>): Promise<void>;
16
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * plugin:list — List all discovered and enabled plugins
3
+ */
4
+ import { Command } from '../Command.js';
5
+ export declare class PluginListCommand extends Command {
6
+ name: string;
7
+ description: string;
8
+ arguments: string[];
9
+ flags: never[];
10
+ handle(_args: string[], _flags: Record<string, any>): Promise<void>;
11
+ }
@@ -0,0 +1,22 @@
1
+ /**
2
+ * plugin:publish — Publish a plugin's config and migrations
3
+ */
4
+ import { Command } from '../Command.js';
5
+ export declare class PluginPublishCommand extends Command {
6
+ name: string;
7
+ description: string;
8
+ arguments: string[];
9
+ flags: ({
10
+ name: string;
11
+ alias: string;
12
+ description: string;
13
+ type: "boolean";
14
+ } | {
15
+ name: string;
16
+ alias: string;
17
+ description: string;
18
+ type: "string";
19
+ })[];
20
+ handle(args: string[], flags: Record<string, any>): Promise<void>;
21
+ private loadPluginClass;
22
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * queue:failed — List all failed jobs
3
+ */
4
+ import { Command } from '../Command.js';
5
+ export declare class QueueFailedCommand extends Command {
6
+ name: string;
7
+ description: string;
8
+ handle(_args: string[], _flags: Record<string, any>): Promise<void>;
9
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * queue:flush — Delete all failed job records
3
+ */
4
+ import { Command } from '../Command.js';
5
+ export declare class QueueFlushCommand extends Command {
6
+ name: string;
7
+ description: string;
8
+ handle(_args: string[], _flags: Record<string, any>): Promise<void>;
9
+ }
@@ -0,0 +1,16 @@
1
+ /**
2
+ * queue:retry — Retry failed jobs
3
+ */
4
+ import { Command } from '../Command.js';
5
+ export declare class QueueRetryCommand extends Command {
6
+ name: string;
7
+ description: string;
8
+ arguments: string[];
9
+ flags: {
10
+ name: string;
11
+ description: string;
12
+ type: "boolean";
13
+ default: boolean;
14
+ }[];
15
+ handle(args: string[], flags: Record<string, any>): Promise<void>;
16
+ }
@@ -0,0 +1,25 @@
1
+ /**
2
+ * queue:work — Process queued jobs
3
+ */
4
+ import { Command } from '../Command.js';
5
+ export declare class QueueWorkCommand extends Command {
6
+ name: string;
7
+ description: string;
8
+ flags: ({
9
+ name: string;
10
+ description: string;
11
+ type: "string";
12
+ default: string;
13
+ } | {
14
+ name: string;
15
+ description: string;
16
+ type: "string";
17
+ default?: undefined;
18
+ } | {
19
+ name: string;
20
+ description: string;
21
+ type: "boolean";
22
+ default?: undefined;
23
+ })[];
24
+ handle(args: string[], flags: Record<string, any>): Promise<void>;
25
+ }
@@ -0,0 +1,30 @@
1
+ /**
2
+ * routes:list — List all application routes
3
+ *
4
+ * Scans src/routes/ for +server.ts and +page.server.ts files
5
+ * and displays them in a table with HTTP methods, paths, and handlers.
6
+ */
7
+ import { Command } from '../Command.js';
8
+ export declare class RoutesListCommand extends Command {
9
+ name: string;
10
+ description: string;
11
+ arguments: never[];
12
+ flags: ({
13
+ name: string;
14
+ description: string;
15
+ type: "boolean";
16
+ alias?: undefined;
17
+ } | {
18
+ name: string;
19
+ alias: string;
20
+ description: string;
21
+ type: "string";
22
+ })[];
23
+ handle(_args: string[], flags: Record<string, any>): Promise<void>;
24
+ private scanRoutes;
25
+ private parseServerFile;
26
+ private parsePageServerFile;
27
+ private filePathToUrl;
28
+ private extractHandler;
29
+ private getMethodColor;
30
+ }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * schedule:run — Run the task scheduler
3
+ */
4
+ import { Command } from '../Command.js';
5
+ export declare class ScheduleRunCommand extends Command {
6
+ name: string;
7
+ description: string;
8
+ flags: {
9
+ name: string;
10
+ description: string;
11
+ type: "boolean";
12
+ }[];
13
+ handle(args: string[], flags: Record<string, any>): Promise<void>;
14
+ private loadTasks;
15
+ }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * seed:run — Run database seeders
3
+ */
4
+ import { Command } from '../Command.js';
5
+ export declare class SeedCommand extends Command {
6
+ name: string;
7
+ description: string;
8
+ flags: {
9
+ name: string;
10
+ description: string;
11
+ type: "string";
12
+ }[];
13
+ handle(args: string[], flags: Record<string, any>): Promise<void>;
14
+ }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * tinker — Interactive REPL with models and framework preloaded
3
+ */
4
+ import { Command } from '../Command.js';
5
+ export declare class TinkerCommand extends Command {
6
+ name: string;
7
+ description: string;
8
+ flags: never[];
9
+ handle(): Promise<void>;
10
+ }
@@ -0,0 +1,36 @@
1
+ export { Cli } from './Cli.js';
2
+ export { Command, type CommandFlag } from './Command.js';
3
+ export { MakeModelCommand } from './commands/MakeModelCommand.js';
4
+ export { MakeMigrationCommand } from './commands/MakeMigrationCommand.js';
5
+ export { MakeControllerCommand } from './commands/MakeControllerCommand.js';
6
+ export { MakeMiddlewareCommand } from './commands/MakeMiddlewareCommand.js';
7
+ export { MakeProviderCommand } from './commands/MakeProviderCommand.js';
8
+ export { MakeSeederCommand } from './commands/MakeSeederCommand.js';
9
+ export { MakeServiceCommand } from './commands/MakeServiceCommand.js';
10
+ export { MakeRepositoryCommand } from './commands/MakeRepositoryCommand.js';
11
+ export { MakeActionCommand } from './commands/MakeActionCommand.js';
12
+ export { MakeRequestCommand } from './commands/MakeRequestCommand.js';
13
+ export { MakePluginCommand } from './commands/MakePluginCommand.js';
14
+ export { MakeTaskCommand } from './commands/MakeTaskCommand.js';
15
+ export { MakeJobCommand } from './commands/MakeJobCommand.js';
16
+ export { MakeCommandCommand } from './commands/MakeCommandCommand.js';
17
+ export { MakeConfigCommand } from './commands/MakeConfigCommand.js';
18
+ export { MakeChannelCommand } from './commands/MakeChannelCommand.js';
19
+ export { MakeDockerCommand } from './commands/MakeDockerCommand.js';
20
+ export { MakeBroadcastingCommand } from './commands/MakeBroadcastingCommand.js';
21
+ export { MakeDashboardCommand } from './commands/MakeDashboardCommand.js';
22
+ export { MakeResourceCommand } from './commands/MakeResourceCommand.js';
23
+ export { MakeSchemaCommand } from './commands/MakeSchemaCommand.js';
24
+ export { MakeObserverCommand } from './commands/MakeObserverCommand.js';
25
+ export { MakeEventCommand } from './commands/MakeEventCommand.js';
26
+ export { MakeListenerCommand } from './commands/MakeListenerCommand.js';
27
+ export { MakeRouteCommand } from './commands/MakeRouteCommand.js';
28
+ export { RoutesListCommand } from './commands/RoutesListCommand.js';
29
+ export { MigrateCommand } from './commands/MigrateCommand.js';
30
+ export { SeedCommand } from './commands/SeedCommand.js';
31
+ export { ScheduleRunCommand } from './commands/ScheduleRunCommand.js';
32
+ export { QueueWorkCommand } from './commands/QueueWorkCommand.js';
33
+ export { TinkerCommand } from './commands/TinkerCommand.js';
34
+ export { PluginListCommand } from './commands/PluginListCommand.js';
35
+ export { PluginPublishCommand } from './commands/PluginPublishCommand.js';
36
+ export { PluginInstallCommand } from './commands/PluginInstallCommand.js';