@dbx-tools/cli 0.6.133 → 0.6.135

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.
Files changed (2) hide show
  1. package/README.md +5 -4
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -90,13 +90,14 @@ resolution, and output formats.
90
90
  ## Broker Local Provider Tokens
91
91
 
92
92
  ```sh
93
- dbx token serve --google --auth jwt --bind-docker
94
- dbx token client-token container-client --scope https://www.googleapis.com/auth/gmail.modify
95
- dbx token access-token --client container-client
93
+ dbx token serve --secret "$TOKEN_BROKER_SECRET"
94
+ CLIENT_AUTH="$(dbx token client-jwt container-client --secret "$TOKEN_BROKER_SECRET")"
95
+ dbx token access-token --auth "$CLIENT_AUTH"
96
96
  ```
97
97
 
98
98
  The broker keeps Google ADC under gcloud, caches access tokens only in memory,
99
- and defaults to mTLS. See [`@dbx-tools/cli-token`](../token) for service
99
+ and defaults to signed JWT client authentication. See
100
+ [`@dbx-tools/cli-token`](../token) for service
100
101
  installation, client authorization, Docker, Podman, and configuration.
101
102
 
102
103
  ## Put A Gated Public URL In Front Of A Command
package/package.json CHANGED
@@ -28,12 +28,12 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@clack/prompts": "^1.7.0",
31
- "@dbx-tools/cli-appkit-env": "0.6.133",
32
- "@dbx-tools/cli-model-proxy": "0.6.133",
33
- "@dbx-tools/cli-token": "0.6.133",
34
- "@dbx-tools/cli-tunnel": "0.6.133",
35
- "@dbx-tools/core": "0.6.133",
36
- "@dbx-tools/shared-core": "0.6.133",
31
+ "@dbx-tools/cli-appkit-env": "0.6.135",
32
+ "@dbx-tools/cli-model-proxy": "0.6.135",
33
+ "@dbx-tools/cli-token": "0.6.135",
34
+ "@dbx-tools/cli-tunnel": "0.6.135",
35
+ "@dbx-tools/core": "0.6.135",
36
+ "@dbx-tools/shared-core": "0.6.135",
37
37
  "commander": "^15.0.0"
38
38
  },
39
39
  "main": "./lib/index.js",
@@ -70,7 +70,7 @@
70
70
  "./package.json": "./package.json"
71
71
  }
72
72
  },
73
- "version": "0.6.133",
73
+ "version": "0.6.135",
74
74
  "types": "./lib/index.d.ts",
75
75
  "type": "module",
76
76
  "exports": {