brand.dev 0.7.0 → 0.8.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 +34 -0
- package/package.json +1 -1
- package/resources/brand.d.mts +2 -2
- package/resources/brand.d.ts +2 -2
- package/src/resources/brand.ts +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.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.8.0 (2025-09-27)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.7.0...v0.8.0](https://github.com/brand-dot-dev/typescript-sdk/compare/v0.7.0...v0.8.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([1e16acb](https://github.com/brand-dot-dev/typescript-sdk/commit/1e16acb6d6ca8e50a110fdfc230ae43b9ee39950))
|
|
10
|
+
* **mcp:** add docs search tool ([0a055f3](https://github.com/brand-dot-dev/typescript-sdk/commit/0a055f370cf8893eb026c8a594a7d094e00105d6))
|
|
11
|
+
* **mcp:** add option for including docs tools ([73ad28b](https://github.com/brand-dot-dev/typescript-sdk/commit/73ad28b2df74875bbc5decbb36f52c70f67682ca))
|
|
12
|
+
* **mcp:** enable experimental docs search tool ([589b047](https://github.com/brand-dot-dev/typescript-sdk/commit/589b0475875274b8e9c4b4894d1b98e341a8c3ee))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **ci:** set permissions for DXT publish action ([1020169](https://github.com/brand-dot-dev/typescript-sdk/commit/1020169737b7e28b4473eb93fa467ed11c708769))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Performance Improvements
|
|
21
|
+
|
|
22
|
+
* faster formatting ([9ded0f3](https://github.com/brand-dot-dev/typescript-sdk/commit/9ded0f3e5f41384a2594969566b8673fa8f47bac))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Chores
|
|
26
|
+
|
|
27
|
+
* **codegen:** internal codegen update ([8e46689](https://github.com/brand-dot-dev/typescript-sdk/commit/8e46689eb493e1208c17a8c9a7434bd0b9ca2aae))
|
|
28
|
+
* do not install brew dependencies in ./scripts/bootstrap by default ([b07f40c](https://github.com/brand-dot-dev/typescript-sdk/commit/b07f40c3047e27ee1f07ed953103f4b88ed5d455))
|
|
29
|
+
* **internal:** codegen related update ([1c0857f](https://github.com/brand-dot-dev/typescript-sdk/commit/1c0857f8ae786918ab5f6abe3231e3a6da4a83c0))
|
|
30
|
+
* **internal:** fix incremental formatting in some cases ([e27e1ef](https://github.com/brand-dot-dev/typescript-sdk/commit/e27e1efaec1884f254a90db62ea0c3adc3fcd35a))
|
|
31
|
+
* **internal:** gitignore .mcpb files ([c6ed0ce](https://github.com/brand-dot-dev/typescript-sdk/commit/c6ed0cebd9a94dfdaaad160d0a2adda28ef5ed9e))
|
|
32
|
+
* **internal:** ignore .eslintcache ([2b752fe](https://github.com/brand-dot-dev/typescript-sdk/commit/2b752fe543972990bebc77d6aed95cd6d2c7b8b9))
|
|
33
|
+
* **internal:** remove deprecated `compilerOptions.baseUrl` from tsconfig.json ([9f8d8e2](https://github.com/brand-dot-dev/typescript-sdk/commit/9f8d8e229127a2b4eddafc94b6370e635a340ae4))
|
|
34
|
+
* **mcp:** allow pointing `docs_search` tool at other URLs ([af8c410](https://github.com/brand-dot-dev/typescript-sdk/commit/af8c410bc67ebb7b993c74a9476e6ada45a8ff8d))
|
|
35
|
+
* **mcp:** rename dxt to mcpb ([42531d2](https://github.com/brand-dot-dev/typescript-sdk/commit/42531d22db14cf599da634a2318fc627ef70148f))
|
|
36
|
+
|
|
3
37
|
## 0.7.0 (2025-09-14)
|
|
4
38
|
|
|
5
39
|
Full Changelog: [v0.6.0...v0.7.0](https://github.com/brand-dot-dev/typescript-sdk/compare/v0.6.0...v0.7.0)
|
package/package.json
CHANGED
package/resources/brand.d.mts
CHANGED
|
@@ -1363,8 +1363,8 @@ export interface BrandStyleguideParams {
|
|
|
1363
1363
|
/**
|
|
1364
1364
|
* Optional parameter to prioritize screenshot capture for styleguide extraction.
|
|
1365
1365
|
* If 'speed', optimizes for faster capture with basic quality. If 'quality',
|
|
1366
|
-
* optimizes for higher quality with longer wait times. Defaults to '
|
|
1367
|
-
* provided.
|
|
1366
|
+
* optimizes for higher quality with longer wait times. Defaults to 'quality' if
|
|
1367
|
+
* not provided.
|
|
1368
1368
|
*/
|
|
1369
1369
|
prioritize?: 'speed' | 'quality';
|
|
1370
1370
|
/**
|
package/resources/brand.d.ts
CHANGED
|
@@ -1363,8 +1363,8 @@ export interface BrandStyleguideParams {
|
|
|
1363
1363
|
/**
|
|
1364
1364
|
* Optional parameter to prioritize screenshot capture for styleguide extraction.
|
|
1365
1365
|
* If 'speed', optimizes for faster capture with basic quality. If 'quality',
|
|
1366
|
-
* optimizes for higher quality with longer wait times. Defaults to '
|
|
1367
|
-
* provided.
|
|
1366
|
+
* optimizes for higher quality with longer wait times. Defaults to 'quality' if
|
|
1367
|
+
* not provided.
|
|
1368
1368
|
*/
|
|
1369
1369
|
prioritize?: 'speed' | 'quality';
|
|
1370
1370
|
/**
|
package/src/resources/brand.ts
CHANGED
|
@@ -2241,8 +2241,8 @@ export interface BrandStyleguideParams {
|
|
|
2241
2241
|
/**
|
|
2242
2242
|
* Optional parameter to prioritize screenshot capture for styleguide extraction.
|
|
2243
2243
|
* If 'speed', optimizes for faster capture with basic quality. If 'quality',
|
|
2244
|
-
* optimizes for higher quality with longer wait times. Defaults to '
|
|
2245
|
-
* provided.
|
|
2244
|
+
* optimizes for higher quality with longer wait times. Defaults to 'quality' if
|
|
2245
|
+
* not provided.
|
|
2246
2246
|
*/
|
|
2247
2247
|
prioritize?: 'speed' | 'quality';
|
|
2248
2248
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.8.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.8.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.8.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.8.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|