engage-wasm 1.236.90760009 → 1.240.90800011

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/engagewasm.api.js CHANGED
@@ -94,6 +94,10 @@ export default class Engage extends EventTarget {
94
94
  return this.wasmWrapper.engageBeginGroupTx(id, priority, flags);
95
95
  }
96
96
 
97
+ engageSetGroupRules(id, jsonParams) {
98
+ return this.wasmWrapper.engageSetGroupRules(id, jsonParams);
99
+ }
100
+
97
101
  engageBeginGroupTxAdvanced(id, jsonParams) {
98
102
  return this.wasmWrapper.engageBeginGroupTxAdvanced(id, jsonParams);
99
103
  }
@@ -118,6 +122,10 @@ export default class Engage extends EventTarget {
118
122
  return this.wasmWrapper.engageUnmuteGroupRx(id);
119
123
  }
120
124
 
125
+ engageSetGroupRxVolume(id, left, right) {
126
+ return this.wasmWrapper.engageSetGroupRxVolume(id, left, right);
127
+ }
128
+
121
129
  engageGetActiveLicenseDescriptor() {
122
130
  return this.wasmWrapper.engageGetActiveLicenseDescriptor();
123
131
  }