@rebasepro/server-postgres 0.16.0 → 0.16.1-canary.g2d1aec8
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/PostgresAdapter.d.ts +1 -1
- package/dist/PostgresBackendDriver.d.ts +16 -7
- package/dist/PostgresBootstrapper.d.ts +6 -6
- package/dist/auth/services.d.ts +1 -1
- package/dist/backup/backup-cron.d.ts +1 -1
- package/dist/backup/backup-service.d.ts +2 -2
- package/dist/backup/index.d.ts +4 -4
- package/dist/collections/PostgresCollectionRegistry.d.ts +1 -1
- package/dist/collections/buildRegistry.d.ts +1 -1
- package/dist/collections/validate-relations.d.ts +1 -1
- package/dist/data-transformer.d.ts +1 -1
- package/dist/{ensure-collection-policies-BVFb2olB.js → ensure-collection-policies-CVfVHS6o.js} +3 -3
- package/dist/{ensure-collection-policies-BVFb2olB.js.map → ensure-collection-policies-CVfVHS6o.js.map} +1 -1
- package/dist/{auth-users-columns-CgyPWQ18.js → ensure-collection-tables-jYsvOLZF.js} +1443 -11
- package/dist/ensure-collection-tables-jYsvOLZF.js.map +1 -0
- package/dist/index.d.ts +16 -16
- package/dist/index.es.js +2169 -1803
- package/dist/index.es.js.map +1 -1
- package/dist/{rls-enforcement-Ch0T6OwW.js → rls-enforcement-CsD7nZDn.js} +2 -2
- package/dist/{rls-enforcement-Ch0T6OwW.js.map → rls-enforcement-CsD7nZDn.js.map} +1 -1
- package/dist/schema/classify-change.d.ts +82 -0
- package/dist/schema/dynamic-tables.d.ts +1 -1
- package/dist/schema/ensure-collection-policies.d.ts +1 -1
- package/dist/schema/ensure-collection-tables.d.ts +93 -2
- package/dist/schema/generate-schema-commit.d.ts +136 -0
- package/dist/schema/introspect-db-constraints.d.ts +1 -1
- package/dist/schema/introspect-db-logic.d.ts +3 -3
- package/dist/schema/introspect-db-project.d.ts +1 -1
- package/dist/schema/introspect-db-queries.d.ts +1 -1
- package/dist/schema/introspect-db-structure.d.ts +2 -2
- package/dist/schema/introspect-runtime.d.ts +1 -1
- package/dist/schema/vector-index.d.ts +88 -0
- package/dist/services/BranchService.d.ts +2 -2
- package/dist/services/FetchService.d.ts +4 -4
- package/dist/services/PersistService.d.ts +5 -5
- package/dist/services/RelationService.d.ts +3 -3
- package/dist/services/RelationWriteService.d.ts +3 -3
- package/dist/services/cdc/junction-tables.d.ts +1 -1
- package/dist/services/cdc/trigger-cdc.d.ts +1 -1
- package/dist/services/channel-bus/PostgresChannelBus.d.ts +1 -1
- package/dist/services/channel-bus/index.d.ts +2 -2
- package/dist/services/collection-helpers.d.ts +1 -1
- package/dist/services/dataService.d.ts +10 -10
- package/dist/services/index.d.ts +4 -4
- package/dist/services/junction-writes.d.ts +2 -2
- package/dist/services/nested-path.d.ts +1 -1
- package/dist/services/realtimeService.d.ts +3 -3
- package/dist/services/row-pipeline.d.ts +1 -1
- package/dist/services/write-denial.d.ts +1 -1
- package/dist/utils/drizzle-conditions.d.ts +2 -2
- package/dist/websocket-BVgDVO-V.js.map +1 -1
- package/dist/websocket.d.ts +2 -2
- package/package.json +7 -7
- package/src/PostgresBackendDriver.ts +40 -0
- package/src/schema/classify-change.ts +436 -0
- package/src/schema/ensure-collection-tables.test.ts +168 -1
- package/src/schema/ensure-collection-tables.ts +344 -14
- package/src/schema/generate-postgres-ddl-logic.ts +15 -0
- package/src/schema/generate-schema-commit.ts +242 -0
- package/src/schema/vector-index.ts +278 -0
- package/dist/auth-users-columns-CgyPWQ18.js.map +0 -1
- package/dist/ensure-collection-tables-BY1pHRD_.js +0 -840
- package/dist/ensure-collection-tables-BY1pHRD_.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
export * from "./connection";
|
|
2
|
-
export * from "./interfaces";
|
|
3
|
-
export * from "./PostgresBackendDriver";
|
|
4
|
-
export * from "./databasePoolManager";
|
|
5
|
-
export * from "./schema/auth-schema";
|
|
6
|
-
export * from "./schema/generate-drizzle-schema-logic";
|
|
7
|
-
export * from "./schema/generate-drizzle-schema";
|
|
8
|
-
export * from "./utils/drizzle-conditions";
|
|
9
|
-
export * from "./services/realtimeService";
|
|
10
|
-
export * from "./services/channel-bus";
|
|
11
|
-
export * from "./websocket";
|
|
12
|
-
export * from "./collections/PostgresCollectionRegistry";
|
|
13
|
-
export * from "./services/BranchService";
|
|
14
|
-
export * from "./backup";
|
|
15
|
-
export * from "./PostgresBootstrapper";
|
|
16
|
-
export * from "./PostgresAdapter";
|
|
1
|
+
export * from "./connection.js";
|
|
2
|
+
export * from "./interfaces.js";
|
|
3
|
+
export * from "./PostgresBackendDriver.js";
|
|
4
|
+
export * from "./databasePoolManager.js";
|
|
5
|
+
export * from "./schema/auth-schema.js";
|
|
6
|
+
export * from "./schema/generate-drizzle-schema-logic.js";
|
|
7
|
+
export * from "./schema/generate-drizzle-schema.js";
|
|
8
|
+
export * from "./utils/drizzle-conditions.js";
|
|
9
|
+
export * from "./services/realtimeService.js";
|
|
10
|
+
export * from "./services/channel-bus/index.js";
|
|
11
|
+
export * from "./websocket.js";
|
|
12
|
+
export * from "./collections/PostgresCollectionRegistry.js";
|
|
13
|
+
export * from "./services/BranchService.js";
|
|
14
|
+
export * from "./backup/index.js";
|
|
15
|
+
export * from "./PostgresBootstrapper.js";
|
|
16
|
+
export * from "./PostgresAdapter.js";
|