@mixedbread/sdk 0.19.0 → 0.19.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 +29 -0
- package/package.json +4 -5
- 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,34 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.19.2 (2025-08-09)
|
4
|
+
|
5
|
+
Full Changelog: [v0.19.1...v0.19.2](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.19.1...v0.19.2)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([3b91c46](https://github.com/mixedbread-ai/mixedbread-ts/commit/3b91c464ac3da588e013fdca473de9026128f268))
|
10
|
+
|
11
|
+
|
12
|
+
### Chores
|
13
|
+
|
14
|
+
* **internal:** move publish config ([1e310d3](https://github.com/mixedbread-ai/mixedbread-ts/commit/1e310d357e79e6e6d1bb1153070f9e7d646a94b2))
|
15
|
+
* **internal:** update comment in script ([0a2296f](https://github.com/mixedbread-ai/mixedbread-ts/commit/0a2296f30c6c0369495fec6663a648c10539e73b))
|
16
|
+
* update @stainless-api/prism-cli to v5.15.0 ([717636f](https://github.com/mixedbread-ai/mixedbread-ts/commit/717636ff06f37c87b3538df555f50142609474a3))
|
17
|
+
|
18
|
+
## 0.19.1 (2025-08-06)
|
19
|
+
|
20
|
+
Full Changelog: [v0.19.0...v0.19.1](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.19.0...v0.19.1)
|
21
|
+
|
22
|
+
### Features
|
23
|
+
|
24
|
+
* **api:** api update ([d4671f9](https://github.com/mixedbread-ai/mixedbread-ts/commit/d4671f9c01e8bd866d18884df3c84222d0ae9718))
|
25
|
+
|
26
|
+
|
27
|
+
### Chores
|
28
|
+
|
29
|
+
* **internal:** remove redundant imports config ([6089fc2](https://github.com/mixedbread-ai/mixedbread-ts/commit/6089fc23ad15924fdd325892b37150f1259b30b3))
|
30
|
+
* **internal:** update examples ([e39bd7f](https://github.com/mixedbread-ai/mixedbread-ts/commit/e39bd7fabcca8d785a7e9f7e4c01be8d73f441e1))
|
31
|
+
|
3
32
|
## 0.19.0 (2025-07-23)
|
4
33
|
|
5
34
|
Full Changelog: [v0.18.0...v0.19.0](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.18.0...v0.19.0)
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@mixedbread/sdk",
|
3
|
-
"version": "0.19.
|
3
|
+
"version": "0.19.2",
|
4
4
|
"description": "The official TypeScript library for the Mixedbread API",
|
5
5
|
"author": "Mixedbread <support@mixedbread.com>",
|
6
6
|
"types": "./index.d.ts",
|
@@ -16,6 +16,9 @@
|
|
16
16
|
"CHANGELOG.md"
|
17
17
|
],
|
18
18
|
"private": false,
|
19
|
+
"publishConfig": {
|
20
|
+
"access": "public"
|
21
|
+
},
|
19
22
|
"scripts": {
|
20
23
|
"test": "./scripts/test",
|
21
24
|
"build": "./scripts/build",
|
@@ -25,10 +28,6 @@
|
|
25
28
|
"fix": "./scripts/format"
|
26
29
|
},
|
27
30
|
"dependencies": {},
|
28
|
-
"imports": {
|
29
|
-
"@mixedbread/sdk": ".",
|
30
|
-
"@mixedbread/sdk/*": "./src/*"
|
31
|
-
},
|
32
31
|
"bin": {
|
33
32
|
"mixedbread-sdk": "bin/cli"
|
34
33
|
},
|
package/src/version.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export const VERSION = '0.19.
|
1
|
+
export const VERSION = '0.19.2'; // x-release-please-version
|
package/version.d.mts
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export declare const VERSION = "0.19.
|
1
|
+
export declare const VERSION = "0.19.2";
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export declare const VERSION = "0.19.
|
1
|
+
export declare const VERSION = "0.19.2";
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export const VERSION = '0.19.
|
1
|
+
export const VERSION = '0.19.2'; // x-release-please-version
|
2
2
|
//# sourceMappingURL=version.mjs.map
|