@oauth2-cli/qui-cli 0.7.1 → 0.7.3
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 +15 -3
- package/dist/OAuth2Plugin.js +2 -2
- package/dist/Unregistered.d.ts +4 -0
- package/dist/Unregistered.js +4 -0
- package/dist/index.d.ts +1 -4
- package/dist/index.js +1 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,17 +2,29 @@
|
|
|
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.
|
|
5
|
+
## [0.7.3](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.7.2...qui-cli-plugin/0.7.3) (2026-02-18)
|
|
6
|
+
|
|
7
|
+
Incorporate fixes from oauth2-cli@0.8.2
|
|
6
8
|
|
|
9
|
+
## [0.7.2](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.7.1...qui-cli-plugin/0.7.2) (2026-02-18)
|
|
7
10
|
|
|
8
11
|
### Features
|
|
9
12
|
|
|
10
|
-
|
|
13
|
+
- `Unregistered` namespace for convenient extension ([0889d98](https://github.com/battis/oauth2-cli/commit/0889d98c26fd50cb8bf6485db2df39ebd1fb2b39))
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- injected usage documentation follows generated usage documentation ([b8b0640](https://github.com/battis/oauth2-cli/commit/b8b064028502e058f9a2b890bd408f8458a2db8e))
|
|
18
|
+
|
|
19
|
+
## [0.7.1](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.7.0...qui-cli-plugin/0.7.1) (2026-02-18)
|
|
20
|
+
|
|
21
|
+
### Features
|
|
11
22
|
|
|
23
|
+
- provide parameterized credentials with simplified typing ([5a92c67](https://github.com/battis/oauth2-cli/commit/5a92c67dbd4ab52fa4f0b02a910e788f5ae67adb))
|
|
12
24
|
|
|
13
25
|
### Bug Fixes
|
|
14
26
|
|
|
15
|
-
|
|
27
|
+
- simplify dependency hierarchy ([0a72c5d](https://github.com/battis/oauth2-cli/commit/0a72c5df3c814e63ad001a2a15fa0bf7ab72b195))
|
|
16
28
|
|
|
17
29
|
## [0.7.0](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.6.6...qui-cli-plugin/0.7.0) (2026-02-17)
|
|
18
30
|
|
package/dist/OAuth2Plugin.js
CHANGED
|
@@ -118,7 +118,6 @@ export class OAuth2Plugin {
|
|
|
118
118
|
return {
|
|
119
119
|
man: [
|
|
120
120
|
{ level: 1, text: this.man.heading },
|
|
121
|
-
...(this.man.text || []).map((t) => ({ text: t })),
|
|
122
121
|
...Object.keys(descriptions)
|
|
123
122
|
.filter((key) => !this.suppress || !this.suppress[key])
|
|
124
123
|
.map((key) => ({
|
|
@@ -127,7 +126,8 @@ export class OAuth2Plugin {
|
|
|
127
126
|
(this.url && this.url[key]
|
|
128
127
|
? ` See ${Colors.url(this.url[key])} for more information.`
|
|
129
128
|
: '')
|
|
130
|
-
}))
|
|
129
|
+
})),
|
|
130
|
+
...(this.man.text || []).map((t) => ({ text: t }))
|
|
131
131
|
]
|
|
132
132
|
};
|
|
133
133
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,2 @@
|
|
|
1
|
-
export { ClientOptions, Credentials, Injection, Scope, WebServer } from 'oauth2-cli';
|
|
2
|
-
export * from './Client.js';
|
|
3
1
|
export * as OAuth2 from './OAuth2.js';
|
|
4
|
-
export * from './
|
|
5
|
-
export * as Token from './Token/index.js';
|
|
2
|
+
export * from './Unregistered.js';
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oauth2-cli/qui-cli",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.3",
|
|
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,7 +17,7 @@
|
|
|
17
17
|
"types": "./dist/index.d.ts",
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@qui-cli/colors": "^3.2.3",
|
|
20
|
-
"oauth2-cli": "0.8.
|
|
20
|
+
"oauth2-cli": "0.8.2",
|
|
21
21
|
"requestish": "0.1.1"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|