@mml-io/3d-web-client-core 0.0.0-experimental-f0a158e-20240717 → 0.0.0-experimental-42d909b-20240717

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.js CHANGED
@@ -2534,8 +2534,11 @@ var MMLCompositionScene = class {
2534
2534
  removeChatProbe: (chatProbe) => {
2535
2535
  this.chatProbes.delete(chatProbe);
2536
2536
  },
2537
- prompt: (promptProps, callback) => {
2538
- this.promptManager.prompt(promptProps, callback);
2537
+ prompt: (promptProps, abortSignal, callback) => {
2538
+ this.promptManager.prompt(promptProps, abortSignal, callback);
2539
+ },
2540
+ link: (linkProps, abortSignal, windowCallback) => {
2541
+ this.promptManager.link(linkProps, abortSignal, windowCallback);
2539
2542
  },
2540
2543
  getLoadingProgressManager: () => {
2541
2544
  return this.loadingProgressManager;