@zenstackhq/language 3.0.0-beta.19 → 3.0.0-beta.20
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/dist/index.cjs +1189 -63
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +67 -2
- package/dist/index.d.ts +67 -2
- package/dist/index.js +1138 -13
- package/dist/index.js.map +1 -1
- package/package.json +7 -6
- package/res/stdlib.zmodel +4 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenstackhq/language",
|
|
3
3
|
"description": "ZenStack ZModel language specification",
|
|
4
|
-
"version": "3.0.0-beta.
|
|
4
|
+
"version": "3.0.0-beta.20",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "ZenStack Team",
|
|
7
7
|
"files": [
|
|
@@ -48,7 +48,8 @@
|
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"langium": "3.5.0",
|
|
50
50
|
"pluralize": "^8.0.0",
|
|
51
|
-
"ts-pattern": "^5.7.1"
|
|
51
|
+
"ts-pattern": "^5.7.1",
|
|
52
|
+
"vscode-languageserver": "^9.0.1"
|
|
52
53
|
},
|
|
53
54
|
"devDependencies": {
|
|
54
55
|
"@types/pluralize": "^0.0.33",
|
|
@@ -56,10 +57,10 @@
|
|
|
56
57
|
"glob": "^11.0.2",
|
|
57
58
|
"langium-cli": "3.5.0",
|
|
58
59
|
"tmp": "^0.2.3",
|
|
59
|
-
"@zenstackhq/
|
|
60
|
-
"@zenstackhq/
|
|
61
|
-
"@zenstackhq/
|
|
62
|
-
"@zenstackhq/
|
|
60
|
+
"@zenstackhq/common-helpers": "3.0.0-beta.20",
|
|
61
|
+
"@zenstackhq/eslint-config": "3.0.0-beta.20",
|
|
62
|
+
"@zenstackhq/typescript-config": "3.0.0-beta.20",
|
|
63
|
+
"@zenstackhq/vitest-config": "3.0.0-beta.20"
|
|
63
64
|
},
|
|
64
65
|
"volta": {
|
|
65
66
|
"node": "18.19.1",
|
package/res/stdlib.zmodel
CHANGED
|
@@ -382,12 +382,14 @@ attribute @map(_ name: String) @@@prisma
|
|
|
382
382
|
attribute @@map(_ name: String) @@@prisma
|
|
383
383
|
|
|
384
384
|
/**
|
|
385
|
-
* Exclude a field from the
|
|
385
|
+
* Exclude a field from the ORM Client (for example, a field that you do not want Prisma users to update).
|
|
386
|
+
* The field is still recognized by database schema migrations.
|
|
386
387
|
*/
|
|
387
388
|
attribute @ignore() @@@prisma
|
|
388
389
|
|
|
389
390
|
/**
|
|
390
|
-
* Exclude a model from the
|
|
391
|
+
* Exclude a model from the ORM Client (for example, a model that you do not want Prisma users to update).
|
|
392
|
+
* The model is still recognized by database schema migrations.
|
|
391
393
|
*/
|
|
392
394
|
attribute @@ignore() @@@prisma
|
|
393
395
|
|