@basmilius/apple-airplay 0.2.1 → 0.3.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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -1796,7 +1796,7 @@ class DataStream extends BaseStream {
1796
1796
  extension = message[1];
1797
1797
  message = message[0];
1798
1798
  }
1799
- const bytes = toBinary(ProtocolMessageSchema, message, { writeUnknownFields: false });
1799
+ const bytes = toBinary(ProtocolMessageSchema, message, { writeUnknownFields: true });
1800
1800
  const lengthPrefix = Buffer.from(encodeVarint(bytes.byteLength));
1801
1801
  const payload = Buffer.concat([lengthPrefix, bytes]);
1802
1802
  const plistPayload = Buffer.from(Plist2.serialize({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@basmilius/apple-airplay",
3
3
  "description": "Implementation of Apple's AirPlay2 in Node.js.",
4
- "version": "0.2.1",
4
+ "version": "0.3.0",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": {
@@ -41,8 +41,8 @@
41
41
  }
42
42
  },
43
43
  "dependencies": {
44
- "@basmilius/apple-common": "0.2.1",
45
- "@basmilius/apple-encoding": "0.2.1",
44
+ "@basmilius/apple-common": "0.3.0",
45
+ "@basmilius/apple-encoding": "0.3.0",
46
46
  "@bufbuild/protobuf": "^2.11.0"
47
47
  },
48
48
  "devDependencies": {