@veloxts/velox 0.6.27 → 0.6.29

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 (3) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/GUIDE.md +2 -2
  3. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @veloxts/velox
2
2
 
3
+ ## 0.6.29
4
+
5
+ ### Patch Changes
6
+
7
+ - add multi-tenancy and PostgreSQL support - test and lint fix
8
+ - Updated dependencies
9
+ - @veloxts/auth@0.6.29
10
+ - @veloxts/core@0.6.29
11
+ - @veloxts/orm@0.6.29
12
+ - @veloxts/router@0.6.29
13
+ - @veloxts/validation@0.6.29
14
+
15
+ ## 0.6.28
16
+
17
+ ### Patch Changes
18
+
19
+ - add multi-tenancy support and postgresql database
20
+ - Updated dependencies
21
+ - @veloxts/auth@0.6.28
22
+ - @veloxts/core@0.6.28
23
+ - @veloxts/orm@0.6.28
24
+ - @veloxts/router@0.6.28
25
+ - @veloxts/validation@0.6.28
26
+
3
27
  ## 0.6.27
4
28
 
5
29
  ### Patch Changes
package/GUIDE.md CHANGED
@@ -16,11 +16,11 @@ Your API is running at `http://localhost:3030`.
16
16
  ## Basic Usage
17
17
 
18
18
  ```typescript
19
- import { veloxApp, procedure, defineProcedures, z } from '@veloxts/velox';
19
+ import { veloxApp, procedure, procedures, z } from '@veloxts/velox';
20
20
 
21
21
  const app = await veloxApp({ port: 3030 });
22
22
 
23
- const greetProcedures = defineProcedures('greet', {
23
+ const greetProcedures = procedures('greet', {
24
24
  sayHello: procedure()
25
25
  .input(z.object({ name: z.string() }))
26
26
  .query(({ input }) => `Hello, ${input.name}!`),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloxts/velox",
3
- "version": "0.6.27",
3
+ "version": "0.6.29",
4
4
  "description": "Complete VeloxTS framework - batteries included",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -39,11 +39,11 @@
39
39
  "CHANGELOG.md"
40
40
  ],
41
41
  "dependencies": {
42
- "@veloxts/core": "0.6.27",
43
- "@veloxts/validation": "0.6.27",
44
- "@veloxts/orm": "0.6.27",
45
- "@veloxts/router": "0.6.27",
46
- "@veloxts/auth": "0.6.27"
42
+ "@veloxts/core": "0.6.29",
43
+ "@veloxts/validation": "0.6.29",
44
+ "@veloxts/orm": "0.6.29",
45
+ "@veloxts/router": "0.6.29",
46
+ "@veloxts/auth": "0.6.29"
47
47
  },
48
48
  "devDependencies": {
49
49
  "typescript": "5.9.3"