@oauth2-cli/qui-cli-plugin 0.2.5 → 0.2.7

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
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [0.2.7](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.2.6...qui-cli-plugin/0.2.7) (2025-12-23)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * remove overriding default redirect_uri ([2268428](https://github.com/battis/oauth2-cli/commit/2268428bf461b3b92301dde9767558ba3ab5f2f5))
11
+
12
+ ## [0.2.6](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.2.5...qui-cli-plugin/0.2.6) (2025-12-23)
13
+
5
14
  ## [0.2.5](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.2.4...qui-cli-plugin/0.2.5) (2025-12-23)
6
15
 
7
16
 
package/dist/OAuth2CLI.js CHANGED
@@ -7,7 +7,6 @@ import * as OAuth2 from 'oauth2-cli';
7
7
  import { EnvironmentStorage } from './EnvironmentStorage.js';
8
8
  export const name = '@oauth2-cli/qui-cli-plugin';
9
9
  const config = {
10
- redirect_uri: 'http://localhost:3000/redirect',
11
10
  env: {
12
11
  client_id: 'CLIENT_ID',
13
12
  client_secret: 'CLIENT_SECRET',
@@ -70,7 +69,7 @@ export function options() {
70
69
  : {
71
70
  redirectUri: {
72
71
  description: `OAuth 2.0 redirect URI (must be to host ${Colors.url('localhost')}, defaults to environment variables ${Colors.value(config.env.redirect_uri)})`,
73
- hint: Colors.quotedValue(`"${config.redirect_uri}"`),
72
+ hint: Colors.quotedValue(`"http://localhost:XXXX/path/to/redirect"`),
74
73
  default: config.redirect_uri
75
74
  }
76
75
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oauth2-cli/qui-cli-plugin",
3
- "version": "0.2.5",
3
+ "version": "0.2.7",
4
4
  "description": "@battis/qui-cli.plugin wrapper for oauth2-cli",
5
5
  "homepage": "https://github.com/battis/oauth2-cli/tree/main/packages/qui-cli-plugin#readme",
6
6
  "repository": {
@@ -17,7 +17,7 @@
17
17
  "types": "./dist/index.d.ts",
18
18
  "dependencies": {
19
19
  "openid-client": "^6.8.1",
20
- "oauth2-cli": "0.2.2"
20
+ "oauth2-cli": "0.2.3"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@battis/descriptive-types": "^0.2.6",