@prisma-next/psl-parser 0.3.0-dev.56 → 0.3.0-dev.57
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/README.md +1 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -26,6 +26,7 @@ In the provider-based authoring model, PSL providers call this parser and then r
|
|
|
26
26
|
- Attributes may include an **optional argument list**.
|
|
27
27
|
- Arguments are parsed into positional/named entries with preserved raw values and source spans.
|
|
28
28
|
- The parser owns **syntax + structure + spans**, not semantics.
|
|
29
|
+
- Example: `@default(uuid(7))` is preserved as a positional argument value `uuid(7)`; semantic lowering is handled downstream.
|
|
29
30
|
|
|
30
31
|
Interpretation/validation (for example `@prisma-next/sql-contract-psl`) is responsible for:
|
|
31
32
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma-next/psl-parser",
|
|
3
|
-
"version": "0.3.0-dev.
|
|
3
|
+
"version": "0.3.0-dev.57",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"description": "Reusable parser for Prisma Schema Language (PSL)",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@prisma-next/utils": "0.3.0-dev.
|
|
8
|
+
"@prisma-next/utils": "0.3.0-dev.57"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
11
|
"tsdown": "0.18.4",
|