@webex/event-dictionary-ts 1.0.1685 → 1.0.1687

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.
@@ -16849,6 +16849,22 @@
16849
16849
  "capture": {},
16850
16850
  "playback": {}
16851
16851
  }
16852
+ },
16853
+ "audioShareDeviceInfo": {
16854
+ "type": "object",
16855
+ "description": "information about audio share device.",
16856
+ "additionalProperties": true,
16857
+ "properties": {
16858
+ "openCostTimeMs": {
16859
+ "type": "integer"
16860
+ },
16861
+ "reservedCost": {
16862
+ "type": "integer"
16863
+ },
16864
+ "maxRms": {
16865
+ "type": "integer"
16866
+ }
16867
+ }
16852
16868
  }
16853
16869
  }
16854
16870
  }
@@ -29958,6 +29974,16 @@
29958
29974
  },
29959
29975
  "rtpRemotePort": {
29960
29976
  "type": "string"
29977
+ },
29978
+ "transportType": {
29979
+ "type": "string",
29980
+ "description": "indicates transport type used",
29981
+ "enum": [
29982
+ "UDP",
29983
+ "TCP",
29984
+ "xTLS",
29985
+ "TLS"
29986
+ ]
29961
29987
  }
29962
29988
  }
29963
29989
  }
@@ -30750,6 +30776,16 @@
30750
30776
  },
30751
30777
  "rtpRemotePort": {
30752
30778
  "type": "string"
30779
+ },
30780
+ "transportType": {
30781
+ "type": "string",
30782
+ "description": "indicates transport type used",
30783
+ "enum": [
30784
+ "UDP",
30785
+ "TCP",
30786
+ "xTLS",
30787
+ "TLS"
30788
+ ]
30753
30789
  }
30754
30790
  }
30755
30791
  }
@@ -4403,6 +4403,22 @@
4403
4403
  "capture": {},
4404
4404
  "playback": {}
4405
4405
  }
4406
+ },
4407
+ "audioShareDeviceInfo": {
4408
+ "type": "object",
4409
+ "description": "information about audio share device.",
4410
+ "additionalProperties": true,
4411
+ "properties": {
4412
+ "openCostTimeMs": {
4413
+ "type": "integer"
4414
+ },
4415
+ "reservedCost": {
4416
+ "type": "integer"
4417
+ },
4418
+ "maxRms": {
4419
+ "type": "integer"
4420
+ }
4421
+ }
4406
4422
  }
4407
4423
  }
4408
4424
  }
@@ -7327,6 +7327,15 @@ export interface Event {
7327
7327
  playback?: {};
7328
7328
  additionalProperties?: false;
7329
7329
  };
7330
+ /**
7331
+ * information about audio share device.
7332
+ */
7333
+ audioShareDeviceInfo?: {
7334
+ openCostTimeMs?: number;
7335
+ reservedCost?: number;
7336
+ maxRms?: number;
7337
+ additionalProperties?: false;
7338
+ };
7330
7339
  additionalProperties?: false;
7331
7340
  }[];
7332
7341
  videoTransmit: {
@@ -12411,6 +12420,10 @@ export interface Event {
12411
12420
  rtcpRemotePort?: string;
12412
12421
  rtpLocalPort?: string;
12413
12422
  rtpRemotePort?: string;
12423
+ /**
12424
+ * indicates transport type used
12425
+ */
12426
+ transportType?: "UDP" | "TCP" | "xTLS" | "TLS";
12414
12427
  additionalProperties?: false;
12415
12428
  };
12416
12429
  additionalProperties?: false;
@@ -12632,6 +12645,10 @@ export interface Event {
12632
12645
  rtcpRemotePort?: string;
12633
12646
  rtpLocalPort?: string;
12634
12647
  rtpRemotePort?: string;
12648
+ /**
12649
+ * indicates transport type used
12650
+ */
12651
+ transportType?: "UDP" | "TCP" | "xTLS" | "TLS";
12635
12652
  additionalProperties?: false;
12636
12653
  };
12637
12654
  additionalProperties?: false;
@@ -20423,6 +20440,15 @@ export interface MediaQualityEvent {
20423
20440
  playback?: {};
20424
20441
  additionalProperties?: false;
20425
20442
  };
20443
+ /**
20444
+ * information about audio share device.
20445
+ */
20446
+ audioShareDeviceInfo?: {
20447
+ openCostTimeMs?: number;
20448
+ reservedCost?: number;
20449
+ maxRms?: number;
20450
+ additionalProperties?: false;
20451
+ };
20426
20452
  additionalProperties?: false;
20427
20453
  }[];
20428
20454
  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.1685"
31
+ "version": "1.0.1687"
32
32
  }