@powersync/service-schema 1.18.2 → 1.19.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.
|
@@ -844,6 +844,68 @@
|
|
|
844
844
|
"additionalProperties": true,
|
|
845
845
|
"required": []
|
|
846
846
|
},
|
|
847
|
+
"system": {
|
|
848
|
+
"description": "System-level configuration options.",
|
|
849
|
+
"type": "object",
|
|
850
|
+
"properties": {
|
|
851
|
+
"logging": {
|
|
852
|
+
"description": "Service logging configuration.",
|
|
853
|
+
"type": "object",
|
|
854
|
+
"properties": {
|
|
855
|
+
"level": {
|
|
856
|
+
"description": "Log level for the service logs.",
|
|
857
|
+
"anyOf": [
|
|
858
|
+
{
|
|
859
|
+
"type": "string",
|
|
860
|
+
"const": "silly"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"type": "string",
|
|
864
|
+
"const": "debug"
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
"type": "string",
|
|
868
|
+
"const": "verbose"
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"type": "string",
|
|
872
|
+
"const": "http"
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
"type": "string",
|
|
876
|
+
"const": "info"
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"type": "string",
|
|
880
|
+
"const": "warn"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"type": "string",
|
|
884
|
+
"const": "error"
|
|
885
|
+
}
|
|
886
|
+
]
|
|
887
|
+
},
|
|
888
|
+
"format": {
|
|
889
|
+
"description": "Log output format.",
|
|
890
|
+
"anyOf": [
|
|
891
|
+
{
|
|
892
|
+
"type": "string",
|
|
893
|
+
"const": "json"
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"type": "string",
|
|
897
|
+
"const": "text"
|
|
898
|
+
}
|
|
899
|
+
]
|
|
900
|
+
}
|
|
901
|
+
},
|
|
902
|
+
"additionalProperties": true,
|
|
903
|
+
"required": []
|
|
904
|
+
}
|
|
905
|
+
},
|
|
906
|
+
"additionalProperties": true,
|
|
907
|
+
"required": []
|
|
908
|
+
},
|
|
847
909
|
"parameters": {
|
|
848
910
|
"description": "Global parameters that can be referenced in sync rules and other configurations.",
|
|
849
911
|
"type": "object",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powersync/service-schema",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.19.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "FSL-1.1-ALv2",
|
|
@@ -16,16 +16,17 @@
|
|
|
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.17.0",
|
|
20
|
+
"@powersync/service-module-postgres-storage": "0.11.0",
|
|
21
|
+
"@powersync/service-module-mongodb": "0.13.0",
|
|
22
|
+
"@powersync/service-module-mongodb-storage": "0.13.0",
|
|
23
|
+
"@powersync/service-module-mysql": "0.10.0",
|
|
24
|
+
"@powersync/service-types": "0.14.0"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"clean": "rm -r ./dist && tsc -b --clean",
|
|
28
28
|
"build:ts": "tsc -b",
|
|
29
|
-
"build": "pnpm build:ts &&
|
|
29
|
+
"build": "pnpm build:ts && pnpm run build:extra",
|
|
30
|
+
"build:extra": "node ./dist/scripts/compile-json-schema.js"
|
|
30
31
|
}
|
|
31
32
|
}
|