@solazah/solazah-cli 0.2.18 → 0.2.20
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 +4 -0
- package/commands/account/login.d.ts +3 -0
- package/commands/account/login.d.ts.map +1 -0
- package/commands/account/logout.d.ts +3 -0
- package/commands/account/logout.d.ts.map +1 -0
- package/commands/account/shared.d.ts +9 -0
- package/commands/account/shared.d.ts.map +1 -0
- package/commands/account/userinfo.d.ts +3 -0
- package/commands/account/userinfo.d.ts.map +1 -0
- package/commands/plugin/create.d.ts +15 -0
- package/commands/plugin/create.d.ts.map +1 -0
- package/commands/plugin/package.d.ts +6 -0
- package/commands/plugin/package.d.ts.map +1 -0
- package/commands/plugin/publish.d.ts +7 -0
- package/commands/plugin/publish.d.ts.map +1 -0
- package/commands/plugin/release.d.ts +6 -0
- package/commands/plugin/release.d.ts.map +1 -0
- package/commands/plugin/version.d.ts +7 -0
- package/commands/plugin/version.d.ts.map +1 -0
- package/index.d.ts +3 -0
- package/index.d.ts.map +1 -0
- package/index.js +1119 -0
- package/index.js.map +1 -0
- package/package.json +4 -14
- package/utils/auth-storage.d.ts +27 -0
- package/utils/auth-storage.d.ts.map +1 -0
- package/utils/file.d.ts +41 -0
- package/utils/file.d.ts.map +1 -0
- package/utils/oauth-device.d.ts +98 -0
- package/utils/oauth-device.d.ts.map +1 -0
- package/utils/open-browser.d.ts +5 -0
- package/utils/open-browser.d.ts.map +1 -0
- package/utils/validate.d.ts +21 -0
- package/utils/validate.d.ts.map +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
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.20](https://cnb.cool/seayona/solazah/solazah-cli/compare/v0.2.19...v0.2.20) (2026-05-03)
|
|
6
|
+
|
|
7
|
+
### [0.2.19](https://cnb.cool/seayona/solazah/solazah-cli/compare/v0.2.18...v0.2.19) (2026-05-03)
|
|
8
|
+
|
|
5
9
|
### [0.2.18](https://cnb.cool/seayona/solazah/solazah-cli/compare/v0.2.17...v0.2.18) (2026-05-03)
|
|
6
10
|
|
|
7
11
|
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
interface CreatePluginOptions {
|
|
2
|
+
name?: string;
|
|
3
|
+
dir?: string;
|
|
4
|
+
targetDir?: string;
|
|
5
|
+
template?: string;
|
|
6
|
+
displayName?: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
author?: string;
|
|
9
|
+
port?: number;
|
|
10
|
+
yes?: boolean;
|
|
11
|
+
skipInstall?: boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare function createPluginCommand(options: CreatePluginOptions): Promise<void>;
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=create.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
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,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,OAAO,CAAC;IACd,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAED,wBAAsB,mBAAmB,CAAC,OAAO,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC,CAiPrF"}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
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
ADDED
package/index.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
|