camstreamerlib 4.0.0-beta.77 → 4.0.0-beta.79

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.
@@ -66,7 +66,7 @@ class CamStreamerAPI {
66
66
  const agent = this.getClient(options?.proxyParams);
67
67
  await agent.post({
68
68
  path: `${BASE_PATH}/stream/set.cgi`,
69
- data: streamData,
69
+ data: JSON.stringify(streamData),
70
70
  parameters: {
71
71
  stream_id: streamId,
72
72
  },
@@ -63,7 +63,7 @@ export class CamStreamerAPI {
63
63
  const agent = this.getClient(options?.proxyParams);
64
64
  await agent.post({
65
65
  path: `${BASE_PATH}/stream/set.cgi`,
66
- data: streamData,
66
+ data: JSON.stringify(streamData),
67
67
  parameters: {
68
68
  stream_id: streamId,
69
69
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "camstreamerlib",
3
- "version": "4.0.0-beta.77",
3
+ "version": "4.0.0-beta.79",
4
4
  "description": "Helper library for CamStreamer ACAP applications.",
5
5
  "prettier": "@camstreamer/prettier-config",
6
6
  "engine": {