@4players/odin-common 6.0.2 → 6.0.3

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/package.json +1 -1
  2. package/plugin/api.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4players/odin-common",
3
- "version": "6.0.2",
3
+ "version": "6.0.3",
4
4
  "description": "A collection of commonly used type definitions and utility functions across ODIN web projects",
5
5
  "author": "Josho Bleicker <josho.bleicker@4players.io> (https://www.4players.io)",
6
6
  "homepage": "https://www.4players.io",
package/plugin/api.d.ts CHANGED
@@ -94,7 +94,7 @@ export declare namespace Backend {
94
94
  readonly volume: PlaybackVolume;
95
95
  readonly uid: UID;
96
96
  jitterStats: JitterStats;
97
- setVolume(value: PlaybackVolume): Promise<void>;
97
+ setVolume(value: PlaybackVolume): void;
98
98
  }
99
99
  interface CreateAudioCaptureParameters extends Partial<DeviceParameters> {
100
100
  readonly volume?: CaptureVolume;