openai 4.14.0 → 4.14.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 +22 -0
- package/README.md +1 -1
- package/package.json +2 -3
- 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,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.14.2 (2023-10-30)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v4.14.1...v4.14.2](https://github.com/openai/openai-node/compare/v4.14.1...v4.14.2)
|
|
6
|
+
|
|
7
|
+
### Chores
|
|
8
|
+
|
|
9
|
+
* **docs:** update deno link ([#407](https://github.com/openai/openai-node/issues/407)) ([0328882](https://github.com/openai/openai-node/commit/0328882cccb3e5386283ffa5eb9cd8ad9442f3a0))
|
|
10
|
+
|
|
11
|
+
## 4.14.1 (2023-10-27)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v4.14.0...v4.14.1](https://github.com/openai/openai-node/compare/v4.14.0...v4.14.1)
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* deploy deno in a github workflow instead of postpublish step ([#405](https://github.com/openai/openai-node/issues/405)) ([3a6dba0](https://github.com/openai/openai-node/commit/3a6dba074258274bffcfe3a4260ca1b95bcd6bdc))
|
|
18
|
+
* typo in build script ([#403](https://github.com/openai/openai-node/issues/403)) ([76c5c96](https://github.com/openai/openai-node/commit/76c5c96a359f750f58ea38b5d32365db7e34409a))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Chores
|
|
22
|
+
|
|
23
|
+
* **internal:** update gitignore ([#406](https://github.com/openai/openai-node/issues/406)) ([986b0bb](https://github.com/openai/openai-node/commit/986b0bbac9f5ca43a0df6f29f2a468dd4223e053))
|
|
24
|
+
|
|
3
25
|
## 4.14.0 (2023-10-25)
|
|
4
26
|
|
|
5
27
|
Full Changelog: [v4.13.0...v4.14.0](https://github.com/openai/openai-node/compare/v4.13.0...v4.14.0)
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ You can import in Deno via:
|
|
|
21
21
|
<!-- x-release-please-start-version -->
|
|
22
22
|
|
|
23
23
|
```ts
|
|
24
|
-
import OpenAI from 'https://raw.githubusercontent.com/openai/openai-node/v4.
|
|
24
|
+
import OpenAI from 'https://raw.githubusercontent.com/openai/openai-node/v4.14.1-deno/mod.ts';
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
<!-- x-release-please-end -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openai",
|
|
3
|
-
"version": "4.14.
|
|
3
|
+
"version": "4.14.2",
|
|
4
4
|
"description": "Client library for the OpenAI API",
|
|
5
5
|
"author": "OpenAI <support@openai.com>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -81,8 +81,7 @@
|
|
|
81
81
|
"format": "prettier --write --cache --cache-strategy metadata . !dist",
|
|
82
82
|
"tsn": "ts-node -r tsconfig-paths/register",
|
|
83
83
|
"lint": "eslint --ext ts,js .",
|
|
84
|
-
"fix": "eslint --fix --ext ts,js ."
|
|
85
|
-
"postpublish": "bash scripts/git-publish-deno.sh"
|
|
84
|
+
"fix": "eslint --fix --ext ts,js ."
|
|
86
85
|
},
|
|
87
86
|
"dependencies": {
|
|
88
87
|
"@types/node": "^18.11.18",
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '4.14.
|
|
1
|
+
export const VERSION = '4.14.2'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "4.14.
|
|
1
|
+
export declare const VERSION = "4.14.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.14.
|
|
1
|
+
export const VERSION = '4.14.2'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|