@tameflare/cli 0.9.0 → 0.9.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.
@@ -190,7 +190,7 @@ function initCommand() {
190
190
  }
191
191
  async function pickGatewayInteractive(dashboardUrl, token, explicit) {
192
192
  try {
193
- const res = await fetch(`${dashboardUrl}/api/cli/gateways`, {
193
+ const res = await fetch(`${dashboardUrl}/api/cli/gateways?token=${encodeURIComponent(token)}`, {
194
194
  headers: { Authorization: `Bearer ${token}` },
195
195
  });
196
196
  if (!res.ok) {
package/dist/index.js CHANGED
@@ -15,7 +15,7 @@ const program = new commander_1.Command();
15
15
  program
16
16
  .name("tf")
17
17
  .description("TameFlare - Govern and secure AI gateway traffic")
18
- .version("0.9.0");
18
+ .version("0.9.1");
19
19
  program.addCommand((0, login_1.loginCommand)());
20
20
  program.addCommand((0, login_1.logoutCommand)());
21
21
  program.addCommand((0, init_1.initCommand)());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tameflare/cli",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "TameFlare CLI - secure and govern AI agent traffic through a transparent proxy gateway",
5
5
  "bin": {
6
6
  "tf": "dist/index.js"