spotted-ts 0.13.0 → 0.14.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/README.md +5 -2
- package/package.json +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,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.14.0 (2025-12-19)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.13.0...v0.14.0](https://github.com/cjavdev/spotted-ts/compare/v0.13.0...v0.14.0)
|
|
6
|
+
|
|
7
|
+
### ⚠ BREAKING CHANGES
|
|
8
|
+
|
|
9
|
+
* **mcp:** remove deprecated tool schemes
|
|
10
|
+
* **mcp:** **Migration:** To migrate, simply modify the command used to invoke the MCP server. Currently, the only supported tool scheme is code mode. Now, starting the server with just `node /path/to/mcp/server` or `npx package-name` will invoke code tools: changing your command to one of these is likely all you will need to do.
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* **api:** manual updates ([f3e043d](https://github.com/cjavdev/spotted-ts/commit/f3e043d7aa031d80788ce0e88ed61891e99e1011))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **publish-npm:** set npm registry explicitly for publishing ([6e46b49](https://github.com/cjavdev/spotted-ts/commit/6e46b49306efed2e43f8332bd8a39558f9e2c9a5))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Chores
|
|
23
|
+
|
|
24
|
+
* **mcp:** remove deprecated tool schemes ([e289832](https://github.com/cjavdev/spotted-ts/commit/e289832afd694b242ee97d127841646ce0443f9f))
|
|
25
|
+
|
|
3
26
|
## 0.13.0 (2025-12-18)
|
|
4
27
|
|
|
5
28
|
Full Changelog: [v0.12.0...v0.13.0](https://github.com/cjavdev/spotted-ts/compare/v0.12.0...v0.13.0)
|
package/README.md
CHANGED
|
@@ -142,7 +142,10 @@ You can use the `for await … of` syntax to iterate through items across all pa
|
|
|
142
142
|
async function fetchAllSimplifiedEpisodeObjects(params) {
|
|
143
143
|
const allSimplifiedEpisodeObjects = [];
|
|
144
144
|
// Automatically fetches more pages as needed.
|
|
145
|
-
for await (const simplifiedEpisodeObject of client.shows.listEpisodes('showid', {
|
|
145
|
+
for await (const simplifiedEpisodeObject of client.shows.listEpisodes('showid', {
|
|
146
|
+
limit: 10,
|
|
147
|
+
offset: 20,
|
|
148
|
+
})) {
|
|
146
149
|
allSimplifiedEpisodeObjects.push(simplifiedEpisodeObject);
|
|
147
150
|
}
|
|
148
151
|
return allSimplifiedEpisodeObjects;
|
|
@@ -152,7 +155,7 @@ async function fetchAllSimplifiedEpisodeObjects(params) {
|
|
|
152
155
|
Alternatively, you can request a single page at a time:
|
|
153
156
|
|
|
154
157
|
```ts
|
|
155
|
-
let page = await client.shows.listEpisodes('showid', { limit:
|
|
158
|
+
let page = await client.shows.listEpisodes('showid', { limit: 10, offset: 20 });
|
|
156
159
|
for (const simplifiedEpisodeObject of page.items) {
|
|
157
160
|
console.log(simplifiedEpisodeObject);
|
|
158
161
|
}
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.14.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.14.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.14.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.14.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|