@oauth2-cli/qui-cli-plugin 0.2.3 → 0.2.4
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 +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.2.4](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.2.3...qui-cli-plugin/0.2.4) (2025-12-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* more aggressively fix typing for partial configuration ([97f7e0c](https://github.com/battis/oauth2-cli/commit/97f7e0c034202fb26654677b5a3a836ff989b116))
|
|
11
|
+
|
|
5
12
|
## [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
13
|
|
|
7
14
|
|
package/dist/OAuth2CLI.d.ts
CHANGED
|
@@ -37,7 +37,7 @@ 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<Omit<Configuration, 'env' | 'suppress'>> & {
|
|
41
41
|
env?: Partial<EnvironmentVars>;
|
|
42
42
|
suppress?: Partial<OptionSuppression>;
|
|
43
43
|
}): void;
|
package/package.json
CHANGED