@oauth2-cli/qui-cli 0.5.3 → 0.5.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/Module.d.ts +0 -1
- package/dist/Module.js +0 -1
- package/dist/OAuth2.d.ts +1 -0
- package/dist/OAuth2.js +1 -0
- package/package.json +2 -2
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.5.4](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.5.3...qui-cli-plugin/0.5.4) (2026-01-15)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* export EnvironmentStorage from class as well as module ([01cb4ea](https://github.com/battis/oauth2-cli/commit/01cb4eaf54beebd16870adbb1b2664b4e585b14f))
|
|
11
|
+
|
|
5
12
|
## [0.5.3](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.5.2...qui-cli-plugin/0.5.3) (2026-01-15)
|
|
6
13
|
|
|
7
14
|
|
package/dist/Module.d.ts
CHANGED
package/dist/Module.js
CHANGED
package/dist/OAuth2.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { JSONValue } from '@battis/typescript-tricks';
|
|
|
3
3
|
import * as Plugin from '@qui-cli/plugin';
|
|
4
4
|
import * as OAuth2CLI from 'oauth2-cli';
|
|
5
5
|
export * from 'oauth2-cli';
|
|
6
|
+
export * from './EnvironmentStorage.js';
|
|
6
7
|
type ParamNames = 'clientId' | 'clientSecret' | 'redirectUri' | 'authorizationEndpoint' | 'tokenEndpoint' | 'tokenPath' | 'accessToken';
|
|
7
8
|
type EnvironmentVars = Record<ParamNames, string>;
|
|
8
9
|
type SupportUrls = Record<ParamNames, URLString>;
|
package/dist/OAuth2.js
CHANGED
|
@@ -6,6 +6,7 @@ import path from 'node:path';
|
|
|
6
6
|
import * as OAuth2CLI from 'oauth2-cli';
|
|
7
7
|
import { EnvironmentStorage } from './EnvironmentStorage.js';
|
|
8
8
|
export * from 'oauth2-cli';
|
|
9
|
+
export * from './EnvironmentStorage.js';
|
|
9
10
|
export class OAuth2Plugin {
|
|
10
11
|
name;
|
|
11
12
|
static names = [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oauth2-cli/qui-cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
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": {
|
|
@@ -43,6 +43,6 @@
|
|
|
43
43
|
"build": "run-s build:*",
|
|
44
44
|
"build:clean": "run-s clean",
|
|
45
45
|
"build:compile": "tsc",
|
|
46
|
-
"
|
|
46
|
+
"version": "commit-and-tag-version"
|
|
47
47
|
}
|
|
48
48
|
}
|