@kanonak-protocol/cli 5.8.0 → 5.10.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.
@@ -0,0 +1,11 @@
1
+ import type { AuthenticatedFetchFn } from '@kanonak-protocol/sdk';
2
+ /**
3
+ * The open CLI's consumption transport. Gated reads present a BYO bearer token
4
+ * from the environment (`KANONAK_TOKEN` / `KANONAK_TOKEN_<AUTHORITY>`) via the
5
+ * SDK's reference provider; public publishers resolve anonymously.
6
+ *
7
+ * Credential ACQUISITION (device-cert enrollment, mTLS session minting, the git
8
+ * credential helper) is NOT here — it lives in the platform CLI and plugs into
9
+ * the same `CredentialProvider` seam. See ideas/protocol-vs-platform-auth-split.md.
10
+ */
11
+ export declare function createCliFetch(): AuthenticatedFetchFn;