@powersync/service-module-postgres-storage 0.0.0-dev-20250730103516 → 0.0.0-dev-20250730103954

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.
@@ -66,7 +66,7 @@ export const up = async (context) => {
66
66
  sdk TEXT NOT NULL,
67
67
  jwt_exp TIMESTAMP WITH TIME ZONE,
68
68
  connect_at TIMESTAMP WITH TIME ZONE NOT NULL,
69
- disconnect_at TIMESTAMP WITH TIME ZONE,
69
+ disconnect_at TIMESTAMP WITH TIME ZONE
70
70
  )
71
71
  `.execute();
72
72
  await db.sql `
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@powersync/service-module-postgres-storage",
3
3
  "repository": "https://github.com/powersync-ja/powersync-service",
4
4
  "types": "dist/@types/index.d.ts",
5
- "version": "0.0.0-dev-20250730103516",
5
+ "version": "0.0.0-dev-20250730103954",
6
6
  "main": "dist/index.js",
7
7
  "type": "module",
8
8
  "publishConfig": {
@@ -29,12 +29,12 @@
29
29
  "p-defer": "^4.0.1",
30
30
  "ts-codec": "^1.3.0",
31
31
  "uuid": "^11.1.0",
32
- "@powersync/lib-service-postgres": "0.0.0-dev-20250730103516",
33
- "@powersync/lib-services-framework": "0.0.0-dev-20250730103516",
34
- "@powersync/service-core": "0.0.0-dev-20250730103516",
35
- "@powersync/service-types": "0.0.0-dev-20250730103516",
36
- "@powersync/service-core-tests": "0.0.0-dev-20250730103516",
37
- "@powersync/service-jpgwire": "0.0.0-dev-20250730103516",
32
+ "@powersync/lib-service-postgres": "0.0.0-dev-20250730103954",
33
+ "@powersync/lib-services-framework": "0.0.0-dev-20250730103954",
34
+ "@powersync/service-core": "0.0.0-dev-20250730103954",
35
+ "@powersync/service-types": "0.0.0-dev-20250730103954",
36
+ "@powersync/service-core-tests": "0.0.0-dev-20250730103954",
37
+ "@powersync/service-jpgwire": "0.0.0-dev-20250730103954",
38
38
  "@powersync/service-sync-rules": "0.27.0"
39
39
  },
40
40
  "devDependencies": {
@@ -18,7 +18,7 @@ export const up: migrations.PowerSyncMigrationFunction = async (context) => {
18
18
  sdk TEXT NOT NULL,
19
19
  jwt_exp TIMESTAMP WITH TIME ZONE,
20
20
  connect_at TIMESTAMP WITH TIME ZONE NOT NULL,
21
- disconnect_at TIMESTAMP WITH TIME ZONE,
21
+ disconnect_at TIMESTAMP WITH TIME ZONE
22
22
  )
23
23
  `.execute();
24
24