@powersync/service-schema 0.0.0-dev-20250507132759 → 0.0.0-dev-20250611110033

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.
@@ -245,6 +245,9 @@
245
245
  "items": {
246
246
  "type": "string"
247
247
  }
248
+ },
249
+ "binlog_queue_memory_limit": {
250
+ "type": "number"
248
251
  }
249
252
  },
250
253
  "additionalProperties": true,
@@ -773,7 +776,7 @@
773
776
  "type": "object",
774
777
  "properties": {
775
778
  "path": {
776
- "description": "Path to the sync rules file or directory.",
779
+ "description": "Path to the sync rules YAML file.",
777
780
  "type": "string"
778
781
  },
779
782
  "content": {
@@ -838,6 +841,33 @@
838
841
  "disable_telemetry_sharing"
839
842
  ]
840
843
  },
844
+ "healthcheck": {
845
+ "type": "object",
846
+ "properties": {
847
+ "probes": {
848
+ "description": "Mechanisms for exposing health check data.",
849
+ "type": "object",
850
+ "properties": {
851
+ "use_filesystem": {
852
+ "description": "Enables exposing healthcheck status via filesystem files.",
853
+ "type": "boolean"
854
+ },
855
+ "use_http": {
856
+ "description": "Enables exposing healthcheck status via HTTP endpoints.",
857
+ "type": "boolean"
858
+ },
859
+ "use_legacy": {
860
+ "description": "Deprecated. \nEnables HTTP probes for both API and UNIFIED service modes. FileSystem probes are always enabled.",
861
+ "type": "boolean"
862
+ }
863
+ },
864
+ "additionalProperties": true,
865
+ "required": []
866
+ }
867
+ },
868
+ "additionalProperties": true,
869
+ "required": []
870
+ },
841
871
  "parameters": {
842
872
  "description": "Global parameters that can be referenced in sync rules and other configurations.",
843
873
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powersync/service-schema",
3
- "version": "0.0.0-dev-20250507132759",
3
+ "version": "0.0.0-dev-20250611110033",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "FSL-1.1-Apache-2.0",
@@ -16,12 +16,12 @@
16
16
  "dependencies": {},
17
17
  "devDependencies": {
18
18
  "ts-codec": "^1.3.0",
19
- "@powersync/service-module-postgres": "0.0.0-dev-20250507132759",
20
- "@powersync/service-module-postgres-storage": "0.0.0-dev-20250507132759",
21
- "@powersync/service-module-mongodb": "0.0.0-dev-20250507132759",
22
- "@powersync/service-module-mongodb-storage": "0.0.0-dev-20250507132759",
23
- "@powersync/service-module-mysql": "0.0.0-dev-20250507132759",
24
- "@powersync/service-types": "0.0.0-dev-20250507132759"
19
+ "@powersync/service-module-postgres": "0.0.0-dev-20250611110033",
20
+ "@powersync/service-module-postgres-storage": "0.0.0-dev-20250611110033",
21
+ "@powersync/service-module-mongodb": "0.0.0-dev-20250611110033",
22
+ "@powersync/service-module-mongodb-storage": "0.0.0-dev-20250611110033",
23
+ "@powersync/service-module-mysql": "0.0.0-dev-20250611110033",
24
+ "@powersync/service-types": "0.0.0-dev-20250611110033"
25
25
  },
26
26
  "scripts": {
27
27
  "clean": "rm -r ./dist && tsc -b --clean",