@septkit/shell-lib 0.0.16 → 0.0.17
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.js +8 -0
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -80,6 +80,14 @@ var e = "SET-LIBRARY-", t = "TEMP-", n = "TEMP-PROJECT-", r = {
|
|
|
80
80
|
code: "D3006",
|
|
81
81
|
message: "Unknown namespace prefix on attribute — pass it explicitly as { name, namespace: { prefix, uri } }"
|
|
82
82
|
},
|
|
83
|
+
PREFIXED_ATTRIBUTE_NAME: {
|
|
84
|
+
code: "D3007",
|
|
85
|
+
message: "Authored attribute name must be a local name — pass the namespace separately as { name, namespace }, not a prefixed name"
|
|
86
|
+
},
|
|
87
|
+
FIXED_VALUE_VIOLATION: {
|
|
88
|
+
code: "D3008",
|
|
89
|
+
message: "Attribute value differs from the schema-fixed value"
|
|
90
|
+
},
|
|
83
91
|
ALREADY_COMMITTED: {
|
|
84
92
|
code: "D4001",
|
|
85
93
|
message: "Transaction already committed"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@septkit/shell-lib",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@dialecte/core": "0.4.
|
|
17
|
-
"@dialecte/scl": "0.3.
|
|
16
|
+
"@dialecte/core": "0.4.5",
|
|
17
|
+
"@dialecte/scl": "0.3.3"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"oxlint": "~1.6.0",
|