fcr-ui-scene 1.0.10 → 1.0.40

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,27 @@
1
+ name: gitee-sync
2
+ on:
3
+ pull_request:
4
+ workflow_dispatch:
5
+
6
+ jobs:
7
+ build:
8
+ name: gitee-sync
9
+ runs-on: ubuntu-latest
10
+
11
+ concurrency:
12
+ group: ${{ github.workflow }}-${{ github.ref }}
13
+ cancel-in-progress: true
14
+ if: github.actor != 'dependabot[bot]'
15
+ steps:
16
+ - name: Gitee sync repo
17
+ uses: Yikun/hub-mirror-action@v1.3
18
+ with:
19
+ src: github/AgoraIO-Community
20
+ dst: gitee/agoraio-community
21
+ white_list: "fcr-ui-scene-desktop"
22
+ static_list: "fcr-ui-scene-desktop"
23
+ cache_path: "./cache"
24
+ dst_key: ${{ secrets.GITEE_PI_SSH }}
25
+ dst_token: ${{ secrets.GITEE_PRIVATE_TOKEN }}
26
+ force_update: true
27
+ account_type: org
@@ -0,0 +1,3 @@
1
+ export declare enum RoomTemplate {
2
+ FINITY_CLOUD_CLASS = "scene_finity_v1"
3
+ }
@@ -1,2 +1,2 @@
1
1
  import './index.css';
2
- export { LocalVideoPlayer, RemoteVideoPlayer } from './players';
2
+ export { LocalVideoPlayer } from './players';
@@ -1,3 +1,2 @@
1
1
  /// <reference types="react" />
2
2
  export declare const LocalVideoPlayer: () => JSX.Element;
3
- export declare const RemoteVideoPlayer: () => JSX.Element;
@@ -205,12 +205,19 @@ export declare type LaunchOptions = {
205
205
  */
206
206
  recordOptions?: BoardWindowAnimationOptions;
207
207
  /**
208
- * 云代理类型
208
+ * RTC 云代理类型
209
209
  */
210
210
  /** @en
211
211
  * Cloud proxy type
212
212
  */
213
- cloudProxy?: AgoraCloudProxyType;
213
+ rtcCloudProxyType?: AgoraCloudProxyType;
214
+ /**
215
+ * 是否开启 RTM 云代理
216
+ */
217
+ /** @en
218
+ * Whether to enable RTM cloud proxy
219
+ */
220
+ rtmCloudProxyEnabled?: boolean;
214
221
  };
215
222
  /**
216
223
  * 支持的语言
@@ -9,16 +9,16 @@ import { BeautyFilterOptions, VirtualBackgroundOptions } from '..';
9
9
  */
10
10
  export declare class DeviceSettingUIStore extends EduUIStoreBase {
11
11
  private _defaultBeautyOptions;
12
- private _pretestCameraEnabled;
13
- private _pretestMicEnabled;
14
- setPretestCameraEnabled(enable: boolean): void;
15
- setPretestMicEnabled(enable: boolean): void;
16
12
  private _virtualBackgroundProcessor?;
17
13
  private _beautyEffectProcessor?;
18
14
  private _aiDenoiserProcessor?;
19
15
  private _virtualBackgroundProcessorForPreview?;
20
16
  private _beautyEffectProcessorForPreview?;
21
17
  private _aiDenoiserProcessorForPreview?;
18
+ private _defaultSystemAudioRecordingDeviceId?;
19
+ private _defaultSystemAudioPlaybackDeviceId?;
20
+ private _userHasSelectedAudioRecordingDevice;
21
+ private _userHasSelectedAudioPlaybackDevice;
22
22
  deviceSettingDialogVisible: boolean;
23
23
  setDeviceSettingDialogVisible(visible: boolean): void;
24
24
  private _virtualBackgroundOptions?;
@@ -36,6 +36,8 @@ export declare class DeviceSettingUIStore extends EduUIStoreBase {
36
36
  private _virtualBackgroundEnabled;
37
37
  private _beautyFilterEnabled;
38
38
  private _aiDenoiserEnabled;
39
+ private _userHasEnabledCamera;
40
+ private _userHasEnabledAudioRecording;
39
41
  get isAiDenoiserEnabled(): boolean;
40
42
  get noCameraDevice(): boolean;
41
43
  get cameraDeviceId(): string | undefined;
@@ -56,8 +58,6 @@ export declare class DeviceSettingUIStore extends EduUIStoreBase {
56
58
  get beautySmoothValue(): number | undefined;
57
59
  get beautyBrighteningValue(): number | undefined;
58
60
  get beautyBlushValue(): number | undefined;
59
- get pretestCameraEnabled(): boolean;
60
- get pretestMicEnabled(): boolean;
61
61
  get defaultBeautyOptions(): {
62
62
  smooth: number;
63
63
  brightening: number;
@@ -185,6 +185,8 @@ export declare class DeviceSettingUIStore extends EduUIStoreBase {
185
185
  startCameraPreview(): void;
186
186
  stopCameraPreview(): void;
187
187
  setAudioRecordingDevice(deviceId: string): void;
188
+ setUserHasSelectedAudioRecordingDevice(): void;
189
+ setUserHasSelectedAudioPlaybackDevice(): void;
188
190
  updateAudioRecordingTrack(): void;
189
191
  toggleAudioRecordingDevice(): void;
190
192
  enableAudioRecording(value: boolean): void;
@@ -37,4 +37,6 @@ export declare class Getters {
37
37
  get isBreakoutMinimized(): boolean;
38
38
  get isJoiningSubRoom(): boolean;
39
39
  get isInSubRoom(): boolean;
40
+ get galleryStreamsByPage(): EduStreamUI[];
41
+ get presentationStreamsByPage(): EduStreamUI[];
40
42
  }
@@ -0,0 +1 @@
1
+ export declare const matchVirtualSoundCardPattern: (deviceName: string) => boolean;