An open API service indexing awesome lists of open source software.

https://github.com/maurerkrisztian/dailyco-client-nestjs


https://github.com/maurerkrisztian/dailyco-client-nestjs

apiclient dailyco videocall

Last synced: 2 months ago
JSON representation

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;
```