55import * as environments from "./environments" ;
66import * as core from "./core" ;
77import { 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" ;
810import { Assistants } from "./api/resources/assistants/client/Client" ;
911import { PhoneNumbers } from "./api/resources/phoneNumbers/client/Client" ;
1012import { Tools } from "./api/resources/tools/client/Client" ;
@@ -41,6 +43,8 @@ export declare namespace VapiClient {
4143
4244export 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