@shaferllc/keel 0.66.0 → 0.68.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 (132) hide show
  1. package/AGENTS.md +167 -0
  2. package/README.md +30 -1
  3. package/bin/keel-mcp.mjs +9 -0
  4. package/dist/core/application.d.ts +5 -5
  5. package/dist/core/application.js +2 -2
  6. package/dist/core/cache.d.ts +82 -5
  7. package/dist/core/cache.js +181 -23
  8. package/dist/core/cli/stubs.d.ts +12 -0
  9. package/dist/core/cli/stubs.js +120 -0
  10. package/dist/core/events.d.ts +129 -5
  11. package/dist/core/events.js +165 -7
  12. package/dist/core/health.d.ts +141 -0
  13. package/dist/core/health.js +226 -0
  14. package/dist/core/helpers.d.ts +9 -3
  15. package/dist/core/helpers.js +11 -3
  16. package/dist/core/index.d.ts +15 -10
  17. package/dist/core/index.js +7 -4
  18. package/dist/core/lock.d.ts +139 -0
  19. package/dist/core/lock.js +215 -0
  20. package/dist/core/logger.d.ts +82 -4
  21. package/dist/core/logger.js +141 -23
  22. package/dist/core/mail.d.ts +128 -7
  23. package/dist/core/mail.js +264 -16
  24. package/dist/core/queue.d.ts +134 -9
  25. package/dist/core/queue.js +304 -14
  26. package/dist/core/storage.d.ts +159 -6
  27. package/dist/core/storage.js +287 -7
  28. package/dist/mcp/server.d.ts +19 -0
  29. package/dist/mcp/server.js +355 -0
  30. package/docs/ai-manifest.json +2472 -0
  31. package/docs/ai.md +128 -0
  32. package/docs/architecture.md +331 -0
  33. package/docs/authentication.md +453 -0
  34. package/docs/authorization.md +167 -0
  35. package/docs/broadcasting.md +137 -0
  36. package/docs/broker.md +500 -0
  37. package/docs/cache.md +558 -0
  38. package/docs/configuration.md +311 -0
  39. package/docs/console.md +356 -0
  40. package/docs/container.md +467 -0
  41. package/docs/controllers.md +265 -0
  42. package/docs/cors.md +51 -0
  43. package/docs/database.md +530 -0
  44. package/docs/debugging.md +129 -0
  45. package/docs/decorators.md +127 -0
  46. package/docs/errors.md +395 -0
  47. package/docs/events.md +496 -0
  48. package/docs/examples/architecture-app.ts +27 -0
  49. package/docs/examples/authentication.ts +61 -0
  50. package/docs/examples/authorization.ts +79 -0
  51. package/docs/examples/broadcasting.ts +60 -0
  52. package/docs/examples/broker-cache-validate.ts +34 -0
  53. package/docs/examples/broker-fault-tolerance.ts +29 -0
  54. package/docs/examples/broker-middleware.ts +27 -0
  55. package/docs/examples/broker.ts +203 -0
  56. package/docs/examples/cache.ts +222 -0
  57. package/docs/examples/configuration.ts +81 -0
  58. package/docs/examples/container.ts +134 -0
  59. package/docs/examples/controllers.ts +86 -0
  60. package/docs/examples/database.ts +118 -0
  61. package/docs/examples/debugging.ts +41 -0
  62. package/docs/examples/decorators.ts +40 -0
  63. package/docs/examples/errors.ts +121 -0
  64. package/docs/examples/events.ts +204 -0
  65. package/docs/examples/factories.ts +84 -0
  66. package/docs/examples/hashing.ts +71 -0
  67. package/docs/examples/health.ts +94 -0
  68. package/docs/examples/helpers.ts +171 -0
  69. package/docs/examples/hooks.ts +54 -0
  70. package/docs/examples/inertia.ts +81 -0
  71. package/docs/examples/locks.ts +120 -0
  72. package/docs/examples/logger.ts +92 -0
  73. package/docs/examples/mail.ts +160 -0
  74. package/docs/examples/middleware.ts +119 -0
  75. package/docs/examples/migrations.ts +126 -0
  76. package/docs/examples/models.ts +239 -0
  77. package/docs/examples/notification.ts +124 -0
  78. package/docs/examples/providers.ts +123 -0
  79. package/docs/examples/queues.ts +254 -0
  80. package/docs/examples/rate-limiting.ts +42 -0
  81. package/docs/examples/redis.ts +99 -0
  82. package/docs/examples/request-response.ts +197 -0
  83. package/docs/examples/routing.ts +186 -0
  84. package/docs/examples/scheduling.ts +62 -0
  85. package/docs/examples/sessions.ts +102 -0
  86. package/docs/examples/static-files.ts +63 -0
  87. package/docs/examples/storage.ts +132 -0
  88. package/docs/examples/templates.ts +58 -0
  89. package/docs/examples/testing.ts +66 -0
  90. package/docs/examples/transformer.ts +141 -0
  91. package/docs/examples/transformers.ts +49 -0
  92. package/docs/examples/url-builder.ts +86 -0
  93. package/docs/examples/validation.ts +102 -0
  94. package/docs/examples/views.tsx +62 -0
  95. package/docs/examples/vite.ts +106 -0
  96. package/docs/factories.md +166 -0
  97. package/docs/getting-started.md +290 -0
  98. package/docs/hashing.md +259 -0
  99. package/docs/health.md +225 -0
  100. package/docs/helpers.md +347 -0
  101. package/docs/hono.md +186 -0
  102. package/docs/hooks.md +118 -0
  103. package/docs/inertia.md +241 -0
  104. package/docs/locks.md +323 -0
  105. package/docs/logger.md +290 -0
  106. package/docs/mail.md +678 -0
  107. package/docs/middleware.md +425 -0
  108. package/docs/migrations.md +476 -0
  109. package/docs/models.md +810 -0
  110. package/docs/notifications.md +474 -0
  111. package/docs/providers.md +363 -0
  112. package/docs/queues.md +679 -0
  113. package/docs/rate-limiting.md +155 -0
  114. package/docs/redis.md +178 -0
  115. package/docs/request-response.md +953 -0
  116. package/docs/routing.md +804 -0
  117. package/docs/scheduling.md +110 -0
  118. package/docs/security.md +85 -0
  119. package/docs/sessions.md +354 -0
  120. package/docs/social-auth.md +174 -0
  121. package/docs/static-files.md +211 -0
  122. package/docs/storage.md +450 -0
  123. package/docs/templates.md +315 -0
  124. package/docs/testing.md +125 -0
  125. package/docs/transformers.md +381 -0
  126. package/docs/url-builder.md +295 -0
  127. package/docs/validation.md +288 -0
  128. package/docs/views.md +267 -0
  129. package/docs/vite.md +434 -0
  130. package/llms-full.txt +17694 -0
  131. package/llms.txt +116 -0
  132. package/package.json +26 -7
