@powersync/service-schema 0.0.0-dev-20250507132759 → 1.12.0
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.
|
@@ -773,7 +773,7 @@
|
|
|
773
773
|
"type": "object",
|
|
774
774
|
"properties": {
|
|
775
775
|
"path": {
|
|
776
|
-
"description": "Path to the sync rules file
|
|
776
|
+
"description": "Path to the sync rules YAML file.",
|
|
777
777
|
"type": "string"
|
|
778
778
|
},
|
|
779
779
|
"content": {
|
|
@@ -838,6 +838,33 @@
|
|
|
838
838
|
"disable_telemetry_sharing"
|
|
839
839
|
]
|
|
840
840
|
},
|
|
841
|
+
"healthcheck": {
|
|
842
|
+
"type": "object",
|
|
843
|
+
"properties": {
|
|
844
|
+
"probes": {
|
|
845
|
+
"description": "Mechanisms for exposing health check data.",
|
|
846
|
+
"type": "object",
|
|
847
|
+
"properties": {
|
|
848
|
+
"use_filesystem": {
|
|
849
|
+
"description": "Enables exposing healthcheck status via filesystem files.",
|
|
850
|
+
"type": "boolean"
|
|
851
|
+
},
|
|
852
|
+
"use_http": {
|
|
853
|
+
"description": "Enables exposing healthcheck status via HTTP endpoints.",
|
|
854
|
+
"type": "boolean"
|
|
855
|
+
},
|
|
856
|
+
"use_legacy": {
|
|
857
|
+
"description": "Deprecated. \nEnables HTTP probes for both API and UNIFIED service modes. FileSystem probes are always enabled.",
|
|
858
|
+
"type": "boolean"
|
|
859
|
+
}
|
|
860
|
+
},
|
|
861
|
+
"additionalProperties": true,
|
|
862
|
+
"required": []
|
|
863
|
+
}
|
|
864
|
+
},
|
|
865
|
+
"additionalProperties": true,
|
|
866
|
+
"required": []
|
|
867
|
+
},
|
|
841
868
|
"parameters": {
|
|
842
869
|
"description": "Global parameters that can be referenced in sync rules and other configurations.",
|
|
843
870
|
"type": "object",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powersync/service-schema",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.12.0",
|
|
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.
|
|
20
|
-
"@powersync/service-module-postgres-storage": "0.
|
|
21
|
-
"@powersync/service-module-mongodb": "0.
|
|
22
|
-
"@powersync/service-module-mongodb-storage": "0.
|
|
23
|
-
"@powersync/service-module-mysql": "0.
|
|
24
|
-
"@powersync/service-types": "0.
|
|
19
|
+
"@powersync/service-module-postgres": "0.13.0",
|
|
20
|
+
"@powersync/service-module-postgres-storage": "0.7.4",
|
|
21
|
+
"@powersync/service-module-mongodb": "0.9.0",
|
|
22
|
+
"@powersync/service-module-mongodb-storage": "0.9.4",
|
|
23
|
+
"@powersync/service-module-mysql": "0.6.4",
|
|
24
|
+
"@powersync/service-types": "0.11.0"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"clean": "rm -r ./dist && tsc -b --clean",
|