https://github.com/maurerkrisztian/dailyco-client-nestjs
https://github.com/maurerkrisztian/dailyco-client-nestjs
apiclient dailyco videocall
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/maurerkrisztian/dailyco-client-nestjs
- Owner: MaurerKrisztian
- Created: 2022-05-14T07:00:38.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-16T19:42:56.000Z (almost 3 years ago)
- Last Synced: 2025-01-12T18:52:10.817Z (4 months ago)
- Topics: apiclient, dailyco, videocall
- Language: TypeScript
- Homepage:
- Size: 304 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dailyco api client
Api client for working with Dailyco api in NestJs
```typescript
npm i @maurerkrisztian/dailyco-api-client
```
```typescript
DailycoClientModule.forRoot({
apikey: process.env.DAILYCO_API_KEY,
apiurl: process.env.DAILYCO_API_URL,
})
```### DailycoApiClient
```typescript
createRoom(roomOptions: IRoomOptions): Promise;
deleteRoom(roomName: string): Promise;
getRoom(roomName: string): Promise;
getAllRoom(): Promise;
deleteAllRoom(): Promise;
```