diff --git a/packages/contact-center/store/package.json b/packages/contact-center/store/package.json index 541d5bcf2..ed962f92f 100644 --- a/packages/contact-center/store/package.json +++ b/packages/contact-center/store/package.json @@ -23,7 +23,7 @@ "deploy:npm": "yarn npm publish" }, "dependencies": { - "@webex/contact-center": "3.10.0-next.20", + "@webex/contact-center": "3.10.0-next.33", "mobx": "6.13.5", "typescript": "5.6.3" }, diff --git a/packages/contact-center/store/src/store.ts b/packages/contact-center/store/src/store.ts index ac7b31157..ab05e5bd1 100644 --- a/packages/contact-center/store/src/store.ts +++ b/packages/contact-center/store/src/store.ts @@ -133,33 +133,38 @@ class Store implements IStore { reject(new Error('Webex SDK failed to initialize')); }, 6000); - //@ts-expect-error To be fixed in SDK - https://jira-eng-sjc12.cisco.com/jira/browse/CAI-6762 - const webex = Webex.init({ - config: options.webexConfig, - credentials: { - access_token: options.access_token, - }, - }); + try { + //@ts-expect-error To be fixed in SDK - https://jira-eng-sjc12.cisco.com/jira/browse/CAI-6762 + const webex = Webex.init({ + config: options.webexConfig, + credentials: { + access_token: options.access_token, + }, + }); - webex.once('ready', () => { - setupEventListeners(webex.cc); - clearTimeout(timer); - this.registerCC(webex) - .then(() => { - this.logger.log('CC-Widgets: Store init(): store initialization complete', { - module: 'cc-store#store.ts', - method: 'init', + webex.once('ready', () => { + setupEventListeners(webex.cc); + clearTimeout(timer); + this.registerCC(webex) + .then(() => { + this.logger.log('CC-Widgets: Store init(): store initialization complete', { + module: 'cc-store#store.ts', + method: 'init', + }); + resolve(); + }) + .catch((error) => { + this.logger.error(`CC-Widgets: Store init(): registration failed - ${error}`, { + module: 'cc-store#store.ts', + method: 'init', + }); + reject(error); }); - resolve(); - }) - .catch((error) => { - this.logger.error(`CC-Widgets: Store init(): registration failed - ${error}`, { - module: 'cc-store#store.ts', - method: 'init', - }); - reject(error); - }); - }); + }); + } catch (error) { + clearTimeout(timer); + reject(error); + } }); } } diff --git a/packages/contact-center/store/src/storeEventsWrapper.ts b/packages/contact-center/store/src/storeEventsWrapper.ts index 2fba7ed50..bc74284fd 100644 --- a/packages/contact-center/store/src/storeEventsWrapper.ts +++ b/packages/contact-center/store/src/storeEventsWrapper.ts @@ -384,7 +384,15 @@ class StoreWrapper implements IStoreWrapper { }; init(options: InitParams): Promise { - return this.store.init(options, this.setupIncomingTaskHandler); + return this.store.init(options, this.setupIncomingTaskHandler).catch((error) => { + const err = error instanceof Error ? error : new Error(String(error)); + + if (this.onErrorCallback) { + this.onErrorCallback('Store', err); + } + + throw err; + }); } registerCC = (webex?: WithWebex['webex']) => { diff --git a/packages/contact-center/store/tests/store.ts b/packages/contact-center/store/tests/store.ts index 75305497e..b51061120 100644 --- a/packages/contact-center/store/tests/store.ts +++ b/packages/contact-center/store/tests/store.ts @@ -179,15 +179,34 @@ describe('Store', () => { expect(storeInstance.registerCC).toHaveBeenCalledWith(mockWebex); }); - it('should reject the promise if registerCC fails in init method', async () => { + it('should log an error and reject the promise if registerCC fails in init method', async () => { const initParams = { webexConfig: {anyConfig: true}, access_token: 'fake_token', }; - jest.spyOn(storeInstance, 'registerCC').mockRejectedValue(new Error('registerCC failed')); + const error = new Error('registerCC failed'); + jest.spyOn(storeInstance, 'registerCC').mockRejectedValue(error); + + // Provide a logger so the init() error handler can log without failing + // @ts-expect-error partial logger mock for test + storeInstance.logger = { + error: jest.fn(), + log: jest.fn(), + warn: jest.fn(), + info: jest.fn(), + trace: jest.fn(), + }; await expect(storeInstance.init(initParams, jest.fn())).rejects.toThrow('registerCC failed'); + + expect(storeInstance.logger.error).toHaveBeenCalledWith( + 'CC-Widgets: Store init(): registration failed - Error: registerCC failed', + { + module: 'cc-store#store.ts', + method: 'init', + } + ); }); it('should reject the promise if Webex SDK fails to initialize', async () => { @@ -206,5 +225,27 @@ describe('Store', () => { await expect(initPromise).rejects.toThrow('Webex SDK failed to initialize'); }); + + it('should clear timeout and reject if Webex.init throws synchronously', async () => { + const initParams = { + webexConfig: {anyConfig: true}, + access_token: 'fake_token', + }; + + const syncError = new Error('sync init error'); + // @ts-expect-error overriding mock implementation for this test + const initSpy = jest.spyOn(Webex, 'init').mockImplementation(() => { + throw syncError; + }); + + await expect(storeInstance.init(initParams, jest.fn())).rejects.toThrow('sync init error'); + + expect(initSpy).toHaveBeenCalledWith({ + config: initParams.webexConfig, + credentials: { + access_token: initParams.access_token, + }, + }); + }); }); }); diff --git a/packages/contact-center/store/tests/storeEventsWrapper.ts b/packages/contact-center/store/tests/storeEventsWrapper.ts index 9bf0ab098..bf4395e7c 100644 --- a/packages/contact-center/store/tests/storeEventsWrapper.ts +++ b/packages/contact-center/store/tests/storeEventsWrapper.ts @@ -645,6 +645,52 @@ describe('storeEventsWrapper', () => { expect(mockTask.on).toHaveBeenCalledWith(TASK_EVENTS.AGENT_CONSULT_CREATED, expect.any(Function)); }); + it('should call onErrorCallback and rethrow when store.init rejects with an Error', async () => { + const cc = storeWrapper['store'].cc; + const logger = storeWrapper['store'].logger; + const error = new Error('init failed'); + const onErrorCallback = jest.fn(); + + storeWrapper['store'].init = jest.fn().mockRejectedValue(error); + // Directly set onErrorCallback to focus on init error handling behavior + storeWrapper.onErrorCallback = onErrorCallback; + + const options = { + webex: { + cc, + logger, + }, + }; + + await expect(storeWrapper.init(options)).rejects.toThrow('init failed'); + + expect(onErrorCallback).toHaveBeenCalledWith('Store', error); + }); + + it('should wrap non-Error rejections and pass wrapped Error to onErrorCallback', async () => { + const cc = storeWrapper['store'].cc; + const logger = storeWrapper['store'].logger; + const rawError = 'init failed as string'; + const onErrorCallback = jest.fn(); + + storeWrapper['store'].init = jest.fn().mockRejectedValue(rawError); + storeWrapper.onErrorCallback = onErrorCallback; + + const options = { + webex: { + cc, + logger, + }, + }; + + await expect(storeWrapper.init(options)).rejects.toThrow('init failed as string'); + + expect(onErrorCallback).toHaveBeenCalledWith('Store', expect.any(Error)); + const [, wrappedError] = onErrorCallback.mock.calls[0]; + expect(wrappedError).toBeInstanceOf(Error); + expect(wrappedError.message).toBe('init failed as string'); + }); + it('should handle task assignment and call onTaskAssigned callback', () => { const mockTaskAssignedCallback = jest.fn(); storeWrapper.setTaskAssigned(mockTaskAssignedCallback); diff --git a/widgets-samples/cc/samples-cc-react-app/package.json b/widgets-samples/cc/samples-cc-react-app/package.json index 5c78888bf..1956bea14 100644 --- a/widgets-samples/cc/samples-cc-react-app/package.json +++ b/widgets-samples/cc/samples-cc-react-app/package.json @@ -25,7 +25,7 @@ "react-dom": "18.3.1", "ts-loader": "^9.5.1", "typescript": "^5.6.3", - "webex": "3.9.0-next.30", + "webex": "3.10.0-next.49", "webpack": "^5.94.0", "webpack-cli": "^5.1.4", "webpack-dev-server": "^5.1.0", diff --git a/widgets-samples/cc/samples-cc-react-app/src/App.tsx b/widgets-samples/cc/samples-cc-react-app/src/App.tsx index 9fcc4b388..ce04dc623 100644 --- a/widgets-samples/cc/samples-cc-react-app/src/App.tsx +++ b/widgets-samples/cc/samples-cc-react-app/src/App.tsx @@ -643,10 +643,16 @@ function App() { disabled={accessToken.trim() === ''} onClick={() => { setShowLoader(true); - store.init({webexConfig, access_token: accessToken}).then(() => { - setIsSdkReady(true); - setShowLoader(false); - }); + store + .init({webexConfig, access_token: accessToken}) + .then(() => { + setIsSdkReady(true); + setShowLoader(false); + }) + .catch((error) => { + console.error('Failed to initialize widgets:', error); + setShowLoader(false); + }); }} data-testid="samples:init-widgets-button" > diff --git a/widgets-samples/cc/samples-cc-react-app/webpack.config.js b/widgets-samples/cc/samples-cc-react-app/webpack.config.js index 768708b69..b41e9099e 100644 --- a/widgets-samples/cc/samples-cc-react-app/webpack.config.js +++ b/widgets-samples/cc/samples-cc-react-app/webpack.config.js @@ -55,7 +55,7 @@ module.exports = { // TS/TSX → transpile only (skip type-checking) { test: /\.[jt]sx?$/, - include: [path.resolve(__dirname, 'src'), ...PKG_SRC], + include: [path.resolve(__dirname, 'src'), ...PKG_SRC, resolveMonorepoRoot('node_modules/xxh3-ts')], loader: 'ts-loader', options: { transpileOnly: true, // ✅ disables type-checking diff --git a/yarn.lock b/yarn.lock index bd38a42df..12129b46d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2366,15 +2366,6 @@ __metadata: languageName: node linkType: hard -"@babel/runtime@npm:^7.27.0": - version: 7.27.0 - resolution: "@babel/runtime@npm:7.27.0" - dependencies: - regenerator-runtime: "npm:^0.14.0" - checksum: 10c0/35091ea9de48bd7fd26fb177693d64f4d195eb58ab2b142b893b7f3fa0f1d7c677604d36499ae0621a3703f35ba0c6a8f6c572cc8f7dc0317213841e493cf663 - languageName: node - linkType: hard - "@babel/runtime@npm:^7.28.3": version: 7.28.3 resolution: "@babel/runtime@npm:7.28.3" @@ -9211,39 +9202,21 @@ __metadata: languageName: node linkType: hard -"@webex/calling@npm:3.10.0-next.14": - version: 3.10.0-next.14 - resolution: "@webex/calling@npm:3.10.0-next.14" +"@webex/calling@npm:3.10.0-next.25": + version: 3.10.0-next.25 + resolution: "@webex/calling@npm:3.10.0-next.25" dependencies: "@types/platform": "npm:1.3.4" "@webex/internal-media-core": "npm:2.20.3" - "@webex/internal-plugin-metrics": "npm:3.10.0-next.4" - "@webex/media-helpers": "npm:3.10.0-next.2" - async-mutex: "npm:0.4.0" - buffer: "npm:6.0.3" - jest-html-reporters: "npm:3.0.11" - platform: "npm:1.3.6" - uuid: "npm:8.3.2" - xstate: "npm:4.30.6" - checksum: 10c0/55d886132bb75241dbd3fbe13817dbbfd36a01494cee45c7f832b0093ab700c451fe58aa752ddad49262dc19fec4824125ba0b3246f89048c0e4c9f7a867f5de - languageName: node - linkType: hard - -"@webex/calling@npm:3.9.0-next.8": - version: 3.9.0-next.8 - resolution: "@webex/calling@npm:3.9.0-next.8" - dependencies: - "@types/platform": "npm:1.3.4" - "@webex/internal-media-core": "npm:2.19.0" - "@webex/internal-plugin-metrics": "npm:3.9.0-next.3" - "@webex/media-helpers": "npm:3.9.0-next.1" + "@webex/internal-plugin-metrics": "npm:3.10.0-next.12" + "@webex/media-helpers": "npm:3.10.0-next.3" async-mutex: "npm:0.4.0" buffer: "npm:6.0.3" jest-html-reporters: "npm:3.0.11" platform: "npm:1.3.6" uuid: "npm:8.3.2" xstate: "npm:4.30.6" - checksum: 10c0/a323269a448107d18069451766f2c25905c280a88f1b44561ad58f4868d7a48feec12ca5810be948c694a126f4caaf6dcd9de7471103b5248eb577dcf7e7cc8a + checksum: 10c0/6a4194e0925c275e1fe0855fe778e9de30b535b5a2d633e9467172d1d994376b7742a4fc99d728f5dccc7e9643099342c081d2029c26e675223abdca3280629a languageName: node linkType: hard @@ -9355,7 +9328,7 @@ __metadata: "@testing-library/react": "npm:16.0.1" "@types/jest": "npm:29.5.14" "@types/react-test-renderer": "npm:18" - "@webex/contact-center": "npm:3.10.0-next.20" + "@webex/contact-center": "npm:3.10.0-next.33" "@webex/test-fixtures": "workspace:*" babel-jest: "npm:29.7.0" babel-loader: "npm:9.2.1" @@ -9576,10 +9549,10 @@ __metadata: languageName: node linkType: hard -"@webex/common-timers@npm:3.8.1-next.11": - version: 3.8.1-next.11 - resolution: "@webex/common-timers@npm:3.8.1-next.11" - checksum: 10c0/3c16c9be0be42a92dc2b99e2b7f85fd615afab6f055a6780861dd4ffd1cec9bbe4877304c2851541728a127ac6ff941debfb1fc28d27a246723a347cd8e0d96a +"@webex/common-timers@npm:3.10.0-next.1": + version: 3.10.0-next.1 + resolution: "@webex/common-timers@npm:3.10.0-next.1" + checksum: 10c0/24b47468775286a753e9eb18fef3ba50e63e3fb2d7075aca51bdacc79a2577465314dd761d72b5fa7457ae737def6809571d9cb7fd246dec534a6ee91c53901d languageName: node linkType: hard @@ -9631,9 +9604,9 @@ __metadata: languageName: node linkType: hard -"@webex/common@npm:3.8.1-next.11": - version: 3.8.1-next.11 - resolution: "@webex/common@npm:3.8.1-next.11" +"@webex/common@npm:3.10.0-next.1": + version: 3.10.0-next.1 + resolution: "@webex/common@npm:3.10.0-next.1" dependencies: backoff: "npm:^2.5.0" bowser: "npm:^2.11.0" @@ -9642,7 +9615,7 @@ __metadata: lodash: "npm:^4.17.21" safe-buffer: "npm:^5.2.0" urlsafe-base64: "npm:^1.0.0" - checksum: 10c0/fb252882a38fc8ac7716154096d5e498298f85cf8a98c32148e29599f6bc98ac758c3e91bac6c082f6fe7ded413d356aaf28c2081acdc883017da7037f9774b3 + checksum: 10c0/2153d95dfad0f9b7e76d755ada3ecbe22f9902aa62ca10486bccdec94446d7910841b4b65bff04648c2ca0b6b3d1c7ab1bf6320b9b43ebd1475f5363a0bcfcca languageName: node linkType: hard @@ -9682,39 +9655,21 @@ __metadata: languageName: node linkType: hard -"@webex/contact-center@npm:3.10.0-next.20": - version: 3.10.0-next.20 - resolution: "@webex/contact-center@npm:3.10.0-next.20" +"@webex/contact-center@npm:3.10.0-next.33": + version: 3.10.0-next.33 + resolution: "@webex/contact-center@npm:3.10.0-next.33" dependencies: "@types/platform": "npm:1.3.4" - "@webex/calling": "npm:3.10.0-next.14" - "@webex/internal-plugin-mercury": "npm:3.10.0-next.4" - "@webex/internal-plugin-metrics": "npm:3.10.0-next.4" - "@webex/internal-plugin-support": "npm:3.10.0-next.4" - "@webex/plugin-authorization": "npm:3.10.0-next.4" - "@webex/plugin-logger": "npm:3.10.0-next.4" - "@webex/webex-core": "npm:3.10.0-next.4" + "@webex/calling": "npm:3.10.0-next.25" + "@webex/internal-plugin-mercury": "npm:3.10.0-next.12" + "@webex/internal-plugin-metrics": "npm:3.10.0-next.12" + "@webex/internal-plugin-support": "npm:3.10.0-next.12" + "@webex/plugin-authorization": "npm:3.10.0-next.12" + "@webex/plugin-logger": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" jest-html-reporters: "npm:3.0.11" lodash: "npm:^4.17.21" - checksum: 10c0/5ad164744adabbd3d98094834ec01056a170c580e6f5088755be24f4c4889ad715d15b3c40905806a5fd879015181f08738d8e1dbfb656b141ef946b2c1af7d0 - languageName: node - linkType: hard - -"@webex/contact-center@npm:3.9.0-next.16": - version: 3.9.0-next.16 - resolution: "@webex/contact-center@npm:3.9.0-next.16" - dependencies: - "@types/platform": "npm:1.3.4" - "@webex/calling": "npm:3.9.0-next.8" - "@webex/internal-plugin-mercury": "npm:3.9.0-next.3" - "@webex/internal-plugin-metrics": "npm:3.9.0-next.3" - "@webex/internal-plugin-support": "npm:3.9.0-next.5" - "@webex/plugin-authorization": "npm:3.9.0-next.3" - "@webex/plugin-logger": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" - jest-html-reporters: "npm:3.0.11" - lodash: "npm:^4.17.21" - checksum: 10c0/da622b76934df5f280c02b566f84ae82faf6dcd490d43cd0f1367338713fa6c8fa70d8b98c4d5f7fd45080a009cca0d4072b81227cf8c0843f010722f85f6bfc + checksum: 10c0/8ef0c7d76a1b832ebaeb8abfd58bf3067af9fd425c444be466e9dcc2b13448788dc6bf4b584e36533cafba026fcf396b94ef3a1026b2e75372f6d622e5e64e2c languageName: node linkType: hard @@ -9749,12 +9704,12 @@ __metadata: languageName: node linkType: hard -"@webex/helper-html@npm:3.8.1-next.11": - version: 3.8.1-next.11 - resolution: "@webex/helper-html@npm:3.8.1-next.11" +"@webex/helper-html@npm:3.10.0-next.1": + version: 3.10.0-next.1 + resolution: "@webex/helper-html@npm:3.10.0-next.1" dependencies: lodash: "npm:^4.17.21" - checksum: 10c0/39f149d80680669db78b4dfb276a555abb7cf0a565a1ce1dcee1c28a48634faa55d810e2ed153a6bf81fd341ba378cdc1539501df19e94d104b6cffc9cf6b025 + checksum: 10c0/2902f8b86eb7954a31d62496bc24f89a3afdc154ec3964f43bda9b80c13cc8c0ae2b4133c43dfaf089a276a9d2f87d5f3aa76e069a3f0bd2a632eeba360e90a4 languageName: node linkType: hard @@ -9792,20 +9747,20 @@ __metadata: languageName: node linkType: hard -"@webex/helper-image@npm:3.8.1-next.11": - version: 3.8.1-next.11 - resolution: "@webex/helper-image@npm:3.8.1-next.11" +"@webex/helper-image@npm:3.10.0-next.1": + version: 3.10.0-next.1 + resolution: "@webex/helper-image@npm:3.10.0-next.1" dependencies: - "@webex/http-core": "npm:3.8.1-next.11" - "@webex/test-helper-chai": "npm:3.8.1-next.11" - "@webex/test-helper-file": "npm:3.8.1-next.11" - "@webex/test-helper-mocha": "npm:3.8.1-next.11" + "@webex/http-core": "npm:3.10.0-next.1" + "@webex/test-helper-chai": "npm:3.10.0-next.1" + "@webex/test-helper-file": "npm:3.10.0-next.1" + "@webex/test-helper-mocha": "npm:3.10.0-next.1" exifr: "npm:^5.0.3" gm: "npm:^1.23.1" lodash: "npm:^4.17.21" mime: "npm:^2.4.4" safe-buffer: "npm:^5.2.0" - checksum: 10c0/4760fb14f5130ffb07ef5833837cadab0b2a6e38def3ba508e921c9cabdf82aa5aa7d849aae7c98484c5d244e71a2953cda12f6716d4c4fa8e926904b6f39965 + checksum: 10c0/e5f4a4c6d49ae852fbd3dd2941f0a3db56ac28bbc445cbdd316d0a8e883d352f7909bcee9e821f10e0fa9e06cdfd0d8c98f29f1c8e4692fd7858dc606bb56479 languageName: node linkType: hard @@ -9871,11 +9826,11 @@ __metadata: languageName: node linkType: hard -"@webex/http-core@npm:3.8.1-next.11": - version: 3.8.1-next.11 - resolution: "@webex/http-core@npm:3.8.1-next.11" +"@webex/http-core@npm:3.10.0-next.1": + version: 3.10.0-next.1 + resolution: "@webex/http-core@npm:3.10.0-next.1" dependencies: - "@webex/common": "npm:3.8.1-next.11" + "@webex/common": "npm:3.10.0-next.1" file-type: "npm:^16.0.1" global: "npm:^4.4.0" is-function: "npm:^1.0.1" @@ -9885,7 +9840,7 @@ __metadata: request: "npm:^2.88.0" safe-buffer: "npm:^5.2.0" xtend: "npm:^4.0.2" - checksum: 10c0/bf26cf17b753e3ca73af48ae22a40629e8acc48d5fb00547f66c231448b8ebec451261904b2cc0c69a8e12a3c9bc6b4f13ceec7e3e952d2724b2f7b67b6d7296 + checksum: 10c0/ee33409fabd1b13abbc8384d601db4137a3ed6abb1d799de9b6c36e8351212cfdef56ef8e817064c00b6427e7c0606d8abfeb460425faca646f3593a9cf3993e languageName: node linkType: hard @@ -9906,26 +9861,6 @@ __metadata: languageName: node linkType: hard -"@webex/internal-media-core@npm:2.19.0": - version: 2.19.0 - resolution: "@webex/internal-media-core@npm:2.19.0" - dependencies: - "@babel/runtime": "npm:^7.18.9" - "@babel/runtime-corejs2": "npm:^7.25.0" - "@webex/rtcstats": "npm:^1.5.5" - "@webex/ts-sdp": "npm:1.8.2" - "@webex/web-capabilities": "npm:^1.6.1" - "@webex/web-client-media-engine": "npm:3.34.0" - events: "npm:^3.3.0" - ip-anonymize: "npm:^0.1.0" - typed-emitter: "npm:^2.1.0" - uuid: "npm:^8.3.2" - webrtc-adapter: "npm:^8.1.2" - xstate: "npm:^4.30.6" - checksum: 10c0/abce85d5bdae687a57a4d8776d3a7b5993b331987a1ddabc2084b5c29c12f96cdc2ed859a612045b67bb7ad6462fb9f7a6a2e42474810089c911c698c2ec1a5b - languageName: node - linkType: hard - "@webex/internal-media-core@npm:2.20.3": version: 2.20.3 resolution: "@webex/internal-media-core@npm:2.20.3" @@ -9974,17 +9909,17 @@ __metadata: languageName: node linkType: hard -"@webex/internal-plugin-calendar@npm:3.9.0-next.4": - version: 3.9.0-next.4 - resolution: "@webex/internal-plugin-calendar@npm:3.9.0-next.4" +"@webex/internal-plugin-calendar@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/internal-plugin-calendar@npm:3.10.0-next.12" dependencies: - "@webex/internal-plugin-conversation": "npm:3.9.0-next.4" - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/internal-plugin-encryption": "npm:3.9.0-next.4" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/internal-plugin-conversation": "npm:3.10.0-next.12" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/internal-plugin-encryption": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" lodash: "npm:^4.17.21" uuid: "npm:^3.3.2" - checksum: 10c0/3f28479026eeaa015fdfc3cc39c0fa7c8500898a0043f1a260d4c9b136ce77f009c1883e235702bc2f2a6d13f75b8817916355e5b40b15eea3bfe19347ead2b8 + checksum: 10c0/5aa814906de4cc8c1587c7d8b9a5b906659d9ef50d351eaae9cacb1e3626b0cab8173f00b610ff235585826ef54ed632d878fc9cc81199f1c1b3efd1f94cc00c languageName: node linkType: hard @@ -10024,39 +9959,21 @@ __metadata: languageName: node linkType: hard -"@webex/internal-plugin-conversation@npm:3.10.0-next.4": - version: 3.10.0-next.4 - resolution: "@webex/internal-plugin-conversation@npm:3.10.0-next.4" +"@webex/internal-plugin-conversation@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/internal-plugin-conversation@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/helper-html": "npm:3.8.1-next.11" - "@webex/helper-image": "npm:3.8.1-next.11" - "@webex/internal-plugin-encryption": "npm:3.10.0-next.4" - "@webex/internal-plugin-user": "npm:3.10.0-next.4" - "@webex/webex-core": "npm:3.10.0-next.4" + "@webex/common": "npm:3.10.0-next.1" + "@webex/helper-html": "npm:3.10.0-next.1" + "@webex/helper-image": "npm:3.10.0-next.1" + "@webex/internal-plugin-encryption": "npm:3.10.0-next.12" + "@webex/internal-plugin-user": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" crypto-js: "npm:^4.1.1" lodash: "npm:^4.17.21" node-scr: "npm:^0.3.0" uuid: "npm:^3.3.2" - checksum: 10c0/ba44ab1fa8c0cb141582f32ce312d47cc4f1038f4c2ee718444b6894741f6e1863aa587b3d90421c6863e82fdb00f6b70f15c2aefa8b68555561df570663a879 - languageName: node - linkType: hard - -"@webex/internal-plugin-conversation@npm:3.9.0-next.4": - version: 3.9.0-next.4 - resolution: "@webex/internal-plugin-conversation@npm:3.9.0-next.4" - dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/helper-html": "npm:3.8.1-next.11" - "@webex/helper-image": "npm:3.8.1-next.11" - "@webex/internal-plugin-encryption": "npm:3.9.0-next.4" - "@webex/internal-plugin-user": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" - crypto-js: "npm:^4.1.1" - lodash: "npm:^4.17.21" - node-scr: "npm:^0.3.0" - uuid: "npm:^3.3.2" - checksum: 10c0/ba1a8036d0bb4f9d752ef8875a0fbee02f21a89a60deca149b67aa84c82c4d3040c3f44c74b1a852344bcdc61e201c06710a368a7858e14b8729f278580c9286 + checksum: 10c0/99abf9ef60bb942b2154be6fbb4f1e6d246ea4309202fbc97fee4cd29c035b14c1cef271bb04c040b6ba6594e1f99c56f362ca3a4a7cdfba152589034fc4f9f7 languageName: node linkType: hard @@ -10092,51 +10009,34 @@ __metadata: languageName: node linkType: hard -"@webex/internal-plugin-device@npm:3.10.0-next.4": - version: 3.10.0-next.4 - resolution: "@webex/internal-plugin-device@npm:3.10.0-next.4" - dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/common-timers": "npm:3.8.1-next.11" - "@webex/http-core": "npm:3.8.1-next.11" - "@webex/internal-plugin-metrics": "npm:3.10.0-next.4" - "@webex/webex-core": "npm:3.10.0-next.4" - ampersand-collection: "npm:^2.0.2" - ampersand-state: "npm:^5.0.3" - lodash: "npm:^4.17.21" - uuid: "npm:^3.3.2" - checksum: 10c0/38ea181225bbd5a08bb4b477161d70344b101919f3cd263bb1b5a11ac35ff086aa00a228930af4bca1fd7d27454bb89d6853dd804aca0484660de20ef30810ca - languageName: node - linkType: hard - -"@webex/internal-plugin-device@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/internal-plugin-device@npm:3.9.0-next.3" +"@webex/internal-plugin-device@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/internal-plugin-device@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/common-timers": "npm:3.8.1-next.11" - "@webex/http-core": "npm:3.8.1-next.11" - "@webex/internal-plugin-metrics": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/common": "npm:3.10.0-next.1" + "@webex/common-timers": "npm:3.10.0-next.1" + "@webex/http-core": "npm:3.10.0-next.1" + "@webex/internal-plugin-metrics": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" ampersand-collection: "npm:^2.0.2" ampersand-state: "npm:^5.0.3" lodash: "npm:^4.17.21" uuid: "npm:^3.3.2" - checksum: 10c0/7383d13dc95c2e9fcdec101e80838a625862fc834b741798a2594c61919fccc6c19e153a61fafb614a6e50b8fa30dc61a1a39b08786e609e56c9bfecfc6a565d + checksum: 10c0/47fe64bf86d31a8c3acc503107de08a56846e19624b8ffdfbf7c21e39f381ec0c157fb85bd80a424f36c6ba3221f14a64dbe4262d64141bf70a319755158c915 languageName: node linkType: hard -"@webex/internal-plugin-dss@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/internal-plugin-dss@npm:3.9.0-next.3" +"@webex/internal-plugin-dss@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/internal-plugin-dss@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/common-timers": "npm:3.8.1-next.11" - "@webex/internal-plugin-mercury": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/common": "npm:3.10.0-next.1" + "@webex/common-timers": "npm:3.10.0-next.1" + "@webex/internal-plugin-mercury": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" lodash: "npm:^4.17.21" uuid: "npm:^3.3.2" - checksum: 10c0/0e0f9587dacc0401098eee7305d0c6a4dae969b367f785f78b412947bf8e67e003906700623a702eab80dd66fbc9b936671ba35476db0f31e90824d4b18de159 + checksum: 10c0/336bb3f9fb567a71a236f40e521176452f4377a455070471c5f48d4cd36a949cf26a7fa448bd09855547992afaa5436ac26defd89cb2f9abeead441028ee6f0a languageName: node linkType: hard @@ -10192,43 +10092,17 @@ __metadata: languageName: node linkType: hard -"@webex/internal-plugin-encryption@npm:3.10.0-next.4": - version: 3.10.0-next.4 - resolution: "@webex/internal-plugin-encryption@npm:3.10.0-next.4" - dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/common-timers": "npm:3.8.1-next.11" - "@webex/http-core": "npm:3.8.1-next.11" - "@webex/internal-plugin-device": "npm:3.10.0-next.4" - "@webex/internal-plugin-mercury": "npm:3.10.0-next.4" - "@webex/test-helper-file": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.10.0-next.4" - asn1js: "npm:^2.0.26" - debug: "npm:^4.3.4" - isomorphic-webcrypto: "npm:^2.3.8" - lodash: "npm:^4.17.21" - node-jose: "npm:^2.2.0" - node-kms: "npm:^0.4.1" - node-scr: "npm:^0.3.0" - pkijs: "npm:^2.1.84" - safe-buffer: "npm:^5.2.0" - uuid: "npm:^3.3.2" - valid-url: "npm:^1.0.9" - checksum: 10c0/bdf10d630bdc567a77b91648434b5ea9a640fb0e21378eaec884157e7ba0d4f6e7c2125c0b0ce106925e2dfd36d31e765c4e87cf53ae80bce789c70e5e6b46aa - languageName: node - linkType: hard - -"@webex/internal-plugin-encryption@npm:3.9.0-next.4": - version: 3.9.0-next.4 - resolution: "@webex/internal-plugin-encryption@npm:3.9.0-next.4" +"@webex/internal-plugin-encryption@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/internal-plugin-encryption@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/common-timers": "npm:3.8.1-next.11" - "@webex/http-core": "npm:3.8.1-next.11" - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/internal-plugin-mercury": "npm:3.9.0-next.3" - "@webex/test-helper-file": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/common": "npm:3.10.0-next.1" + "@webex/common-timers": "npm:3.10.0-next.1" + "@webex/http-core": "npm:3.10.0-next.1" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/internal-plugin-mercury": "npm:3.10.0-next.12" + "@webex/test-helper-file": "npm:3.10.0-next.1" + "@webex/webex-core": "npm:3.10.0-next.12" asn1js: "npm:^2.0.26" debug: "npm:^4.3.4" isomorphic-webcrypto: "npm:^2.3.8" @@ -10240,7 +10114,7 @@ __metadata: safe-buffer: "npm:^5.2.0" uuid: "npm:^3.3.2" valid-url: "npm:^1.0.9" - checksum: 10c0/335f38222be31ef8b61764dcd85d08ca5be5b55670b4b8f1677af5c63e22989c5728462fb7c1ff8a17986662bd8b91bc0743907cf93ecc480a2b959aa4073398 + checksum: 10c0/10b83f2c4be49b101233f3ac0f26e60b86896a6ff434db260e4edc74d7e70eb96ded52f7c3f27900921e37c82d7c65a08e4c10954bdbbf8a235e0d58d3ba5a3a languageName: node linkType: hard @@ -10268,34 +10142,23 @@ __metadata: languageName: node linkType: hard -"@webex/internal-plugin-feature@npm:3.10.0-next.4": - version: 3.10.0-next.4 - resolution: "@webex/internal-plugin-feature@npm:3.10.0-next.4" - dependencies: - "@webex/internal-plugin-device": "npm:3.10.0-next.4" - "@webex/webex-core": "npm:3.10.0-next.4" - lodash: "npm:^4.17.21" - checksum: 10c0/0e34a474b889185ebfdb842921af430017b059c1664282b30683f84ede77b9e5113057157259d6f907406182886e32422768a92c1d5672deb7a3336c8f136b85 - languageName: node - linkType: hard - -"@webex/internal-plugin-feature@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/internal-plugin-feature@npm:3.9.0-next.3" +"@webex/internal-plugin-feature@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/internal-plugin-feature@npm:3.10.0-next.12" dependencies: - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" lodash: "npm:^4.17.21" - checksum: 10c0/dd5a6a124b5e5f2b56cabc567b64f78aaf8c87a2a9e6c8c9f4e735dbebab1ee4eb63a47fdb4536486f60eb7c4fcd4ec0d39df523a1999b78df176cf818a2f243 + checksum: 10c0/cfcbe0448fa2849f201ec23d1bbf3d603191920582d8f6fc276c5c2623bde3c6f23d4b88f679f9bfefc5dd634f84192eed770c5cc0b01d2b456517fa549d1874 languageName: node linkType: hard -"@webex/internal-plugin-llm@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/internal-plugin-llm@npm:3.9.0-next.3" +"@webex/internal-plugin-llm@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/internal-plugin-llm@npm:3.10.0-next.12" dependencies: - "@webex/internal-plugin-mercury": "npm:3.9.0-next.3" - checksum: 10c0/95c20c5ba2e6817215cebd454198267a8f07a2ade64a2a744dec68330a626fc11f49f6dceff3741371cbcd0afb6b64c8b844f9bf88a7fbe36a680239d0b4b893 + "@webex/internal-plugin-mercury": "npm:3.10.0-next.12" + checksum: 10c0/3328aeb60b493f26b2a70b06c489dbc3facf9314e73315df94a718e1aa4471e8202479ff0ac43ee0e30599cabbab0e6edb465a5428f70e6e84e569b4d3182a81 languageName: node linkType: hard @@ -10327,17 +10190,17 @@ __metadata: languageName: node linkType: hard -"@webex/internal-plugin-locus@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/internal-plugin-locus@npm:3.9.0-next.3" +"@webex/internal-plugin-locus@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/internal-plugin-locus@npm:3.10.0-next.12" dependencies: - "@webex/internal-plugin-mercury": "npm:3.9.0-next.3" - "@webex/test-helper-chai": "npm:3.8.1-next.11" - "@webex/test-helper-mock-webex": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/internal-plugin-mercury": "npm:3.10.0-next.12" + "@webex/test-helper-chai": "npm:3.10.0-next.1" + "@webex/test-helper-mock-webex": "npm:3.10.0-next.1" + "@webex/webex-core": "npm:3.10.0-next.12" lodash: "npm:^4.17.21" uuid: "npm:^3.3.2" - checksum: 10c0/48a5c1754e6b2808b336e1a8e360b1007205aa98c6e61ee8cdb404331a48e56188eb480241225c7f16c4a3f49b5420ae01576fa1eba26c7a1875c237bcef9933 + checksum: 10c0/edf29827fdfbb425493ec077c97e34766de930b0987d0831d099bef2f673a77b80fca97c4297684bb52d3c88b7285a90037e797f4bf7ebc7e958227e9939a9c7 languageName: node linkType: hard @@ -10375,20 +10238,20 @@ __metadata: languageName: node linkType: hard -"@webex/internal-plugin-lyra@npm:3.9.0-next.4": - version: 3.9.0-next.4 - resolution: "@webex/internal-plugin-lyra@npm:3.9.0-next.4" +"@webex/internal-plugin-lyra@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/internal-plugin-lyra@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/internal-plugin-conversation": "npm:3.9.0-next.4" - "@webex/internal-plugin-encryption": "npm:3.9.0-next.4" - "@webex/internal-plugin-feature": "npm:3.9.0-next.3" - "@webex/internal-plugin-locus": "npm:3.9.0-next.3" - "@webex/internal-plugin-mercury": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/common": "npm:3.10.0-next.1" + "@webex/internal-plugin-conversation": "npm:3.10.0-next.12" + "@webex/internal-plugin-encryption": "npm:3.10.0-next.12" + "@webex/internal-plugin-feature": "npm:3.10.0-next.12" + "@webex/internal-plugin-locus": "npm:3.10.0-next.12" + "@webex/internal-plugin-mercury": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" bowser: "npm:^2.11.0" uuid: "npm:^3.3.2" - checksum: 10c0/fceb12e4b9aee431f48e06da4703042ee60eed9471f073626a0eb52d5a12198671c10a450b62ec3d8bcfe453e5dab69cb7912f4f28e9a8ad828ea4a5aa5cad4b + checksum: 10c0/56998f26fb67eb5603415a07730778bb8ab0e94a4c40ef8b9ec140d32fd63063e238385e568ad86112be09a600aa82843d06f274d7ed37bdc706eabde84f6ab2 languageName: node linkType: hard @@ -10440,51 +10303,27 @@ __metadata: languageName: node linkType: hard -"@webex/internal-plugin-mercury@npm:3.10.0-next.4": - version: 3.10.0-next.4 - resolution: "@webex/internal-plugin-mercury@npm:3.10.0-next.4" +"@webex/internal-plugin-mercury@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/internal-plugin-mercury@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/common-timers": "npm:3.8.1-next.11" - "@webex/internal-plugin-device": "npm:3.10.0-next.4" - "@webex/internal-plugin-feature": "npm:3.10.0-next.4" - "@webex/internal-plugin-metrics": "npm:3.10.0-next.4" - "@webex/test-helper-chai": "npm:3.8.1-next.11" - "@webex/test-helper-mocha": "npm:3.8.1-next.11" - "@webex/test-helper-mock-web-socket": "npm:3.8.1-next.11" - "@webex/test-helper-mock-webex": "npm:3.8.1-next.11" - "@webex/test-helper-refresh-callback": "npm:3.8.1-next.11" - "@webex/test-helper-test-users": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.10.0-next.4" - backoff: "npm:^2.5.0" - lodash: "npm:^4.17.21" - uuid: "npm:^3.3.2" - ws: "npm:^8.17.1" - checksum: 10c0/0fbab2d050035649299bc92ec9859c3115031be839f44828fb1e7846bd5a2bc22e88b205bec2de7aee7ebdc5c57baa2f61d192fff03a135e655e07b5495fec70 - languageName: node - linkType: hard - -"@webex/internal-plugin-mercury@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/internal-plugin-mercury@npm:3.9.0-next.3" - dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/common-timers": "npm:3.8.1-next.11" - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/internal-plugin-feature": "npm:3.9.0-next.3" - "@webex/internal-plugin-metrics": "npm:3.9.0-next.3" - "@webex/test-helper-chai": "npm:3.8.1-next.11" - "@webex/test-helper-mocha": "npm:3.8.1-next.11" - "@webex/test-helper-mock-web-socket": "npm:3.8.1-next.11" - "@webex/test-helper-mock-webex": "npm:3.8.1-next.11" - "@webex/test-helper-refresh-callback": "npm:3.8.1-next.11" - "@webex/test-helper-test-users": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/common": "npm:3.10.0-next.1" + "@webex/common-timers": "npm:3.10.0-next.1" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/internal-plugin-feature": "npm:3.10.0-next.12" + "@webex/internal-plugin-metrics": "npm:3.10.0-next.12" + "@webex/test-helper-chai": "npm:3.10.0-next.1" + "@webex/test-helper-mocha": "npm:3.10.0-next.1" + "@webex/test-helper-mock-web-socket": "npm:3.10.0-next.1" + "@webex/test-helper-mock-webex": "npm:3.10.0-next.1" + "@webex/test-helper-refresh-callback": "npm:3.10.0-next.1" + "@webex/test-helper-test-users": "npm:3.10.0-next.1" + "@webex/webex-core": "npm:3.10.0-next.12" backoff: "npm:^2.5.0" lodash: "npm:^4.17.21" uuid: "npm:^3.3.2" ws: "npm:^8.17.1" - checksum: 10c0/2c712e2e635a5b7e5f32c131502161f40fd7fb438318f95573005a07a2388230ebeae69079f004e7cff3814ed153c86108ae722fad0cd4f60903f834434edaee + checksum: 10c0/4047241e76032e8b5f23906013a7e897f94409f937ee320581bc1a26cbdf049ae6c9f34a5c5cc84dd0e6e197da1ef5d8eaa2b3515db1d105eda1db1a436040ca languageName: node linkType: hard @@ -10514,37 +10353,20 @@ __metadata: languageName: node linkType: hard -"@webex/internal-plugin-metrics@npm:3.10.0-next.4": - version: 3.10.0-next.4 - resolution: "@webex/internal-plugin-metrics@npm:3.10.0-next.4" - dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/common-timers": "npm:3.8.1-next.11" - "@webex/event-dictionary-ts": "npm:^1.0.1930" - "@webex/test-helper-chai": "npm:3.8.1-next.11" - "@webex/test-helper-mock-webex": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.10.0-next.4" - ip-anonymize: "npm:^0.1.0" - lodash: "npm:^4.17.21" - uuid: "npm:^3.3.2" - checksum: 10c0/ea297016dd5f6a0d2af4f7c97689f9249ded94442d2d6534aed27c52e8dfe1f152b94f6f4c7caa441ad3a7d2d53a23bdc742484938aad62ca0a0c8b6ef2bfac4 - languageName: node - linkType: hard - -"@webex/internal-plugin-metrics@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/internal-plugin-metrics@npm:3.9.0-next.3" +"@webex/internal-plugin-metrics@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/internal-plugin-metrics@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/common-timers": "npm:3.8.1-next.11" + "@webex/common": "npm:3.10.0-next.1" + "@webex/common-timers": "npm:3.10.0-next.1" "@webex/event-dictionary-ts": "npm:^1.0.1930" - "@webex/test-helper-chai": "npm:3.8.1-next.11" - "@webex/test-helper-mock-webex": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/test-helper-chai": "npm:3.10.0-next.1" + "@webex/test-helper-mock-webex": "npm:3.10.0-next.1" + "@webex/webex-core": "npm:3.10.0-next.12" ip-anonymize: "npm:^0.1.0" lodash: "npm:^4.17.21" uuid: "npm:^3.3.2" - checksum: 10c0/ad7fe8f9daf8e891e5f2ed9d3fc1044a9c9ddcfe9a86c3edd28d2e59be934c82cbc99ec2f4f78ab231a7b1f95efa2b17383a9bebc9c37f21aaa7d2232c4c5a65 + checksum: 10c0/705313cd6e3c3197355a71550bacd4feb7039a2ce924f25e0a0699a3681e0ad8d6055b8eb8dcc7540cc9888a5dfced31ac3102468a79ba8a7d6616302a81a40b languageName: node linkType: hard @@ -10580,19 +10402,19 @@ __metadata: languageName: node linkType: hard -"@webex/internal-plugin-presence@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/internal-plugin-presence@npm:3.9.0-next.3" +"@webex/internal-plugin-presence@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/internal-plugin-presence@npm:3.10.0-next.12" dependencies: - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/internal-plugin-mercury": "npm:3.9.0-next.3" - "@webex/test-helper-chai": "npm:3.8.1-next.11" - "@webex/test-helper-mocha": "npm:3.8.1-next.11" - "@webex/test-helper-mock-webex": "npm:3.8.1-next.11" - "@webex/test-helper-test-users": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/internal-plugin-mercury": "npm:3.10.0-next.12" + "@webex/test-helper-chai": "npm:3.10.0-next.1" + "@webex/test-helper-mocha": "npm:3.10.0-next.1" + "@webex/test-helper-mock-webex": "npm:3.10.0-next.1" + "@webex/test-helper-test-users": "npm:3.10.0-next.1" + "@webex/webex-core": "npm:3.10.0-next.12" lodash: "npm:^4.17.21" - checksum: 10c0/205529ccb78afc6d18e0dd9caaa6a7954fb4b067dc7f846d589dbb7ee86466ae7a6157360e8dd2f1ca638c202ebfe9f6efa4f52fc7b721c5399dafd3c645dc19 + checksum: 10c0/06b52b2b2e5710aed4db4084cc828a18866737afb9c1ac630cd28ebaec9d98614c5c4bdb4b073c640847cd15daa4c24c718564d11ac5e5fae9030ddcc4115028 languageName: node linkType: hard @@ -10626,33 +10448,18 @@ __metadata: languageName: node linkType: hard -"@webex/internal-plugin-search@npm:3.10.0-next.4": - version: 3.10.0-next.4 - resolution: "@webex/internal-plugin-search@npm:3.10.0-next.4" +"@webex/internal-plugin-search@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/internal-plugin-search@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/internal-plugin-conversation": "npm:3.10.0-next.4" - "@webex/internal-plugin-device": "npm:3.10.0-next.4" - "@webex/internal-plugin-encryption": "npm:3.10.0-next.4" - "@webex/webex-core": "npm:3.10.0-next.4" + "@webex/common": "npm:3.10.0-next.1" + "@webex/internal-plugin-conversation": "npm:3.10.0-next.12" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/internal-plugin-encryption": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" lodash: "npm:^4.17.21" uuid: "npm:^3.3.2" - checksum: 10c0/b757c2424f0e108ef71c951c159705fd443e1627a238f6dff150f9ad613a1fc951c3aedd6079f2c918dafaa976626894dc64170dca091032b29d9206ce01cfe9 - languageName: node - linkType: hard - -"@webex/internal-plugin-search@npm:3.9.0-next.4": - version: 3.9.0-next.4 - resolution: "@webex/internal-plugin-search@npm:3.9.0-next.4" - dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/internal-plugin-conversation": "npm:3.9.0-next.4" - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/internal-plugin-encryption": "npm:3.9.0-next.4" - "@webex/webex-core": "npm:3.9.0-next.3" - lodash: "npm:^4.17.21" - uuid: "npm:^3.3.2" - checksum: 10c0/60370f26d5463c488786f1b7fddea38953e667d8e1c81fd122bb772a54981f4ff8eecad1ed32ad00ca1c1369f3b49ae185b806e6dd1bd71ba83f215507d29866 + checksum: 10c0/365c1dd104e952eab85230c79c3b0afd209b46b3b927412b0f394916cbd4180ab68259753e062ffc48099c0660d18b496e33f39b81bc3d0fd5bdee5fc819821a languageName: node linkType: hard @@ -10690,37 +10497,34 @@ __metadata: languageName: node linkType: hard -"@webex/internal-plugin-support@npm:3.10.0-next.4": - version: 3.10.0-next.4 - resolution: "@webex/internal-plugin-support@npm:3.10.0-next.4" +"@webex/internal-plugin-support@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/internal-plugin-support@npm:3.10.0-next.12" dependencies: - "@webex/internal-plugin-device": "npm:3.10.0-next.4" - "@webex/internal-plugin-search": "npm:3.10.0-next.4" - "@webex/test-helper-chai": "npm:3.8.1-next.11" - "@webex/test-helper-file": "npm:3.8.1-next.11" - "@webex/test-helper-mock-webex": "npm:3.8.1-next.11" - "@webex/test-helper-test-users": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.10.0-next.4" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/internal-plugin-search": "npm:3.10.0-next.12" + "@webex/test-helper-chai": "npm:3.10.0-next.1" + "@webex/test-helper-file": "npm:3.10.0-next.1" + "@webex/test-helper-mock-webex": "npm:3.10.0-next.1" + "@webex/test-helper-test-users": "npm:3.10.0-next.1" + "@webex/webex-core": "npm:3.10.0-next.12" lodash: "npm:^4.17.21" uuid: "npm:^3.3.2" - checksum: 10c0/6adbcab1706cf557e47ff5449b4533a57d6c95bce2253f9d4c43c778eec6b66e0ca238d15c401542d238ce4ea783fc45c1ab06dedc6c6391df8d31898f4faaf2 + checksum: 10c0/ce70dbb9469f822f36fe93888bc2c4964bcf0f58d6ef357dd0f133d9d8689989d817cd9b8b2e8f4e2ff00851fb379af1145066133fa944ac5b3c4a920eb3beee languageName: node linkType: hard -"@webex/internal-plugin-support@npm:3.9.0-next.5": - version: 3.9.0-next.5 - resolution: "@webex/internal-plugin-support@npm:3.9.0-next.5" +"@webex/internal-plugin-task@npm:^0.0.0-next.7": + version: 0.0.0-next.7 + resolution: "@webex/internal-plugin-task@npm:0.0.0-next.7" dependencies: - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/internal-plugin-search": "npm:3.9.0-next.4" - "@webex/test-helper-chai": "npm:3.8.1-next.11" - "@webex/test-helper-file": "npm:3.8.1-next.11" - "@webex/test-helper-mock-webex": "npm:3.8.1-next.11" - "@webex/test-helper-test-users": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/internal-plugin-conversation": "npm:3.10.0-next.12" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/internal-plugin-encryption": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" lodash: "npm:^4.17.21" uuid: "npm:^3.3.2" - checksum: 10c0/0503bf79cf2bf025bf44364122f5aa526d4ebc4d228767600db4b80cf6e867142f201e6a0aff17be4adbcc2c9e178f8a792d2aeb95fb493b1b737a094935de55 + checksum: 10c0/7b6b08a3fc7759774be59dade62eab95e5fc2801253b02e5273e5a9be236d6592419def0bc64831a3d6aa2c3e42e35f90097b57480798ca413c2d36080cad72f languageName: node linkType: hard @@ -10756,54 +10560,31 @@ __metadata: languageName: node linkType: hard -"@webex/internal-plugin-user@npm:3.10.0-next.4": - version: 3.10.0-next.4 - resolution: "@webex/internal-plugin-user@npm:3.10.0-next.4" +"@webex/internal-plugin-user@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/internal-plugin-user@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/internal-plugin-device": "npm:3.10.0-next.4" - "@webex/test-helper-chai": "npm:3.8.1-next.11" - "@webex/test-helper-mock-webex": "npm:3.8.1-next.11" - "@webex/test-helper-test-users": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.10.0-next.4" + "@webex/common": "npm:3.10.0-next.1" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/test-helper-chai": "npm:3.10.0-next.1" + "@webex/test-helper-mock-webex": "npm:3.10.0-next.1" + "@webex/test-helper-test-users": "npm:3.10.0-next.1" + "@webex/webex-core": "npm:3.10.0-next.12" lodash: "npm:^4.17.21" uuid: "npm:^3.3.2" - checksum: 10c0/eaa1134d9840f1dbaa1bf1c2c656adca5103b2c3dcdfb01af0640276900e33287d863aa5f6e994ec34b3d06bf48201ea3ba99734f62444531ff85edeaab32f94 + checksum: 10c0/2f6f7c84d9aa8dfed289c8a9c0aa1f0ff7cfdfaa9d3fcaf68d6487f59db4c8f0d950c440e6b341157ce909cf5ea6d98ce8e8a552ea3b00f7964e17025424f12b languageName: node linkType: hard -"@webex/internal-plugin-user@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/internal-plugin-user@npm:3.9.0-next.3" - dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/test-helper-chai": "npm:3.8.1-next.11" - "@webex/test-helper-mock-webex": "npm:3.8.1-next.11" - "@webex/test-helper-test-users": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.9.0-next.3" - lodash: "npm:^4.17.21" - uuid: "npm:^3.3.2" - checksum: 10c0/fd7af0ad43ebea809caf7e6baa15fff31103b2d770df6b1ec8f68d9a33f6e071f5fdcf23782a76abd327e3c6da460e83486582c2c8d9f032182b37c205e743a1 - languageName: node - linkType: hard - -"@webex/internal-plugin-voicea@npm:3.9.0-next.4": - version: 3.9.0-next.4 - resolution: "@webex/internal-plugin-voicea@npm:3.9.0-next.4" +"@webex/internal-plugin-voicea@npm:3.10.0-next.14": + version: 3.10.0-next.14 + resolution: "@webex/internal-plugin-voicea@npm:3.10.0-next.14" dependencies: - "@webex/internal-plugin-llm": "npm:3.9.0-next.3" - "@webex/internal-plugin-mercury": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/internal-plugin-llm": "npm:3.10.0-next.12" + "@webex/internal-plugin-mercury": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" uuid: "npm:^3.3.2" - checksum: 10c0/0d5de258f9dc42ed07880ec6e10a81796195a76a3ef5150dc884f28d7de9547f33cb8962bd103a2f9f3c782585668949f3b6ee39e585ffb71950085e4b7ebe8a - languageName: node - linkType: hard - -"@webex/json-multistream@npm:^2.3.1": - version: 2.4.0 - resolution: "@webex/json-multistream@npm:2.4.0" - checksum: 10c0/593d7baf366568562a51bd1e1855aa405fcabccac7c0a6bf2c86adf7e0b9e09d51b24c80e002b7a5aef805cf03aaf8c4c39e41c59c66c8f087075cce7f4e3b3c + checksum: 10c0/212c72e904aa71b946095d8573379105b512abeccc8a24139c6d4c471417fa2262d19495576f935125a5df491dc4e2c08628c98eaef5abc3051fb676ee04bfa7 languageName: node linkType: hard @@ -10814,7 +10595,7 @@ __metadata: languageName: node linkType: hard -"@webex/ladon-ts@npm:^5.10.0, @webex/ladon-ts@npm:^5.7.1": +"@webex/ladon-ts@npm:^5.10.0": version: 5.10.0 resolution: "@webex/ladon-ts@npm:5.10.0" dependencies: @@ -10827,37 +10608,14 @@ __metadata: languageName: node linkType: hard -"@webex/ladon-ts@npm:^5.5.1": - version: 5.5.1 - resolution: "@webex/ladon-ts@npm:5.5.1" - dependencies: - "@rollup/rollup-linux-x64-gnu": "npm:4.36.0" - dependenciesMeta: - "@rollup/rollup-linux-x64-gnu": - optional: true - checksum: 10c0/202da7c94dc2e814f5c59deefc0fb286ebeedc573cef2b9cdfae8be809d17e020280fbf47f57be3bdf5b9346a2dd71ea960169a5e67f5525d61d01bc8569613c - languageName: node - linkType: hard - -"@webex/media-helpers@npm:3.10.0-next.2": - version: 3.10.0-next.2 - resolution: "@webex/media-helpers@npm:3.10.0-next.2" +"@webex/media-helpers@npm:3.10.0-next.3": + version: 3.10.0-next.3 + resolution: "@webex/media-helpers@npm:3.10.0-next.3" dependencies: "@webex/internal-media-core": "npm:2.20.3" "@webex/ts-events": "npm:^1.1.0" "@webex/web-media-effects": "npm:2.32.1" - checksum: 10c0/20e0a6d9003c62722370d0c59b54e070694cb45a4ad9b4343519b9e750be49ca27c8afb85c2843f2334ecc47dd51923e604af58889f11fd1136575f674e3b8c9 - languageName: node - linkType: hard - -"@webex/media-helpers@npm:3.9.0-next.1": - version: 3.9.0-next.1 - resolution: "@webex/media-helpers@npm:3.9.0-next.1" - dependencies: - "@webex/internal-media-core": "npm:2.19.0" - "@webex/ts-events": "npm:^1.1.0" - "@webex/web-media-effects": "npm:2.27.1" - checksum: 10c0/42ab6337fed3f0dd70ba9214e4c828b5e5fe7e0d293703f98b260a84f74855f34e45a86540d0e88f21a6def18d1bf1292d79e0abc5ff6c6cb8f9136dc9aa933e + checksum: 10c0/f9e7eb30518425dfa279ff853b736db88cd6c32d23321b6891e63babef32074416b1e54be79bf982be261f0ffadb247a14a0975b75ad406e3f7ccc5772ee0f39 languageName: node linkType: hard @@ -10910,21 +10668,21 @@ __metadata: languageName: node linkType: hard -"@webex/plugin-attachment-actions@npm:3.9.0-next.4": - version: 3.9.0-next.4 - resolution: "@webex/plugin-attachment-actions@npm:3.9.0-next.4" +"@webex/plugin-attachment-actions@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/plugin-attachment-actions@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/internal-plugin-conversation": "npm:3.9.0-next.4" - "@webex/internal-plugin-mercury": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/common": "npm:3.10.0-next.1" + "@webex/internal-plugin-conversation": "npm:3.10.0-next.12" + "@webex/internal-plugin-mercury": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" debug: "npm:^4.3.4" lodash: "npm:^4.17.21" peerDependencies: - "@webex/plugin-logger": 3.9.0-next.3 - "@webex/plugin-messages": 3.9.0-next.4 - "@webex/plugin-people": 3.9.0-next.3 - checksum: 10c0/91352cf3c58c1805b2efe9f9f968202e8c100ff1eb2eb48a64f881a5dbfdeb3c83cd3e172849013ed40378f801e27b717041f230198f3e52949cc3a50bd9c546 + "@webex/plugin-logger": 3.10.0-next.12 + "@webex/plugin-messages": 3.10.0-next.12 + "@webex/plugin-people": 3.10.0-next.12 + checksum: 10c0/ffb6ce1a1b4449b876748893c5fb764fff1bd3a402a5c91d27f147233f6fcbde87ea7ce7ea6cdc7f36c3b6553168e6caf4290d920f568148976a3fde6747610e languageName: node linkType: hard @@ -10962,37 +10720,20 @@ __metadata: languageName: node linkType: hard -"@webex/plugin-authorization-browser@npm:3.10.0-next.4": - version: 3.10.0-next.4 - resolution: "@webex/plugin-authorization-browser@npm:3.10.0-next.4" - dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/internal-plugin-device": "npm:3.10.0-next.4" - "@webex/plugin-authorization-node": "npm:3.10.0-next.4" - "@webex/storage-adapter-local-storage": "npm:3.10.0-next.4" - "@webex/storage-adapter-spec": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.10.0-next.4" - jsonwebtoken: "npm:^9.0.2" - lodash: "npm:^4.17.21" - uuid: "npm:^3.3.2" - checksum: 10c0/b6577459ee429e6ebf0a9d536caa2c3fa728f2cd0aec5c4e8c4dab3480bc3b6dccbb5cc879dda70363f836dfac5017ab493c5de3588b3ee0033634cab219b57c - languageName: node - linkType: hard - -"@webex/plugin-authorization-browser@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/plugin-authorization-browser@npm:3.9.0-next.3" +"@webex/plugin-authorization-browser@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/plugin-authorization-browser@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/plugin-authorization-node": "npm:3.9.0-next.3" - "@webex/storage-adapter-local-storage": "npm:3.9.0-next.3" - "@webex/storage-adapter-spec": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/common": "npm:3.10.0-next.1" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/plugin-authorization-node": "npm:3.10.0-next.12" + "@webex/storage-adapter-local-storage": "npm:3.10.0-next.12" + "@webex/storage-adapter-spec": "npm:3.10.0-next.1" + "@webex/webex-core": "npm:3.10.0-next.12" jsonwebtoken: "npm:^9.0.2" lodash: "npm:^4.17.21" uuid: "npm:^3.3.2" - checksum: 10c0/843fc3457fb284e7a904d05c1426f2f2fd39a25832a83fb0eea8143cb736785fd0156bcdb49af9cabae08fb33cf45b0be274706ccbcb2267c6c6d6de1230969d + checksum: 10c0/ccda37db64edc1edd1cf6c198696a5293f62b2bf05a70e42c24398607c53310ea552032820e355f019de4d82c60e5480593bc6798a733c78938ba4e3a8c8f36d languageName: node linkType: hard @@ -11022,29 +10763,16 @@ __metadata: languageName: node linkType: hard -"@webex/plugin-authorization-node@npm:3.10.0-next.4": - version: 3.10.0-next.4 - resolution: "@webex/plugin-authorization-node@npm:3.10.0-next.4" +"@webex/plugin-authorization-node@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/plugin-authorization-node@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/internal-plugin-device": "npm:3.10.0-next.4" - "@webex/webex-core": "npm:3.10.0-next.4" + "@webex/common": "npm:3.10.0-next.1" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" jsonwebtoken: "npm:^9.0.0" uuid: "npm:^3.3.2" - checksum: 10c0/6dff780afbbdbc34dcb1f7200912b1e56097ecd626e303f748b2db18e18391ac70d7d4768475b1f11b5ad3a60d7c84bf5b900ab62c2a31990ba2c510f095826a - languageName: node - linkType: hard - -"@webex/plugin-authorization-node@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/plugin-authorization-node@npm:3.9.0-next.3" - dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" - jsonwebtoken: "npm:^9.0.0" - uuid: "npm:^3.3.2" - checksum: 10c0/057440bf0c5ccaee6c7803faebcd1b81eaa6a72505bf61a6e04a94d76cfe260487ec0127b754aaca372c4831ae54673fd1f51e0c13b38e038ac174a72e332d34 + checksum: 10c0/5012e20d01e1af806fb3974791c661ceac33c34f3e56e17017811fa6acc4b552e5a59cc7beb5f6f7f8dbe30d43f55d262e0ab6d598720cd04d10ae7e71e3a0e3 languageName: node linkType: hard @@ -11068,23 +10796,13 @@ __metadata: languageName: node linkType: hard -"@webex/plugin-authorization@npm:3.10.0-next.4": - version: 3.10.0-next.4 - resolution: "@webex/plugin-authorization@npm:3.10.0-next.4" - dependencies: - "@webex/plugin-authorization-browser": "npm:3.10.0-next.4" - "@webex/plugin-authorization-node": "npm:3.10.0-next.4" - checksum: 10c0/39a76857fe2697406ae05962f62feeca257d4bf75636c2288f82ceb7bb46fffbd82784e3a18b95d1554051ff015d6af44417c02d8bff58bda824271fc808024a - languageName: node - linkType: hard - -"@webex/plugin-authorization@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/plugin-authorization@npm:3.9.0-next.3" +"@webex/plugin-authorization@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/plugin-authorization@npm:3.10.0-next.12" dependencies: - "@webex/plugin-authorization-browser": "npm:3.9.0-next.3" - "@webex/plugin-authorization-node": "npm:3.9.0-next.3" - checksum: 10c0/b71184ee1b5cf4ef895ea14632803a5b3701f120a705b6421e94914f472d49d70da439484a9ab311f603c8f6b4a2adbd6039fd70fb3b6b8d80f93edfadc6a080 + "@webex/plugin-authorization-browser": "npm:3.10.0-next.12" + "@webex/plugin-authorization-node": "npm:3.10.0-next.12" + checksum: 10c0/482a93f8247393d28703c38287ac3a321305bc7e483bcc9661f2f0ceb495cdb38a6a97f03f38d54bd35f6b7cff01593af04ce2706d03b12bfdd3fcffa562ed68 languageName: node linkType: hard @@ -11124,31 +10842,31 @@ __metadata: languageName: node linkType: hard -"@webex/plugin-device-manager@npm:3.9.0-next.4": - version: 3.9.0-next.4 - resolution: "@webex/plugin-device-manager@npm:3.9.0-next.4" +"@webex/plugin-device-manager@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/plugin-device-manager@npm:3.10.0-next.12" dependencies: - "@webex/internal-plugin-calendar": "npm:3.9.0-next.4" - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/internal-plugin-lyra": "npm:3.9.0-next.4" - "@webex/internal-plugin-search": "npm:3.9.0-next.4" - "@webex/plugin-authorization": "npm:3.9.0-next.3" - "@webex/plugin-logger": "npm:3.9.0-next.3" - "@webex/test-helper-chai": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/internal-plugin-calendar": "npm:3.10.0-next.12" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/internal-plugin-lyra": "npm:3.10.0-next.12" + "@webex/internal-plugin-search": "npm:3.10.0-next.12" + "@webex/plugin-authorization": "npm:3.10.0-next.12" + "@webex/plugin-logger": "npm:3.10.0-next.12" + "@webex/test-helper-chai": "npm:3.10.0-next.1" + "@webex/webex-core": "npm:3.10.0-next.12" lodash: "npm:^4.17.21" uuid: "npm:^3.3.2" - checksum: 10c0/b4a5f929d05e5a93a3497888f233a7f772d366d6391296e0bf52ddd743c613dacbf4f90c50653ca140f8ee9052a825def581eba396f56834e1908e3810be3614 + checksum: 10c0/9baf95a79be6755035362be17f81a0d01d9c806b0d0a3d790d02d4ca48d4d42700f4ceb390ebf86e82334456b094bfe4c0c0f69ad9716acb7d79b9d6abe5bf29 languageName: node linkType: hard -"@webex/plugin-encryption@npm:3.9.0-next.4": - version: 3.9.0-next.4 - resolution: "@webex/plugin-encryption@npm:3.9.0-next.4" +"@webex/plugin-encryption@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/plugin-encryption@npm:3.10.0-next.12" dependencies: - "@webex/internal-plugin-encryption": "npm:3.9.0-next.4" - "@webex/webex-core": "npm:3.9.0-next.3" - checksum: 10c0/d3ef374f17b8a8e3f524d3a91a8fb633dbfe8a1f4d7c084128c92c81cc3f17f1782844d7bdd247cac3b19f58bf1ff2a7d0c8c1afe1b49a6e018d05f0cae75de5 + "@webex/internal-plugin-encryption": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" + checksum: 10c0/66873157a57a7df25a8c388472cf43925b3b70fd2d183730398433d7d46bf5e5a6326fa85286f4955940d19602be5d407327aa5e524d3f94694ccb1e5cb5ca0b languageName: node linkType: hard @@ -11180,31 +10898,17 @@ __metadata: languageName: node linkType: hard -"@webex/plugin-logger@npm:3.10.0-next.4": - version: 3.10.0-next.4 - resolution: "@webex/plugin-logger@npm:3.10.0-next.4" - dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/test-helper-chai": "npm:3.8.1-next.11" - "@webex/test-helper-mocha": "npm:3.8.1-next.11" - "@webex/test-helper-mock-webex": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.10.0-next.4" - lodash: "npm:^4.17.21" - checksum: 10c0/9b371defed53819b55d2b322f5f07f36bc6bc72ff0be8eb1f895946fb83db8c04fca5b3d86d839f48366dfebdd1ec61bf04e85e2185ebb64aafad2e85b78a67f - languageName: node - linkType: hard - -"@webex/plugin-logger@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/plugin-logger@npm:3.9.0-next.3" +"@webex/plugin-logger@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/plugin-logger@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/test-helper-chai": "npm:3.8.1-next.11" - "@webex/test-helper-mocha": "npm:3.8.1-next.11" - "@webex/test-helper-mock-webex": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/common": "npm:3.10.0-next.1" + "@webex/test-helper-chai": "npm:3.10.0-next.1" + "@webex/test-helper-mocha": "npm:3.10.0-next.1" + "@webex/test-helper-mock-webex": "npm:3.10.0-next.1" + "@webex/webex-core": "npm:3.10.0-next.12" lodash: "npm:^4.17.21" - checksum: 10c0/81ea37b4ade7fe5b25eeafd7b93beec1a66d5e88d38e724f5fe7256b5520973799655247a61ce74f78aa03ad37f8a46d9d7649eb78edabaf8c8ebc8d6f6259fb + checksum: 10c0/65abb4bdf328c7e3b330a6fab4431463f9b07c9aa637c05f70599094c1b65fa238956df5dfd7080ef5afebfb946f559023df663b51981c7f4d114c3cb0ce0af0 languageName: node linkType: hard @@ -11262,27 +10966,27 @@ __metadata: languageName: node linkType: hard -"@webex/plugin-meetings@npm:3.9.0-next.20": - version: 3.9.0-next.20 - resolution: "@webex/plugin-meetings@npm:3.9.0-next.20" +"@webex/plugin-meetings@npm:3.10.0-next.28": + version: 3.10.0-next.28 + resolution: "@webex/plugin-meetings@npm:3.10.0-next.28" dependencies: - "@webex/common": "npm:3.8.1-next.11" + "@webex/common": "npm:3.10.0-next.1" "@webex/event-dictionary-ts": "npm:^1.0.1930" - "@webex/internal-media-core": "npm:2.19.0" - "@webex/internal-plugin-conversation": "npm:3.9.0-next.4" - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/internal-plugin-llm": "npm:3.9.0-next.3" - "@webex/internal-plugin-mercury": "npm:3.9.0-next.3" - "@webex/internal-plugin-metrics": "npm:3.9.0-next.3" - "@webex/internal-plugin-support": "npm:3.9.0-next.5" - "@webex/internal-plugin-user": "npm:3.9.0-next.3" - "@webex/internal-plugin-voicea": "npm:3.9.0-next.4" - "@webex/media-helpers": "npm:3.9.0-next.1" - "@webex/plugin-people": "npm:3.9.0-next.3" - "@webex/plugin-rooms": "npm:3.9.0-next.4" + "@webex/internal-media-core": "npm:2.20.3" + "@webex/internal-plugin-conversation": "npm:3.10.0-next.12" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/internal-plugin-llm": "npm:3.10.0-next.12" + "@webex/internal-plugin-mercury": "npm:3.10.0-next.12" + "@webex/internal-plugin-metrics": "npm:3.10.0-next.12" + "@webex/internal-plugin-support": "npm:3.10.0-next.12" + "@webex/internal-plugin-user": "npm:3.10.0-next.12" + "@webex/internal-plugin-voicea": "npm:3.10.0-next.14" + "@webex/media-helpers": "npm:3.10.0-next.3" + "@webex/plugin-people": "npm:3.10.0-next.12" + "@webex/plugin-rooms": "npm:3.10.0-next.12" "@webex/ts-sdp": "npm:^1.8.1" - "@webex/web-capabilities": "npm:^1.6.0" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/web-capabilities": "npm:^1.7.1" + "@webex/webex-core": "npm:3.10.0-next.12" ampersand-collection: "npm:^2.0.2" bowser: "npm:^2.11.0" btoa: "npm:^1.2.1" @@ -11294,7 +10998,8 @@ __metadata: lodash: "npm:^4.17.21" uuid: "npm:^3.3.2" webrtc-adapter: "npm:^8.1.2" - checksum: 10c0/02aec027fffef08d5cbe26cbc6c605bac7d54c50c68d993318eadf1aea75899c5fa36df9c5477d976dffd7f8a54e5808184e7032f6546798c35b3a9a89277379 + xxh3-ts: "npm:^2.0.1" + checksum: 10c0/84a32e67d4f6c8eaad3a758bbcc3ed567da77a9799339d4c81450e62cbcdd4c3c019a4b21d3bc6e5d53faaaeee518be84b5c4684880ec378f658787d2913d1a3 languageName: node linkType: hard @@ -11334,22 +11039,22 @@ __metadata: languageName: node linkType: hard -"@webex/plugin-memberships@npm:3.9.0-next.4": - version: 3.9.0-next.4 - resolution: "@webex/plugin-memberships@npm:3.9.0-next.4" +"@webex/plugin-memberships@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/plugin-memberships@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/internal-plugin-conversation": "npm:3.9.0-next.4" - "@webex/internal-plugin-mercury": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/common": "npm:3.10.0-next.1" + "@webex/internal-plugin-conversation": "npm:3.10.0-next.12" + "@webex/internal-plugin-mercury": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" debug: "npm:^4.3.4" lodash: "npm:^4.17.21" peerDependencies: - "@webex/plugin-logger": 3.9.0-next.3 - "@webex/plugin-messages": 3.9.0-next.4 - "@webex/plugin-people": 3.9.0-next.3 - "@webex/plugin-rooms": 3.9.0-next.4 - checksum: 10c0/c17562d4f9c39e03379b218791d82f0bc67ec1d185424c2d44aef8c7a04267a81b94856642c641e0cf5a1a9802570b0b47275d89fadac2afd7fe77fc25d6a242 + "@webex/plugin-logger": 3.10.0-next.12 + "@webex/plugin-messages": 3.10.0-next.12 + "@webex/plugin-people": 3.10.0-next.12 + "@webex/plugin-rooms": 3.10.0-next.12 + checksum: 10c0/46047e37a35e0dc04788617a045a7efac7d0a81bc08f5f4cad8ef0f480ac15f8878bd4515d0367002fd0eba3df0619dc7b4e80440b6f436810a663a70d396b3e languageName: node linkType: hard @@ -11389,22 +11094,22 @@ __metadata: languageName: node linkType: hard -"@webex/plugin-messages@npm:3.9.0-next.4": - version: 3.9.0-next.4 - resolution: "@webex/plugin-messages@npm:3.9.0-next.4" +"@webex/plugin-messages@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/plugin-messages@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/internal-plugin-conversation": "npm:3.9.0-next.4" - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/internal-plugin-mercury": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/common": "npm:3.10.0-next.1" + "@webex/internal-plugin-conversation": "npm:3.10.0-next.12" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/internal-plugin-mercury": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" debug: "npm:^4.3.4" lodash: "npm:^4.17.21" peerDependencies: - "@webex/plugin-logger": 3.9.0-next.3 - "@webex/plugin-people": 3.9.0-next.3 - "@webex/plugin-rooms": 3.9.0-next.4 - checksum: 10c0/bafc79472549bac70c5bbba7853b47d2262894e739dba05d8795291b4370f861b271bdf5deaaf2ff0967c7e0d8462e8e11a95d27b00b057c644d22b461e80c02 + "@webex/plugin-logger": 3.10.0-next.12 + "@webex/plugin-people": 3.10.0-next.12 + "@webex/plugin-rooms": 3.10.0-next.12 + checksum: 10c0/5e274c2c9fedd23e6c4a8b1bef353793a67f13b61f879e80959b887501e86c24ad6d88aa252ac15dff2a82b2b53fea55ba463365994b6a0bd405a4028ea34c64 languageName: node linkType: hard @@ -11430,14 +11135,14 @@ __metadata: languageName: node linkType: hard -"@webex/plugin-people@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/plugin-people@npm:3.9.0-next.3" +"@webex/plugin-people@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/plugin-people@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/internal-plugin-mercury": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" - checksum: 10c0/20e97911039b64581af14fba47aecbe27792fbb72067765ff787ddcecfdaa56f42237d779ee858219212fa9c3728517033ef93dc8ac3f71bbde2d8b4a5fc4917 + "@webex/common": "npm:3.10.0-next.1" + "@webex/internal-plugin-mercury": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" + checksum: 10c0/e1599df56229a8b0dc50d1842f0940ec98de33917580908eb36d8017ada285caca3b99b912d44660d903ca3f53a028c7af956d9c6206a0bcd72c8165d6262e95 languageName: node linkType: hard @@ -11477,20 +11182,20 @@ __metadata: languageName: node linkType: hard -"@webex/plugin-rooms@npm:3.9.0-next.4": - version: 3.9.0-next.4 - resolution: "@webex/plugin-rooms@npm:3.9.0-next.4" +"@webex/plugin-rooms@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/plugin-rooms@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/internal-plugin-conversation": "npm:3.9.0-next.4" - "@webex/internal-plugin-mercury": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/common": "npm:3.10.0-next.1" + "@webex/internal-plugin-conversation": "npm:3.10.0-next.12" + "@webex/internal-plugin-mercury": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" debug: "npm:^4.3.4" lodash: "npm:^4.17.21" peerDependencies: - "@webex/plugin-logger": 3.9.0-next.3 - "@webex/plugin-people": 3.9.0-next.3 - checksum: 10c0/1382e308996ef2e571a7e3c0f586f828d260466bc143bec02a7395434a045a291410de516adc4cfc24330c904014e1ffbb588b9059cebb6cd00a9b4c74d1ef8b + "@webex/plugin-logger": 3.10.0-next.12 + "@webex/plugin-people": 3.10.0-next.12 + checksum: 10c0/da0ff5535db521c65f75c57bbf7f22cd7106c8a005ddf47bb45ec0bc23b40ba8789ee2a2dfe0c85ac11840b3b6cc27e822d2c86c610736971c85dd178c767dee languageName: node linkType: hard @@ -11520,17 +11225,17 @@ __metadata: languageName: node linkType: hard -"@webex/plugin-team-memberships@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/plugin-team-memberships@npm:3.9.0-next.3" +"@webex/plugin-team-memberships@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/plugin-team-memberships@npm:3.10.0-next.12" dependencies: - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" peerDependencies: - "@webex/plugin-logger": 3.9.0-next.3 - "@webex/plugin-rooms": 3.9.0-next.3 - "@webex/plugin-teams": 3.9.0-next.3 - checksum: 10c0/1a47467ab060fe6d1b77daf33cca5792f10fcce038b0da22a1e3935513aca3b58ea6f35c346fe08cea8915d865bb8b713e9734f4893f168c0ffb5b951d71ff41 + "@webex/plugin-logger": 3.10.0-next.12 + "@webex/plugin-rooms": 3.10.0-next.12 + "@webex/plugin-teams": 3.10.0-next.12 + checksum: 10c0/85441f11938169609f4d06599bee68466f524abfc1b19bb88a1f4e2bc93ba1279c2644c96a3c92e77b4b8a7157bd23c0bed4ee83725c8d37fed199e189cbc7e1 languageName: node linkType: hard @@ -11566,18 +11271,18 @@ __metadata: languageName: node linkType: hard -"@webex/plugin-teams@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/plugin-teams@npm:3.9.0-next.3" +"@webex/plugin-teams@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/plugin-teams@npm:3.10.0-next.12" dependencies: - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" lodash: "npm:^4.17.21" peerDependencies: - "@webex/plugin-logger": 3.9.0-next.3 - "@webex/plugin-memberships": 3.9.0-next.3 - "@webex/plugin-rooms": 3.9.0-next.3 - checksum: 10c0/9577839c3dccc181da4ba45906b7752366d8beb2e2eaf76cd0fbc5277637750e68edb9ef877debe600f65a595c6a0b6d43cd6a712e4b760b61f8f35428db110e + "@webex/plugin-logger": 3.10.0-next.12 + "@webex/plugin-memberships": 3.10.0-next.12 + "@webex/plugin-rooms": 3.10.0-next.12 + checksum: 10c0/dbc785e7f890948f005494edefbe568c377ec5ed5d641c61b558c1cfe90959b0c5badee2252af6f0e6123ff0d08fd6644872867d034ebc3f736bb68e0e82152d languageName: node linkType: hard @@ -11605,16 +11310,16 @@ __metadata: languageName: node linkType: hard -"@webex/plugin-webhooks@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/plugin-webhooks@npm:3.9.0-next.3" +"@webex/plugin-webhooks@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/plugin-webhooks@npm:3.10.0-next.12" dependencies: - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" peerDependencies: - "@webex/plugin-logger": 3.9.0-next.3 - "@webex/plugin-rooms": 3.9.0-next.3 - checksum: 10c0/45005ce93a13db033bd37d9852df32d925378c36738c3f27754176e3301e3f8fa520224383980e6cf8069bd54554aae65e41cb458de90567954aa70a8236f191 + "@webex/plugin-logger": 3.10.0-next.12 + "@webex/plugin-rooms": 3.10.0-next.12 + checksum: 10c0/913756a5a763d9ef97d34099c5d352047e0366a79d4cdfadec6e8728dfe432e10c2d54384c917208a1d4e53966be5d7d9b92a26914ef6fec5d0ecf97a4cf3ab1 languageName: node linkType: hard @@ -11665,25 +11370,14 @@ __metadata: languageName: node linkType: hard -"@webex/storage-adapter-local-storage@npm:3.10.0-next.4": - version: 3.10.0-next.4 - resolution: "@webex/storage-adapter-local-storage@npm:3.10.0-next.4" +"@webex/storage-adapter-local-storage@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/storage-adapter-local-storage@npm:3.10.0-next.12" dependencies: - "@webex/storage-adapter-spec": "npm:3.8.1-next.11" - "@webex/test-helper-mocha": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.10.0-next.4" - checksum: 10c0/5e7e9083bf7523fd98167fa847f7ae56a532621927a0a7096d521efe8a085757bd3d4aed20c02e618820f2b77fd1febb5939f607385d70a12033a2865ae65c3b - languageName: node - linkType: hard - -"@webex/storage-adapter-local-storage@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/storage-adapter-local-storage@npm:3.9.0-next.3" - dependencies: - "@webex/storage-adapter-spec": "npm:3.8.1-next.11" - "@webex/test-helper-mocha": "npm:3.8.1-next.11" - "@webex/webex-core": "npm:3.9.0-next.3" - checksum: 10c0/024963fd645e62236823b0437e504c22b566ce31f9712dee3def054c0b3a70cdd4a285f9b247d75515d5443847f77bb8172a844e6867a80dc0dfd37df4d83a51 + "@webex/storage-adapter-spec": "npm:3.10.0-next.1" + "@webex/test-helper-mocha": "npm:3.10.0-next.1" + "@webex/webex-core": "npm:3.10.0-next.12" + checksum: 10c0/1fd492a6a2ea317b58003c1455f81f8d39932ac98c30f5f568c2505ff5cfeb50f5f931e7ec55593d18c2140923beb0a87cfe4efe198311f6fcd7a8ed7d10b576 languageName: node linkType: hard @@ -11705,12 +11399,12 @@ __metadata: languageName: node linkType: hard -"@webex/storage-adapter-spec@npm:3.8.1-next.11": - version: 3.8.1-next.11 - resolution: "@webex/storage-adapter-spec@npm:3.8.1-next.11" +"@webex/storage-adapter-spec@npm:3.10.0-next.1": + version: 3.10.0-next.1 + resolution: "@webex/storage-adapter-spec@npm:3.10.0-next.1" dependencies: - "@webex/test-helper-chai": "npm:3.8.1-next.11" - checksum: 10c0/cb93fbc68a12994e1d3baeb1ce99939ea8b8a4d2836902f95d9a9ffc8c294e6beacba543d30bfaa485cd7ae2a208a41aa2f852b97035de9f5b1a8cf18aec24d0 + "@webex/test-helper-chai": "npm:3.10.0-next.1" + checksum: 10c0/32dd1321797b8cc7cb39440b214836ea936cffaafade7fc8c7a8a9b724bd67aaa140afd90ce4b9edb993badb672ae7e09f79bbc4fc6e01c57071de8f3b10e901 languageName: node linkType: hard @@ -11767,14 +11461,14 @@ __metadata: languageName: node linkType: hard -"@webex/test-helper-chai@npm:3.8.1-next.11": - version: 3.8.1-next.11 - resolution: "@webex/test-helper-chai@npm:3.8.1-next.11" +"@webex/test-helper-chai@npm:3.10.0-next.1": + version: 3.10.0-next.1 + resolution: "@webex/test-helper-chai@npm:3.10.0-next.1" dependencies: - "@webex/test-helper-file": "npm:3.8.1-next.11" + "@webex/test-helper-file": "npm:3.10.0-next.1" check-error: "npm:^1.0.2" lodash: "npm:^4.17.21" - checksum: 10c0/be00ed3dae5cf4adbb6874d462284fa4c38be1a7fe1c1581e70bf6f6327b6da88b4324bab9f3b9c02db4cfa4828993128cd87134a9b4d2acb877e13eb232a8c5 + checksum: 10c0/f533a607e11db0158c64309a3131fcfed4729e4603aa109e5ed768ffa25d1c5fca27f4336790db73a4c2003bca9859302bdb8bf54d4d9687a0527f86d6aee799 languageName: node linkType: hard @@ -11804,16 +11498,16 @@ __metadata: languageName: node linkType: hard -"@webex/test-helper-file@npm:3.8.1-next.11": - version: 3.8.1-next.11 - resolution: "@webex/test-helper-file@npm:3.8.1-next.11" +"@webex/test-helper-file@npm:3.10.0-next.1": + version: 3.10.0-next.1 + resolution: "@webex/test-helper-file@npm:3.10.0-next.1" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/test-helper-make-local-url": "npm:3.8.1-next.11" + "@webex/common": "npm:3.10.0-next.1" + "@webex/test-helper-make-local-url": "npm:3.10.0-next.1" es6-promise: "npm:^4.2.8" file-type: "npm:^16.0.1" xhr: "npm:^2.5.0" - checksum: 10c0/3655a2cc13d45e8fd88daea35ff118982489bc2b2f556baea236edb5d9b61cf9432808a33214cb6e34947b1d00d010565b09d95987f686f9d38a7d769c211a18 + checksum: 10c0/67f7b1d4b6dc9353fa19a1b67422ae24104e040445568d636d60530c5423c5c2e3a3e0f7e92a049ec7e251cc596529ae4459ca9665e8e8e2bd4ce5a85426e8d5 languageName: node linkType: hard @@ -11831,10 +11525,10 @@ __metadata: languageName: node linkType: hard -"@webex/test-helper-make-local-url@npm:3.8.1-next.11": - version: 3.8.1-next.11 - resolution: "@webex/test-helper-make-local-url@npm:3.8.1-next.11" - checksum: 10c0/5fae39496a0626f974558a0b610e9746a022530f604009bc0d20bc5737840a0b6cf176f0b9fc3d2e01f9a0ab1202d1ca00a3c32ea25672ceea1809e007cee561 +"@webex/test-helper-make-local-url@npm:3.10.0-next.1": + version: 3.10.0-next.1 + resolution: "@webex/test-helper-make-local-url@npm:3.10.0-next.1" + checksum: 10c0/c9414d6fe04439b3f703044aaf068369609591ca67b18b9109b0c6aa3fd4a9d18f8d65f6f33079f2a31815f0c540aeb18784dbdcf55687c81ccc672e21593fad languageName: node linkType: hard @@ -11856,12 +11550,12 @@ __metadata: languageName: node linkType: hard -"@webex/test-helper-mocha@npm:3.8.1-next.11": - version: 3.8.1-next.11 - resolution: "@webex/test-helper-mocha@npm:3.8.1-next.11" +"@webex/test-helper-mocha@npm:3.10.0-next.1": + version: 3.10.0-next.1 + resolution: "@webex/test-helper-mocha@npm:3.10.0-next.1" dependencies: bowser: "npm:^2.11.0" - checksum: 10c0/143f9bea1834651dd93db9afb338c938bf824dd79a1baf910f9a8e4544fb0e09aa29e5d751ae73f43d727a6caa4ef79f2a45a5c42238eafde159bd2ff011c6c8 + checksum: 10c0/c203262e00e3ca5af4b9684baaba79eb4dc1b34d5ed1cb6657ca65164a163ee497f1030f847bf7b2dcfe249593b09b36d3be2c26ff9dd3f874a06d4833afe4ba languageName: node linkType: hard @@ -11879,10 +11573,10 @@ __metadata: languageName: node linkType: hard -"@webex/test-helper-mock-web-socket@npm:3.8.1-next.11": - version: 3.8.1-next.11 - resolution: "@webex/test-helper-mock-web-socket@npm:3.8.1-next.11" - checksum: 10c0/ef9ff5ee472d0b9b6f65344163bd743c5443c2840de4404fa91e598634e49b377cfcd7a11d27951f04eb9cbfa871a03fe86a38645bc230102ac221815e341d3d +"@webex/test-helper-mock-web-socket@npm:3.10.0-next.1": + version: 3.10.0-next.1 + resolution: "@webex/test-helper-mock-web-socket@npm:3.10.0-next.1" + checksum: 10c0/16664f0479387b6261bbf043d46324e4b0b5ecb3a30f19c2fd385d19cc8d46f8ffee05d0e7deb34948be605da19b57465348cdef0f48b976ce6d77ec20fa24af languageName: node linkType: hard @@ -11908,14 +11602,14 @@ __metadata: languageName: node linkType: hard -"@webex/test-helper-mock-webex@npm:3.8.1-next.11": - version: 3.8.1-next.11 - resolution: "@webex/test-helper-mock-webex@npm:3.8.1-next.11" +"@webex/test-helper-mock-webex@npm:3.10.0-next.1": + version: 3.10.0-next.1 + resolution: "@webex/test-helper-mock-webex@npm:3.10.0-next.1" dependencies: ampersand-state: "npm:^5.0.3" es6-promise: "npm:^4.2.8" lodash: "npm:^4.17.21" - checksum: 10c0/1faa3a525b6be39996fd9968a16080b062a76ce70fbbefa38dead3a87da80fb145bfc7de46d2c33b5c358a78a536c4976ee485c44f8fba6779a473b40971950b + checksum: 10c0/df92458b7b2625e212097a982b69f6e631703d52b707c96bdbcd4c6bc1ee3c3e26ac5a0ce4360ab76d36c712d7b981630632074f05ed6293f54a6add2788e154 languageName: node linkType: hard @@ -11933,10 +11627,10 @@ __metadata: languageName: node linkType: hard -"@webex/test-helper-refresh-callback@npm:3.8.1-next.11": - version: 3.8.1-next.11 - resolution: "@webex/test-helper-refresh-callback@npm:3.8.1-next.11" - checksum: 10c0/547fd793245f611b3234e193776ef8406e10044092f0ec9e51f22017afcb46fb8c9dc1461909c5446b8c2c7fc46e6aff518eb6a1ba65f39c01129facfcbe1551 +"@webex/test-helper-refresh-callback@npm:3.10.0-next.1": + version: 3.10.0-next.1 + resolution: "@webex/test-helper-refresh-callback@npm:3.10.0-next.1" + checksum: 10c0/4a34b7bf54d2cee0e1d1c6662991507561f8a28525fdbca723fcc0a1e8d32dcf337fb6667a2517fc37ddc99126ce587a7a4ea5d589670149e7cbc95eee667901 languageName: node linkType: hard @@ -11958,12 +11652,12 @@ __metadata: languageName: node linkType: hard -"@webex/test-helper-retry@npm:3.8.1-next.11": - version: 3.8.1-next.11 - resolution: "@webex/test-helper-retry@npm:3.8.1-next.11" +"@webex/test-helper-retry@npm:3.10.0-next.1": + version: 3.10.0-next.1 + resolution: "@webex/test-helper-retry@npm:3.10.0-next.1" dependencies: es6-promise: "npm:^4.2.8" - checksum: 10c0/2616218e342b2f0866677e54745fab9af956675f8a969e9d9f312fb1463fff5a6b29e22f29cd525f25fb6ed33373644725109b28153d10866c9921f36595be09 + checksum: 10c0/3e9aa66b787ccf2dd5e5f3c256474aa5c1e51aca97f42475adb9aff5a18ecbd7af36d97b9a1c1ee39d1ce6b4f89a70970ee5c3878ca684d250a5048c409a478d languageName: node linkType: hard @@ -11997,18 +11691,18 @@ __metadata: languageName: node linkType: hard -"@webex/test-helper-test-users@npm:3.8.1-next.11": - version: 3.8.1-next.11 - resolution: "@webex/test-helper-test-users@npm:3.8.1-next.11" +"@webex/test-helper-test-users@npm:3.10.0-next.1": + version: 3.10.0-next.1 + resolution: "@webex/test-helper-test-users@npm:3.10.0-next.1" dependencies: "@ciscospark/test-users-legacy": "npm:^1.0.2" - "@webex/test-helper-retry": "npm:3.8.1-next.11" - "@webex/test-users": "npm:3.8.1-next.11" + "@webex/test-helper-retry": "npm:3.10.0-next.1" + "@webex/test-users": "npm:3.10.0-next.1" lodash: "npm:^4.17.21" dependenciesMeta: "@ciscospark/test-users-legacy": optional: true - checksum: 10c0/a8beb4711ddbd0da6954e8fe8d60ae1cddf2dcf6b8a29f6a2736a7c49205c35da2d998dfe965a6a28664312dd3ae72bc29d41aa0b733ad4c8dcdce51e2a3a49a + checksum: 10c0/ad1841bbe7207a4483f25458d995bd1ec4567d8a46e913c5a71c187ab8373dac53e87c7eabab2ff28402147de05a6fc8d268516372114e7a44cca12e186e1d39 languageName: node linkType: hard @@ -12040,17 +11734,17 @@ __metadata: languageName: node linkType: hard -"@webex/test-users@npm:3.8.1-next.11": - version: 3.8.1-next.11 - resolution: "@webex/test-users@npm:3.8.1-next.11" +"@webex/test-users@npm:3.10.0-next.1": + version: 3.10.0-next.1 + resolution: "@webex/test-users@npm:3.10.0-next.1" dependencies: - "@webex/http-core": "npm:3.8.1-next.11" - "@webex/test-helper-mocha": "npm:3.8.1-next.11" + "@webex/http-core": "npm:3.10.0-next.1" + "@webex/test-helper-mocha": "npm:3.10.0-next.1" btoa: "npm:^1.2.1" lodash: "npm:^4.17.21" node-random-name: "npm:^1.0.1" uuid: "npm:^3.3.2" - checksum: 10c0/e2794bc7a45d7270b5c437f422c432db67d07685486ebfdb6b6857f5690180ac3f0745168e78d0061d41cada7f5e55bd19203e739a780d58859ccd755b474a9e + checksum: 10c0/c49407de06fee3e251407694164ae7068b68f7a77d318e0bd6a772d99903dd9ea596e60badb7b50db412eda31da8d5e9762b0b01e1599de8951de226d6db4507 languageName: node linkType: hard @@ -12117,7 +11811,7 @@ __metadata: languageName: node linkType: hard -"@webex/web-capabilities@npm:^1.6.0, @webex/web-capabilities@npm:^1.6.1": +"@webex/web-capabilities@npm:^1.6.1": version: 1.6.1 resolution: "@webex/web-capabilities@npm:1.6.1" dependencies: @@ -12135,25 +11829,6 @@ __metadata: languageName: node linkType: hard -"@webex/web-client-media-engine@npm:3.34.0": - version: 3.34.0 - resolution: "@webex/web-client-media-engine@npm:3.34.0" - dependencies: - "@webex/json-multistream": "npm:^2.3.1" - "@webex/rtcstats": "npm:^1.5.5" - "@webex/ts-events": "npm:^1.2.1" - "@webex/ts-sdp": "npm:1.8.2" - "@webex/web-capabilities": "npm:^1.6.1" - "@webex/web-media-effects": "npm:2.28.2" - "@webex/webrtc-core": "npm:2.13.3" - async: "npm:^3.2.4" - js-logger: "npm:^1.6.1" - typed-emitter: "npm:^2.1.0" - uuid: "npm:^8.3.2" - checksum: 10c0/d614257ee1da16c9a2c86a18ec81e8a55dc49fc39bb2465c853cce0575560ba0a5478d04f2599d2e9ddd5430212c85ed788498fa8f5bf0479564351b660bcc36 - languageName: node - linkType: hard - "@webex/web-client-media-engine@npm:3.35.2": version: 3.35.2 resolution: "@webex/web-client-media-engine@npm:3.35.2" @@ -12173,36 +11848,6 @@ __metadata: languageName: node linkType: hard -"@webex/web-media-effects@npm:2.27.1": - version: 2.27.1 - resolution: "@webex/web-media-effects@npm:2.27.1" - dependencies: - "@webex/ladon-ts": "npm:^5.5.1" - events: "npm:^3.3.0" - js-logger: "npm:^1.6.1" - typed-emitter: "npm:^1.4.0" - uuid: "npm:^9.0.1" - worker-timers: "npm:^8.0.2" - yarn: "npm:^1.22.22" - checksum: 10c0/8b11e7aff60e8e8d75bc10a9c3bc5d58c77c56506cb8c0316c90fdd15959973ce11009974969971fd109c2abb5513836e26624787adfd2104daceaadca2197b7 - languageName: node - linkType: hard - -"@webex/web-media-effects@npm:2.28.2": - version: 2.28.2 - resolution: "@webex/web-media-effects@npm:2.28.2" - dependencies: - "@webex/ladon-ts": "npm:^5.7.1" - events: "npm:^3.3.0" - js-logger: "npm:^1.6.1" - typed-emitter: "npm:^1.4.0" - uuid: "npm:^9.0.1" - worker-timers: "npm:^8.0.21" - yarn: "npm:^1.22.22" - checksum: 10c0/86ddad6fe310cdf0b501169990553f9a3028580e451056630bc883eadea556e00955a8a92597adba21baf9304418cf8c50481dc3f40cea23b5575cb10ad02ae1 - languageName: node - linkType: hard - "@webex/web-media-effects@npm:2.32.1": version: 2.32.1 resolution: "@webex/web-media-effects@npm:2.32.1" @@ -12262,14 +11907,14 @@ __metadata: languageName: node linkType: hard -"@webex/webex-core@npm:3.10.0-next.4": - version: 3.10.0-next.4 - resolution: "@webex/webex-core@npm:3.10.0-next.4" +"@webex/webex-core@npm:3.10.0-next.12": + version: 3.10.0-next.12 + resolution: "@webex/webex-core@npm:3.10.0-next.12" dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/common-timers": "npm:3.8.1-next.11" - "@webex/http-core": "npm:3.8.1-next.11" - "@webex/storage-adapter-spec": "npm:3.8.1-next.11" + "@webex/common": "npm:3.10.0-next.1" + "@webex/common-timers": "npm:3.10.0-next.1" + "@webex/http-core": "npm:3.10.0-next.1" + "@webex/storage-adapter-spec": "npm:3.10.0-next.1" ampersand-collection: "npm:^2.0.2" ampersand-events: "npm:^2.0.2" ampersand-state: "npm:^5.0.3" @@ -12278,42 +11923,7 @@ __metadata: jsonwebtoken: "npm:^9.0.0" lodash: "npm:^4.17.21" uuid: "npm:^3.3.2" - checksum: 10c0/db25bfc20088d0c6b9dd3c9d532182063e1a1a5f3125a2c564b06706bf6ddda3fb2d21a35a1cd4b22a9fe1fa1cc782396d646e99deba9e5768877abb2f2a9f2d - languageName: node - linkType: hard - -"@webex/webex-core@npm:3.9.0-next.3": - version: 3.9.0-next.3 - resolution: "@webex/webex-core@npm:3.9.0-next.3" - dependencies: - "@webex/common": "npm:3.8.1-next.11" - "@webex/common-timers": "npm:3.8.1-next.11" - "@webex/http-core": "npm:3.8.1-next.11" - "@webex/storage-adapter-spec": "npm:3.8.1-next.11" - ampersand-collection: "npm:^2.0.2" - ampersand-events: "npm:^2.0.2" - ampersand-state: "npm:^5.0.3" - core-decorators: "npm:^0.20.0" - crypto-js: "npm:^4.1.1" - jsonwebtoken: "npm:^9.0.0" - lodash: "npm:^4.17.21" - uuid: "npm:^3.3.2" - checksum: 10c0/bbe29938dd464232278a7edbb6bb8d7d826f0df0f5795db767faeb69330865b2c7a3c2aa69b8a36923be0d8df117dbd9d452084016b0ce2746e9d1d3a1916977 - languageName: node - linkType: hard - -"@webex/webrtc-core@npm:2.13.3": - version: 2.13.3 - resolution: "@webex/webrtc-core@npm:2.13.3" - dependencies: - "@webex/ts-events": "npm:^1.2.1" - "@webex/web-capabilities": "npm:^1.6.1" - "@webex/web-media-effects": "npm:2.28.2" - events: "npm:^3.3.0" - js-logger: "npm:^1.6.1" - typed-emitter: "npm:^2.1.0" - webrtc-adapter: "npm:^8.1.2" - checksum: 10c0/34fb3635e6219810c63c22aca61bbe9f3eb86ad4c27f32722b55d4b720226c0668c258aaf59ff6fec715a8fab8b3334699e04df50e07bab9103e108c27e4501b + checksum: 10c0/5253e037222e111863b2ecfa064dd88ecaf140e09c36e2b31b47285b79f55caf6027500977bce3a80a3a27f03ba0d1985f6f347611156b755314e374ef372dba languageName: node linkType: hard @@ -14141,18 +13751,6 @@ __metadata: languageName: node linkType: hard -"broker-factory@npm:^3.1.5": - version: 3.1.5 - resolution: "broker-factory@npm:3.1.5" - dependencies: - "@babel/runtime": "npm:^7.27.0" - fast-unique-numbers: "npm:^9.0.20" - tslib: "npm:^2.8.1" - worker-factory: "npm:^7.0.41" - checksum: 10c0/25959bccae740e92196b18a9878adda76d768413e9c984e9982b3ad34f9201d9f01d505e2dd08f10714c6b13efe2d074b4054612d920d22be06d06fae10aa7c0 - languageName: node - linkType: hard - "broker-factory@npm:^3.1.9": version: 3.1.9 resolution: "broker-factory@npm:3.1.9" @@ -19118,16 +18716,6 @@ __metadata: languageName: node linkType: hard -"fast-unique-numbers@npm:^9.0.20": - version: 9.0.20 - resolution: "fast-unique-numbers@npm:9.0.20" - dependencies: - "@babel/runtime": "npm:^7.27.0" - tslib: "npm:^2.8.1" - checksum: 10c0/e8e22645949c535451b8f1c46989e98ba89193e33a6bc6d3d16f3de70239d9c53d46631fc78ae2e4c11fe9b56cb0e40adf407dec1022a3b5fca99f5472560630 - languageName: node - linkType: hard - "fast-unique-numbers@npm:^9.0.23": version: 9.0.23 resolution: "fast-unique-numbers@npm:9.0.23" @@ -30588,7 +30176,7 @@ __metadata: ts-loader: "npm:^9.5.1" typescript: "npm:^5.6.3" typescript-eslint: "npm:^8.24.1" - webex: "npm:3.9.0-next.30" + webex: "npm:3.10.0-next.49" webpack: "npm:^5.94.0" webpack-cli: "npm:^5.1.4" webpack-dev-server: "npm:^5.1.0" @@ -34597,41 +34185,42 @@ __metadata: languageName: node linkType: hard -"webex@npm:3.9.0-next.30": - version: 3.9.0-next.30 - resolution: "webex@npm:3.9.0-next.30" +"webex@npm:3.10.0-next.49": + version: 3.10.0-next.49 + resolution: "webex@npm:3.10.0-next.49" dependencies: "@babel/polyfill": "npm:^7.12.1" "@babel/runtime-corejs2": "npm:^7.14.8" - "@webex/calling": "npm:3.9.0-next.8" - "@webex/common": "npm:3.8.1-next.11" - "@webex/contact-center": "npm:3.9.0-next.16" - "@webex/internal-plugin-calendar": "npm:3.9.0-next.4" - "@webex/internal-plugin-device": "npm:3.9.0-next.3" - "@webex/internal-plugin-dss": "npm:3.9.0-next.3" - "@webex/internal-plugin-llm": "npm:3.9.0-next.3" - "@webex/internal-plugin-mercury": "npm:3.9.0-next.3" - "@webex/internal-plugin-presence": "npm:3.9.0-next.3" - "@webex/internal-plugin-support": "npm:3.9.0-next.5" - "@webex/internal-plugin-voicea": "npm:3.9.0-next.4" - "@webex/plugin-attachment-actions": "npm:3.9.0-next.4" - "@webex/plugin-authorization": "npm:3.9.0-next.3" - "@webex/plugin-device-manager": "npm:3.9.0-next.4" - "@webex/plugin-encryption": "npm:3.9.0-next.4" - "@webex/plugin-logger": "npm:3.9.0-next.3" - "@webex/plugin-meetings": "npm:3.9.0-next.20" - "@webex/plugin-memberships": "npm:3.9.0-next.4" - "@webex/plugin-messages": "npm:3.9.0-next.4" - "@webex/plugin-people": "npm:3.9.0-next.3" - "@webex/plugin-rooms": "npm:3.9.0-next.4" - "@webex/plugin-team-memberships": "npm:3.9.0-next.3" - "@webex/plugin-teams": "npm:3.9.0-next.3" - "@webex/plugin-webhooks": "npm:3.9.0-next.3" - "@webex/storage-adapter-local-storage": "npm:3.9.0-next.3" - "@webex/webex-core": "npm:3.9.0-next.3" + "@webex/calling": "npm:3.10.0-next.25" + "@webex/common": "npm:3.10.0-next.1" + "@webex/contact-center": "npm:3.10.0-next.33" + "@webex/internal-plugin-calendar": "npm:3.10.0-next.12" + "@webex/internal-plugin-device": "npm:3.10.0-next.12" + "@webex/internal-plugin-dss": "npm:3.10.0-next.12" + "@webex/internal-plugin-llm": "npm:3.10.0-next.12" + "@webex/internal-plugin-mercury": "npm:3.10.0-next.12" + "@webex/internal-plugin-presence": "npm:3.10.0-next.12" + "@webex/internal-plugin-support": "npm:3.10.0-next.12" + "@webex/internal-plugin-task": "npm:^0.0.0-next.7" + "@webex/internal-plugin-voicea": "npm:3.10.0-next.14" + "@webex/plugin-attachment-actions": "npm:3.10.0-next.12" + "@webex/plugin-authorization": "npm:3.10.0-next.12" + "@webex/plugin-device-manager": "npm:3.10.0-next.12" + "@webex/plugin-encryption": "npm:3.10.0-next.12" + "@webex/plugin-logger": "npm:3.10.0-next.12" + "@webex/plugin-meetings": "npm:3.10.0-next.28" + "@webex/plugin-memberships": "npm:3.10.0-next.12" + "@webex/plugin-messages": "npm:3.10.0-next.12" + "@webex/plugin-people": "npm:3.10.0-next.12" + "@webex/plugin-rooms": "npm:3.10.0-next.12" + "@webex/plugin-team-memberships": "npm:3.10.0-next.12" + "@webex/plugin-teams": "npm:3.10.0-next.12" + "@webex/plugin-webhooks": "npm:3.10.0-next.12" + "@webex/storage-adapter-local-storage": "npm:3.10.0-next.12" + "@webex/webex-core": "npm:3.10.0-next.12" lodash: "npm:^4.17.21" safe-buffer: "npm:^5.2.0" - checksum: 10c0/e092eb5f0b7469ba35459983af810a58cb91c4b5d19d75a9250b58e5193f9885bb2fdfef6ae113fc19ba4fe942028d9c62b88b9c353272bf1467822a71c3596b + checksum: 10c0/ff8ef08a86a41863ec690afbe4d5df041a5b85d84353922d43b39cd99ede7f566cbb427c2e5deaecb1ae32f0b569bae876dac52428dccb90bac29b4d54b251e5 languageName: node linkType: hard @@ -35220,17 +34809,6 @@ __metadata: languageName: node linkType: hard -"worker-factory@npm:^7.0.41": - version: 7.0.41 - resolution: "worker-factory@npm:7.0.41" - dependencies: - "@babel/runtime": "npm:^7.27.0" - fast-unique-numbers: "npm:^9.0.20" - tslib: "npm:^2.8.1" - checksum: 10c0/10f8d0533be76ae3ed474063457c4c6347e7142b2cd48f450677ac59133028773192419ada972c73dcfe12b20892965ce1edaab57d2387b96da9507281592f6e - languageName: node - linkType: hard - "worker-factory@npm:^7.0.45": version: 7.0.45 resolution: "worker-factory@npm:7.0.45" @@ -35264,19 +34842,6 @@ __metadata: languageName: node linkType: hard -"worker-timers-broker@npm:^8.0.6": - version: 8.0.6 - resolution: "worker-timers-broker@npm:8.0.6" - dependencies: - "@babel/runtime": "npm:^7.27.0" - broker-factory: "npm:^3.1.5" - fast-unique-numbers: "npm:^9.0.20" - tslib: "npm:^2.8.1" - worker-timers-worker: "npm:^9.0.6" - checksum: 10c0/296ecbb5a1204aa014e05e4ace0079a86a7304d47506ed27112090827bb8d0504afd7724e1f044442807e4f13324143106538a024dc2b72969da7632fa01b5e5 - languageName: node - linkType: hard - "worker-timers-worker@npm:^9.0.10": version: 9.0.10 resolution: "worker-timers-worker@npm:9.0.10" @@ -35288,29 +34853,6 @@ __metadata: languageName: node linkType: hard -"worker-timers-worker@npm:^9.0.6": - version: 9.0.6 - resolution: "worker-timers-worker@npm:9.0.6" - dependencies: - "@babel/runtime": "npm:^7.27.0" - tslib: "npm:^2.8.1" - worker-factory: "npm:^7.0.41" - checksum: 10c0/ddeacb713bbe22cb75644f730285ec83325a1120cb0f4f2315993b1edf708a5e1b2abe7baf199f370a95d19d362f665066cb28ff2fe4fcd38efe610bd0102cbe - languageName: node - linkType: hard - -"worker-timers@npm:^8.0.2": - version: 8.0.20 - resolution: "worker-timers@npm:8.0.20" - dependencies: - "@babel/runtime": "npm:^7.27.0" - tslib: "npm:^2.8.1" - worker-timers-broker: "npm:^8.0.6" - worker-timers-worker: "npm:^9.0.6" - checksum: 10c0/2177394a71a4583d432d3fba07bb18dd7c4e0fe277bfa9831d9031c672d9f15284f4e7038eb4c82cc02ccb7db18a053ed1bf672a1258f017dde101f197bc2dc2 - languageName: node - linkType: hard - "worker-timers@npm:^8.0.21": version: 8.0.24 resolution: "worker-timers@npm:8.0.24" @@ -35528,6 +35070,15 @@ __metadata: languageName: node linkType: hard +"xxh3-ts@npm:^2.0.1": + version: 2.0.1 + resolution: "xxh3-ts@npm:2.0.1" + peerDependencies: + buffer: ^6 + checksum: 10c0/4d98741790415cc9622820055216e95fd281a77ef42faeaa142627d946cd2ff3cb5354da5c7de65263195e150b2781394fdcf99cac0ebd7a0122fe764e756509 + languageName: node + linkType: hard + "xxhashjs@npm:~0.2.2": version: 0.2.2 resolution: "xxhashjs@npm:0.2.2"