openai 4.47.0 → 4.47.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/README.md +2 -2
- package/package.json +1 -1
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.47.2 (2024-05-28)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v4.47.1...v4.47.2](https://github.com/openai/openai-node/compare/v4.47.1...v4.47.2)
|
|
6
|
+
|
|
7
|
+
### Documentation
|
|
8
|
+
|
|
9
|
+
* **readme:** add bundle size badge ([#869](https://github.com/openai/openai-node/issues/869)) ([e252132](https://github.com/openai/openai-node/commit/e2521327b7b4f5abe97e4c58c417b37d00079ef8))
|
|
10
|
+
|
|
11
|
+
## 4.47.1 (2024-05-14)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v4.47.0...v4.47.1](https://github.com/openai/openai-node/compare/v4.47.0...v4.47.1)
|
|
14
|
+
|
|
15
|
+
### Chores
|
|
16
|
+
|
|
17
|
+
* **internal:** add slightly better logging to scripts ([#848](https://github.com/openai/openai-node/issues/848)) ([139e690](https://github.com/openai/openai-node/commit/139e690546775b3568934dd990dd329fce2fbc2f))
|
|
18
|
+
|
|
3
19
|
## 4.47.0 (2024-05-14)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v4.46.1...v4.47.0](https://github.com/openai/openai-node/compare/v4.46.1...v4.47.0)
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# OpenAI Node API Library
|
|
2
2
|
|
|
3
|
-
[](https://npmjs.org/package/openai)
|
|
3
|
+
[](https://npmjs.org/package/openai) 
|
|
4
4
|
|
|
5
5
|
This library provides convenient access to the OpenAI REST API from TypeScript or JavaScript.
|
|
6
6
|
|
|
@@ -19,7 +19,7 @@ You can import in Deno via:
|
|
|
19
19
|
<!-- x-release-please-start-version -->
|
|
20
20
|
|
|
21
21
|
```ts
|
|
22
|
-
import OpenAI from 'https://deno.land/x/openai@v4.47.
|
|
22
|
+
import OpenAI from 'https://deno.land/x/openai@v4.47.2/mod.ts';
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
<!-- x-release-please-end -->
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '4.47.
|
|
1
|
+
export const VERSION = '4.47.2'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "4.47.
|
|
1
|
+
export declare const VERSION = "4.47.2";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '4.47.
|
|
1
|
+
export const VERSION = '4.47.2'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|