@oauth2-cli/qui-cli 0.4.1 → 0.4.2
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.d.ts +1 -1
- package/dist/OAuth2.js +1 -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.4.2](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.4.1...qui-cli-plugin/0.4.2) (2026-01-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* typo in fetchJSON name ([a19ba97](https://github.com/battis/oauth2-cli/commit/a19ba9700e32a69f7714a428b3c5c60739a11c16))
|
|
11
|
+
|
|
5
12
|
## [0.4.1](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.4.0...qui-cli-plugin/0.4.1) (2026-01-04)
|
|
6
13
|
|
|
7
14
|
## [0.4.0](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.3.4...qui-cli-plugin/0.4.0) (2026-01-04)
|
package/dist/OAuth2.d.ts
CHANGED
|
@@ -59,5 +59,5 @@ export declare class OAuth2 {
|
|
|
59
59
|
request: (...args: Parameters<OAuth2CLI.Client["request"]>) => Promise<Response>;
|
|
60
60
|
fetch: (...args: Parameters<OAuth2CLI.Client["fetch"]>) => Promise<Response>;
|
|
61
61
|
requestJSON: <T extends JSONValue>(...args: Parameters<OAuth2CLI.Client["requestJSON"]>) => Promise<T>;
|
|
62
|
-
|
|
62
|
+
fetchJSON: <T extends JSONValue>(...args: Parameters<OAuth2CLI.Client["fetchJSON"]>) => Promise<T>;
|
|
63
63
|
}
|
package/dist/OAuth2.js
CHANGED
|
@@ -173,5 +173,5 @@ export class OAuth2 {
|
|
|
173
173
|
request = (...args) => this.getClient().request(...args);
|
|
174
174
|
fetch = (...args) => this.getClient().fetch(...args);
|
|
175
175
|
requestJSON = (...args) => this.getClient().requestJSON(...args);
|
|
176
|
-
|
|
176
|
+
fetchJSON = (...args) => this.getClient().fetchJSON(...args);
|
|
177
177
|
}
|
package/package.json
CHANGED