@oauth2-cli/qui-cli-plugin 0.3.3 → 0.3.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 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.3.4](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.3.3...qui-cli-plugin/0.3.4) (2026-01-03)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * export ConfigurationProposal ([3c558c2](https://github.com/battis/oauth2-cli/commit/3c558c2dda012872747cf74fb76dcdd2740f04c6))
11
+
5
12
  ## [0.3.3](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.3.2...qui-cli-plugin/0.3.3) (2026-01-03)
6
13
 
7
14
 
package/dist/OAuth2.d.ts CHANGED
@@ -38,6 +38,11 @@ export type Configuration = Plugin.Configuration & {
38
38
  man: Usage;
39
39
  suppress?: OptionSuppression;
40
40
  };
41
+ export type ConfigurationProposal = Partial<Omit<Configuration, 'env' | 'man' | 'suppress'>> & {
42
+ env?: Partial<EnvironmentVars>;
43
+ man?: Partial<Usage>;
44
+ suppress?: Partial<OptionSuppression>;
45
+ };
41
46
  export type RequestURL = URL | string;
42
47
  export type RequestMethod = string;
43
48
  export type RequestBody = undefined | OpenIDClient.FetchBody;
@@ -51,10 +56,7 @@ export declare class OAuth2 {
51
56
  constructor(name?: string);
52
57
  private config;
53
58
  private client;
54
- configure(proposal?: Partial<Omit<Configuration, 'env' | 'suppress'>> & {
55
- env?: Partial<EnvironmentVars>;
56
- suppress?: Partial<OptionSuppression>;
57
- }): void;
59
+ configure(proposal?: ConfigurationProposal): void;
58
60
  options(): Plugin.Options;
59
61
  init(args: Plugin.ExpectedArguments<typeof this.options>): Promise<void>;
60
62
  private getClient;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oauth2-cli/qui-cli-plugin",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "@battis/qui-cli.plugin wrapper for oauth2-cli",
5
5
  "homepage": "https://github.com/battis/oauth2-cli/tree/main/packages/qui-cli-plugin#readme",
6
6
  "repository": {