@powersync/service-schema 1.23.0 → 1.23.2
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.
|
@@ -765,6 +765,10 @@
|
|
|
765
765
|
"max_parameter_query_results": {
|
|
766
766
|
"description": "Related to max_buckets_per_connection, but this limit applies directly on the parameter\nquery results, _before_ we convert it into an unique set.\nDefault of 1000.",
|
|
767
767
|
"type": "number"
|
|
768
|
+
},
|
|
769
|
+
"bucket_count_cache_ttl_minutes": {
|
|
770
|
+
"description": "How long to keep cached bucket counts before refreshing them, in minutes.\nBucket counts may be affected by compacting.\nDefault of 60 (1 hour).",
|
|
771
|
+
"type": "number"
|
|
768
772
|
}
|
|
769
773
|
},
|
|
770
774
|
"additionalProperties": true,
|
|
@@ -921,6 +925,30 @@
|
|
|
921
925
|
"items": {
|
|
922
926
|
"type": "string"
|
|
923
927
|
}
|
|
928
|
+
},
|
|
929
|
+
"bulk_read_preference": {
|
|
930
|
+
"anyOf": [
|
|
931
|
+
{
|
|
932
|
+
"type": "string",
|
|
933
|
+
"const": "primary"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"type": "string",
|
|
937
|
+
"const": "primaryPreferred"
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
"type": "string",
|
|
941
|
+
"const": "secondary"
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"type": "string",
|
|
945
|
+
"const": "secondaryPreferred"
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"type": "string",
|
|
949
|
+
"const": "nearest"
|
|
950
|
+
}
|
|
951
|
+
]
|
|
924
952
|
}
|
|
925
953
|
},
|
|
926
954
|
"additionalProperties": true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powersync/service-schema",
|
|
3
|
-
"version": "1.23.
|
|
3
|
+
"version": "1.23.2",
|
|
4
4
|
"license": "FSL-1.1-ALv2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -17,14 +17,14 @@
|
|
|
17
17
|
"repository": "https://github.com/powersync-ja/powersync-service",
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"ts-codec": "^1.3.0",
|
|
20
|
-
"@powersync/service-module-postgres
|
|
21
|
-
"@powersync/service-module-
|
|
22
|
-
"@powersync/service-module-mongodb
|
|
23
|
-
"@powersync/service-module-convex": "0.2.
|
|
24
|
-
"@powersync/service-module-
|
|
25
|
-
"@powersync/service-module-
|
|
26
|
-
"@powersync/service-
|
|
27
|
-
"@powersync/service-
|
|
20
|
+
"@powersync/service-module-postgres": "0.21.2",
|
|
21
|
+
"@powersync/service-module-postgres-storage": "0.16.2",
|
|
22
|
+
"@powersync/service-module-mongodb": "0.18.2",
|
|
23
|
+
"@powersync/service-module-convex": "0.2.2",
|
|
24
|
+
"@powersync/service-module-mongodb-storage": "0.18.2",
|
|
25
|
+
"@powersync/service-module-mysql": "0.14.2",
|
|
26
|
+
"@powersync/service-module-mssql": "0.8.2",
|
|
27
|
+
"@powersync/service-types": "0.16.1"
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
30
|
"clean": "rm -r ./dist && tsc -b --clean",
|