@webex/event-dictionary-ts 1.0.1359 → 1.0.1361

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.
@@ -15280,6 +15280,15 @@
15280
15280
  "type": "integer",
15281
15281
  "minimum": -128,
15282
15282
  "maximum": 127
15283
+ },
15284
+ "audioCapturePlaybackDriverInfo": {
15285
+ "type": "object",
15286
+ "description": "information about audio driver both on capture and playback side.",
15287
+ "additionalProperties": true,
15288
+ "properties": {
15289
+ "capture": {},
15290
+ "playback": {}
15291
+ }
15283
15292
  }
15284
15293
  }
15285
15294
  }
@@ -4032,6 +4032,15 @@
4032
4032
  "type": "integer",
4033
4033
  "minimum": -128,
4034
4034
  "maximum": 127
4035
+ },
4036
+ "audioCapturePlaybackDriverInfo": {
4037
+ "type": "object",
4038
+ "description": "information about audio driver both on capture and playback side.",
4039
+ "additionalProperties": true,
4040
+ "properties": {
4041
+ "capture": {},
4042
+ "playback": {}
4043
+ }
4035
4044
  }
4036
4045
  }
4037
4046
  }
@@ -6297,6 +6297,14 @@ export interface Event {
6297
6297
  captureHardwareProvidedAudioPacketsPerSecond?: number;
6298
6298
  sharedAudioPacketsPerSecond?: number;
6299
6299
  mediaFoundationState?: number;
6300
+ /**
6301
+ * information about audio driver both on capture and playback side.
6302
+ */
6303
+ audioCapturePlaybackDriverInfo?: {
6304
+ capture?: {};
6305
+ playback?: {};
6306
+ additionalProperties?: false;
6307
+ };
6300
6308
  additionalProperties?: false;
6301
6309
  }[];
6302
6310
  videoTransmit: {
@@ -15419,6 +15427,14 @@ export interface MediaQualityEvent {
15419
15427
  captureHardwareProvidedAudioPacketsPerSecond?: number;
15420
15428
  sharedAudioPacketsPerSecond?: number;
15421
15429
  mediaFoundationState?: number;
15430
+ /**
15431
+ * information about audio driver both on capture and playback side.
15432
+ */
15433
+ audioCapturePlaybackDriverInfo?: {
15434
+ capture?: {};
15435
+ playback?: {};
15436
+ additionalProperties?: false;
15437
+ };
15422
15438
  additionalProperties?: false;
15423
15439
  }[];
15424
15440
  videoTransmit: {
package/package.json CHANGED
@@ -28,5 +28,5 @@
28
28
  "access": "public",
29
29
  "registry": "https://registry.npmjs.org"
30
30
  },
31
- "version": "1.0.1359"
31
+ "version": "1.0.1361"
32
32
  }