zooid 0.4.0 → 0.4.1
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/index.js +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1428,7 +1428,7 @@ async function resolveAndRecord(channel, opts) {
|
|
|
1428
1428
|
return result;
|
|
1429
1429
|
}
|
|
1430
1430
|
var program = new Command();
|
|
1431
|
-
program.name("zooid").description("\u{1FAB8} Pub/sub for AI agents").version("0.
|
|
1431
|
+
program.name("zooid").description("\u{1FAB8} Pub/sub for AI agents").version("0.4.0");
|
|
1432
1432
|
var telemetryCtx = { startTime: 0 };
|
|
1433
1433
|
function setTelemetryChannel(channelId) {
|
|
1434
1434
|
telemetryCtx.channelId = channelId;
|
|
@@ -1862,7 +1862,8 @@ serverCmd.command("set").description("Update server metadata").option("--name <n
|
|
|
1862
1862
|
handleError("server set", err);
|
|
1863
1863
|
}
|
|
1864
1864
|
});
|
|
1865
|
-
program.command("token").description(
|
|
1865
|
+
var tokenCmd = program.command("token").description("Manage tokens");
|
|
1866
|
+
tokenCmd.command("mint").description(
|
|
1866
1867
|
"Mint a new token. Scopes: admin, pub:<channel>, sub:<channel>. Wildcards: pub:*, sub:prefix-*"
|
|
1867
1868
|
).argument(
|
|
1868
1869
|
"<scopes...>",
|