Skip to content

Commit

Permalink
remove CheckerApi
Browse files Browse the repository at this point in the history
  • Loading branch information
Amoki committed Jun 20, 2023
1 parent 67b6cd9 commit 24b1418
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions package/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BcfApi, CheckerApi, CollaborationApi, ModelApi, SsoApi, WebhookApi } from './apis';
import { BcfApi, CollaborationApi, ModelApi, SsoApi, WebhookApi } from './apis';
import { Configuration } from './runtime';

export * from './runtime';
Expand All @@ -24,7 +24,6 @@ export function makeBIMDataApiClient(config) {
});
Object.assign(this._clients, {
bfcApi: new BcfApi(this._config),
checkerApi: new CheckerApi(this._config),
collaborationApi: new CollaborationApi(this._config),
modelApi: new ModelApi(this._config),
ssoApi: new SsoApi(this._config),
Expand All @@ -45,7 +44,6 @@ export function makeBIMDataApiClient(config) {
get config() { return this._config; },

get bcfApi() { return this._clients.bfcApi; },
get checkerApi() { return this._clients.checkerApi; },
get collaborationApi() { return this._clients.collaborationApi; },
get modelApi() { return this._clients.modelApi; },
get ssoApi() { return this._clients.ssoApi; },
Expand Down

0 comments on commit 24b1418

Please sign in to comment.