@oauth2-cli/qui-cli-plugin 0.2.2 → 0.2.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 +7 -0
- package/dist/OAuth2CLI.d.ts +4 -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.2.3](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.2.2...qui-cli-plugin/0.2.3) (2025-12-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* allow partial override of environment variable names and suppressed opt args ([c8a118b](https://github.com/battis/oauth2-cli/commit/c8a118ba6dae62f29549ef272448a4a6adea553c))
|
|
11
|
+
|
|
5
12
|
## [0.2.2](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.2.1...qui-cli-plugin/0.2.2) (2025-12-23)
|
|
6
13
|
|
|
7
14
|
|
package/dist/OAuth2CLI.d.ts
CHANGED
|
@@ -37,7 +37,10 @@ export type Configuration = Plugin.Configuration & {
|
|
|
37
37
|
suppress?: OptionSuppression;
|
|
38
38
|
};
|
|
39
39
|
export declare const name = "@oauth2-cli/qui-cli-plugin";
|
|
40
|
-
export declare function configure(proposal?: Partial<Configuration>
|
|
40
|
+
export declare function configure(proposal?: Partial<Configuration> & {
|
|
41
|
+
env?: Partial<EnvironmentVars>;
|
|
42
|
+
suppress?: Partial<OptionSuppression>;
|
|
43
|
+
}): void;
|
|
41
44
|
export declare function options(): Plugin.Options;
|
|
42
45
|
export declare function init(args: Plugin.ExpectedArguments<typeof options>): Promise<void>;
|
|
43
46
|
export declare function getToken(): Promise<OAuth2.Token | undefined>;
|
package/package.json
CHANGED