@powersync/service-schema 0.0.0-dev-20260224151854 → 0.0.0-dev-20260225160713
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.
|
@@ -935,20 +935,40 @@
|
|
|
935
935
|
}
|
|
936
936
|
]
|
|
937
937
|
},
|
|
938
|
-
"
|
|
938
|
+
"sync_config": {
|
|
939
939
|
"description": "Configuration for synchronization rules that define data access patterns.",
|
|
940
940
|
"type": "object",
|
|
941
941
|
"properties": {
|
|
942
942
|
"path": {
|
|
943
|
-
"description": "Path to the sync
|
|
943
|
+
"description": "Path to the sync config YAML file.",
|
|
944
|
+
"type": "string"
|
|
945
|
+
},
|
|
946
|
+
"content": {
|
|
947
|
+
"description": "Inline sync config content as a string.",
|
|
948
|
+
"type": "string"
|
|
949
|
+
},
|
|
950
|
+
"exit_on_error": {
|
|
951
|
+
"description": "Whether to exit the process if there is an error parsing sync config.",
|
|
952
|
+
"type": "boolean"
|
|
953
|
+
}
|
|
954
|
+
},
|
|
955
|
+
"additionalProperties": true,
|
|
956
|
+
"required": []
|
|
957
|
+
},
|
|
958
|
+
"sync_rules": {
|
|
959
|
+
"description": "Deprecated. Use sync_config instead.",
|
|
960
|
+
"type": "object",
|
|
961
|
+
"properties": {
|
|
962
|
+
"path": {
|
|
963
|
+
"description": "Path to the sync config YAML file.",
|
|
944
964
|
"type": "string"
|
|
945
965
|
},
|
|
946
966
|
"content": {
|
|
947
|
-
"description": "Inline sync
|
|
967
|
+
"description": "Inline sync config content as a string.",
|
|
948
968
|
"type": "string"
|
|
949
969
|
},
|
|
950
970
|
"exit_on_error": {
|
|
951
|
-
"description": "Whether to exit the process if there is an error parsing sync
|
|
971
|
+
"description": "Whether to exit the process if there is an error parsing sync config.",
|
|
952
972
|
"type": "boolean"
|
|
953
973
|
}
|
|
954
974
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powersync/service-schema",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20260225160713",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "FSL-1.1-ALv2",
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"repository": "https://github.com/powersync-ja/powersync-service",
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"ts-codec": "^1.3.0",
|
|
26
|
-
"@powersync/service-module-postgres": "0.0.0-dev-
|
|
27
|
-
"@powersync/service-module-postgres-storage": "0.0.0-dev-
|
|
28
|
-
"@powersync/service-module-mongodb": "0.0.0-dev-
|
|
29
|
-
"@powersync/service-module-mongodb-storage": "0.0.0-dev-
|
|
30
|
-
"@powersync/service-module-mysql": "0.0.0-dev-
|
|
31
|
-
"@powersync/service-module-mssql": "0.0.0-dev-
|
|
32
|
-
"@powersync/service-types": "0.0.0-dev-
|
|
26
|
+
"@powersync/service-module-postgres": "0.0.0-dev-20260225160713",
|
|
27
|
+
"@powersync/service-module-postgres-storage": "0.0.0-dev-20260225160713",
|
|
28
|
+
"@powersync/service-module-mongodb": "0.0.0-dev-20260225160713",
|
|
29
|
+
"@powersync/service-module-mongodb-storage": "0.0.0-dev-20260225160713",
|
|
30
|
+
"@powersync/service-module-mysql": "0.0.0-dev-20260225160713",
|
|
31
|
+
"@powersync/service-module-mssql": "0.0.0-dev-20260225160713",
|
|
32
|
+
"@powersync/service-types": "0.0.0-dev-20260225160713"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"clean": "rm -r ./dist && tsc -b --clean",
|