@@ -0,0 +1,2472 @@
1
+ {
2
+ "name": "@shaferllc/keel",
3
+ "version": "0.68.0",
4
+ "description": "The house framework for Node.js — a service container, providers, routing, JSX views, and a code-generating console.",
5
+ "repo": "https://github.com/shaferllc/keel",
6
+ "generated": "run `npm run build:ai` to regenerate",
7
+ "docs": [
8
+ {
9
+ "slug": "ai",
10
+ "title": "Building Keel apps with AI",
11
+ "summary": "Keel is built to be written with an AI agent.",
12
+ "path": "docs/ai.md",
13
+ "example": null
14
+ },
15
+ {
16
+ "slug": "architecture",
17
+ "title": "Architecture",
18
+ "summary": "Keel is small on purpose. This page maps the pieces and traces a request from socket to response. Nothing here is magic — every layer is a short, readable file in src/core/, and this guide is mostly a reading order for it.",
19
+ "path": "docs/architecture.md",
20
+ "example": null
21
+ },
22
+ {
23
+ "slug": "authentication",
24
+ "title": "Authentication",
25
+ "summary": "Session-based auth built on the pieces you already have: sessions hold the login, hashing checks passwords.",
26
+ "path": "docs/authentication.md",
27
+ "example": "docs/examples/authentication.ts"
28
+ },
29
+ {
30
+ "slug": "authorization",
31
+ "title": "Authorization",
32
+ "summary": "Where authentication answers who you are, authorization answers what you're allowed to do.",
33
+ "path": "docs/authorization.md",
34
+ "example": "docs/examples/authorization.ts"
35
+ },
36
+ {
37
+ "slug": "broadcasting",
38
+ "title": "Broadcasting",
39
+ "summary": "Push events to clients in real time over named channels.",
40
+ "path": "docs/broadcasting.md",
41
+ "example": "docs/examples/broadcasting.ts"
42
+ },
43
+ {
44
+ "slug": "broker",
45
+ "title": "Service Broker",
46
+ "summary": "Structure an application as services that talk to each other by name instead of by import.",
47
+ "path": "docs/broker.md",
48
+ "example": "docs/examples/broker.ts"
49
+ },
50
+ {
51
+ "slug": "cache",
52
+ "title": "Cache",
53
+ "summary": "A small cache with TTLs and the remember pattern.",
54
+ "path": "docs/cache.md",
55
+ "example": "docs/examples/cache.ts"
56
+ },
57
+ {
58
+ "slug": "configuration",
59
+ "title": "Configuration",
60
+ "summary": "Keel loads configuration from two sources: environment variables (.env) and config files (config/.ts).",
61
+ "path": "docs/configuration.md",
62
+ "example": "docs/examples/configuration.ts"
63
+ },
64
+ {
65
+ "slug": "console",
66
+ "title": "The Console",
67
+ "summary": "Keel ships with a console for running the server and generating code.",
68
+ "path": "docs/console.md",
69
+ "example": null
70
+ },
71
+ {
72
+ "slug": "container",
73
+ "title": "The Service Container",
74
+ "summary": "The container is the backbone of Keel. Every service — config, the router, controllers, and anything you write — is registered in it and resolved out of it. It is the single registry every service resolves out of.",
75
+ "path": "docs/container.md",
76
+ "example": "docs/examples/container.ts"
77
+ },
78
+ {
79
+ "slug": "controllers",
80
+ "title": "Controllers",
81
+ "summary": "Controllers are plain classes in app/Controllers/.",
82
+ "path": "docs/controllers.md",
83
+ "example": "docs/examples/controllers.ts"
84
+ },
85
+ {
86
+ "slug": "cors",
87
+ "title": "CORS",
88
+ "summary": "Cross-Origin Resource Sharing lets browsers on other origins call your API.",
89
+ "path": "docs/cors.md",
90
+ "example": null
91
+ },
92
+ {
93
+ "slug": "database",
94
+ "title": "Database",
95
+ "summary": "Keel ships a small, driver-agnostic query builder.",
96
+ "path": "docs/database.md",
97
+ "example": "docs/examples/database.ts"
98
+ },
99
+ {
100
+ "slug": "debugging",
101
+ "title": "Debugging",
102
+ "summary": "Two helpers for the moments you'd otherwise reach for console.log.",
103
+ "path": "docs/debugging.md",
104
+ "example": "docs/examples/debugging.ts"
105
+ },
106
+ {
107
+ "slug": "decorators",
108
+ "title": "Request Decorators",
109
+ "summary": "Attach named, computed values to the current request — request.user, request.tenant, request.locale — resolved lazily and memoized for the life of the request.",
110
+ "path": "docs/decorators.md",
111
+ "example": "docs/examples/decorators.ts"
112
+ },
113
+ {
114
+ "slug": "errors",
115
+ "title": "Errors & Exceptions",
116
+ "summary": "Throw an exception anywhere — a handler, middleware, or a service deep in the container — and Keel's HTTP kernel turns it into the right response.",
117
+ "path": "docs/errors.md",
118
+ "example": "docs/examples/errors.ts"
119
+ },
120
+ {
121
+ "slug": "events",
122
+ "title": "Events",
123
+ "summary": "A tiny event emitter for decoupling — fire an event in one place, handle it in another.",
124
+ "path": "docs/events.md",
125
+ "example": "docs/examples/events.ts"
126
+ },
127
+ {
128
+ "slug": "factories",
129
+ "title": "Factories & Seeders",
130
+ "summary": "Populate the database with realistic fixtures for tests and demos.",
131
+ "path": "docs/factories.md",
132
+ "example": "docs/examples/factories.ts"
133
+ },
134
+ {
135
+ "slug": "getting-started",
136
+ "title": "Getting Started",
137
+ "summary": "Keel is a house framework for Node.js — a small, legible MVC layer over Hono.",
138
+ "path": "docs/getting-started.md",
139
+ "example": null
140
+ },
141
+ {
142
+ "slug": "hashing",
143
+ "title": "Hashing & Encryption",
144
+ "summary": "Password hashing and value encryption, both built on the Web Crypto API — so they run identically on Node and the edge, with no native bindings (no bcrypt to compile).",
145
+ "path": "docs/hashing.md",
146
+ "example": "docs/examples/hashing.ts"
147
+ },
148
+ {
149
+ "slug": "health",
150
+ "title": "Health Checks",
151
+ "summary": "Two endpoints, answering the two questions an orchestrator — Kubernetes, Fly, Railway, a load balancer — actually asks:",
152
+ "path": "docs/health.md",
153
+ "example": "docs/examples/health.ts"
154
+ },
155
+ {
156
+ "slug": "helpers",
157
+ "title": "Helpers",
158
+ "summary": "Keel gives you a handful of global helper functions so you can reach the running application from anywhere — a route handler, a model, a plain function — without threading a container reference through every call.",
159
+ "path": "docs/helpers.md",
160
+ "example": "docs/examples/helpers.ts"
161
+ },
162
+ {
163
+ "slug": "hono",
164
+ "title": "Built on Hono",
165
+ "summary": "Keel's HTTP layer is Hono — an ultrafast, web-standard router that runs on Node, Cloudflare Workers, Deno, Bun, and more.",
166
+ "path": "docs/hono.md",
167
+ "example": null
168
+ },
169
+ {
170
+ "slug": "hooks",
171
+ "title": "Lifecycle Hooks",
172
+ "summary": "Tap into the application lifecycle — run code once the app is ready, clean up on shutdown, and observe route registration.",
173
+ "path": "docs/hooks.md",
174
+ "example": "docs/examples/hooks.ts"
175
+ },
176
+ {
177
+ "slug": "inertia",
178
+ "title": "Inertia",
179
+ "summary": "Keel ships a server-side Inertia.js adapter.",
180
+ "path": "docs/inertia.md",
181
+ "example": "docs/examples/inertia.ts"
182
+ },
183
+ {
184
+ "slug": "locks",
185
+ "title": "Locks",
186
+ "summary": "\"Only one of you may do this at a time\" — across processes, across nodes.",
187
+ "path": "docs/locks.md",
188
+ "example": "docs/examples/locks.ts"
189
+ },
190
+ {
191
+ "slug": "logger",
192
+ "title": "Logger",
193
+ "summary": "A small leveled logger. It writes structured JSON by default — one line per event, ready for log aggregators — and pretty single-line output in debug. Reach it with the global logger() helper.",
194
+ "path": "docs/logger.md",
195
+ "example": "docs/examples/logger.ts"
196
+ },
197
+ {
198
+ "slug": "mail",
199
+ "title": "Mail",
200
+ "summary": "Send email through a pluggable transport. Compose a message with a fluent builder and dispatch it — the API mirrors the database layer (setMailer / mail() are to mail what setConnection / db() are to the database). The core imports no SDK: the built-in transports use fetch, console, or memory, so it runs on Node and the edge.",
201
+ "path": "docs/mail.md",
202
+ "example": "docs/examples/mail.ts"
203
+ },
204
+ {
205
+ "slug": "middleware",
206
+ "title": "Middleware",
207
+ "summary": "Middleware wraps every request, running code before and after your route handler.",
208
+ "path": "docs/middleware.md",
209
+ "example": "docs/examples/middleware.ts"
210
+ },
211
+ {
212
+ "slug": "migrations",
213
+ "title": "Migrations",
214
+ "summary": "Version your database schema. A migration is a { name, up, down } object; a fluent schema builder describes tables, and the migrator runs them against your connection, tracking what's applied. The SQL is dialect-aware (sqlite / mysql / postgres) and the core imports no driver.",
215
+ "path": "docs/migrations.md",
216
+ "example": "docs/examples/migrations.ts"
217
+ },
218
+ {
219
+ "slug": "models",
220
+ "title": "Models",
221
+ "summary": "Model is a tiny active-record layer over the query builder.",
222
+ "path": "docs/models.md",
223
+ "example": "docs/examples/models.ts"
224
+ },
225
+ {
226
+ "slug": "notifications",
227
+ "title": "Notifications",
228
+ "summary": "Send a message to a recipient over one or more channels — mail, database, or your own — inline or through the queue.",
229
+ "path": "docs/notifications.md",
230
+ "example": "docs/examples/notification.ts"
231
+ },
232
+ {
233
+ "slug": "providers",
234
+ "title": "Service Providers",
235
+ "summary": "Service providers are the central place to configure your application.",
236
+ "path": "docs/providers.md",
237
+ "example": "docs/examples/providers.ts"
238
+ },
239
+ {
240
+ "slug": "queues",
241
+ "title": "Queues & Jobs",
242
+ "summary": "Move slow work — sending mail, calling an API, processing an upload — off the request path.",
243
+ "path": "docs/queues.md",
244
+ "example": "docs/examples/queues.ts"
245
+ },
246
+ {
247
+ "slug": "rate-limiting",
248
+ "title": "Rate Limiting",
249
+ "summary": "rateLimiter() is a middleware that caps how many requests a client can make in a window.",
250
+ "path": "docs/rate-limiting.md",
251
+ "example": "docs/examples/rate-limiting.ts"
252
+ },
253
+ {
254
+ "slug": "redis",
255
+ "title": "Redis",
256
+ "summary": "A Redis integration built on a small pluggable driver — like the database and mail layers, the core imports no client, so it runs on Node and on the edge.",
257
+ "path": "docs/redis.md",
258
+ "example": "docs/examples/redis.ts"
259
+ },
260
+ {
261
+ "slug": "request-response",
262
+ "title": "Request & Response",
263
+ "summary": "Beyond the terse param() / json() shortcuts, the request and response accessors give you the full input/output surface — no context threading.",
264
+ "path": "docs/request-response.md",
265
+ "example": "docs/examples/request-response.ts"
266
+ },
267
+ {
268
+ "slug": "routing",
269
+ "title": "Routing",
270
+ "summary": "Routes live in routes/web.ts. The default export receives the Router and registers routes on it. The HTTP kernel later compiles them onto Hono.",
271
+ "path": "docs/routing.md",
272
+ "example": "docs/examples/routing.ts"
273
+ },
274
+ {
275
+ "slug": "scheduling",
276
+ "title": "Task Scheduling",
277
+ "summary": "Declare recurring work with a fluent cadence, then let a single cron trigger drive it — a code-defined scheduler, edge-first.",
278
+ "path": "docs/scheduling.md",
279
+ "example": "docs/examples/scheduling.ts"
280
+ },
281
+ {
282
+ "slug": "security",
283
+ "title": "Securing SSR apps",
284
+ "summary": "Two middlewares harden server-rendered apps: securityHeaders() sets the defensive HTTP headers browsers act on, and csrf() blocks cross-site form submissions.",
285
+ "path": "docs/security.md",
286
+ "example": null
287
+ },
288
+ {
289
+ "slug": "sessions",
290
+ "title": "Sessions",
291
+ "summary": "Keel ships a cookie-backed session store. There's no external service to run, so it works the same on Node and on the edge. Session data lives in an HTTP-only cookie: the middleware reads it before your handler runs and writes it back afterward.",
292
+ "path": "docs/sessions.md",
293
+ "example": "docs/examples/sessions.ts"
294
+ },
295
+ {
296
+ "slug": "social-auth",
297
+ "title": "Social authentication",
298
+ "summary": "\"Sign in with GitHub / Google / Discord\" — OAuth 2.0, without an SDK.",
299
+ "path": "docs/social-auth.md",
300
+ "example": null
301
+ },
302
+ {
303
+ "slug": "static-files",
304
+ "title": "Static Files",
305
+ "summary": "serveStatic() serves files from a directory (default public/) before your routes run.",
306
+ "path": "docs/static-files.md",
307
+ "example": "docs/examples/static-files.ts"
308
+ },
309
+ {
310
+ "slug": "storage",
311
+ "title": "Storage",
312
+ "summary": "File storage over a pluggable disk — like the database and mail layers, the core imports no filesystem or SDK, so it runs on Node and the edge.",
313
+ "path": "docs/storage.md",
314
+ "example": "docs/examples/storage.ts"
315
+ },
316
+ {
317
+ "slug": "templates",
318
+ "title": "Templates",
319
+ "summary": "A string templating engine in the spirit of AdonisJS Edge — {{ }} interpolation and @-prefixed tags for logic, includes, layouts, and components.",
320
+ "path": "docs/templates.md",
321
+ "example": "docs/examples/templates.ts"
322
+ },
323
+ {
324
+ "slug": "testing",
325
+ "title": "Testing",
326
+ "summary": "Test your app by injecting requests — no server, no port, no network — and asserting on the response.",
327
+ "path": "docs/testing.md",
328
+ "example": "docs/examples/testing.ts"
329
+ },
330
+ {
331
+ "slug": "transformers",
332
+ "title": "Transformers",
333
+ "summary": "A model knows the database; a transformer knows the API.",
334
+ "path": "docs/transformers.md",
335
+ "example": "docs/examples/transformers.ts"
336
+ },
337
+ {
338
+ "slug": "url-builder",
339
+ "title": "URL Builder",
340
+ "summary": "Generate URLs from named routes so paths live in one place.",
341
+ "path": "docs/url-builder.md",
342
+ "example": "docs/examples/url-builder.ts"
343
+ },
344
+ {
345
+ "slug": "validation",
346
+ "title": "Validation",
347
+ "summary": "validate() parses request input against a schema and returns typed data.",
348
+ "path": "docs/validation.md",
349
+ "example": "docs/examples/validation.ts"
350
+ },
351
+ {
352
+ "slug": "views",
353
+ "title": "Views",
354
+ "summary": "Keel renders HTML with Hono JSX — type-safe components that run identically on Node and on Cloudflare Workers (no filesystem templating, so it ports anywhere).",
355
+ "path": "docs/views.md",
356
+ "example": "docs/examples/views.tsx"
357
+ },
358
+ {
359
+ "slug": "vite",
360
+ "title": "Vite",
361
+ "summary": "Wire a modern frontend build — bundling, hashed filenames, hot module reload — to Keel's server-rendered HTML, the way modern full-stack frameworks do.",
362
+ "path": "docs/vite.md",
363
+ "example": "docs/examples/vite.ts"
364
+ }
365
+ ],
366
+ "api": [
367
+ {
368
+ "name": "AccessToken",
369
+ "kind": "type",
370
+ "module": "tokens"
371
+ },
372
+ {
373
+ "name": "AcquireOptions",
374
+ "kind": "type",
375
+ "module": "lock"
376
+ },
377
+ {
378
+ "name": "ActionDef",
379
+ "kind": "type",
380
+ "module": "broker"
381
+ },
382
+ {
383
+ "name": "ActionHandler",
384
+ "kind": "type",
385
+ "module": "broker"
386
+ },
387
+ {
388
+ "name": "ActionHooks",
389
+ "kind": "type",
390
+ "module": "broker"
391
+ },
392
+ {
393
+ "name": "ActionSchema",
394
+ "kind": "type",
395
+ "module": "broker"
396
+ },
397
+ {
398
+ "name": "addConnection",
399
+ "kind": "value",
400
+ "module": "database"
401
+ },
402
+ {
403
+ "name": "AfterCallback",
404
+ "kind": "type",
405
+ "module": "authorization"
406
+ },
407
+ {
408
+ "name": "AfterHook",
409
+ "kind": "type",
410
+ "module": "broker"
411
+ },
412
+ {
413
+ "name": "alias",
414
+ "kind": "value",
415
+ "module": "helpers"
416
+ },
417
+ {
418
+ "name": "AnyListener",
419
+ "kind": "type",
420
+ "module": "events"
421
+ },
422
+ {
423
+ "name": "app",
424
+ "kind": "value",
425
+ "module": "helpers"
426
+ },
427
+ {
428
+ "name": "Application",
429
+ "kind": "value",
430
+ "module": "application"
431
+ },
432
+ {
433
+ "name": "ArrayChannel",
434
+ "kind": "value",
435
+ "module": "notification"
436
+ },
437
+ {
438
+ "name": "ArrayTransport",
439
+ "kind": "value",
440
+ "module": "mail"
441
+ },
442
+ {
443
+ "name": "Attachment",
444
+ "kind": "type",
445
+ "module": "mail"
446
+ },
447
+ {
448
+ "name": "Attributes",
449
+ "kind": "type",
450
+ "module": "transformer"
451
+ },
452
+ {
453
+ "name": "AttrValue",
454
+ "kind": "type",
455
+ "module": "vite"
456
+ },
457
+ {
458
+ "name": "auth",
459
+ "kind": "value",
460
+ "module": "auth"
461
+ },
462
+ {
463
+ "name": "Auth",
464
+ "kind": "value",
465
+ "module": "auth"
466
+ },
467
+ {
468
+ "name": "authGuard",
469
+ "kind": "value",
470
+ "module": "auth"
471
+ },
472
+ {
473
+ "name": "authorize",
474
+ "kind": "value",
475
+ "module": "authorization"
476
+ },
477
+ {
478
+ "name": "authorizeChannel",
479
+ "kind": "value",
480
+ "module": "broadcasting"
481
+ },
482
+ {
483
+ "name": "authorizeFor",
484
+ "kind": "value",
485
+ "module": "authorization"
486
+ },
487
+ {
488
+ "name": "Backoff",
489
+ "kind": "type",
490
+ "module": "queue"
491
+ },
492
+ {
493
+ "name": "BadGatewayException",
494
+ "kind": "value",
495
+ "module": "exceptions"
496
+ },
497
+ {
498
+ "name": "BadRequestException",
499
+ "kind": "value",
500
+ "module": "exceptions"
501
+ },
502
+ {
503
+ "name": "BaseCheck",
504
+ "kind": "value",
505
+ "module": "health"
506
+ },
507
+ {
508
+ "name": "BaseMail",
509
+ "kind": "value",
510
+ "module": "mail"
511
+ },
512
+ {
513
+ "name": "basicAuth",
514
+ "kind": "value",
515
+ "module": "auth"
516
+ },
517
+ {
518
+ "name": "BasicVerifier",
519
+ "kind": "type",
520
+ "module": "auth"
521
+ },
522
+ {
523
+ "name": "bearerAuth",
524
+ "kind": "value",
525
+ "module": "auth"
526
+ },
527
+ {
528
+ "name": "BeforeCallback",
529
+ "kind": "type",
530
+ "module": "authorization"
531
+ },
532
+ {
533
+ "name": "BeforeHook",
534
+ "kind": "type",
535
+ "module": "broker"
536
+ },
537
+ {
538
+ "name": "BelongsTo",
539
+ "kind": "value",
540
+ "module": "relations"
541
+ },
542
+ {
543
+ "name": "BelongsToMany",
544
+ "kind": "value",
545
+ "module": "relations"
546
+ },
547
+ {
548
+ "name": "bind",
549
+ "kind": "value",
550
+ "module": "helpers"
551
+ },
552
+ {
553
+ "name": "body",
554
+ "kind": "value",
555
+ "module": "request"
556
+ },
557
+ {
558
+ "name": "BootOptions",
559
+ "kind": "type",
560
+ "module": "application"
561
+ },
562
+ {
563
+ "name": "bound",
564
+ "kind": "value",
565
+ "module": "helpers"
566
+ },
567
+ {
568
+ "name": "broadcast",
569
+ "kind": "value",
570
+ "module": "broadcasting"
571
+ },
572
+ {
573
+ "name": "Broadcaster",
574
+ "kind": "type",
575
+ "module": "broadcasting"
576
+ },
577
+ {
578
+ "name": "broker",
579
+ "kind": "value",
580
+ "module": "broker"
581
+ },
582
+ {
583
+ "name": "Broker",
584
+ "kind": "value",
585
+ "module": "broker"
586
+ },
587
+ {
588
+ "name": "BrokerMiddleware",
589
+ "kind": "type",
590
+ "module": "broker"
591
+ },
592
+ {
593
+ "name": "BrokerOptions",
594
+ "kind": "type",
595
+ "module": "broker"
596
+ },
597
+ {
598
+ "name": "cache",
599
+ "kind": "value",
600
+ "module": "helpers"
601
+ },
602
+ {
603
+ "name": "Cache",
604
+ "kind": "value",
605
+ "module": "cache"
606
+ },
607
+ {
608
+ "name": "CacheCheck",
609
+ "kind": "value",
610
+ "module": "health"
611
+ },
612
+ {
613
+ "name": "CacheStore",
614
+ "kind": "type",
615
+ "module": "cache"
616
+ },
617
+ {
618
+ "name": "CallOptions",
619
+ "kind": "type",
620
+ "module": "broker"
621
+ },
622
+ {
623
+ "name": "can",
624
+ "kind": "value",
625
+ "module": "authorization"
626
+ },
627
+ {
628
+ "name": "canFor",
629
+ "kind": "value",
630
+ "module": "authorization"
631
+ },
632
+ {
633
+ "name": "cannot",
634
+ "kind": "value",
635
+ "module": "authorization"
636
+ },
637
+ {
638
+ "name": "Casts",
639
+ "kind": "type",
640
+ "module": "casts"
641
+ },
642
+ {
643
+ "name": "CastType",
644
+ "kind": "type",
645
+ "module": "casts"
646
+ },
647
+ {
648
+ "name": "Channel",
649
+ "kind": "type",
650
+ "module": "notification"
651
+ },
652
+ {
653
+ "name": "channelAuth",
654
+ "kind": "value",
655
+ "module": "broadcasting"
656
+ },
657
+ {
658
+ "name": "ChannelAuthorizer",
659
+ "kind": "type",
660
+ "module": "broadcasting"
661
+ },
662
+ {
663
+ "name": "check",
664
+ "kind": "value",
665
+ "module": "health"
666
+ },
667
+ {
668
+ "name": "CheckReport",
669
+ "kind": "type",
670
+ "module": "health"
671
+ },
672
+ {
673
+ "name": "clearAuthorization",
674
+ "kind": "value",
675
+ "module": "authorization"
676
+ },
677
+ {
678
+ "name": "clearChannels",
679
+ "kind": "value",
680
+ "module": "broadcasting"
681
+ },
682
+ {
683
+ "name": "clearConnections",
684
+ "kind": "value",
685
+ "module": "database"
686
+ },
687
+ {
688
+ "name": "clearRequestDecorators",
689
+ "kind": "value",
690
+ "module": "decorators"
691
+ },
692
+ {
693
+ "name": "Column",
694
+ "kind": "value",
695
+ "module": "migrations"
696
+ },
697
+ {
698
+ "name": "config",
699
+ "kind": "value",
700
+ "module": "helpers"
701
+ },
702
+ {
703
+ "name": "Config",
704
+ "kind": "value",
705
+ "module": "config"
706
+ },
707
+ {
708
+ "name": "ConfigData",
709
+ "kind": "type",
710
+ "module": "config"
711
+ },
712
+ {
713
+ "name": "Configurator",
714
+ "kind": "type",
715
+ "module": "application"
716
+ },
717
+ {
718
+ "name": "ConflictException",
719
+ "kind": "value",
720
+ "module": "exceptions"
721
+ },
722
+ {
723
+ "name": "connection",
724
+ "kind": "value",
725
+ "module": "database"
726
+ },
727
+ {
728
+ "name": "Connection",
729
+ "kind": "type",
730
+ "module": "database"
731
+ },
732
+ {
733
+ "name": "ConnectionHandle",
734
+ "kind": "type",
735
+ "module": "database"
736
+ },
737
+ {
738
+ "name": "connectionNames",
739
+ "kind": "value",
740
+ "module": "database"
741
+ },
742
+ {
743
+ "name": "consoleSink",
744
+ "kind": "value",
745
+ "module": "logger"
746
+ },
747
+ {
748
+ "name": "Constructor",
749
+ "kind": "type",
750
+ "module": "container"
751
+ },
752
+ {
753
+ "name": "Container",
754
+ "kind": "value",
755
+ "module": "container"
756
+ },
757
+ {
758
+ "name": "Contents",
759
+ "kind": "type",
760
+ "module": "storage"
761
+ },
762
+ {
763
+ "name": "contentTypeFor",
764
+ "kind": "value",
765
+ "module": "storage"
766
+ },
767
+ {
768
+ "name": "Context",
769
+ "kind": "type",
770
+ "module": "broker"
771
+ },
772
+ {
773
+ "name": "cors",
774
+ "kind": "value",
775
+ "module": "cors"
776
+ },
777
+ {
778
+ "name": "CorsOptions",
779
+ "kind": "type",
780
+ "module": "cors"
781
+ },
782
+ {
783
+ "name": "createError",
784
+ "kind": "value",
785
+ "module": "exceptions"
786
+ },
787
+ {
788
+ "name": "createToken",
789
+ "kind": "value",
790
+ "module": "tokens"
791
+ },
792
+ {
793
+ "name": "CreateTokenOptions",
794
+ "kind": "type",
795
+ "module": "tokens"
796
+ },
797
+ {
798
+ "name": "cronMatches",
799
+ "kind": "value",
800
+ "module": "scheduler"
801
+ },
802
+ {
803
+ "name": "csrf",
804
+ "kind": "value",
805
+ "module": "csrf"
806
+ },
807
+ {
808
+ "name": "csrfField",
809
+ "kind": "value",
810
+ "module": "csrf"
811
+ },
812
+ {
813
+ "name": "CsrfOptions",
814
+ "kind": "type",
815
+ "module": "csrf"
816
+ },
817
+ {
818
+ "name": "csrfToken",
819
+ "kind": "value",
820
+ "module": "csrf"
821
+ },
822
+ {
823
+ "name": "ctx",
824
+ "kind": "value",
825
+ "module": "request"
826
+ },
827
+ {
828
+ "name": "Ctx",
829
+ "kind": "type",
830
+ "module": "http/router"
831
+ },
832
+ {
833
+ "name": "DatabaseChannel",
834
+ "kind": "value",
835
+ "module": "notification"
836
+ },
837
+ {
838
+ "name": "DatabaseCheck",
839
+ "kind": "value",
840
+ "module": "health"
841
+ },
842
+ {
843
+ "name": "db",
844
+ "kind": "value",
845
+ "module": "database"
846
+ },
847
+ {
848
+ "name": "dd",
849
+ "kind": "value",
850
+ "module": "debug"
851
+ },
852
+ {
853
+ "name": "decorated",
854
+ "kind": "value",
855
+ "module": "decorators"
856
+ },
857
+ {
858
+ "name": "decorateRequest",
859
+ "kind": "value",
860
+ "module": "decorators"
861
+ },
862
+ {
863
+ "name": "define",
864
+ "kind": "value",
865
+ "module": "authorization"
866
+ },
867
+ {
868
+ "name": "Definition",
869
+ "kind": "type",
870
+ "module": "factory"
871
+ },
872
+ {
873
+ "name": "Dialect",
874
+ "kind": "type",
875
+ "module": "database"
876
+ },
877
+ {
878
+ "name": "discord",
879
+ "kind": "value",
880
+ "module": "social"
881
+ },
882
+ {
883
+ "name": "Disk",
884
+ "kind": "type",
885
+ "module": "storage"
886
+ },
887
+ {
888
+ "name": "dispatch",
889
+ "kind": "value",
890
+ "module": "queue"
891
+ },
892
+ {
893
+ "name": "Dispatchable",
894
+ "kind": "type",
895
+ "module": "queue"
896
+ },
897
+ {
898
+ "name": "DocumentOptions",
899
+ "kind": "type",
900
+ "module": "transformer"
901
+ },
902
+ {
903
+ "name": "Drainable",
904
+ "kind": "type",
905
+ "module": "queue"
906
+ },
907
+ {
908
+ "name": "dump",
909
+ "kind": "value",
910
+ "module": "debug"
911
+ },
912
+ {
913
+ "name": "emit",
914
+ "kind": "value",
915
+ "module": "helpers"
916
+ },
917
+ {
918
+ "name": "EmitOptions",
919
+ "kind": "type",
920
+ "module": "broker"
921
+ },
922
+ {
923
+ "name": "encryption",
924
+ "kind": "value",
925
+ "module": "crypto"
926
+ },
927
+ {
928
+ "name": "EncryptOptions",
929
+ "kind": "type",
930
+ "module": "crypto"
931
+ },
932
+ {
933
+ "name": "env",
934
+ "kind": "value",
935
+ "module": "config"
936
+ },
937
+ {
938
+ "name": "ErrorHandler",
939
+ "kind": "type",
940
+ "module": "events"
941
+ },
942
+ {
943
+ "name": "ErrorHook",
944
+ "kind": "type",
945
+ "module": "broker"
946
+ },
947
+ {
948
+ "name": "escapeHtml",
949
+ "kind": "value",
950
+ "module": "template"
951
+ },
952
+ {
953
+ "name": "EventBuffer",
954
+ "kind": "value",
955
+ "module": "events"
956
+ },
957
+ {
958
+ "name": "EventHandler",
959
+ "kind": "type",
960
+ "module": "broker"
961
+ },
962
+ {
963
+ "name": "EventName",
964
+ "kind": "type",
965
+ "module": "events"
966
+ },
967
+ {
968
+ "name": "events",
969
+ "kind": "value",
970
+ "module": "helpers"
971
+ },
972
+ {
973
+ "name": "Events",
974
+ "kind": "value",
975
+ "module": "events"
976
+ },
977
+ {
978
+ "name": "EventSchema",
979
+ "kind": "type",
980
+ "module": "broker"
981
+ },
982
+ {
983
+ "name": "EventsList",
984
+ "kind": "type",
985
+ "module": "events"
986
+ },
987
+ {
988
+ "name": "EventType",
989
+ "kind": "type",
990
+ "module": "broker"
991
+ },
992
+ {
993
+ "name": "exponentialBackoff",
994
+ "kind": "value",
995
+ "module": "queue"
996
+ },
997
+ {
998
+ "name": "factory",
999
+ "kind": "value",
1000
+ "module": "factory"
1001
+ },
1002
+ {
1003
+ "name": "Factory",
1004
+ "kind": "type",
1005
+ "module": "container"
1006
+ },
1007
+ {
1008
+ "name": "FailedJob",
1009
+ "kind": "type",
1010
+ "module": "queue"
1011
+ },
1012
+ {
1013
+ "name": "fakeDisk",
1014
+ "kind": "value",
1015
+ "module": "storage"
1016
+ },
1017
+ {
1018
+ "name": "fakeMail",
1019
+ "kind": "value",
1020
+ "module": "mail"
1021
+ },
1022
+ {
1023
+ "name": "FakeMailer",
1024
+ "kind": "value",
1025
+ "module": "mail"
1026
+ },
1027
+ {
1028
+ "name": "fakeQueue",
1029
+ "kind": "value",
1030
+ "module": "queue"
1031
+ },
1032
+ {
1033
+ "name": "FakeQueue",
1034
+ "kind": "value",
1035
+ "module": "queue"
1036
+ },
1037
+ {
1038
+ "name": "Faker",
1039
+ "kind": "value",
1040
+ "module": "factory"
1041
+ },
1042
+ {
1043
+ "name": "FakeStorage",
1044
+ "kind": "value",
1045
+ "module": "storage"
1046
+ },
1047
+ {
1048
+ "name": "fetchTransport",
1049
+ "kind": "value",
1050
+ "module": "mail"
1051
+ },
1052
+ {
1053
+ "name": "FetchTransportOptions",
1054
+ "kind": "type",
1055
+ "module": "mail"
1056
+ },
1057
+ {
1058
+ "name": "FileMetadata",
1059
+ "kind": "type",
1060
+ "module": "storage"
1061
+ },
1062
+ {
1063
+ "name": "FileVisibility",
1064
+ "kind": "type",
1065
+ "module": "storage"
1066
+ },
1067
+ {
1068
+ "name": "Filter",
1069
+ "kind": "type",
1070
+ "module": "template"
1071
+ },
1072
+ {
1073
+ "name": "fixedBackoff",
1074
+ "kind": "value",
1075
+ "module": "queue"
1076
+ },
1077
+ {
1078
+ "name": "ForbiddenException",
1079
+ "kind": "value",
1080
+ "module": "exceptions"
1081
+ },
1082
+ {
1083
+ "name": "gateAfter",
1084
+ "kind": "value",
1085
+ "module": "authorization"
1086
+ },
1087
+ {
1088
+ "name": "gateBefore",
1089
+ "kind": "value",
1090
+ "module": "authorization"
1091
+ },
1092
+ {
1093
+ "name": "GateCallback",
1094
+ "kind": "type",
1095
+ "module": "authorization"
1096
+ },
1097
+ {
1098
+ "name": "getBroadcaster",
1099
+ "kind": "value",
1100
+ "module": "broadcasting"
1101
+ },
1102
+ {
1103
+ "name": "getLockStore",
1104
+ "kind": "value",
1105
+ "module": "lock"
1106
+ },
1107
+ {
1108
+ "name": "getMailer",
1109
+ "kind": "value",
1110
+ "module": "mail"
1111
+ },
1112
+ {
1113
+ "name": "getNotifier",
1114
+ "kind": "value",
1115
+ "module": "notification"
1116
+ },
1117
+ {
1118
+ "name": "getQueue",
1119
+ "kind": "value",
1120
+ "module": "queue"
1121
+ },
1122
+ {
1123
+ "name": "github",
1124
+ "kind": "value",
1125
+ "module": "social"
1126
+ },
1127
+ {
1128
+ "name": "google",
1129
+ "kind": "value",
1130
+ "module": "social"
1131
+ },
1132
+ {
1133
+ "name": "hash",
1134
+ "kind": "value",
1135
+ "module": "crypto"
1136
+ },
1137
+ {
1138
+ "name": "HasMany",
1139
+ "kind": "value",
1140
+ "module": "relations"
1141
+ },
1142
+ {
1143
+ "name": "HasOne",
1144
+ "kind": "value",
1145
+ "module": "relations"
1146
+ },
1147
+ {
1148
+ "name": "hasRequestDecorator",
1149
+ "kind": "value",
1150
+ "module": "decorators"
1151
+ },
1152
+ {
1153
+ "name": "header",
1154
+ "kind": "value",
1155
+ "module": "request"
1156
+ },
1157
+ {
1158
+ "name": "health",
1159
+ "kind": "value",
1160
+ "module": "health"
1161
+ },
1162
+ {
1163
+ "name": "healthCheck",
1164
+ "kind": "value",
1165
+ "module": "health"
1166
+ },
1167
+ {
1168
+ "name": "HealthCheckOptions",
1169
+ "kind": "type",
1170
+ "module": "health"
1171
+ },
1172
+ {
1173
+ "name": "HealthChecks",
1174
+ "kind": "value",
1175
+ "module": "health"
1176
+ },
1177
+ {
1178
+ "name": "HealthReport",
1179
+ "kind": "type",
1180
+ "module": "health"
1181
+ },
1182
+ {
1183
+ "name": "HealthStatus",
1184
+ "kind": "type",
1185
+ "module": "health"
1186
+ },
1187
+ {
1188
+ "name": "HstsOptions",
1189
+ "kind": "type",
1190
+ "module": "shield"
1191
+ },
1192
+ {
1193
+ "name": "html",
1194
+ "kind": "value",
1195
+ "module": "request"
1196
+ },
1197
+ {
1198
+ "name": "HttpException",
1199
+ "kind": "value",
1200
+ "module": "exceptions"
1201
+ },
1202
+ {
1203
+ "name": "HttpKernel",
1204
+ "kind": "value",
1205
+ "module": "http/kernel"
1206
+ },
1207
+ {
1208
+ "name": "inertia",
1209
+ "kind": "value",
1210
+ "module": "inertia"
1211
+ },
1212
+ {
1213
+ "name": "Inertia",
1214
+ "kind": "value",
1215
+ "module": "inertia"
1216
+ },
1217
+ {
1218
+ "name": "InertiaOptions",
1219
+ "kind": "type",
1220
+ "module": "inertia"
1221
+ },
1222
+ {
1223
+ "name": "InertiaPage",
1224
+ "kind": "type",
1225
+ "module": "inertia"
1226
+ },
1227
+ {
1228
+ "name": "inertiaPageAttr",
1229
+ "kind": "value",
1230
+ "module": "inertia"
1231
+ },
1232
+ {
1233
+ "name": "instance",
1234
+ "kind": "value",
1235
+ "module": "helpers"
1236
+ },
1237
+ {
1238
+ "name": "IssuedToken",
1239
+ "kind": "type",
1240
+ "module": "tokens"
1241
+ },
1242
+ {
1243
+ "name": "Job",
1244
+ "kind": "value",
1245
+ "module": "queue"
1246
+ },
1247
+ {
1248
+ "name": "JobClass",
1249
+ "kind": "type",
1250
+ "module": "queue"
1251
+ },
1252
+ {
1253
+ "name": "JobContext",
1254
+ "kind": "type",
1255
+ "module": "queue"
1256
+ },
1257
+ {
1258
+ "name": "JobOptions",
1259
+ "kind": "type",
1260
+ "module": "queue"
1261
+ },
1262
+ {
1263
+ "name": "json",
1264
+ "kind": "value",
1265
+ "module": "request"
1266
+ },
1267
+ {
1268
+ "name": "jwt",
1269
+ "kind": "value",
1270
+ "module": "crypto"
1271
+ },
1272
+ {
1273
+ "name": "JwtPayload",
1274
+ "kind": "type",
1275
+ "module": "crypto"
1276
+ },
1277
+ {
1278
+ "name": "JwtSignOptions",
1279
+ "kind": "type",
1280
+ "module": "crypto"
1281
+ },
1282
+ {
1283
+ "name": "JwtVerifyOptions",
1284
+ "kind": "type",
1285
+ "module": "crypto"
1286
+ },
1287
+ {
1288
+ "name": "LengthRequiredException",
1289
+ "kind": "value",
1290
+ "module": "exceptions"
1291
+ },
1292
+ {
1293
+ "name": "LifecycleHook",
1294
+ "kind": "type",
1295
+ "module": "application"
1296
+ },
1297
+ {
1298
+ "name": "linearBackoff",
1299
+ "kind": "value",
1300
+ "module": "queue"
1301
+ },
1302
+ {
1303
+ "name": "listen",
1304
+ "kind": "value",
1305
+ "module": "helpers"
1306
+ },
1307
+ {
1308
+ "name": "Listener",
1309
+ "kind": "type",
1310
+ "module": "events"
1311
+ },
1312
+ {
1313
+ "name": "listTokens",
1314
+ "kind": "value",
1315
+ "module": "tokens"
1316
+ },
1317
+ {
1318
+ "name": "LocalTransporter",
1319
+ "kind": "value",
1320
+ "module": "broker"
1321
+ },
1322
+ {
1323
+ "name": "lock",
1324
+ "kind": "value",
1325
+ "module": "lock"
1326
+ },
1327
+ {
1328
+ "name": "Lock",
1329
+ "kind": "value",
1330
+ "module": "lock"
1331
+ },
1332
+ {
1333
+ "name": "LockNotHeldError",
1334
+ "kind": "value",
1335
+ "module": "lock"
1336
+ },
1337
+ {
1338
+ "name": "LockStore",
1339
+ "kind": "type",
1340
+ "module": "lock"
1341
+ },
1342
+ {
1343
+ "name": "logger",
1344
+ "kind": "value",
1345
+ "module": "helpers"
1346
+ },
1347
+ {
1348
+ "name": "Logger",
1349
+ "kind": "value",
1350
+ "module": "logger"
1351
+ },
1352
+ {
1353
+ "name": "LoggerOptions",
1354
+ "kind": "type",
1355
+ "module": "logger"
1356
+ },
1357
+ {
1358
+ "name": "LogLevel",
1359
+ "kind": "type",
1360
+ "module": "logger"
1361
+ },
1362
+ {
1363
+ "name": "LogRecord",
1364
+ "kind": "type",
1365
+ "module": "logger"
1366
+ },
1367
+ {
1368
+ "name": "LogTransport",
1369
+ "kind": "value",
1370
+ "module": "mail"
1371
+ },
1372
+ {
1373
+ "name": "mail",
1374
+ "kind": "value",
1375
+ "module": "mail"
1376
+ },
1377
+ {
1378
+ "name": "MailChannel",
1379
+ "kind": "value",
1380
+ "module": "notification"
1381
+ },
1382
+ {
1383
+ "name": "MailContent",
1384
+ "kind": "type",
1385
+ "module": "notification"
1386
+ },
1387
+ {
1388
+ "name": "mailer",
1389
+ "kind": "value",
1390
+ "module": "mail"
1391
+ },
1392
+ {
1393
+ "name": "Mailer",
1394
+ "kind": "value",
1395
+ "module": "mail"
1396
+ },
1397
+ {
1398
+ "name": "MailerOptions",
1399
+ "kind": "type",
1400
+ "module": "mail"
1401
+ },
1402
+ {
1403
+ "name": "make",
1404
+ "kind": "value",
1405
+ "module": "helpers"
1406
+ },
1407
+ {
1408
+ "name": "Manifest",
1409
+ "kind": "type",
1410
+ "module": "vite"
1411
+ },
1412
+ {
1413
+ "name": "ManifestChunk",
1414
+ "kind": "type",
1415
+ "module": "vite"
1416
+ },
1417
+ {
1418
+ "name": "Matcher",
1419
+ "kind": "type",
1420
+ "module": "http/router"
1421
+ },
1422
+ {
1423
+ "name": "matchers",
1424
+ "kind": "value",
1425
+ "module": "http/router"
1426
+ },
1427
+ {
1428
+ "name": "MCallDefs",
1429
+ "kind": "type",
1430
+ "module": "broker"
1431
+ },
1432
+ {
1433
+ "name": "MCallOptions",
1434
+ "kind": "type",
1435
+ "module": "broker"
1436
+ },
1437
+ {
1438
+ "name": "MemoryBroadcaster",
1439
+ "kind": "value",
1440
+ "module": "broadcasting"
1441
+ },
1442
+ {
1443
+ "name": "MemoryDisk",
1444
+ "kind": "value",
1445
+ "module": "storage"
1446
+ },
1447
+ {
1448
+ "name": "MemoryDriver",
1449
+ "kind": "value",
1450
+ "module": "queue"
1451
+ },
1452
+ {
1453
+ "name": "MemoryLockStore",
1454
+ "kind": "value",
1455
+ "module": "lock"
1456
+ },
1457
+ {
1458
+ "name": "MemoryRedis",
1459
+ "kind": "value",
1460
+ "module": "redis"
1461
+ },
1462
+ {
1463
+ "name": "MemorySink",
1464
+ "kind": "value",
1465
+ "module": "logger"
1466
+ },
1467
+ {
1468
+ "name": "MemoryStore",
1469
+ "kind": "value",
1470
+ "module": "cache"
1471
+ },
1472
+ {
1473
+ "name": "Message",
1474
+ "kind": "type",
1475
+ "module": "mail"
1476
+ },
1477
+ {
1478
+ "name": "Method",
1479
+ "kind": "type",
1480
+ "module": "http/router"
1481
+ },
1482
+ {
1483
+ "name": "MethodNotAllowedException",
1484
+ "kind": "value",
1485
+ "module": "exceptions"
1486
+ },
1487
+ {
1488
+ "name": "MiddlewareRef",
1489
+ "kind": "type",
1490
+ "module": "http/router"
1491
+ },
1492
+ {
1493
+ "name": "Migration",
1494
+ "kind": "type",
1495
+ "module": "migrations"
1496
+ },
1497
+ {
1498
+ "name": "Migrator",
1499
+ "kind": "value",
1500
+ "module": "migrations"
1501
+ },
1502
+ {
1503
+ "name": "Model",
1504
+ "kind": "value",
1505
+ "module": "model"
1506
+ },
1507
+ {
1508
+ "name": "ModelFactory",
1509
+ "kind": "value",
1510
+ "module": "factory"
1511
+ },
1512
+ {
1513
+ "name": "namedLogger",
1514
+ "kind": "value",
1515
+ "module": "logger"
1516
+ },
1517
+ {
1518
+ "name": "noBackoff",
1519
+ "kind": "value",
1520
+ "module": "queue"
1521
+ },
1522
+ {
1523
+ "name": "NotAcceptableException",
1524
+ "kind": "value",
1525
+ "module": "exceptions"
1526
+ },
1527
+ {
1528
+ "name": "NotFoundException",
1529
+ "kind": "value",
1530
+ "module": "exceptions"
1531
+ },
1532
+ {
1533
+ "name": "Notifiable",
1534
+ "kind": "type",
1535
+ "module": "notification"
1536
+ },
1537
+ {
1538
+ "name": "Notification",
1539
+ "kind": "value",
1540
+ "module": "notification"
1541
+ },
1542
+ {
1543
+ "name": "Notifier",
1544
+ "kind": "value",
1545
+ "module": "notification"
1546
+ },
1547
+ {
1548
+ "name": "notify",
1549
+ "kind": "value",
1550
+ "module": "notification"
1551
+ },
1552
+ {
1553
+ "name": "NotImplementedException",
1554
+ "kind": "value",
1555
+ "module": "exceptions"
1556
+ },
1557
+ {
1558
+ "name": "OAuth1Config",
1559
+ "kind": "type",
1560
+ "module": "social"
1561
+ },
1562
+ {
1563
+ "name": "oauth1Driver",
1564
+ "kind": "value",
1565
+ "module": "social"
1566
+ },
1567
+ {
1568
+ "name": "OAuth1Driver",
1569
+ "kind": "value",
1570
+ "module": "social"
1571
+ },
1572
+ {
1573
+ "name": "OAuth1ProviderSpec",
1574
+ "kind": "type",
1575
+ "module": "social"
1576
+ },
1577
+ {
1578
+ "name": "oauth1Signature",
1579
+ "kind": "value",
1580
+ "module": "social"
1581
+ },
1582
+ {
1583
+ "name": "OAuth1Token",
1584
+ "kind": "type",
1585
+ "module": "social"
1586
+ },
1587
+ {
1588
+ "name": "OAuthConfig",
1589
+ "kind": "type",
1590
+ "module": "social"
1591
+ },
1592
+ {
1593
+ "name": "oauthDriver",
1594
+ "kind": "value",
1595
+ "module": "social"
1596
+ },
1597
+ {
1598
+ "name": "OAuthDriver",
1599
+ "kind": "value",
1600
+ "module": "social"
1601
+ },
1602
+ {
1603
+ "name": "OAuthError",
1604
+ "kind": "value",
1605
+ "module": "social"
1606
+ },
1607
+ {
1608
+ "name": "oauthState",
1609
+ "kind": "value",
1610
+ "module": "social"
1611
+ },
1612
+ {
1613
+ "name": "OAuthToken",
1614
+ "kind": "type",
1615
+ "module": "social"
1616
+ },
1617
+ {
1618
+ "name": "onReady",
1619
+ "kind": "value",
1620
+ "module": "helpers"
1621
+ },
1622
+ {
1623
+ "name": "onShutdown",
1624
+ "kind": "value",
1625
+ "module": "helpers"
1626
+ },
1627
+ {
1628
+ "name": "Operator",
1629
+ "kind": "type",
1630
+ "module": "database"
1631
+ },
1632
+ {
1633
+ "name": "Paginated",
1634
+ "kind": "type",
1635
+ "module": "database"
1636
+ },
1637
+ {
1638
+ "name": "param",
1639
+ "kind": "value",
1640
+ "module": "request"
1641
+ },
1642
+ {
1643
+ "name": "PayloadOf",
1644
+ "kind": "type",
1645
+ "module": "events"
1646
+ },
1647
+ {
1648
+ "name": "PaymentRequiredException",
1649
+ "kind": "value",
1650
+ "module": "exceptions"
1651
+ },
1652
+ {
1653
+ "name": "PendingMail",
1654
+ "kind": "value",
1655
+ "module": "mail"
1656
+ },
1657
+ {
1658
+ "name": "policy",
1659
+ "kind": "value",
1660
+ "module": "authorization"
1661
+ },
1662
+ {
1663
+ "name": "ProviderClass",
1664
+ "kind": "type",
1665
+ "module": "provider"
1666
+ },
1667
+ {
1668
+ "name": "ProviderSpec",
1669
+ "kind": "type",
1670
+ "module": "social"
1671
+ },
1672
+ {
1673
+ "name": "PutOptions",
1674
+ "kind": "type",
1675
+ "module": "cache"
1676
+ },
1677
+ {
1678
+ "name": "query",
1679
+ "kind": "value",
1680
+ "module": "request"
1681
+ },
1682
+ {
1683
+ "name": "QueryBuilder",
1684
+ "kind": "value",
1685
+ "module": "database"
1686
+ },
1687
+ {
1688
+ "name": "Queue",
1689
+ "kind": "value",
1690
+ "module": "queue"
1691
+ },
1692
+ {
1693
+ "name": "QueuedJob",
1694
+ "kind": "type",
1695
+ "module": "queue"
1696
+ },
1697
+ {
1698
+ "name": "QueueDriver",
1699
+ "kind": "type",
1700
+ "module": "queue"
1701
+ },
1702
+ {
1703
+ "name": "rateLimiter",
1704
+ "kind": "value",
1705
+ "module": "rate-limit"
1706
+ },
1707
+ {
1708
+ "name": "RateLimiterOptions",
1709
+ "kind": "type",
1710
+ "module": "rate-limit"
1711
+ },
1712
+ {
1713
+ "name": "RecordedEvent",
1714
+ "kind": "type",
1715
+ "module": "events"
1716
+ },
1717
+ {
1718
+ "name": "RecordedMail",
1719
+ "kind": "type",
1720
+ "module": "mail"
1721
+ },
1722
+ {
1723
+ "name": "RedactOptions",
1724
+ "kind": "type",
1725
+ "module": "logger"
1726
+ },
1727
+ {
1728
+ "name": "redirect",
1729
+ "kind": "value",
1730
+ "module": "request"
1731
+ },
1732
+ {
1733
+ "name": "RedirectOptions",
1734
+ "kind": "type",
1735
+ "module": "social"
1736
+ },
1737
+ {
1738
+ "name": "redis",
1739
+ "kind": "value",
1740
+ "module": "redis"
1741
+ },
1742
+ {
1743
+ "name": "Redis",
1744
+ "kind": "value",
1745
+ "module": "redis"
1746
+ },
1747
+ {
1748
+ "name": "RedisCheck",
1749
+ "kind": "value",
1750
+ "module": "health"
1751
+ },
1752
+ {
1753
+ "name": "RedisConnection",
1754
+ "kind": "type",
1755
+ "module": "redis"
1756
+ },
1757
+ {
1758
+ "name": "redisStore",
1759
+ "kind": "value",
1760
+ "module": "redis"
1761
+ },
1762
+ {
1763
+ "name": "Relation",
1764
+ "kind": "value",
1765
+ "module": "relations"
1766
+ },
1767
+ {
1768
+ "name": "RememberOptions",
1769
+ "kind": "type",
1770
+ "module": "cache"
1771
+ },
1772
+ {
1773
+ "name": "render",
1774
+ "kind": "value",
1775
+ "module": "template"
1776
+ },
1777
+ {
1778
+ "name": "Renderable",
1779
+ "kind": "type",
1780
+ "module": "view"
1781
+ },
1782
+ {
1783
+ "name": "RenderContext",
1784
+ "kind": "type",
1785
+ "module": "template"
1786
+ },
1787
+ {
1788
+ "name": "request",
1789
+ "kind": "value",
1790
+ "module": "request"
1791
+ },
1792
+ {
1793
+ "name": "requestLog",
1794
+ "kind": "value",
1795
+ "module": "request-logger"
1796
+ },
1797
+ {
1798
+ "name": "requestLogger",
1799
+ "kind": "value",
1800
+ "module": "request-logger"
1801
+ },
1802
+ {
1803
+ "name": "RequestLoggerOptions",
1804
+ "kind": "type",
1805
+ "module": "request-logger"
1806
+ },
1807
+ {
1808
+ "name": "RequestResolver",
1809
+ "kind": "type",
1810
+ "module": "decorators"
1811
+ },
1812
+ {
1813
+ "name": "RequestSchemas",
1814
+ "kind": "type",
1815
+ "module": "validation"
1816
+ },
1817
+ {
1818
+ "name": "RequestTimeoutError",
1819
+ "kind": "value",
1820
+ "module": "broker"
1821
+ },
1822
+ {
1823
+ "name": "RequestTimeoutException",
1824
+ "kind": "value",
1825
+ "module": "exceptions"
1826
+ },
1827
+ {
1828
+ "name": "response",
1829
+ "kind": "value",
1830
+ "module": "request"
1831
+ },
1832
+ {
1833
+ "name": "restore",
1834
+ "kind": "value",
1835
+ "module": "helpers"
1836
+ },
1837
+ {
1838
+ "name": "restoreDisk",
1839
+ "kind": "value",
1840
+ "module": "storage"
1841
+ },
1842
+ {
1843
+ "name": "restoreLock",
1844
+ "kind": "value",
1845
+ "module": "lock"
1846
+ },
1847
+ {
1848
+ "name": "restoreMail",
1849
+ "kind": "value",
1850
+ "module": "mail"
1851
+ },
1852
+ {
1853
+ "name": "restoreQueue",
1854
+ "kind": "value",
1855
+ "module": "queue"
1856
+ },
1857
+ {
1858
+ "name": "Result",
1859
+ "kind": "value",
1860
+ "module": "health"
1861
+ },
1862
+ {
1863
+ "name": "revokeToken",
1864
+ "kind": "value",
1865
+ "module": "tokens"
1866
+ },
1867
+ {
1868
+ "name": "revokeTokens",
1869
+ "kind": "value",
1870
+ "module": "tokens"
1871
+ },
1872
+ {
1873
+ "name": "Route",
1874
+ "kind": "value",
1875
+ "module": "http/router"
1876
+ },
1877
+ {
1878
+ "name": "RouteDefinition",
1879
+ "kind": "type",
1880
+ "module": "http/router"
1881
+ },
1882
+ {
1883
+ "name": "routeFor",
1884
+ "kind": "value",
1885
+ "module": "notification"
1886
+ },
1887
+ {
1888
+ "name": "RouteGroup",
1889
+ "kind": "value",
1890
+ "module": "http/router"
1891
+ },
1892
+ {
1893
+ "name": "RouteHandler",
1894
+ "kind": "type",
1895
+ "module": "http/router"
1896
+ },
1897
+ {
1898
+ "name": "Router",
1899
+ "kind": "value",
1900
+ "module": "http/router"
1901
+ },
1902
+ {
1903
+ "name": "RouteResource",
1904
+ "kind": "value",
1905
+ "module": "http/router"
1906
+ },
1907
+ {
1908
+ "name": "Row",
1909
+ "kind": "type",
1910
+ "module": "database"
1911
+ },
1912
+ {
1913
+ "name": "schedule",
1914
+ "kind": "value",
1915
+ "module": "scheduler"
1916
+ },
1917
+ {
1918
+ "name": "ScheduledTask",
1919
+ "kind": "value",
1920
+ "module": "scheduler"
1921
+ },
1922
+ {
1923
+ "name": "scheduler",
1924
+ "kind": "value",
1925
+ "module": "scheduler"
1926
+ },
1927
+ {
1928
+ "name": "Scheduler",
1929
+ "kind": "value",
1930
+ "module": "scheduler"
1931
+ },
1932
+ {
1933
+ "name": "Schema",
1934
+ "kind": "type",
1935
+ "module": "validation"
1936
+ },
1937
+ {
1938
+ "name": "SchemaBuilder",
1939
+ "kind": "value",
1940
+ "module": "migrations"
1941
+ },
1942
+ {
1943
+ "name": "securityHeaders",
1944
+ "kind": "value",
1945
+ "module": "shield"
1946
+ },
1947
+ {
1948
+ "name": "SecurityHeadersOptions",
1949
+ "kind": "type",
1950
+ "module": "shield"
1951
+ },
1952
+ {
1953
+ "name": "seed",
1954
+ "kind": "value",
1955
+ "module": "factory"
1956
+ },
1957
+ {
1958
+ "name": "Seeder",
1959
+ "kind": "value",
1960
+ "module": "factory"
1961
+ },
1962
+ {
1963
+ "name": "send",
1964
+ "kind": "value",
1965
+ "module": "mail"
1966
+ },
1967
+ {
1968
+ "name": "sendLater",
1969
+ "kind": "value",
1970
+ "module": "mail"
1971
+ },
1972
+ {
1973
+ "name": "SendMailJob",
1974
+ "kind": "value",
1975
+ "module": "mail"
1976
+ },
1977
+ {
1978
+ "name": "ServerErrorException",
1979
+ "kind": "value",
1980
+ "module": "exceptions"
1981
+ },
1982
+ {
1983
+ "name": "serveStatic",
1984
+ "kind": "value",
1985
+ "module": "static"
1986
+ },
1987
+ {
1988
+ "name": "serveStorage",
1989
+ "kind": "value",
1990
+ "module": "storage"
1991
+ },
1992
+ {
1993
+ "name": "ServeStorageOptions",
1994
+ "kind": "type",
1995
+ "module": "storage"
1996
+ },
1997
+ {
1998
+ "name": "Service",
1999
+ "kind": "value",
2000
+ "module": "broker"
2001
+ },
2002
+ {
2003
+ "name": "ServiceHooks",
2004
+ "kind": "type",
2005
+ "module": "broker"
2006
+ },
2007
+ {
2008
+ "name": "ServiceNotFoundError",
2009
+ "kind": "value",
2010
+ "module": "broker"
2011
+ },
2012
+ {
2013
+ "name": "ServiceProvider",
2014
+ "kind": "value",
2015
+ "module": "provider"
2016
+ },
2017
+ {
2018
+ "name": "ServiceSchema",
2019
+ "kind": "type",
2020
+ "module": "broker"
2021
+ },
2022
+ {
2023
+ "name": "ServiceUnavailableException",
2024
+ "kind": "value",
2025
+ "module": "exceptions"
2026
+ },
2027
+ {
2028
+ "name": "session",
2029
+ "kind": "value",
2030
+ "module": "session"
2031
+ },
2032
+ {
2033
+ "name": "Session",
2034
+ "kind": "value",
2035
+ "module": "session"
2036
+ },
2037
+ {
2038
+ "name": "sessionMiddleware",
2039
+ "kind": "value",
2040
+ "module": "session"
2041
+ },
2042
+ {
2043
+ "name": "SessionOptions",
2044
+ "kind": "type",
2045
+ "module": "session"
2046
+ },
2047
+ {
2048
+ "name": "setBroadcaster",
2049
+ "kind": "value",
2050
+ "module": "broadcasting"
2051
+ },
2052
+ {
2053
+ "name": "setBroker",
2054
+ "kind": "value",
2055
+ "module": "broker"
2056
+ },
2057
+ {
2058
+ "name": "setConnection",
2059
+ "kind": "value",
2060
+ "module": "database"
2061
+ },
2062
+ {
2063
+ "name": "setDefaultConnection",
2064
+ "kind": "value",
2065
+ "module": "database"
2066
+ },
2067
+ {
2068
+ "name": "setDisk",
2069
+ "kind": "value",
2070
+ "module": "storage"
2071
+ },
2072
+ {
2073
+ "name": "setLockStore",
2074
+ "kind": "value",
2075
+ "module": "lock"
2076
+ },
2077
+ {
2078
+ "name": "setLogger",
2079
+ "kind": "value",
2080
+ "module": "logger"
2081
+ },
2082
+ {
2083
+ "name": "setMailer",
2084
+ "kind": "value",
2085
+ "module": "mail"
2086
+ },
2087
+ {
2088
+ "name": "setNotifier",
2089
+ "kind": "value",
2090
+ "module": "notification"
2091
+ },
2092
+ {
2093
+ "name": "SetOptions",
2094
+ "kind": "type",
2095
+ "module": "redis"
2096
+ },
2097
+ {
2098
+ "name": "setQueue",
2099
+ "kind": "value",
2100
+ "module": "queue"
2101
+ },
2102
+ {
2103
+ "name": "setRedis",
2104
+ "kind": "value",
2105
+ "module": "redis"
2106
+ },
2107
+ {
2108
+ "name": "setRequestValue",
2109
+ "kind": "value",
2110
+ "module": "decorators"
2111
+ },
2112
+ {
2113
+ "name": "setScheduler",
2114
+ "kind": "value",
2115
+ "module": "scheduler"
2116
+ },
2117
+ {
2118
+ "name": "setTemplateEngine",
2119
+ "kind": "value",
2120
+ "module": "template"
2121
+ },
2122
+ {
2123
+ "name": "setTokensTable",
2124
+ "kind": "value",
2125
+ "module": "tokens"
2126
+ },
2127
+ {
2128
+ "name": "setUserProvider",
2129
+ "kind": "value",
2130
+ "module": "auth"
2131
+ },
2132
+ {
2133
+ "name": "setUserResolver",
2134
+ "kind": "value",
2135
+ "module": "authorization"
2136
+ },
2137
+ {
2138
+ "name": "SignedFileOptions",
2139
+ "kind": "type",
2140
+ "module": "storage"
2141
+ },
2142
+ {
2143
+ "name": "SignedUploadOptions",
2144
+ "kind": "type",
2145
+ "module": "storage"
2146
+ },
2147
+ {
2148
+ "name": "SignedUrlOptions",
2149
+ "kind": "type",
2150
+ "module": "http/router"
2151
+ },
2152
+ {
2153
+ "name": "signStorageUrl",
2154
+ "kind": "value",
2155
+ "module": "storage"
2156
+ },
2157
+ {
2158
+ "name": "singleton",
2159
+ "kind": "value",
2160
+ "module": "helpers"
2161
+ },
2162
+ {
2163
+ "name": "Sink",
2164
+ "kind": "type",
2165
+ "module": "logger"
2166
+ },
2167
+ {
2168
+ "name": "social",
2169
+ "kind": "value",
2170
+ "module": "social"
2171
+ },
2172
+ {
2173
+ "name": "SocialUser",
2174
+ "kind": "type",
2175
+ "module": "social"
2176
+ },
2177
+ {
2178
+ "name": "StaticOptions",
2179
+ "kind": "type",
2180
+ "module": "static"
2181
+ },
2182
+ {
2183
+ "name": "STATUS_TEXT",
2184
+ "kind": "value",
2185
+ "module": "exceptions"
2186
+ },
2187
+ {
2188
+ "name": "storage",
2189
+ "kind": "value",
2190
+ "module": "storage"
2191
+ },
2192
+ {
2193
+ "name": "Storage",
2194
+ "kind": "value",
2195
+ "module": "storage"
2196
+ },
2197
+ {
2198
+ "name": "Subscriber",
2199
+ "kind": "type",
2200
+ "module": "broadcasting"
2201
+ },
2202
+ {
2203
+ "name": "swap",
2204
+ "kind": "value",
2205
+ "module": "helpers"
2206
+ },
2207
+ {
2208
+ "name": "SyncDriver",
2209
+ "kind": "value",
2210
+ "module": "queue"
2211
+ },
2212
+ {
2213
+ "name": "TableBuilder",
2214
+ "kind": "value",
2215
+ "module": "migrations"
2216
+ },
2217
+ {
2218
+ "name": "TemplateEngine",
2219
+ "kind": "value",
2220
+ "module": "template"
2221
+ },
2222
+ {
2223
+ "name": "templates",
2224
+ "kind": "value",
2225
+ "module": "template"
2226
+ },
2227
+ {
2228
+ "name": "terminate",
2229
+ "kind": "value",
2230
+ "module": "helpers"
2231
+ },
2232
+ {
2233
+ "name": "testClient",
2234
+ "kind": "value",
2235
+ "module": "testing"
2236
+ },
2237
+ {
2238
+ "name": "TestClient",
2239
+ "kind": "value",
2240
+ "module": "testing"
2241
+ },
2242
+ {
2243
+ "name": "TestResponse",
2244
+ "kind": "value",
2245
+ "module": "testing"
2246
+ },
2247
+ {
2248
+ "name": "text",
2249
+ "kind": "value",
2250
+ "module": "request"
2251
+ },
2252
+ {
2253
+ "name": "token",
2254
+ "kind": "value",
2255
+ "module": "auth"
2256
+ },
2257
+ {
2258
+ "name": "Token",
2259
+ "kind": "type",
2260
+ "module": "container"
2261
+ },
2262
+ {
2263
+ "name": "tokenAllows",
2264
+ "kind": "value",
2265
+ "module": "tokens"
2266
+ },
2267
+ {
2268
+ "name": "tokenAuth",
2269
+ "kind": "value",
2270
+ "module": "auth"
2271
+ },
2272
+ {
2273
+ "name": "tokenCan",
2274
+ "kind": "value",
2275
+ "module": "auth"
2276
+ },
2277
+ {
2278
+ "name": "tokenDenies",
2279
+ "kind": "value",
2280
+ "module": "tokens"
2281
+ },
2282
+ {
2283
+ "name": "TooManyRequestsException",
2284
+ "kind": "value",
2285
+ "module": "exceptions"
2286
+ },
2287
+ {
2288
+ "name": "Transformer",
2289
+ "kind": "value",
2290
+ "module": "transformer"
2291
+ },
2292
+ {
2293
+ "name": "Transport",
2294
+ "kind": "type",
2295
+ "module": "mail"
2296
+ },
2297
+ {
2298
+ "name": "Transporter",
2299
+ "kind": "type",
2300
+ "module": "broker"
2301
+ },
2302
+ {
2303
+ "name": "twitter",
2304
+ "kind": "value",
2305
+ "module": "social"
2306
+ },
2307
+ {
2308
+ "name": "UnauthorizedException",
2309
+ "kind": "value",
2310
+ "module": "exceptions"
2311
+ },
2312
+ {
2313
+ "name": "UrlOptions",
2314
+ "kind": "type",
2315
+ "module": "http/router"
2316
+ },
2317
+ {
2318
+ "name": "UserProvider",
2319
+ "kind": "type",
2320
+ "module": "auth"
2321
+ },
2322
+ {
2323
+ "name": "validate",
2324
+ "kind": "value",
2325
+ "module": "validation"
2326
+ },
2327
+ {
2328
+ "name": "validated",
2329
+ "kind": "value",
2330
+ "module": "validation"
2331
+ },
2332
+ {
2333
+ "name": "validateRequest",
2334
+ "kind": "value",
2335
+ "module": "validation"
2336
+ },
2337
+ {
2338
+ "name": "ValidationException",
2339
+ "kind": "value",
2340
+ "module": "exceptions"
2341
+ },
2342
+ {
2343
+ "name": "verifyStorageUrl",
2344
+ "kind": "value",
2345
+ "module": "storage"
2346
+ },
2347
+ {
2348
+ "name": "verifyToken",
2349
+ "kind": "value",
2350
+ "module": "tokens"
2351
+ },
2352
+ {
2353
+ "name": "view",
2354
+ "kind": "value",
2355
+ "module": "helpers"
2356
+ },
2357
+ {
2358
+ "name": "View",
2359
+ "kind": "value",
2360
+ "module": "view"
2361
+ },
2362
+ {
2363
+ "name": "ViewConfig",
2364
+ "kind": "type",
2365
+ "module": "view"
2366
+ },
2367
+ {
2368
+ "name": "Visibility",
2369
+ "kind": "type",
2370
+ "module": "broker"
2371
+ },
2372
+ {
2373
+ "name": "Vite",
2374
+ "kind": "value",
2375
+ "module": "vite"
2376
+ },
2377
+ {
2378
+ "name": "viteAsset",
2379
+ "kind": "value",
2380
+ "module": "vite"
2381
+ },
2382
+ {
2383
+ "name": "ViteAttributes",
2384
+ "kind": "type",
2385
+ "module": "vite"
2386
+ },
2387
+ {
2388
+ "name": "ViteOptions",
2389
+ "kind": "type",
2390
+ "module": "vite"
2391
+ },
2392
+ {
2393
+ "name": "viteReactRefresh",
2394
+ "kind": "value",
2395
+ "module": "vite"
2396
+ },
2397
+ {
2398
+ "name": "viteTags",
2399
+ "kind": "value",
2400
+ "module": "vite"
2401
+ },
2402
+ {
2403
+ "name": "work",
2404
+ "kind": "value",
2405
+ "module": "queue"
2406
+ },
2407
+ {
2408
+ "name": "WriteOptions",
2409
+ "kind": "type",
2410
+ "module": "storage"
2411
+ },
2412
+ {
2413
+ "name": "WriteResult",
2414
+ "kind": "type",
2415
+ "module": "database"
2416
+ }
2417
+ ],
2418
+ "generators": [
2419
+ {
2420
+ "command": "make:controller <name>",
2421
+ "produces": "app/Controllers/<Name>Controller.ts",
2422
+ "flags": [
2423
+ "-r, --resource"
2424
+ ],
2425
+ "note": "A controller class resolved from the container. `-r` scaffolds all seven RESTful actions."
2426
+ },
2427
+ {
2428
+ "command": "make:provider <name>",
2429
+ "produces": "app/Providers/<Name>ServiceProvider.ts",
2430
+ "flags": [],
2431
+ "note": "A service provider with register()/boot() lifecycle hooks."
2432
+ },
2433
+ {
2434
+ "command": "make:middleware <name>",
2435
+ "produces": "app/Http/Middleware/<name>.ts",
2436
+ "flags": [],
2437
+ "note": "A Hono middleware handler (before/after next())."
2438
+ },
2439
+ {
2440
+ "command": "make:factory <model>",
2441
+ "produces": "database/factories/<Model>Factory.ts",
2442
+ "flags": [],
2443
+ "note": "A model factory for seeding/testing."
2444
+ },
2445
+ {
2446
+ "command": "make:seeder <name>",
2447
+ "produces": "database/seeders/<Name>Seeder.ts",
2448
+ "flags": [],
2449
+ "note": "A database seeder with an async run()."
2450
+ },
2451
+ {
2452
+ "command": "make:job <name>",
2453
+ "produces": "app/Jobs/<Name>Job.ts",
2454
+ "flags": [],
2455
+ "note": "A queued job with an async handle()."
2456
+ },
2457
+ {
2458
+ "command": "make:notification <name>",
2459
+ "produces": "app/Notifications/<Name>Notification.ts",
2460
+ "flags": [],
2461
+ "note": "A notification with via()/toMail()."
2462
+ },
2463
+ {
2464
+ "command": "make:transformer <name>",
2465
+ "produces": "app/Transformers/<Name>Transformer.ts",
2466
+ "flags": [
2467
+ "-m, --model <model>"
2468
+ ],
2469
+ "note": "An API transformer mapping a value to its serialized shape."
2470
+ }
2471
+ ]
2472
+ }