@septkit/shell-lib 0.0.5 → 0.0.7
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 +12 -0
- package/package.json +33 -33
package/dist/index.js
CHANGED
|
@@ -36,6 +36,10 @@ var e = "SET-LIBRARY-", t = "TEMP-", n = "TEMP-PROJECT-", r = {
|
|
|
36
36
|
code: "D1007",
|
|
37
37
|
message: "Store is not writable"
|
|
38
38
|
},
|
|
39
|
+
STORE_BLOB_NOT_FOUND: {
|
|
40
|
+
code: "D1008",
|
|
41
|
+
message: "Blob not found"
|
|
42
|
+
},
|
|
39
43
|
ELEMENT_NOT_FOUND: {
|
|
40
44
|
code: "D2001",
|
|
41
45
|
message: "Element not found"
|
|
@@ -68,6 +72,10 @@ var e = "SET-LIBRARY-", t = "TEMP-", n = "TEMP-PROJECT-", r = {
|
|
|
68
72
|
code: "D3004",
|
|
69
73
|
message: "Required attribute is missing"
|
|
70
74
|
},
|
|
75
|
+
UNIQUE_CONSTRAINT_VIOLATION: {
|
|
76
|
+
code: "D3005",
|
|
77
|
+
message: "Value is already used within its scope"
|
|
78
|
+
},
|
|
71
79
|
ALREADY_COMMITTED: {
|
|
72
80
|
code: "D4001",
|
|
73
81
|
message: "Transaction already committed"
|
|
@@ -107,6 +115,10 @@ var e = "SET-LIBRARY-", t = "TEMP-", n = "TEMP-PROJECT-", r = {
|
|
|
107
115
|
PROJECT_NOT_OPENED: {
|
|
108
116
|
code: "D7003",
|
|
109
117
|
message: "Project not opened"
|
|
118
|
+
},
|
|
119
|
+
BLOB_NOT_FOUND: {
|
|
120
|
+
code: "D7004",
|
|
121
|
+
message: "Blob not found in store"
|
|
110
122
|
}
|
|
111
123
|
};
|
|
112
124
|
function i(e, t) {
|
package/package.json
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
}
|
|
2
|
+
"name": "@septkit/shell-lib",
|
|
3
|
+
"version": "0.0.7",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist"
|
|
7
|
+
],
|
|
8
|
+
"source": "src/index.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"@dialecte/core": "0.2.16",
|
|
17
|
+
"@dialecte/scl": "0.2.10"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"oxlint": "~1.6.0",
|
|
21
|
+
"prettier": "3.5.3",
|
|
22
|
+
"typescript": "~5.8.3",
|
|
23
|
+
"vite": "^8.0.8",
|
|
24
|
+
"vite-plugin-dts": "^4.5.4",
|
|
25
|
+
"vue-tsc": "^3.2.6"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "vite build",
|
|
29
|
+
"type-check": "vue-tsc --build",
|
|
30
|
+
"lint": "oxlint . --fix -D correctness --ignore-path .gitignore",
|
|
31
|
+
"format": "prettier --write src/",
|
|
32
|
+
"format:check": "prettier --check src/"
|
|
33
|
+
}
|
|
34
|
+
}
|