gh-manager-cli 1.16.0 → 1.16.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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.16.1](https://github.com/wiiiimm/gh-manager-cli/compare/v1.16.0...v1.16.1) (2025-09-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add missing hasInternalRepos state variable ([#16](https://github.com/wiiiimm/gh-manager-cli/issues/16)) ([e3bcc84](https://github.com/wiiiimm/gh-manager-cli/commit/e3bcc843b82259bafbac34726fda2113c66f874c))
7
+
1
8
  # [1.16.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.15.1...v1.16.0) (2025-09-02)
2
9
 
3
10
 
package/dist/index.js CHANGED
@@ -27,7 +27,7 @@ var require_package = __commonJS({
27
27
  "package.json"(exports, module) {
28
28
  module.exports = {
29
29
  name: "gh-manager-cli",
30
- version: "1.16.0",
30
+ version: "1.16.1",
31
31
  private: false,
32
32
  description: "Interactive CLI to manage your GitHub repos (personal) with Ink",
33
33
  license: "MIT",
@@ -1285,6 +1285,7 @@ function RepoList({ token, maxVisibleRows, onLogout, viewerLogin, onOrgContextCh
1285
1285
  const [logoutError, setLogoutError] = useState10(null);
1286
1286
  const [visibilityMode, setVisibilityMode] = useState10(false);
1287
1287
  const [isEnterpriseOrg, setIsEnterpriseOrg] = useState10(false);
1288
+ const [hasInternalRepos, setHasInternalRepos] = useState10(false);
1288
1289
  const [changeVisibilityMode, setChangeVisibilityMode] = useState10(false);
1289
1290
  const [changeVisibilityTarget, setChangeVisibilityTarget] = useState10(null);
1290
1291
  const [changingVisibility, setChangingVisibility] = useState10(false);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gh-manager-cli",
3
- "version": "1.16.0",
3
+ "version": "1.16.1",
4
4
  "private": false,
5
5
  "description": "Interactive CLI to manage your GitHub repos (personal) with Ink",
6
6
  "license": "MIT",