sovrium 0.0.2 → 0.1.0
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 +3 -1
- package/package.json +23 -14
- package/schemas/0.0.2/app.openapi.json +4 -14
- package/schemas/0.0.2/app.schema.json +340 -1713
- package/schemas/{development → 0.1.0}/app.openapi.json +14 -4
- package/schemas/{development → 0.1.0}/app.schema.json +1715 -342
- package/CHANGELOG.md +0 -3497
package/README.md
CHANGED
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
<a href="SPEC-PROGRESS.md"><img src="https://img.shields.io/badge/specs-99%25_passing-brightgreen" alt="Specs" /></a>
|
|
11
11
|
<a href="https://bun.sh"><img src="https://img.shields.io/badge/runtime-Bun_1.3-f472b6" alt="Bun" /></a>
|
|
12
12
|
<a href="https://www.typescriptlang.org"><img src="https://img.shields.io/badge/TypeScript-5.9-3178c6" alt="TypeScript" /></a>
|
|
13
|
+
<a href="https://www.npmjs.com/package/sovrium"><img src="https://img.shields.io/npm/v/sovrium" alt="npm" /></a>
|
|
14
|
+
<a href="https://www.npmjs.com/package/sovrium"><img src="https://img.shields.io/npm/dm/sovrium" alt="downloads" /></a>
|
|
13
15
|
</p>
|
|
14
16
|
|
|
15
17
|
<p align="center">
|
|
@@ -151,7 +153,7 @@ APP_SCHEMA='https://example.com/app.yaml' sovrium start
|
|
|
151
153
|
|
|
152
154
|
Define your data model in config. Sovrium creates PostgreSQL tables, handles migrations, and exposes a full REST API automatically.
|
|
153
155
|
|
|
154
|
-
- **
|
|
156
|
+
- **40 field types** -- text, numeric, date/time, selection, media, relational, user tracking, and advanced types (formula, JSON, geolocation, barcode, autonumber, and more)
|
|
155
157
|
- **Relationships** -- one-to-many and many-to-many with lookup and rollup fields
|
|
156
158
|
- **Views** -- filtered, sorted, and grouped views with field-level visibility
|
|
157
159
|
- **Indexes and constraints** -- primary keys, unique constraints, check constraints
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sovrium",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"packageManager": "bun@1.3.10",
|
|
5
5
|
"description": "Configuration-driven web application platform built with Bun, Effect, React, and Tailwind CSS",
|
|
6
6
|
"module": "src/index.ts",
|
|
@@ -12,8 +12,12 @@
|
|
|
12
12
|
"company": "ESSENTIAL SERVICES",
|
|
13
13
|
"email": "support@sovrium.com"
|
|
14
14
|
},
|
|
15
|
-
"license": "
|
|
15
|
+
"license": "BUSL-1.1",
|
|
16
16
|
"type": "module",
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"provenance": true,
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
17
21
|
"repository": {
|
|
18
22
|
"type": "git",
|
|
19
23
|
"url": "https://github.com/sovrium/sovrium.git"
|
|
@@ -21,7 +25,16 @@
|
|
|
21
25
|
"bugs": {
|
|
22
26
|
"url": "https://github.com/sovrium/sovrium/issues"
|
|
23
27
|
},
|
|
24
|
-
"homepage": "https://
|
|
28
|
+
"homepage": "https://sovrium.com",
|
|
29
|
+
"engines": {
|
|
30
|
+
"bun": ">=1.3.10"
|
|
31
|
+
},
|
|
32
|
+
"exports": {
|
|
33
|
+
".": {
|
|
34
|
+
"import": "./src/index.ts",
|
|
35
|
+
"types": "./src/index.ts"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
25
38
|
"keywords": [
|
|
26
39
|
"sovrium",
|
|
27
40
|
"bun",
|
|
@@ -34,9 +47,9 @@
|
|
|
34
47
|
"configuration"
|
|
35
48
|
],
|
|
36
49
|
"files": [
|
|
37
|
-
"drizzle
|
|
38
|
-
"
|
|
39
|
-
"schemas
|
|
50
|
+
"drizzle/**",
|
|
51
|
+
"schemas/**",
|
|
52
|
+
"!schemas/development/**",
|
|
40
53
|
"src/**/*.ts",
|
|
41
54
|
"src/**/*.tsx",
|
|
42
55
|
"src/**/*.css",
|
|
@@ -47,7 +60,6 @@
|
|
|
47
60
|
"LICENSE.md",
|
|
48
61
|
"LICENSE_EE.md",
|
|
49
62
|
"README.md",
|
|
50
|
-
"CHANGELOG.md",
|
|
51
63
|
"tsconfig.json"
|
|
52
64
|
],
|
|
53
65
|
"scripts": {
|
|
@@ -88,7 +100,9 @@
|
|
|
88
100
|
"db:check": "drizzle-kit check",
|
|
89
101
|
"website": "bun --watch run website/start.ts",
|
|
90
102
|
"website:build": "bun run website/build.ts",
|
|
91
|
-
"
|
|
103
|
+
"analyze-commits": "bun run scripts/analyze-commits.ts",
|
|
104
|
+
"prepublish-check": "bun run scripts/prepublish-check.ts",
|
|
105
|
+
"release": "bun run scripts/release.ts"
|
|
92
106
|
},
|
|
93
107
|
"devDependencies": {
|
|
94
108
|
"@apidevtools/json-schema-ref-parser": "^15.3.1",
|
|
@@ -97,9 +111,7 @@
|
|
|
97
111
|
"@eslint/compat": "^2.0.2",
|
|
98
112
|
"@eslint/js": "^9.39.3",
|
|
99
113
|
"@playwright/test": "^1.58.2",
|
|
100
|
-
"@
|
|
101
|
-
"@semantic-release/exec": "^7.1.0",
|
|
102
|
-
"@semantic-release/git": "^10.0.1",
|
|
114
|
+
"@tanstack/react-query-devtools": "^5.91.3",
|
|
103
115
|
"@testcontainers/postgresql": "^11.12.0",
|
|
104
116
|
"@types/bun": "^1.3.10",
|
|
105
117
|
"@types/dompurify": "^3.2.0",
|
|
@@ -128,7 +140,6 @@
|
|
|
128
140
|
"pg": "^8.19.0",
|
|
129
141
|
"playwright": "^1.58.2",
|
|
130
142
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
131
|
-
"semantic-release": "^25.0.3",
|
|
132
143
|
"typescript": "^5.9.3",
|
|
133
144
|
"typescript-eslint": "^8.56.1"
|
|
134
145
|
},
|
|
@@ -143,14 +154,12 @@
|
|
|
143
154
|
"@scalar/hono-api-reference": "^0.9.47",
|
|
144
155
|
"@tailwindcss/postcss": "^4.2.1",
|
|
145
156
|
"@tanstack/react-query": "^5.90.21",
|
|
146
|
-
"@tanstack/react-query-devtools": "^5.91.3",
|
|
147
157
|
"@tanstack/react-table": "^8.21.3",
|
|
148
158
|
"better-auth": "^1.5.2",
|
|
149
159
|
"dompurify": "^3.3.1",
|
|
150
160
|
"drizzle-orm": "^0.45.1",
|
|
151
161
|
"effect": "^3.19.19",
|
|
152
162
|
"hono": "^4.12.3",
|
|
153
|
-
"jiti": "^2.6.1",
|
|
154
163
|
"js-yaml": "^4.1.1",
|
|
155
164
|
"lucide-react": "^0.575.0",
|
|
156
165
|
"nanoid": "^5.1.6",
|
|
@@ -27,9 +27,7 @@
|
|
|
27
27
|
"summary": "Health check endpoint",
|
|
28
28
|
"description": "Returns server health status. Used by monitoring tools and E2E tests to verify server is running.",
|
|
29
29
|
"operationId": "healthCheck",
|
|
30
|
-
"tags": [
|
|
31
|
-
"infrastructure"
|
|
32
|
-
],
|
|
30
|
+
"tags": ["infrastructure"],
|
|
33
31
|
"responses": {
|
|
34
32
|
"200": {
|
|
35
33
|
"description": "Server is healthy",
|
|
@@ -40,9 +38,7 @@
|
|
|
40
38
|
"properties": {
|
|
41
39
|
"status": {
|
|
42
40
|
"type": "string",
|
|
43
|
-
"enum": [
|
|
44
|
-
"ok"
|
|
45
|
-
],
|
|
41
|
+
"enum": ["ok"],
|
|
46
42
|
"description": "Server health status indicator"
|
|
47
43
|
},
|
|
48
44
|
"timestamp": {
|
|
@@ -58,17 +54,11 @@
|
|
|
58
54
|
"description": "Application name from configuration"
|
|
59
55
|
}
|
|
60
56
|
},
|
|
61
|
-
"required": [
|
|
62
|
-
"name"
|
|
63
|
-
],
|
|
57
|
+
"required": ["name"],
|
|
64
58
|
"description": "Application metadata"
|
|
65
59
|
}
|
|
66
60
|
},
|
|
67
|
-
"required": [
|
|
68
|
-
"status",
|
|
69
|
-
"timestamp",
|
|
70
|
-
"app"
|
|
71
|
-
]
|
|
61
|
+
"required": ["status", "timestamp", "app"]
|
|
72
62
|
}
|
|
73
63
|
}
|
|
74
64
|
}
|