From 65b4c5d5d7ba92360286b6752196613e9b2a2a39 Mon Sep 17 00:00:00 2001 From: Anton Georgiev Date: Thu, 19 Oct 2023 14:51:08 -0400 Subject: [PATCH 1/2] docs: preUploadedPresentation and preUploadedPresentationOverrideDefault --- docs/docs/data/create.tsx | 13 +++++++++++++ docs/docs/development/api.md | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/docs/docs/data/create.tsx b/docs/docs/data/create.tsx index a58e28736b..d31449a0da 100644 --- a/docs/docs/data/create.tsx +++ b/docs/docs/data/create.tsx @@ -384,6 +384,19 @@ const createEndpointTableData = [ "type": "Boolean", "default": "false", "description": (<>Controls whether media (audio, cameras and screen sharing) should be captured on their full duration if the meeting's recorded property is true (recorded=true). Default is false: only captures media while recording is running in the meeting. (added 2.6.9)) + }, + { + "name": "preUploadedPresentation", + "required": false, + "type": "String", + "description": (<>If passed with a valid presentation file url, this presentation will override the default presentation. To only upload but not set as default, also pass preUploadedPresentationOverrideDefault=false (added 2.7.2)) + }, + { + "name": "preUploadedPresentationOverrideDefault", + "required": false, + "type": "Boolean", + "default": true, + "description": (<>Controls whether preUploadedPresentation presentation is set as default. Default is true: the presentation passed in the same CREATE via preUploadedPresentation will be set as the default presentation in the meeting. (added 2.7.2)) } ] diff --git a/docs/docs/development/api.md b/docs/docs/development/api.md index 2778c296d8..f7c0ceea6b 100644 --- a/docs/docs/development/api.md +++ b/docs/docs/development/api.md @@ -104,7 +104,7 @@ Updated in 2.6: Updated in 2.7: -- **create** - **Added:** `disabledFeatures` options`cameraAsContent`, `snapshotOfCurrentSlide`, `downloadPresentationOriginalFile`, `downloadPresentationConvertedToPdf`, `timer`. +- **create** - **Added:** `preUploadedPresentation`, `preUploadedPresentationOverrideDefault`, `disabledFeatures` options`cameraAsContent`, `snapshotOfCurrentSlide`, `downloadPresentationOriginalFile`, `downloadPresentationConvertedToPdf`, `timer`. - **join** - **Added:** `redirectErrorUrl`, `userdata-bbb_fullaudio_bridge` From f2dbd891cd0ebea53a6a92dc9024b2f68c3185c8 Mon Sep 17 00:00:00 2001 From: Anton Georgiev Date: Thu, 19 Oct 2023 15:25:38 -0400 Subject: [PATCH 2/2] docs: preUploadedPresentation and preUploadedPresentationName --- docs/docs/data/create.tsx | 7 +++---- docs/docs/development/api.md | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/docs/data/create.tsx b/docs/docs/data/create.tsx index d31449a0da..11bfd16337 100644 --- a/docs/docs/data/create.tsx +++ b/docs/docs/data/create.tsx @@ -392,11 +392,10 @@ const createEndpointTableData = [ "description": (<>If passed with a valid presentation file url, this presentation will override the default presentation. To only upload but not set as default, also pass preUploadedPresentationOverrideDefault=false (added 2.7.2)) }, { - "name": "preUploadedPresentationOverrideDefault", + "name": "preUploadedPresentationName", "required": false, - "type": "Boolean", - "default": true, - "description": (<>Controls whether preUploadedPresentation presentation is set as default. Default is true: the presentation passed in the same CREATE via preUploadedPresentation will be set as the default presentation in the meeting. (added 2.7.2)) + "type": "String", + "description": (<>If passed it will use this string as the name of the presentation uploaded via preUploadedPresentation (added 2.7.2)) } ] diff --git a/docs/docs/development/api.md b/docs/docs/development/api.md index f7c0ceea6b..9caa409ada 100644 --- a/docs/docs/development/api.md +++ b/docs/docs/development/api.md @@ -104,7 +104,7 @@ Updated in 2.6: Updated in 2.7: -- **create** - **Added:** `preUploadedPresentation`, `preUploadedPresentationOverrideDefault`, `disabledFeatures` options`cameraAsContent`, `snapshotOfCurrentSlide`, `downloadPresentationOriginalFile`, `downloadPresentationConvertedToPdf`, `timer`. +- **create** - **Added:** `preUploadedPresentation`, `preUploadedPresentationName`, `disabledFeatures` options`cameraAsContent`, `snapshotOfCurrentSlide`, `downloadPresentationOriginalFile`, `downloadPresentationConvertedToPdf`, `timer`. - **join** - **Added:** `redirectErrorUrl`, `userdata-bbb_fullaudio_bridge`