github-issue-tower-defence-management 1.116.4 → 1.116.5

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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.116.5](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/compare/v1.116.4...v1.116.5) (2026-06-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **test:** use sessionKey not sessionId on ClaudeLiveSession literals in LiveSessionOauthTokenSelectHandler test ([#1089](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/issues/1089)) ([b649c7f](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/commit/b649c7f9243e09b6c973c3d9d545014c0eb1b7f2))
7
+
1
8
  ## [1.116.4](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/compare/v1.116.3...v1.116.4) (2026-06-29)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-issue-tower-defence-management",
3
- "version": "1.116.4",
3
+ "version": "1.116.5",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "scripts": {
@@ -326,7 +326,7 @@ describe('LiveSessionOauthTokenSelectHandler', () => {
326
326
  });
327
327
 
328
328
  const handler = buildHandler([
329
- { token: 'fake-active', sessionId: 'session-a' },
329
+ { token: 'fake-active', sessionKey: 'session-a' },
330
330
  ]);
331
331
  const output = handler.handle({
332
332
  tokenListJsonPath: tokenListPath,
@@ -362,7 +362,7 @@ describe('LiveSessionOauthTokenSelectHandler', () => {
362
362
  });
363
363
 
364
364
  const handler = buildHandler([
365
- { token: 'fake-active', sessionId: 'session-a' },
365
+ { token: 'fake-active', sessionKey: 'session-a' },
366
366
  ]);
367
367
  const output = handler.handle({
368
368
  tokenListJsonPath: tokenListPath,