apiblaze 0.17.6 → 0.17.8
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/README.md +11 -2
- package/dist/index.js +1142 -323
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# apiblaze
|
|
2
2
|
|
|
3
|
-
CLI for [APIblaze](https://apiblaze.com) —
|
|
3
|
+
CLI for [APIblaze](https://apiblaze.com) — Chat with your APIs, Manage your API keys, users and groups through APIblaze's serverless proxy
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -25,10 +25,19 @@ npx apiblaze agent
|
|
|
25
25
|
Prefer commands? A few one-liners:
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
|
+
# Chat with your API
|
|
29
|
+
npx apiblaze apichat --openapi https://api.example.com/openapi.json
|
|
30
|
+
|
|
28
31
|
# Make an API in one line — no account needed (prints a claim URL)
|
|
29
32
|
npx apiblaze create --target https://api.example.com
|
|
30
33
|
|
|
31
|
-
#
|
|
34
|
+
# Configure how your backend is accessed through the proxy
|
|
35
|
+
npx apiblaze config
|
|
36
|
+
|
|
37
|
+
# Configure who accesses your backend through the proxy
|
|
38
|
+
npx apiblaze tenant
|
|
39
|
+
|
|
40
|
+
# Access your localhost through a proxied URL
|
|
32
41
|
npx apiblaze dev 3000
|
|
33
42
|
|
|
34
43
|
# Sign in to manage APIs under your team
|