Skip to content

Commit

Permalink
fix typo in name of chatAdapterExtras
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Levinger authored and salmenus committed Mar 27, 2024
1 parent 9f707fa commit 7d22aca
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Observable} from '../../../../core/bus/observable';
import {ExceptionId} from '../../../../exceptions/exceptions';
import {ChatAdapterExtras} from '../../../../types/adapters/chat/chaAdapterExtras';
import {ChatAdapterExtras} from '../../../../types/adapters/chat/chatAdapterExtras';
import {DataTransferMode} from '../../../../types/adapters/chat/chatAdapter';
import {ControllerContext} from '../../../../types/controllerContext';
import {warn} from '../../../../x/warn';
Expand Down
2 changes: 1 addition & 1 deletion packages/js/core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export type {

export type {
ChatAdapterExtras,
} from './types/adapters/chat/chaAdapterExtras';
} from './types/adapters/chat/chatAdapterExtras';

export type {
ChatAdapterBuilder,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {ChatAdapterExtras} from '../chat/chaAdapterExtras';
import {ChatAdapterExtras} from '../chat/chatAdapterExtras';

/**
* This type represents the result of an assist request.
Expand Down
2 changes: 1 addition & 1 deletion packages/js/core/src/types/adapters/chat/chatAdapter.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {ChatAdapterExtras} from './chaAdapterExtras';
import {ChatAdapterExtras} from './chatAdapterExtras';

/**
* This type is used to indicate the mode in which the adapter should request data from the API.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {ChatAdapterExtras} from './chaAdapterExtras';
import {ChatAdapterExtras} from './chatAdapterExtras';
import {StreamingAdapterObserver} from './chatAdapter';
import {StandardAdapterInfo} from './standardAdapterConfig';

Expand Down

0 comments on commit 7d22aca

Please sign in to comment.