Skip to content

Commit 08b3e97

Browse files
committed
fix: Imports
1 parent 5078ab6 commit 08b3e97

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/APIPromise.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { APIResponseProps } from "./models";
2-
import { AI21Error } from "./Errors";
2+
import { AI21Error } from "./errors";
33
import { Stream } from "./Streaming";
44
import { Response } from "node-fetch";
55

src/Client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as Core from "./Core";
22
import * as Models from "./models";
33
import { AI21EnvConfig } from "./EnvConfig";
4-
import { MissingAPIKeyError } from "./Errors";
4+
import { MissingAPIKeyError } from "./errors";
55
import { Chat } from "./resources/chat";
66

77
export interface AI21Options {

src/Core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { AI21Error } from "./Errors.js";
1+
import { AI21Error } from "./errors.js";
22
import { VERSION } from "./version.js";
33

44
import fetch from 'node-fetch';

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export { AI21 } from './Client';
22
export { VERSION } from './version';
33
export { RequestOptions } from './models';
4-
export { AI21Error, MissingAPIKeyError } from './Errors';
4+
export { AI21Error, MissingAPIKeyError } from './errors';
55
export { Stream } from './Streaming';
66
export { APIResource } from './APIResource';
77
export {

0 commit comments

Comments
 (0)