@oauth2-cli/qui-cli 0.7.5 → 0.7.6

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,13 @@
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.7.6](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.7.5...qui-cli-plugin/0.7.6) (2026-02-19)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * further config debugging ([95fe40f](https://github.com/battis/oauth2-cli/commit/95fe40f59669f6c498123046c6ea11f88a90fd13))
11
+
5
12
  ## [0.7.5](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.7.4...qui-cli-plugin/0.7.5) (2026-02-19)
6
13
 
7
14
 
package/dist/Client.js CHANGED
@@ -2,13 +2,17 @@ import { Log } from '@qui-cli/log';
2
2
  import * as OAuth2CLI from 'oauth2-cli';
3
3
  export class Client extends OAuth2CLI.Client {
4
4
  async getConfiguration() {
5
+ const creating = !this.config;
5
6
  const config = await super.getConfiguration();
6
- Log.debug('OAuth 2.0 configuration', {
7
- config: {
8
- serverMetadata: config.serverMetadata(),
9
- clientMetadata: config.clientMetadata()
10
- }
11
- });
7
+ if (creating) {
8
+ Log.debug('OAuth 2.0 configuration created', {
9
+ credentials: this.credentials,
10
+ config: {
11
+ serverMetadata: config.serverMetadata(),
12
+ clientMetadata: config.clientMetadata()
13
+ }
14
+ });
15
+ }
12
16
  return config;
13
17
  }
14
18
  async authorize() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oauth2-cli/qui-cli",
3
- "version": "0.7.5",
3
+ "version": "0.7.6",
4
4
  "description": "@qui-cli/plugin wrapper for oauth2-cli",
5
5
  "homepage": "https://github.com/battis/oauth2-cli/tree/main/packages/qui-cli#readme",
6
6
  "repository": {
@@ -17,8 +17,8 @@
17
17
  "types": "./dist/index.d.ts",
18
18
  "dependencies": {
19
19
  "@qui-cli/colors": "^3.2.3",
20
- "requestish": "0.1.1",
21
- "oauth2-cli": "0.8.3"
20
+ "oauth2-cli": "0.8.3",
21
+ "requestish": "0.1.1"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@battis/descriptive-types": "^0.2.6",