Skip to content

Commit d6ef2f8

Browse files
Merge pull request #19 from VapiAI/fern-bot/05-29-2025-0152PM
🌿 Fern Regeneration -- May 29, 2025
2 parents 92c768d + 0b5c98e commit d6ef2f8

File tree

137 files changed

+2457
-893
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+2457
-893
lines changed

reference.md

Lines changed: 511 additions & 0 deletions
Large diffs are not rendered by default.

src/Client.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
import * as environments from "./environments";
66
import * as core from "./core";
77
import { Calls } from "./api/resources/calls/client/Client";
8+
import { Chats } from "./api/resources/chats/client/Client";
9+
import { Sessions } from "./api/resources/sessions/client/Client";
810
import { Assistants } from "./api/resources/assistants/client/Client";
911
import { PhoneNumbers } from "./api/resources/phoneNumbers/client/Client";
1012
import { Tools } from "./api/resources/tools/client/Client";
@@ -41,6 +43,8 @@ export declare namespace VapiClient {
4143

4244
export class VapiClient {
4345
protected _calls: Calls | undefined;
46+
protected _chats: Chats | undefined;
47+
protected _sessions: Sessions | undefined;
4448
protected _assistants: Assistants | undefined;
4549
protected _phoneNumbers: PhoneNumbers | undefined;
4650
protected _tools: Tools | undefined;
@@ -60,6 +64,14 @@ export class VapiClient {
6064
return (this._calls ??= new Calls(this._options));
6165
}
6266

67+
public get chats(): Chats {
68+
return (this._chats ??= new Chats(this._options));
69+
}
70+
71+
public get sessions(): Sessions {
72+
return (this._sessions ??= new Sessions(this._options));
73+
}
74+
6375
public get assistants(): Assistants {
6476
return (this._assistants ??= new Assistants(this._options));
6577
}

0 commit comments

Comments
 (0)