fcr-core 3.11.0-rc.5 → 3.11.0-rc.6
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/lib/room-control/ability-control/type.d.ts +1 -0
- package/lib/room-control/ability-control/type.js +1 -0
- package/lib/room-control/privilege-control/type.d.ts +2 -0
- package/lib/room-control/privilege-control/type.js +2 -0
- package/lib-es/room-control/ability-control/type.js +1 -0
- package/lib-es/room-control/privilege-control/type.js +2 -0
- package/package.json +7 -7
|
@@ -8,6 +8,7 @@ export declare enum FcrAbility {
|
|
|
8
8
|
Caption = "caption",
|
|
9
9
|
Transcribe = "transcribe",
|
|
10
10
|
Recording = "recording",
|
|
11
|
+
ClientRecording = "clientRecording",
|
|
11
12
|
Board = "board",
|
|
12
13
|
SettingVirtualBackground = "setting:virtualBackground",
|
|
13
14
|
SettingBeautyMode = "setting:beautyMode",
|
|
@@ -13,6 +13,7 @@ let FcrAbility = exports.FcrAbility = /*#__PURE__*/function (FcrAbility) {
|
|
|
13
13
|
FcrAbility["Caption"] = "caption";
|
|
14
14
|
FcrAbility["Transcribe"] = "transcribe";
|
|
15
15
|
FcrAbility["Recording"] = "recording";
|
|
16
|
+
FcrAbility["ClientRecording"] = "clientRecording";
|
|
16
17
|
FcrAbility["Board"] = "board";
|
|
17
18
|
FcrAbility["SettingVirtualBackground"] = "setting:virtualBackground";
|
|
18
19
|
FcrAbility["SettingBeautyMode"] = "setting:beautyMode";
|
|
@@ -370,6 +370,8 @@ export declare enum FcrPermissionAction {
|
|
|
370
370
|
RecordPauseCloudRecording = "record:pauseCloudRecording",
|
|
371
371
|
RecordResumeCloudRecording = "record:resumeCloudRecording",
|
|
372
372
|
RecordStartClientRecording = "record:startClientRecording",
|
|
373
|
+
RecordAllowStartClientRecording = "record:allowStartClientRecording",
|
|
374
|
+
RecordDisallowStartClientRecording = "record:disallowStartClientRecording",
|
|
373
375
|
RecordStopClientRecording = "record:stopClientRecording",
|
|
374
376
|
RecordSetClientRecordingPermission = "record:setClientRecordingPermission",
|
|
375
377
|
CallCallIn = "call:callIn",
|
|
@@ -119,6 +119,8 @@ let FcrPermissionAction = exports.FcrPermissionAction = /*#__PURE__*/function (F
|
|
|
119
119
|
FcrPermissionAction["RecordPauseCloudRecording"] = "record:pauseCloudRecording";
|
|
120
120
|
FcrPermissionAction["RecordResumeCloudRecording"] = "record:resumeCloudRecording";
|
|
121
121
|
FcrPermissionAction["RecordStartClientRecording"] = "record:startClientRecording";
|
|
122
|
+
FcrPermissionAction["RecordAllowStartClientRecording"] = "record:allowStartClientRecording";
|
|
123
|
+
FcrPermissionAction["RecordDisallowStartClientRecording"] = "record:disallowStartClientRecording";
|
|
122
124
|
FcrPermissionAction["RecordStopClientRecording"] = "record:stopClientRecording";
|
|
123
125
|
FcrPermissionAction["RecordSetClientRecordingPermission"] = "record:setClientRecordingPermission";
|
|
124
126
|
FcrPermissionAction["CallCallIn"] = "call:callIn";
|
|
@@ -7,6 +7,7 @@ export let FcrAbility = /*#__PURE__*/function (FcrAbility) {
|
|
|
7
7
|
FcrAbility["Caption"] = "caption";
|
|
8
8
|
FcrAbility["Transcribe"] = "transcribe";
|
|
9
9
|
FcrAbility["Recording"] = "recording";
|
|
10
|
+
FcrAbility["ClientRecording"] = "clientRecording";
|
|
10
11
|
FcrAbility["Board"] = "board";
|
|
11
12
|
FcrAbility["SettingVirtualBackground"] = "setting:virtualBackground";
|
|
12
13
|
FcrAbility["SettingBeautyMode"] = "setting:beautyMode";
|
|
@@ -113,6 +113,8 @@ export let FcrPermissionAction = /*#__PURE__*/function (FcrPermissionAction) {
|
|
|
113
113
|
FcrPermissionAction["RecordPauseCloudRecording"] = "record:pauseCloudRecording";
|
|
114
114
|
FcrPermissionAction["RecordResumeCloudRecording"] = "record:resumeCloudRecording";
|
|
115
115
|
FcrPermissionAction["RecordStartClientRecording"] = "record:startClientRecording";
|
|
116
|
+
FcrPermissionAction["RecordAllowStartClientRecording"] = "record:allowStartClientRecording";
|
|
117
|
+
FcrPermissionAction["RecordDisallowStartClientRecording"] = "record:disallowStartClientRecording";
|
|
116
118
|
FcrPermissionAction["RecordStopClientRecording"] = "record:stopClientRecording";
|
|
117
119
|
FcrPermissionAction["RecordSetClientRecordingPermission"] = "record:setClientRecordingPermission";
|
|
118
120
|
FcrPermissionAction["CallCallIn"] = "call:callIn";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fcr-core",
|
|
3
3
|
"description": "Core APIs for building online scenes",
|
|
4
|
-
"version": "3.11.0-rc.
|
|
4
|
+
"version": "3.11.0-rc.6",
|
|
5
5
|
"module": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
7
7
|
"files": [
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@types/lodash": "^4.14.168",
|
|
43
43
|
"@types/sinon": "^17.0.2",
|
|
44
44
|
"@types/uuid": "^8.3.0",
|
|
45
|
-
"agora-toolchain": "3.11.0-rc.
|
|
45
|
+
"agora-toolchain": "3.11.0-rc.6",
|
|
46
46
|
"core-js": "^3.33.3",
|
|
47
47
|
"decomment": "^0.9.5",
|
|
48
48
|
"husky": "^9.0.11",
|
|
@@ -56,14 +56,14 @@
|
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@netless/app-slide": "^0.2.81",
|
|
58
58
|
"@netless/appliance-plugin": "^1.1.21",
|
|
59
|
-
"@netless/forge-room": "1.
|
|
60
|
-
"@netless/forge-rtm": "1.
|
|
61
|
-
"@netless/forge-whiteboard": "1.
|
|
59
|
+
"@netless/forge-room": "1.3.1",
|
|
60
|
+
"@netless/forge-rtm": "1.3.1",
|
|
61
|
+
"@netless/forge-whiteboard": "1.3.1",
|
|
62
62
|
"@netless/video-js-plugin": "^0.3.8",
|
|
63
63
|
"@netless/white-snapshot": "^0.4.2",
|
|
64
64
|
"@netless/window-manager": "^1.0.7-beta.6",
|
|
65
|
-
"agora-foundation": "3.11.0-rc.
|
|
66
|
-
"agora-rte-sdk": "3.11.0-rc.
|
|
65
|
+
"agora-foundation": "3.11.0-rc.6",
|
|
66
|
+
"agora-rte-sdk": "3.11.0-rc.6",
|
|
67
67
|
"await-to-js": "^3.0.0",
|
|
68
68
|
"dayjs": "^1.10.4",
|
|
69
69
|
"easemob-websdk": "4.13.0",
|