@engram-mem/supabase 0.4.3 → 0.4.5
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 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ Same `SUPABASE_URL` / `SUPABASE_KEY` env vars continue to work — they're just
|
|
|
37
37
|
|
|
38
38
|
Full migration runbook including how to switch from hosted Supabase to self-hosted Postgres + PostgREST:
|
|
39
39
|
|
|
40
|
-
- [
|
|
40
|
+
- See the [v0.4.0 rebrand commit](https://github.com/muhammadkh4n/engram/commit/46b7b74) and the [v0.4.4 schema consolidation commit](https://github.com/muhammadkh4n/engram/commit/70c70b2) for the full rationale; the runbook itself was retired with the rest of `docs/` in the v0.4.4 cleanup. Self-host bootstrap: apply `packages/postgrest/schema.sql` via `psql -f`.
|
|
41
41
|
|
|
42
42
|
## v0.5.0
|
|
43
43
|
|
package/dist/index.d.ts
CHANGED
|
@@ -30,6 +30,6 @@
|
|
|
30
30
|
* @deprecated Use @engram-mem/postgrest instead. This package will be
|
|
31
31
|
* removed in v0.5.0.
|
|
32
32
|
*/
|
|
33
|
-
export { PostgRestStorageAdapter as SupabaseStorageAdapter, PostgRestStorageAdapter, createPostgRestAdapter, supabaseAdapter,
|
|
33
|
+
export { PostgRestStorageAdapter as SupabaseStorageAdapter, PostgRestStorageAdapter, createPostgRestAdapter, supabaseAdapter, getSchemaSQL, getMigrationSQL, } from '@engram-mem/postgrest';
|
|
34
34
|
export type { PostgRestAdapterOptions as SupabaseAdapterOptions, PostgRestAdapterOptions, } from '@engram-mem/postgrest';
|
|
35
35
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AAEH,OAAO,EACL,uBAAuB,IAAI,sBAAsB,EACjD,uBAAuB,EACvB,sBAAsB,EACtB,eAAe,EACf,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AAEH,OAAO,EACL,uBAAuB,IAAI,sBAAsB,EACjD,uBAAuB,EACvB,sBAAsB,EACtB,eAAe,EACf,YAAY,EACZ,eAAe,GAChB,MAAM,uBAAuB,CAAA;AAE9B,YAAY,EACV,uBAAuB,IAAI,sBAAsB,EACjD,uBAAuB,GACxB,MAAM,uBAAuB,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
* @deprecated Use @engram-mem/postgrest instead. This package will be
|
|
31
31
|
* removed in v0.5.0.
|
|
32
32
|
*/
|
|
33
|
-
export { PostgRestStorageAdapter as SupabaseStorageAdapter, PostgRestStorageAdapter, createPostgRestAdapter, supabaseAdapter,
|
|
33
|
+
export { PostgRestStorageAdapter as SupabaseStorageAdapter, PostgRestStorageAdapter, createPostgRestAdapter, supabaseAdapter, getSchemaSQL, getMigrationSQL, } from '@engram-mem/postgrest';
|
|
34
34
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AAEH,OAAO,EACL,uBAAuB,IAAI,sBAAsB,EACjD,uBAAuB,EACvB,sBAAsB,EACtB,eAAe,EACf,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AAEH,OAAO,EACL,uBAAuB,IAAI,sBAAsB,EACjD,uBAAuB,EACvB,sBAAsB,EACtB,eAAe,EACf,YAAY,EACZ,eAAe,GAChB,MAAM,uBAAuB,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@engram-mem/supabase",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.5",
|
|
4
4
|
"description": "DEPRECATED — renamed to @engram-mem/postgrest. This package is a thin re-export shim and will be removed in v0.5.0. See README.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"memory",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"clean": "rm -rf dist"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@engram-mem/postgrest": "0.4.
|
|
33
|
+
"@engram-mem/postgrest": "0.4.5"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"typescript": "^6.0.2",
|