openai-mcp-test 0.0.1 → 0.1.1
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 +26 -0
- package/README.md +2 -5
- package/bin/migration-config.json +1 -1
- package/package.json +2 -2
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.js.map +1 -1
- package/version.mjs +1 -1
- package/version.mjs.map +1 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.1.1 (2026-02-23)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0...v0.1.1](https://github.com/kwhinnery/openai-mcp-test/compare/v0.1.0...v0.1.1)
|
|
6
|
+
|
|
7
|
+
### Chores
|
|
8
|
+
|
|
9
|
+
* update SDK settings ([30d8790](https://github.com/kwhinnery/openai-mcp-test/commit/30d87904858a441b6d78603218f3119f153c3a49))
|
|
10
|
+
* update SDK settings ([ec6dc2a](https://github.com/kwhinnery/openai-mcp-test/commit/ec6dc2aed400e0330ae903f6e1a1386d7d78746c))
|
|
11
|
+
|
|
12
|
+
## 0.1.0 (2026-02-23)
|
|
13
|
+
|
|
14
|
+
Full Changelog: [v0.0.1...v0.1.0](https://github.com/kwhinnery/openai-mcp-test/compare/v0.0.1...v0.1.0)
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **api:** manual updates ([a27cd87](https://github.com/kwhinnery/openai-mcp-test/commit/a27cd8762f9d8d3b5562e2f3dcf8738da75783e6))
|
|
19
|
+
* **api:** manual updates ([e20d4e8](https://github.com/kwhinnery/openai-mcp-test/commit/e20d4e8fce0e2abc62e7b2d807362173cc9777ad))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Chores
|
|
23
|
+
|
|
24
|
+
* configure new SDK language ([8aee4c5](https://github.com/kwhinnery/openai-mcp-test/commit/8aee4c570dfc81bfe670683dc746f5cd05e61926))
|
|
25
|
+
* **internal:** configure MCP Server hosting ([77082ba](https://github.com/kwhinnery/openai-mcp-test/commit/77082ba4008630bafbe854e27c19d2655ea07d47))
|
|
26
|
+
* update SDK settings ([2fc259a](https://github.com/kwhinnery/openai-mcp-test/commit/2fc259a5451890d511714a0e357f836a4396d93c))
|
package/README.md
CHANGED
|
@@ -18,12 +18,9 @@ Use the OpenAI MCP Server to enable AI assistants to interact with this API, all
|
|
|
18
18
|
## Installation
|
|
19
19
|
|
|
20
20
|
```sh
|
|
21
|
-
npm install
|
|
21
|
+
npm install openai-mcp-test
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
> [!NOTE]
|
|
25
|
-
> Once this package is [published to npm](https://www.stainless.com/docs/guides/publish), this will become: `npm install openai-mcp-test`
|
|
26
|
-
|
|
27
24
|
## Usage
|
|
28
25
|
|
|
29
26
|
The full API of this library can be found in [api.md](api.md).
|
|
@@ -444,7 +441,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con
|
|
|
444
441
|
|
|
445
442
|
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
|
|
446
443
|
|
|
447
|
-
We are keen for your feedback; please open an [issue](https://www.github.com/
|
|
444
|
+
We are keen for your feedback; please open an [issue](https://www.github.com/kwhinnery/openai-mcp-test/issues) with questions, bugs, or suggestions.
|
|
448
445
|
|
|
449
446
|
## Requirements
|
|
450
447
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openai-mcp-test",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "The official TypeScript library for the OpenAI API",
|
|
5
5
|
"author": "OpenAI <support@openai.com>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
7
7
|
"main": "./index.js",
|
|
8
8
|
"type": "commonjs",
|
|
9
|
-
"repository": "github:
|
|
9
|
+
"repository": "github:kwhinnery/openai-mcp-test",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"packageManager": "yarn@1.22.22",
|
|
12
12
|
"files": [
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.1.1'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.1.1";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.1.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,OAAO,CAAC"}
|
|
1
|
+
{"version":3,"file":"version.js","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,OAAO,CAAC,CAAC,2BAA2B"}
|
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.1.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|
package/version.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.mjs","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC"}
|
|
1
|
+
{"version":3,"file":"version.mjs","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC,CAAC,2BAA2B"}
|