@plutocms/supabase 0.1.1 → 0.1.2
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/CHANGELOG.md +7 -0
- package/package.json +3 -1
- package/server/plugins/migrations.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.2](https://github.com/plutocms/supabase/compare/v0.1.1...v0.1.2) (2026-09-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* type layerSchemas runtime config as Record<string, string> ([0ad5a8a](https://github.com/plutocms/supabase/commit/0ad5a8a42751e33c87e0c733df8344616e3706e0))
|
|
9
|
+
|
|
3
10
|
## [0.1.1](https://github.com/plutocms/supabase/compare/v0.1.0...v0.1.1) (2026-09-03)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plutocms/supabase",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"trustedDependencies": [
|
|
6
6
|
"@parcel/watcher",
|
|
7
7
|
"@plutocms/pluto",
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"lint": "eslint .",
|
|
33
33
|
"lint:fix": "eslint . --fix && prettier --write .",
|
|
34
34
|
"typecheck": "nuxi typecheck",
|
|
35
|
+
"test": "vitest run",
|
|
35
36
|
"supabase-types": "bun ./scripts/supabase-typegen.ts"
|
|
36
37
|
},
|
|
37
38
|
"dependencies": {
|
|
@@ -52,6 +53,7 @@
|
|
|
52
53
|
"nuxt": "^4.4.2",
|
|
53
54
|
"prettier": "^3.9.4",
|
|
54
55
|
"tailwindcss": "^4.3.2",
|
|
56
|
+
"vitest": "^5.0.0",
|
|
55
57
|
"vue": "^3.5.39",
|
|
56
58
|
"vue-router": "^5.1.0",
|
|
57
59
|
"vue-tsc": "^3.3.7"
|
|
@@ -8,7 +8,7 @@ export default defineNitroPlugin(async () => {
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
const config = useRuntimeConfig()
|
|
11
|
-
const layerSchemas = config.plutoLayerSchemas ?? {}
|
|
11
|
+
const layerSchemas: Record<string, string> = config.plutoLayerSchemas ?? {}
|
|
12
12
|
|
|
13
13
|
const layerNames = Object.keys(layerSchemas)
|
|
14
14
|
|