@cjavdev/believe 0.4.0 → 0.5.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 +8 -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,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.5.0 (2026-02-04)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.4.0...v0.5.0](https://github.com/cjavdev/believe-typescript/compare/v0.4.0...v0.5.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* Update Character list description ([d631970](https://github.com/cjavdev/believe-typescript/commit/d631970cb487e3978ecea468497a37fa765e70c9))
|
|
10
|
+
|
|
3
11
|
## 0.4.0 (2026-02-04)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.3.0...v0.4.0](https://github.com/cjavdev/believe-typescript/compare/v0.3.0...v0.4.0)
|
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.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.5.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.5.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.5.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|