@webex/plugin-meetings 3.12.0-next.64 → 3.12.0-next.66
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/dist/aiEnableRequest/index.js +1 -1
- package/dist/breakouts/breakout.js +1 -1
- package/dist/breakouts/index.js +1 -1
- package/dist/constants.js +17 -3
- package/dist/constants.js.map +1 -1
- package/dist/interceptors/dataChannelAuthToken.js +75 -15
- package/dist/interceptors/dataChannelAuthToken.js.map +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/meeting/index.js +738 -679
- package/dist/meeting/index.js.map +1 -1
- package/dist/types/constants.d.ts +1 -1
- package/dist/types/meeting/index.d.ts +2 -2
- package/dist/webinar/index.js +247 -152
- package/dist/webinar/index.js.map +1 -1
- package/package.json +3 -3
- package/src/constants.ts +2 -1
- package/src/interceptors/dataChannelAuthToken.ts +88 -12
- package/src/meeting/index.ts +111 -49
- package/src/webinar/index.ts +140 -29
- package/test/unit/spec/interceptors/dataChannelAuthToken.ts +196 -0
- package/test/unit/spec/meeting/index.js +139 -23
- package/test/unit/spec/webinar/index.ts +257 -21
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { LLM_DEFAULT_SESSION, LLM_PRACTICE_SESSION } from '@webex/internal-plugin-llm';
|
|
1
2
|
export type Enum<T extends Record<string, unknown>> = T[keyof T];
|
|
2
3
|
export declare const AUDIO = "audio";
|
|
3
4
|
export declare const AUDIO_STATUS = "audioStatus";
|
|
@@ -31,7 +32,6 @@ export declare const LOCAL = "local";
|
|
|
31
32
|
export declare const LOCI = "loci";
|
|
32
33
|
export declare const LOCUS_URL = "locusUrl";
|
|
33
34
|
export declare const END = "end";
|
|
34
|
-
export declare const LLM_PRACTICE_SESSION = "llm-practice-session";
|
|
35
35
|
export declare const MAX_RANDOM_DELAY_FOR_MEETING_INFO: number;
|
|
36
36
|
export declare const MEETINGINFO = "meetingInfo";
|
|
37
37
|
export declare const MEET = "meet";
|
|
@@ -1438,8 +1438,8 @@ export default class Meeting extends StatelessWebexPlugin {
|
|
|
1438
1438
|
*/
|
|
1439
1439
|
private cleanupLLMConneciton;
|
|
1440
1440
|
/**
|
|
1441
|
-
* Clears
|
|
1442
|
-
*
|
|
1441
|
+
* Clears data channel tokens associated with this meeting ownership.
|
|
1442
|
+
* Ownership checks are enforced in internal-plugin-llm.
|
|
1443
1443
|
* @returns {void}
|
|
1444
1444
|
*/
|
|
1445
1445
|
clearDataChannelToken(): void;
|