@powersync/service-schema 1.20.4 → 1.21.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.
@@ -607,7 +607,7 @@
607
607
  "type": "string"
608
608
  },
609
609
  "crv": {
610
- "description": "The cryptographic curve used with this key (P-256, P-384, or P-512).",
610
+ "description": "The cryptographic curve used with this key (P-256, P-384, or P-521).",
611
611
  "anyOf": [
612
612
  {
613
613
  "type": "string",
@@ -619,7 +619,7 @@
619
619
  },
620
620
  {
621
621
  "type": "string",
622
- "const": "P-512"
622
+ "const": "P-521"
623
623
  }
624
624
  ]
625
625
  },
@@ -714,7 +714,7 @@
714
714
  "type": "number"
715
715
  },
716
716
  "max_buckets_per_connection": {
717
- "description": "Maximum number of buckets for each connection.\nMore buckets increase latency and memory usage. While the actual number is controlled by sync rules,\nhaving a hard limit ensures that the service errors instead of crashing when a sync rule is misconfigured.\nDefault of 1000.",
717
+ "description": "Maximum number of buckets for each connection.\nMore buckets increase latency and memory usage. While the actual number is controlled by sync config,\nhaving a hard limit ensures that the service errors instead of crashing when the sync config is misconfigured.\nDefault of 1000.",
718
718
  "type": "number"
719
719
  },
720
720
  "max_parameter_query_results": {
@@ -1077,7 +1077,7 @@
1077
1077
  "required": []
1078
1078
  },
1079
1079
  "parameters": {
1080
- "description": "Global parameters that can be referenced in sync rules and other configurations.",
1080
+ "description": "Global parameters that can be referenced in sync config and other configurations.",
1081
1081
  "type": "object",
1082
1082
  "additionalProperties": {
1083
1083
  "anyOf": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powersync/service-schema",
3
- "version": "1.20.4",
3
+ "version": "1.21.0",
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.19.3",
27
- "@powersync/service-module-postgres-storage": "0.13.3",
28
- "@powersync/service-module-mongodb": "0.15.3",
29
- "@powersync/service-module-mongodb-storage": "0.15.3",
30
- "@powersync/service-module-mysql": "0.12.3",
31
- "@powersync/service-module-mssql": "0.6.2",
32
- "@powersync/service-types": "0.15.0"
26
+ "@powersync/service-module-postgres": "0.19.5",
27
+ "@powersync/service-module-postgres-storage": "0.14.0",
28
+ "@powersync/service-module-mongodb": "0.16.0",
29
+ "@powersync/service-module-mongodb-storage": "0.16.0",
30
+ "@powersync/service-module-mysql": "0.12.5",
31
+ "@powersync/service-module-mssql": "0.6.4",
32
+ "@powersync/service-types": "0.15.2"
33
33
  },
34
34
  "scripts": {
35
35
  "clean": "rm -r ./dist && tsc -b --clean",