fcr-ui-scene 1.0.2 → 1.0.10

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.
@@ -0,0 +1,8 @@
1
+ declare global {
2
+ interface Window {
3
+ __agora__fcr__locked: boolean;
4
+ }
5
+ }
6
+ export declare const lock: () => void;
7
+ export declare const unlock: () => void;
8
+ export declare const isLocked: () => boolean;
@@ -1,4 +1,4 @@
1
- import { ConversionOption, EduRegion, EduRoleTypeEnum, EduRoomTypeEnum, EduRtcConfig } from 'agora-edu-core';
1
+ import { ConversionOption, EduRegion, EduRoleTypeEnum, EduRoomTypeEnum, EduRtcConfig, AgoraCloudProxyType } from 'agora-edu-core';
2
2
  import { AGMediaOptions, AgoraLatencyLevel, AGVideoEncoderConfiguration } from 'agora-rte-sdk';
3
3
  import { FcrMultiThemeMode } from 'agora-common-libs';
4
4
  import { FcrUISceneWidget } from 'agora-common-libs';
@@ -204,6 +204,13 @@ export declare type LaunchOptions = {
204
204
  * BoardRecordOptions
205
205
  */
206
206
  recordOptions?: BoardWindowAnimationOptions;
207
+ /**
208
+ * 云代理类型
209
+ */
210
+ /** @en
211
+ * Cloud proxy type
212
+ */
213
+ cloudProxy?: AgoraCloudProxyType;
207
214
  };
208
215
  /**
209
216
  * 支持的语言
@@ -1,10 +1,10 @@
1
1
  import { FcrTheme, FcrUIConfig } from 'agora-common-libs';
2
2
  import { LaunchOptions } from '..';
3
- declare type Config = Partial<Record<'host' | 'ignoreUrlRegionPrefix' | 'logo' | 'shareUrl' | 'uiConfig' | 'theme' | 'recordOptions' | 'defaultEnableDevice', unknown>>;
3
+ declare type Config = Partial<Record<'host' | 'ignoreUrlRegionPrefix' | 'logo' | 'shareUrl' | 'uiConfig' | 'theme' | 'recordOptions' | 'defaultEnableDevice' | 'fastMode', unknown>>;
4
4
  export declare const setLaunchOptions: (launchOptions: LaunchOptions) => void;
5
5
  export declare const getLaunchOptions: () => LaunchOptions;
6
6
  export declare const setConfig: (config: Config) => void;
7
- export declare const getConfig: () => Partial<Record<"theme" | "host" | "ignoreUrlRegionPrefix" | "logo" | "shareUrl" | "uiConfig" | "recordOptions" | "defaultEnableDevice", unknown>>;
7
+ export declare const getConfig: () => Partial<Record<"theme" | "host" | "ignoreUrlRegionPrefix" | "logo" | "shareUrl" | "uiConfig" | "recordOptions" | "defaultEnableDevice" | "fastMode", unknown>>;
8
8
  export declare const getUiConfig: () => FcrUIConfig;
9
9
  export declare const getTheme: () => FcrTheme;
10
10
  export {};