@oauth2-cli/qui-cli 0.5.7 → 0.5.8
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 +7 -0
- package/dist/OAuth2.js +5 -1
- package/package.json +1 -1
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.5.8](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.5.7...qui-cli-plugin/0.5.8) (2026-01-17)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add debugging output for requests ([8066cab](https://github.com/battis/oauth2-cli/commit/8066cabf56521f43ff90af21edabd9c20997e4cb))
|
|
11
|
+
|
|
5
12
|
## [0.5.7](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.5.6...qui-cli-plugin/0.5.7) (2026-01-17)
|
|
6
13
|
|
|
7
14
|
|
package/dist/OAuth2.js
CHANGED
|
@@ -181,10 +181,14 @@ export class OAuth2Plugin {
|
|
|
181
181
|
return this.getClient().getToken();
|
|
182
182
|
}
|
|
183
183
|
request(...args) {
|
|
184
|
+
const [url, method, body, headers, dPoPOptions] = args;
|
|
185
|
+
Log.debug({ request: { method, url, headers, body, dPoPOptions } });
|
|
184
186
|
return this.getClient().request(...args);
|
|
185
187
|
}
|
|
186
188
|
requestJSON(...args) {
|
|
187
|
-
|
|
189
|
+
const response = this.getClient().requestJSON(...args);
|
|
190
|
+
Log.debug({ response });
|
|
191
|
+
return response;
|
|
188
192
|
}
|
|
189
193
|
fetch(...args) {
|
|
190
194
|
return this.getClient().fetch(...args);
|
package/package.json
CHANGED