brand.dev 0.1.0 → 0.2.0
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 +23 -0
- package/package.json +4 -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,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.0 (2025-08-07)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0...v0.2.0](https://github.com/brand-dot-dev/typescript-sdk/compare/v0.1.0...v0.2.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **mcp:** add logging when environment variable is set ([6364c45](https://github.com/brand-dot-dev/typescript-sdk/commit/6364c459f3b73de0568da5d024086547527c1c8b))
|
|
10
|
+
* **mcp:** add unix socket option for remote MCP ([cb8dbf0](https://github.com/brand-dot-dev/typescript-sdk/commit/cb8dbf040623a3a62aff8808b75de8e9d59cc1fa))
|
|
11
|
+
* **mcp:** remote server with passthru auth ([8683693](https://github.com/brand-dot-dev/typescript-sdk/commit/8683693a6e2dc2c20c06a492a1e06c193bdc717b))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **mcp:** avoid sending `jq_filter` to base API ([3672f68](https://github.com/brand-dot-dev/typescript-sdk/commit/3672f68d7115bcb763b46798e7a18828908b68d1))
|
|
17
|
+
* **mcp:** fix bug in header handling ([c541ba4](https://github.com/brand-dot-dev/typescript-sdk/commit/c541ba4b906f845b12e67d155c081e68bdd774bc))
|
|
18
|
+
* **mcp:** reverse validJson capability option and limit scope ([0b58267](https://github.com/brand-dot-dev/typescript-sdk/commit/0b58267daa05a66fd7e0ef7467c808813c766b28))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Chores
|
|
22
|
+
|
|
23
|
+
* **internal:** move publish config ([9ce6753](https://github.com/brand-dot-dev/typescript-sdk/commit/9ce675365598d2367cdaec848869db6448c0ea1d))
|
|
24
|
+
* **mcp:** refactor streamable http transport ([c0d86b9](https://github.com/brand-dot-dev/typescript-sdk/commit/c0d86b96c0fa96436d5cc76bf4c85c28a2873eec))
|
|
25
|
+
|
|
3
26
|
## 0.1.0 (2025-07-31)
|
|
4
27
|
|
|
5
28
|
Full Changelog: [v0.0.1...v0.1.0](https://github.com/brand-dot-dev/typescript-sdk/compare/v0.0.1...v0.1.0)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "brand.dev",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "The official TypeScript library for the Brand Dev API",
|
|
5
5
|
"author": "Brand Dev <>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
"**/*"
|
|
14
14
|
],
|
|
15
15
|
"private": false,
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
16
19
|
"scripts": {
|
|
17
20
|
"test": "./scripts/test",
|
|
18
21
|
"build": "./scripts/build",
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.2.0'; // 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.2.0";
|
|
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.2.0";
|
|
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.2.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|