@cjavdev/believe 0.4.0 → 0.5.1
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 +16 -0
- package/README.md +9 -0
- package/package.json +1 -1
- package/resources/characters.d.mts +1 -1
- package/resources/characters.d.ts +1 -1
- package/resources/characters.js +1 -1
- package/resources/characters.mjs +1 -1
- package/src/resources/characters.ts +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,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.5.1 (2026-02-05)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.5.0...v0.5.1](https://github.com/cjavdev/believe-typescript/compare/v0.5.0...v0.5.1)
|
|
6
|
+
|
|
7
|
+
### Chores
|
|
8
|
+
|
|
9
|
+
* configure new SDK language ([7e3257e](https://github.com/cjavdev/believe-typescript/commit/7e3257e3453a7eeaeb70ce78e6a356ae4bc63fbd))
|
|
10
|
+
|
|
11
|
+
## 0.5.0 (2026-02-04)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v0.4.0...v0.5.0](https://github.com/cjavdev/believe-typescript/compare/v0.4.0...v0.5.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* Update Character list description ([d631970](https://github.com/cjavdev/believe-typescript/commit/d631970cb487e3978ecea468497a37fa765e70c9))
|
|
18
|
+
|
|
3
19
|
## 0.4.0 (2026-02-04)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v0.3.0...v0.4.0](https://github.com/cjavdev/believe-typescript/compare/v0.3.0...v0.4.0)
|
package/README.md
CHANGED
|
@@ -8,6 +8,15 @@ The full API of this library can be found in [api.md](api.md).
|
|
|
8
8
|
|
|
9
9
|
It is generated with [Stainless](https://www.stainless.com/).
|
|
10
10
|
|
|
11
|
+
## MCP Server
|
|
12
|
+
|
|
13
|
+
Use the Believe MCP Server to enable AI assistants to interact with this API, allowing them to explore endpoints, make test requests, and use documentation to help integrate this SDK into your application.
|
|
14
|
+
|
|
15
|
+
[](https://cursor.com/en-US/install-mcp?name=%40cjavdev%2Fbelieve-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBjamF2ZGV2L2JlbGlldmUtbWNwIl0sImVudiI6eyJCRUxJRVZFX0FQSV9LRVkiOiJNeSBBUEkgS2V5In19)
|
|
16
|
+
[](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22%40cjavdev%2Fbelieve-mcp%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40cjavdev%2Fbelieve-mcp%22%5D%2C%22env%22%3A%7B%22BELIEVE_API_KEY%22%3A%22My%20API%20Key%22%7D%7D)
|
|
17
|
+
|
|
18
|
+
> Note: You may need to set environment variables in your MCP client.
|
|
19
|
+
|
|
11
20
|
## Installation
|
|
12
21
|
|
|
13
22
|
```sh
|
package/package.json
CHANGED
|
@@ -53,7 +53,7 @@ export declare class Characters extends APIResource {
|
|
|
53
53
|
*/
|
|
54
54
|
update(characterID: string, body: CharacterUpdateParams, options?: RequestOptions): APIPromise<Character>;
|
|
55
55
|
/**
|
|
56
|
-
* Get a paginated list of Ted Lasso characters
|
|
56
|
+
* Get a paginated list of Ted Lasso characters.
|
|
57
57
|
*
|
|
58
58
|
* @example
|
|
59
59
|
* ```ts
|
|
@@ -53,7 +53,7 @@ export declare class Characters extends APIResource {
|
|
|
53
53
|
*/
|
|
54
54
|
update(characterID: string, body: CharacterUpdateParams, options?: RequestOptions): APIPromise<Character>;
|
|
55
55
|
/**
|
|
56
|
-
* Get a paginated list of Ted Lasso characters
|
|
56
|
+
* Get a paginated list of Ted Lasso characters.
|
|
57
57
|
*
|
|
58
58
|
* @example
|
|
59
59
|
* ```ts
|
package/resources/characters.js
CHANGED
|
@@ -63,7 +63,7 @@ class Characters extends resource_1.APIResource {
|
|
|
63
63
|
return this._client.patch((0, path_1.path) `/characters/${characterID}`, { body, ...options });
|
|
64
64
|
}
|
|
65
65
|
/**
|
|
66
|
-
* Get a paginated list of Ted Lasso characters
|
|
66
|
+
* Get a paginated list of Ted Lasso characters.
|
|
67
67
|
*
|
|
68
68
|
* @example
|
|
69
69
|
* ```ts
|
package/resources/characters.mjs
CHANGED
|
@@ -60,7 +60,7 @@ export class Characters extends APIResource {
|
|
|
60
60
|
return this._client.patch(path `/characters/${characterID}`, { body, ...options });
|
|
61
61
|
}
|
|
62
62
|
/**
|
|
63
|
-
* Get a paginated list of Ted Lasso characters
|
|
63
|
+
* Get a paginated list of Ted Lasso characters.
|
|
64
64
|
*
|
|
65
65
|
* @example
|
|
66
66
|
* ```ts
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.5.1'; // 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.5.1";
|
|
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.5.1";
|
|
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.5.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|