@veloxts/core 0.6.74 → 0.6.76

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @veloxts/core
2
2
 
3
+ ## 0.6.76
4
+
5
+ ### Patch Changes
6
+
7
+ - fix(create): resolve all template type errors for zero-error scaffolding
8
+
9
+ ## 0.6.75
10
+
11
+ ### Patch Changes
12
+
13
+ - feat(create): add --pm flag to skip package manager prompt
14
+
3
15
  ## 0.6.74
4
16
 
5
17
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -18,6 +18,7 @@
18
18
  import 'reflect-metadata';
19
19
  /** VeloxTS framework version */
20
20
  export declare const VELOX_VERSION: string;
21
+ export type { FastifyLoggerOptions, FastifyReply, FastifyRequest } from 'fastify';
21
22
  export type { StartOptions } from './app.js';
22
23
  export { VeloxApp, velox, veloxApp } from './app.js';
23
24
  export type { BaseContext } from './context.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloxts/core",
3
- "version": "0.6.74",
3
+ "version": "0.6.76",
4
4
  "description": "Fastify wrapper, DI container, and plugin system for VeloxTS framework",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",