agora-appbuilder-core 4.1.19-beta.1 → 4.1.19-beta.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agora-appbuilder-core",
3
- "version": "4.1.19-beta.1",
3
+ "version": "4.1.19-beta.2",
4
4
  "description": "React Native template for RTE app builder",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -0,0 +1,4 @@
1
+ export {
2
+ default as AIAgentAudioVisualizer,
3
+ DisconnectedView as AIAgentDisconnectedView,
4
+ } from '../src/ai-agent/components/AudioVisualizer';
@@ -5,10 +5,13 @@ import {
5
5
  PersistanceLevel,
6
6
  EventCallback,
7
7
  } from '../src/rtm-events-api';
8
+ import LocalEventEmitter, {
9
+ LocalEventsEnum,
10
+ } from '../src/rtm-events-api/LocalEvents';
8
11
 
9
12
  // 2. Initialize with source "fpe"
10
13
  const customEvents = new Events(EventSource.fpe);
11
14
 
12
15
  // 3. export
13
- export {customEvents, PersistanceLevel};
16
+ export {customEvents, PersistanceLevel, LocalEventEmitter, LocalEventsEnum};
14
17
  export type {EventCallback};
@@ -26,6 +26,7 @@ export * from './typeDefinition';
26
26
  export * from './utils';
27
27
  export * from './types';
28
28
  export * from './atoms';
29
+ export * from './ai-agent';
29
30
 
30
31
  //TODO: hari remove later - used for simple-practice demo
31
32
  export * from './temp';
@@ -77,8 +77,8 @@ const DefaultConfig = {
77
77
  CHAT_ORG_NAME: "",
78
78
  CHAT_APP_NAME: "",
79
79
  CHAT_URL: "",
80
- CLI_VERSION: "3.1.19-beta.1",
81
- CORE_VERSION: "4.1.19-beta.1",
80
+ CLI_VERSION: "3.1.19-beta.2",
81
+ CORE_VERSION: "4.1.19-beta.2",
82
82
  DISABLE_LANDSCAPE_MODE: false,
83
83
  STT_AUTO_START: false,
84
84
  CLOUD_RECORDING_AUTO_START: false,