ocm-sdk 0.6.2-beta → 0.7.0-beta
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 +20 -0
- package/README.md +2 -1
- package/package.json +1 -1
- 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.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.7.0-beta (2025-09-20)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.6.2-beta...v0.7.0-beta](https://github.com/andreibesleaga/ocm-sdk/compare/v0.6.2-beta...v0.7.0-beta)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **mcp:** add docs search tool ([8faacce](https://github.com/andreibesleaga/ocm-sdk/commit/8faacced19307dceda58164cb4bc329d986125b3))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **ci:** set permissions for DXT publish action ([6c75ced](https://github.com/andreibesleaga/ocm-sdk/commit/6c75cedb3fa6f06f1ea3d94cb43a1741b698105b))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Chores
|
|
18
|
+
|
|
19
|
+
* **codegen:** internal codegen update ([43cbdc1](https://github.com/andreibesleaga/ocm-sdk/commit/43cbdc171458b01f89e44aa82fd4af67b4242a7c))
|
|
20
|
+
* do not install brew dependencies in ./scripts/bootstrap by default ([fc0604a](https://github.com/andreibesleaga/ocm-sdk/commit/fc0604ad65e6a83848c939f87ffa64ede48ebfb8))
|
|
21
|
+
* **internal:** codegen related update ([6944a6b](https://github.com/andreibesleaga/ocm-sdk/commit/6944a6b0f3591d334078a9155601b0127f7c62b9))
|
|
22
|
+
|
|
3
23
|
## 0.6.2-beta (2025-09-12)
|
|
4
24
|
|
|
5
25
|
Full Changelog: [v0.6.1-beta...v0.6.2-beta](https://github.com/andreibesleaga/ocm-sdk/compare/v0.6.1-beta...v0.6.2-beta)
|
package/README.md
CHANGED
|
@@ -10,7 +10,8 @@ The library contains a packages/mcp-server for OCM MCP AI communication server.
|
|
|
10
10
|
|
|
11
11
|
The REST API documentation can be found on [openchargemap.org](https://openchargemap.org/site/about). The full API of this library can be found in [api.md](api.md).
|
|
12
12
|
|
|
13
|
-
Demo
|
|
13
|
+
Demo project: https://github.com/andreibesleaga/ocm-demo
|
|
14
|
+
Live Demo URL: https://ocm-demo.onrender.com/
|
|
14
15
|
|
|
15
16
|
## Installation
|
|
16
17
|
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.7.0-beta'; // 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.7.0-beta";
|
|
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.7.0-beta";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.7.0-beta'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|