@webex/event-dictionary-ts 1.0.1685 → 1.0.1686
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
|
}
|
|
@@ -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: {
|
|
@@ -20423,6 +20432,15 @@ export interface MediaQualityEvent {
|
|
|
20423
20432
|
playback?: {};
|
|
20424
20433
|
additionalProperties?: false;
|
|
20425
20434
|
};
|
|
20435
|
+
/**
|
|
20436
|
+
* information about audio share device.
|
|
20437
|
+
*/
|
|
20438
|
+
audioShareDeviceInfo?: {
|
|
20439
|
+
openCostTimeMs?: number;
|
|
20440
|
+
reservedCost?: number;
|
|
20441
|
+
maxRms?: number;
|
|
20442
|
+
additionalProperties?: false;
|
|
20443
|
+
};
|
|
20426
20444
|
additionalProperties?: false;
|
|
20427
20445
|
}[];
|
|
20428
20446
|
videoTransmit: {
|
package/package.json
CHANGED