Skip to content

Commit 350756a

Browse files
committed
Add appointments service to Client.ts
1 parent 328c8df commit 350756a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Client.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ import { OperationsService } from '@services/OperationsService';
3131
import { OperationTemplatesService } from '@services/OperationTemplatesService';
3232
import { VehicleInspectionService } from '@services/VehicleInspectionService';
3333
import { VehicleInventoryCheckService } from '@services/VehicleInventoryCheckService';
34+
import { AppointmentsService } from '@services/AppointmentsService';
3435

3536
export class Client {
3637
readonly config: ClientConfigInterface;
@@ -126,6 +127,10 @@ export class Client {
126127
return new FormsService(this);
127128
}
128129

130+
public appointments(): AppointmentsService {
131+
return new AppointmentsService(this);
132+
}
133+
129134
public teams(): TeamsService {
130135
return new TeamsService(this);
131136
}

0 commit comments

Comments
 (0)