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

Update README.md to remove json language identifier #149

Merged
merged 1 commit into from
Oct 11, 2023
Merged
Changes from all commits
Commits
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
36 changes: 18 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ project = await deepgram.projects.get(PROJECT_ID)

### Get a Project Response

```json
```
{
project_id: String,
name: String,
Expand All @@ -290,7 +290,7 @@ updateResponse = await deepgram.projects.update(project)

### Update a Project Response

```json
```
{
message: String;
}
Expand Down Expand Up @@ -318,7 +318,7 @@ response = await deepgram.keys.list(PROJECT_ID)

### List Keys Response

```json
```
{
api_keys: [
{
Expand Down Expand Up @@ -351,7 +351,7 @@ response = await deepgram.keys.create(PROJECT_ID, COMMENT_FOR_KEY, SCOPES)

### Create API Key Response

```json
```
{
api_key_id: string,
key: string,
Expand Down Expand Up @@ -404,7 +404,7 @@ response = await deepgram.members.list_members(PROJECT_ID)

### Get Members Response

```json
```
{
members: [
{
Expand Down Expand Up @@ -437,7 +437,7 @@ response = await deepgram.members.remove_member(PROJECT_ID, MEMBER_ID)

### Remove Member Response

```json
```
{
message: string;
}
Expand Down Expand Up @@ -465,7 +465,7 @@ response = await deepgram.scopes.get_scope(PROJECT_ID, MEMBER_ID)

### Get Member Scopes Response

```json
```
{
scopes: string[]
}
Expand All @@ -491,7 +491,7 @@ response = await deepgram.scopes.update_scope(PROJECT_ID, MEMBER_ID, 'member')

### Update Scope Response

```json
```
{
message: string;
}
Expand Down Expand Up @@ -519,7 +519,7 @@ response = await deepgram.invitations.list_invitations(PROJECT_ID)

### List Invites Response

```json
```
{
members: [
{
Expand Down Expand Up @@ -552,7 +552,7 @@ response = await deepgram.invitations.send_invitation(PROJECT_ID, {

### Send Invite Response

```json
```
{
message: string;
}
Expand Down Expand Up @@ -580,7 +580,7 @@ response = await deepgram.invitations.remove_invitation(

### Delete Invite Response

```json
```
{
message: string;
}
Expand All @@ -604,7 +604,7 @@ response = await deepgram.invitations.leave_project(PROJECT_ID)

### Leave Project Response

```json
```
{
message: string;
}
Expand Down Expand Up @@ -658,7 +658,7 @@ response = await deepgram.usage.list_requests(PROJECT_ID, {

### Get All Requests Response

```json
```
{
page: Number,
limit: Number,
Expand Down Expand Up @@ -727,7 +727,7 @@ response = await deepgram.usage.get_request(PROJECT_ID, REQUEST_ID)

### Get Request Response

```json
```
{
request_id: String;
created: String;
Expand Down Expand Up @@ -840,7 +840,7 @@ response = await deepgram.usage.get_usage(PROJECT_ID, {

### Get Usage Response

```json
```
{
start: String,
end: String,
Expand Down Expand Up @@ -894,7 +894,7 @@ response = await deepgram.usage.get_fields(PROJECT_ID, {

#### Get Fields Response

```json
```
{
tags: String[],
models: String[],
Expand Down Expand Up @@ -927,7 +927,7 @@ response = await deepgram.billing.list_balance(PROJECT_ID)

### Get All Balances Response

```json
```
{
balances: [
{
Expand Down Expand Up @@ -959,7 +959,7 @@ const response = deepgram.billing.get_balance(PROJECT_ID, BALANCE_ID)

### Get Balance Response

```json
```
{
balance: {
balance_id: string;
Expand Down