vertz 0.2.59 → 0.2.61
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 +38 -0
- package/env.d.ts +27 -0
- package/package.json +19 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# vertz
|
|
2
2
|
|
|
3
|
+
## 0.2.61
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`7e2cbb5`](https://github.com/vertz-dev/vertz/commit/7e2cbb5fb742ce8bd0f5fac7c2e46a2e43b0b8ef), [`5d06b58`](https://github.com/vertz-dev/vertz/commit/5d06b58201a3f51bac591c78532727cd694e0483), [`6889e4d`](https://github.com/vertz-dev/vertz/commit/6889e4df58deca0e2cb44067bc5d070eba9e431b)]:
|
|
8
|
+
- @vertz/ui@0.2.61
|
|
9
|
+
- @vertz/ui-primitives@0.2.61
|
|
10
|
+
- @vertz/cli@0.2.61
|
|
11
|
+
- @vertz/server@0.2.61
|
|
12
|
+
- @vertz/testing@0.2.61
|
|
13
|
+
- @vertz/db@0.2.61
|
|
14
|
+
- @vertz/cloudflare@0.2.61
|
|
15
|
+
- @vertz/errors@0.2.61
|
|
16
|
+
- @vertz/fetch@0.2.61
|
|
17
|
+
- @vertz/schema@0.2.61
|
|
18
|
+
- @vertz/tui@0.2.61
|
|
19
|
+
- @vertz/ui-server@0.2.61
|
|
20
|
+
- @vertz/ui-auth@0.2.19
|
|
21
|
+
|
|
22
|
+
## 0.2.60
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies [[`8cc3a59`](https://github.com/vertz-dev/vertz/commit/8cc3a5994b11bbcbd2544238787516e8f293efc9)]:
|
|
27
|
+
- @vertz/server@0.2.60
|
|
28
|
+
- @vertz/cli@0.2.60
|
|
29
|
+
- @vertz/cloudflare@0.2.60
|
|
30
|
+
- @vertz/db@0.2.60
|
|
31
|
+
- @vertz/errors@0.2.60
|
|
32
|
+
- @vertz/fetch@0.2.60
|
|
33
|
+
- @vertz/schema@0.2.60
|
|
34
|
+
- @vertz/testing@0.2.60
|
|
35
|
+
- @vertz/tui@0.2.60
|
|
36
|
+
- @vertz/ui@0.2.60
|
|
37
|
+
- @vertz/ui-primitives@0.2.60
|
|
38
|
+
- @vertz/ui-server@0.2.60
|
|
39
|
+
- @vertz/ui-auth@0.2.19
|
|
40
|
+
|
|
3
41
|
## 0.2.59
|
|
4
42
|
|
|
5
43
|
### Patch Changes
|
package/env.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Vertz runtime environment type augmentations.
|
|
3
|
+
*
|
|
4
|
+
* Include in your tsconfig.json:
|
|
5
|
+
* "types": ["vertz/env"]
|
|
6
|
+
*
|
|
7
|
+
* Or add a triple-slash reference:
|
|
8
|
+
* /// <reference types="vertz/env" />
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
interface ImportMetaHot {
|
|
12
|
+
/** Accept the current module's HMR update. */
|
|
13
|
+
accept(): void;
|
|
14
|
+
/** Accept updates for specific dependencies. */
|
|
15
|
+
accept(deps: string | string[], cb?: (modules: unknown[]) => void): void;
|
|
16
|
+
/** Dispose callback — runs before module is replaced. */
|
|
17
|
+
dispose(cb: (data: Record<string, unknown>) => void): void;
|
|
18
|
+
/** Persistent data across HMR updates. */
|
|
19
|
+
data: Record<string, unknown>;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
interface ImportMeta {
|
|
23
|
+
/** Whether this module is the entry point. Available in the vtz runtime. */
|
|
24
|
+
readonly main: boolean;
|
|
25
|
+
/** Hot Module Replacement API. Only available in dev mode; undefined in production. */
|
|
26
|
+
readonly hot: ImportMetaHot | undefined;
|
|
27
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vertz",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.61",
|
|
4
4
|
"description": "Full-stack TypeScript framework — database ORM, API server, compiled UI, and custom runtime. One schema drives every layer.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -29,7 +29,8 @@
|
|
|
29
29
|
"directory": "packages/vertz"
|
|
30
30
|
},
|
|
31
31
|
"files": [
|
|
32
|
-
"dist"
|
|
32
|
+
"dist",
|
|
33
|
+
"env.d.ts"
|
|
33
34
|
],
|
|
34
35
|
"type": "module",
|
|
35
36
|
"sideEffects": false,
|
|
@@ -93,6 +94,9 @@
|
|
|
93
94
|
"./ui-auth": {
|
|
94
95
|
"import": "./dist/ui-auth.js",
|
|
95
96
|
"types": "./dist/ui-auth.d.ts"
|
|
97
|
+
},
|
|
98
|
+
"./env": {
|
|
99
|
+
"types": "./env.d.ts"
|
|
96
100
|
}
|
|
97
101
|
},
|
|
98
102
|
"publishConfig": {
|
|
@@ -105,21 +109,21 @@
|
|
|
105
109
|
"test": "vtz test"
|
|
106
110
|
},
|
|
107
111
|
"dependencies": {
|
|
108
|
-
"@vertz/cli": "^0.2.
|
|
109
|
-
"@vertz/cloudflare": "^0.2.
|
|
110
|
-
"@vertz/db": "^0.2.
|
|
111
|
-
"@vertz/errors": "^0.2.
|
|
112
|
-
"@vertz/fetch": "^0.2.
|
|
113
|
-
"@vertz/schema": "^0.2.
|
|
114
|
-
"@vertz/server": "^0.2.
|
|
115
|
-
"@vertz/testing": "^0.2.
|
|
116
|
-
"@vertz/tui": "^0.2.
|
|
117
|
-
"@vertz/ui": "^0.2.
|
|
112
|
+
"@vertz/cli": "^0.2.61",
|
|
113
|
+
"@vertz/cloudflare": "^0.2.61",
|
|
114
|
+
"@vertz/db": "^0.2.61",
|
|
115
|
+
"@vertz/errors": "^0.2.61",
|
|
116
|
+
"@vertz/fetch": "^0.2.61",
|
|
117
|
+
"@vertz/schema": "^0.2.61",
|
|
118
|
+
"@vertz/server": "^0.2.61",
|
|
119
|
+
"@vertz/testing": "^0.2.61",
|
|
120
|
+
"@vertz/tui": "^0.2.61",
|
|
121
|
+
"@vertz/ui": "^0.2.61",
|
|
118
122
|
"@vertz/ui-auth": "^0.2.19",
|
|
119
|
-
"@vertz/ui-primitives": "^0.2.
|
|
120
|
-
"@vertz/ui-server": "^0.2.
|
|
123
|
+
"@vertz/ui-primitives": "^0.2.61",
|
|
124
|
+
"@vertz/ui-server": "^0.2.61"
|
|
121
125
|
},
|
|
122
126
|
"devDependencies": {
|
|
123
|
-
"@vertz/test": "0.2.
|
|
127
|
+
"@vertz/test": "0.2.61"
|
|
124
128
|
}
|
|
125
129
|
}
|