Skip to content

Commit

Permalink
Merge pull request #47 from mynaparrot/update
Browse files Browse the repository at this point in the history
feat: SpeechToTextTranslationFeatures & E2EE
  • Loading branch information
jibon57 authored Jun 15, 2023
2 parents e49f1da + 1ee9891 commit 0b13b3b
Show file tree
Hide file tree
Showing 5 changed files with 5,302 additions and 19 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ log
npm-debug.log*
.idea
.vscode
package-lock.json
dist
node_modules/
docs/
Expand Down
15 changes: 13 additions & 2 deletions deno_dist/types/createRoom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ export type RoomFeaturesParams = {
breakout_room_features?: BreakoutRoomFeatures;
display_external_link_features?: DisplayExternalLinkFeatures;
ingress_features?: IngressFeatures;
speech_to_text_translation_features?: SpeechToTextTranslationFeatures;
end_to_end_encryption_features?: EndToEndEncryptionFeatures;
};

export type RecordingFeaturesParams = {
Expand Down Expand Up @@ -70,11 +72,20 @@ export type BreakoutRoomFeatures = {

export type DisplayExternalLinkFeatures = {
is_allow: boolean;
}
};

export type IngressFeatures = {
is_allow: boolean;
}
};

export type SpeechToTextTranslationFeatures = {
is_allow: boolean;
is_allow_translation: boolean;
};

export type EndToEndEncryptionFeatures = {
is_enabled: boolean;
};

export type LockSettingsParams = {
lock_microphone?: boolean;
Expand Down
Loading

0 comments on commit 0b13b3b

Please sign in to comment.