@intelliweave/embedded 1.9.68 → 1.9.69-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/component/component.d.ts +5 -0
- package/dist/component/component.js +16 -13
- package/dist/intelliweave-wordpress.zip +0 -0
- package/dist/node/node.d.ts +5 -0
- package/dist/node/node.js +7 -4
- package/dist/react/react.d.ts +5 -0
- package/dist/react/react.js +17 -14
- package/dist/script-tag/script-tag.js +41 -38
- package/dist/webpack/index.d.ts +7 -0
- package/dist/webpack/index.js +16 -13
- package/package.json +1 -1
|
@@ -372,6 +372,7 @@ type KnowledgeBaseActionParameterSchema = JSONSchema7 | IntelliWeaveParameterDef
|
|
|
372
372
|
/**
|
|
373
373
|
* Speech output
|
|
374
374
|
*
|
|
375
|
+
* - event `speechfilter` - Allows modification or cancellation of speech
|
|
375
376
|
* - event `speechstart` - When the speech starts
|
|
376
377
|
* - event `speechend` - When the speech ends
|
|
377
378
|
*/
|
|
@@ -412,6 +413,8 @@ declare class WebWeaverSpeechOutput extends EventTarget {
|
|
|
412
413
|
declare class PCMReceiverNode extends AudioWorkletNode {
|
|
413
414
|
/** @type {'int16' | 'float32'} The output data format */
|
|
414
415
|
format: string;
|
|
416
|
+
/** Register worklet with an audio context */
|
|
417
|
+
static registerModule(context: AudioContext): Promise<void>;
|
|
415
418
|
/**
|
|
416
419
|
* Creates a new PCMRecorderNode ready to receive PCM data.
|
|
417
420
|
*
|
|
@@ -618,6 +621,8 @@ declare class AudioSystem {
|
|
|
618
621
|
static get isSupported(): boolean;
|
|
619
622
|
/** Constructor */
|
|
620
623
|
constructor(ai: IntelliWeave);
|
|
624
|
+
/** Register worklets */
|
|
625
|
+
static registerModules(context: AudioContext): Promise<void>;
|
|
621
626
|
/** Create a named lock to enable the audio system */
|
|
622
627
|
beginAccess(namedLock: string): Promise<void>;
|
|
623
628
|
/** Stop accessing the audio system */
|