@kanonak-protocol/cli 4.18.0 → 4.20.0
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/dist/commands/device.d.ts +3 -1
- package/dist/index.js +205 -197
- package/package.json +3 -3
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import 'reflect-metadata';
|
|
1
2
|
import { Command } from 'commander';
|
|
2
3
|
/**
|
|
3
4
|
* `kanonak device` — manage device certificates for registry authentication
|
|
4
5
|
* (issue #67). `enroll` generates a device-held key, builds a CSR, runs a
|
|
5
|
-
* consent-bound SSO flow, and installs the CA-signed certificate
|
|
6
|
+
* consent-bound SSO flow, and installs the CA-signed certificate; `list`,
|
|
7
|
+
* `show`, and `remove` inspect and manage what was installed locally.
|
|
6
8
|
*/
|
|
7
9
|
export declare function deviceCommand(): Command;
|