Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(video-v2): add video v2 class and stream #930

Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
16fa265
feat(video-v2): add highlevel video class
madhur-push Dec 18, 2023
9816bab
fix: merge main
madhur-push Dec 20, 2023
ee8f2f9
feat(video): add video stream
madhur-push Dec 21, 2023
c8b2a07
fix(sendnotification): modify rules.access.data to be an object & cod…
madhur-push Dec 21, 2023
0fff331
fix(video): remove signer from input, throw err if signer, decrypted …
madhur-push Dec 22, 2023
277da90
Merge branch 'main' into 926-improvement-proposal-add-class-based-cha…
madhur-push Dec 22, 2023
e96a9b7
feat(video): add sendNotification calls in connect, disconnect methods
madhur-push Dec 22, 2023
3cf48a4
fix(videonotificationrules): typo in VideoNotificationRules interface
madhur-push Jan 2, 2024
10d05a9
feat(video stream): handle connect, retry internally from the SDK
madhur-push Jan 5, 2024
3dcace4
feat(video connect): remove the connect method from the videov2 SDK
madhur-push Jan 5, 2024
d39592c
fix: merge main
madhur-push Jan 8, 2024
194e064
fix(videov2): create push signer instance to get chain id in initiali…
madhur-push Jan 8, 2024
924ce7d
fix: merge main
madhur-push Jan 9, 2024
da7fee5
fix: merge main
madhur-push Jan 9, 2024
df4b6f8
fix(video stream): add backwards compatibilty to rules object for old…
madhur-push Jan 10, 2024
272667b
fix(video stream): fix bug in rules object creation
madhur-push Jan 10, 2024
e27725e
feat(video): update param names for video.initialize()
madhur-push Jan 11, 2024
407559b
fix: merge main
madhur-push Jan 12, 2024
9bd3ac8
feat(video): add internal event handlers for stream in video SDK
madhur-push Jan 15, 2024
095d213
fix: merge alpha
mohammeds1992 Jan 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat(video connect): remove the connect method from the videov2 SDK
madhur-push committed Jan 5, 2024
commit 3dcace4d026b1286ad6ed950609c83ef2457974b
15 changes: 0 additions & 15 deletions packages/restapi/src/lib/video/VideoV2.ts
Original file line number Diff line number Diff line change
@@ -158,21 +158,6 @@ export class VideoV2 {
});
}

/**
* Connect to a video call
* @param {VideoPeerInfo} peerInfo - The peer information
*/
async connect(peerInfo: VideoPeerInfo) {
validatePeerInfo(peerInfo);

const { signal, address } = peerInfo;

await this.videoInstance.connect({
peerAddress: address,
signalData: signal,
});
}

/**
* Disconnect from a video call
* @param {string} address - The address to disconnect from