@hytopia.com/server-protocol 1.3.59 → 1.3.60

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hytopia.com/server-protocol",
3
- "version": "1.3.59",
3
+ "version": "1.3.60",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -120,7 +120,7 @@ const wrtcSctpParametersSchema: JSONSchemaType<mediasoup.types.SctpParameters> =
120
120
  maxMessageSize: { type: 'number' },
121
121
  },
122
122
  required: [ 'port', 'OS', 'MIS', 'maxMessageSize' ],
123
- additionalProperties: false,
123
+ additionalProperties: true, // May be an SCTPParametersDump
124
124
  };
125
125
 
126
126
  const wrtcSctpStreamParametersSchema: JSONSchemaType<mediasoup.types.SctpStreamParameters> = {