Skip to content

Commit 479be7b

Browse files
committed
Fix breaking aliases
1 parent 6f80edd commit 479be7b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/Client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import { ServiceAccountsService } from "./services/ServiceAccountService";
1111
import { ServiceAccountKeysService } from "./services/ServiceAccountKeysService";
1212
import {InternalResponse} from "./types/Response";
1313
import {GroupsService} from "./services/GroupService";
14-
import { VehiclesService } from "@services/VehiclesService";
15-
import { EquipmentService } from "@services/EquipmentService";
14+
import { VehiclesService } from "./services/VehiclesService";
15+
import { EquipmentService } from "./services/EquipmentService";
1616

1717
export class Client {
1818
readonly config: ClientConfigInterface;

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ export { ServiceAccountKey } from './models/ServiceAccountKey'
66
export { Log } from './models/Log'
77
export { Group } from './models/Group'
88
export { Permission } from './models/Permission'
9+
export { Vehicle } from './models/Vehicle'
910
export type { InternalResponse } from './types/Response';

src/services/SubmissionsService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {Client} from "Client";
22
import {BaseService} from "../services/BaseService";
33
import {Submission} from "../models/Submission";
44
import { InternalResponse } from "types/Response";
5-
import { SubmissionVersion } from "@models/SubmissionVersion";
5+
import { SubmissionVersion } from "../models/SubmissionVersion";
66

77
export class SubmissionsService extends BaseService<Submission> {
88
constructor(client: Client) {

0 commit comments

Comments
 (0)