@inconvoai/node 0.1.0-alpha.16 → 0.1.0-alpha.17
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 +17 -0
- 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,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.17 (2025-09-27)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0-alpha.16...v0.1.0-alpha.17](https://github.com/ten-dev/inconvo-node-sdk/compare/v0.1.0-alpha.16...v0.1.0-alpha.17)
|
|
6
|
+
|
|
7
|
+
### Performance Improvements
|
|
8
|
+
|
|
9
|
+
* faster formatting ([0c7de56](https://github.com/ten-dev/inconvo-node-sdk/commit/0c7de5670eabfe0691fbadb498fafaecf066f884))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* do not install brew dependencies in ./scripts/bootstrap by default ([0a20d69](https://github.com/ten-dev/inconvo-node-sdk/commit/0a20d69dc134a6f4cf3594d174f9e29b3a0b5b08))
|
|
15
|
+
* **internal:** codegen related update ([8fc7a08](https://github.com/ten-dev/inconvo-node-sdk/commit/8fc7a08ac2d9a6aee38c43741ea6eb42a5a6a9d7))
|
|
16
|
+
* **internal:** fix incremental formatting in some cases ([2cfa7e5](https://github.com/ten-dev/inconvo-node-sdk/commit/2cfa7e579a9e5afb645506f40432e70ebbf5cac8))
|
|
17
|
+
* **internal:** ignore .eslintcache ([bdf4548](https://github.com/ten-dev/inconvo-node-sdk/commit/bdf454820cbee180b1fca18aa43471adf594ffcf))
|
|
18
|
+
* **internal:** remove deprecated `compilerOptions.baseUrl` from tsconfig.json ([561ae80](https://github.com/ten-dev/inconvo-node-sdk/commit/561ae80e136c9b6723277238b1590c8f306f7e31))
|
|
19
|
+
|
|
3
20
|
## 0.1.0-alpha.16 (2025-09-09)
|
|
4
21
|
|
|
5
22
|
Full Changelog: [v0.1.0-alpha.15...v0.1.0-alpha.16](https://github.com/ten-dev/inconvo-node-sdk/compare/v0.1.0-alpha.15...v0.1.0-alpha.16)
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.17'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.0-alpha.
|
|
1
|
+
export declare const VERSION = "0.1.0-alpha.17";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.0-alpha.
|
|
1
|
+
export declare const VERSION = "0.1.0-alpha.17";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
|
-
exports.VERSION = '0.1.0-alpha.
|
|
4
|
+
exports.VERSION = '0.1.0-alpha.17'; // x-release-please-version
|
|
5
5
|
//# sourceMappingURL=version.js.map
|
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.17'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|