@solazah/solazah-cli 0.2.16 → 0.2.18
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 +9 -0
- package/package.json +2 -1
- package/commands/account/login.d.ts +0 -3
- package/commands/account/login.d.ts.map +0 -1
- package/commands/account/logout.d.ts +0 -3
- package/commands/account/logout.d.ts.map +0 -1
- package/commands/account/shared.d.ts +0 -9
- package/commands/account/shared.d.ts.map +0 -1
- package/commands/account/userinfo.d.ts +0 -3
- package/commands/account/userinfo.d.ts.map +0 -1
- package/commands/plugin/create.d.ts +0 -9
- package/commands/plugin/create.d.ts.map +0 -1
- package/commands/plugin/package.d.ts +0 -6
- package/commands/plugin/package.d.ts.map +0 -1
- package/commands/plugin/publish.d.ts +0 -7
- package/commands/plugin/publish.d.ts.map +0 -1
- package/commands/plugin/release.d.ts +0 -6
- package/commands/plugin/release.d.ts.map +0 -1
- package/commands/plugin/version.d.ts +0 -7
- package/commands/plugin/version.d.ts.map +0 -1
- package/index.d.ts +0 -3
- package/index.d.ts.map +0 -1
- package/index.js +0 -1108
- package/index.js.map +0 -1
- package/utils/auth-storage.d.ts +0 -27
- package/utils/auth-storage.d.ts.map +0 -1
- package/utils/file.d.ts +0 -41
- package/utils/file.d.ts.map +0 -1
- package/utils/oauth-device.d.ts +0 -98
- package/utils/oauth-device.d.ts.map +0 -1
- package/utils/open-browser.d.ts +0 -5
- package/utils/open-browser.d.ts.map +0 -1
- package/utils/validate.d.ts +0 -21
- package/utils/validate.d.ts.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.2.18](https://cnb.cool/seayona/solazah/solazah-cli/compare/v0.2.17...v0.2.18) (2026-05-03)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **plugin:** enhance create command with additional options and prompts ([e9acde8](https://cnb.cool/seayona/solazah/solazah-cli/commit/e9acde80bdd3732fc896a18639190b12e3a7fa22))
|
|
11
|
+
|
|
12
|
+
### [0.2.17](https://cnb.cool/seayona/solazah/solazah-cli/compare/v0.2.16...v0.2.17) (2026-05-02)
|
|
13
|
+
|
|
5
14
|
### [0.2.16](https://cnb.cool/seayona/solazah/solazah-cli/compare/v0.2.15...v0.2.16) (2026-05-02)
|
|
6
15
|
|
|
7
16
|
### [0.2.15](https://cnb.cool/seayona/solazah/solazah-cli/compare/v0.2.14...v0.2.15) (2026-05-02)
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"solazah-cli": "./index.js"
|
|
5
5
|
},
|
|
6
6
|
"type": "module",
|
|
7
|
-
"version": "0.2.
|
|
7
|
+
"version": "0.2.18",
|
|
8
8
|
"description": "Solazah CLI - Command line tool for Solazah plugin development",
|
|
9
9
|
"author": "",
|
|
10
10
|
"license": "MIT",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"chalk": "^5.4.1",
|
|
19
19
|
"commander": "^12.1.0",
|
|
20
|
+
"conventional-changelog-core": "^9.0.0",
|
|
20
21
|
"fs-extra": "^11.2.0",
|
|
21
22
|
"inquirer": "^10.0.0",
|
|
22
23
|
"ora": "^8.1.1",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"login.d.ts","sourceRoot":"","sources":["../../../src/commands/account/login.ts"],"names":[],"mappings":"AAYA,OAAO,EAAE,aAAa,EAAwB,MAAM,aAAa,CAAC;AAElE,wBAAsB,YAAY,CAAC,OAAO,EAAE,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC,CA6GxE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"logout.d.ts","sourceRoot":"","sources":["../../../src/commands/account/logout.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,aAAa,EAAiB,MAAM,aAAa,CAAC;AAE3D,wBAAsB,aAAa,CAAC,OAAO,EAAE,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC,CAwBzE"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { StoredTokens } from '../../utils/auth-storage.js';
|
|
2
|
-
import { OidcDiscovery } from '../../utils/oauth-device.js';
|
|
3
|
-
export interface CommonOptions {
|
|
4
|
-
issuer?: string;
|
|
5
|
-
}
|
|
6
|
-
export declare const delay: (ms: number) => Promise<void>;
|
|
7
|
-
export declare function loadDiscovery(issuer?: string): Promise<OidcDiscovery>;
|
|
8
|
-
export declare function ensureValidTokens(discovery: OidcDiscovery, tokens: StoredTokens): Promise<StoredTokens>;
|
|
9
|
-
//# sourceMappingURL=shared.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"shared.d.ts","sourceRoot":"","sources":["../../../src/commands/account/shared.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,YAAY,EACb,MAAM,6BAA6B,CAAC;AACrC,OAAO,EAGL,aAAa,EAEd,MAAM,6BAA6B,CAAC;AAErC,MAAM,WAAW,aAAa;IAC5B,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,KAAK,GAAI,IAAI,MAAM,kBAA4D,CAAC;AAE7F,wBAAgB,aAAa,CAAC,MAAM,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,aAAa,CAAC,CAErE;AAED,wBAAsB,iBAAiB,CACrC,SAAS,EAAE,aAAa,EACxB,MAAM,EAAE,YAAY,GACnB,OAAO,CAAC,YAAY,CAAC,CAcvB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"userinfo.d.ts","sourceRoot":"","sources":["../../../src/commands/account/userinfo.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,aAAa,EAAoC,MAAM,aAAa,CAAC;AAE9E,wBAAsB,eAAe,CAAC,OAAO,EAAE,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC,CAmB3E"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../src/commands/plugin/create.ts"],"names":[],"mappings":"AAuBA,UAAU,mBAAmB;IAC3B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAED,wBAAsB,mBAAmB,CAAC,OAAO,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC,CAmOrF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"package.d.ts","sourceRoot":"","sources":["../../../src/commands/plugin/package.ts"],"names":[],"mappings":"AASA,UAAU,oBAAoB;IAC5B,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAsID,wBAAsB,oBAAoB,CAAC,OAAO,EAAE,oBAAoB,GAAG,OAAO,CAAC,IAAI,CAAC,CAgEvF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"publish.d.ts","sourceRoot":"","sources":["../../../src/commands/plugin/publish.ts"],"names":[],"mappings":"AAeA,UAAU,cAAc;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAsDD,wBAAsB,oBAAoB,CAAC,OAAO,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC,CAqEjF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"release.d.ts","sourceRoot":"","sources":["../../../src/commands/plugin/release.ts"],"names":[],"mappings":"AAOA,UAAU,cAAc;IACtB,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED,wBAAsB,oBAAoB,CAAC,OAAO,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC,CAgBjF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/commands/plugin/version.ts"],"names":[],"mappings":"AAWA,UAAU,cAAc;IACtB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAyFD,wBAAsB,oBAAoB,CAAC,OAAO,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC,CAgFjF"}
|
package/index.d.ts
DELETED
package/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
|