diff --git a/README.md b/README.md index a7b71a2f..fd59a43a 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ $ npm install -g @ably/cli $ ably COMMAND running command... $ ably (--version) -@ably/cli/0.16.0 darwin-arm64 node-v22.14.0 +@ably/cli/0.15.0 darwin-arm64 node-v22.14.0 $ ably --help [COMMAND] USAGE $ ably COMMAND @@ -75,7 +75,6 @@ $ ably-interactive * [`ably accounts list`](#ably-accounts-list) * [`ably accounts login [TOKEN]`](#ably-accounts-login-token) * [`ably accounts logout [ALIAS]`](#ably-accounts-logout-alias) -* [`ably accounts stats`](#ably-accounts-stats) * [`ably accounts switch [ALIAS]`](#ably-accounts-switch-alias) * [`ably apps`](#ably-apps) * [`ably apps channel-rules`](#ably-apps-channel-rules) @@ -88,7 +87,6 @@ $ ably-interactive * [`ably apps delete [APPID]`](#ably-apps-delete-appid) * [`ably apps list`](#ably-apps-list) * [`ably apps set-apns-p12 ID`](#ably-apps-set-apns-p12-id) -* [`ably apps stats [ID]`](#ably-apps-stats-id) * [`ably apps switch [APPID]`](#ably-apps-switch-appid) * [`ably apps update ID`](#ably-apps-update-id) * [`ably auth`](#ably-auth) @@ -123,7 +121,6 @@ $ ably-interactive * [`ably config path`](#ably-config-path) * [`ably config show`](#ably-config-show) * [`ably connections`](#ably-connections) -* [`ably connections stats`](#ably-connections-stats) * [`ably connections test`](#ably-connections-test) * [`ably help [COMMANDS]`](#ably-help-commands) * [`ably integrations`](#ably-integrations) @@ -144,6 +141,8 @@ $ ably-interactive * [`ably logs push history`](#ably-logs-push-history) * [`ably logs push subscribe`](#ably-logs-push-subscribe) * [`ably logs subscribe`](#ably-logs-subscribe) +* [`ably mcp`](#ably-mcp) +* [`ably mcp start-server`](#ably-mcp-start-server) * [`ably queues`](#ably-queues) * [`ably queues create`](#ably-queues-create) * [`ably queues delete QUEUEID`](#ably-queues-delete-queueid) @@ -188,6 +187,9 @@ $ ably-interactive * [`ably spaces members`](#ably-spaces-members) * [`ably spaces members enter SPACE`](#ably-spaces-members-enter-space) * [`ably spaces members subscribe SPACE`](#ably-spaces-members-subscribe-space) +* [`ably stats`](#ably-stats) +* [`ably stats account`](#ably-stats-account) +* [`ably stats app [ID]`](#ably-stats-app-id) * [`ably status`](#ably-status) * [`ably support`](#ably-support) * [`ably support ask QUESTION`](#ably-support-ask-question) @@ -215,18 +217,15 @@ EXAMPLES $ ably accounts switch my-account - $ ably accounts stats - COMMANDS ably accounts current Show the current Ably account ably accounts list List locally configured Ably accounts ably accounts login Log in to your Ably account ably accounts logout Log out from an Ably account - ably accounts stats Get account stats with optional live updates ably accounts switch Switch to a different Ably account ``` -_See code: [src/commands/accounts/index.ts](https://github.com/ably/ably-cli/blob/v0.16.0/src/commands/accounts/index.ts)_ +_See code: [src/commands/accounts/index.ts](https://github.com/ably/ably-cli/blob/v0.15.0/src/commands/accounts/index.ts)_ ## `ably accounts current` @@ -261,7 +260,7 @@ EXAMPLES $ ably accounts current --pretty-json ``` -_See code: [src/commands/accounts/current.ts](https://github.com/ably/ably-cli/blob/v0.16.0/src/commands/accounts/current.ts)_ +_See code: [src/commands/accounts/current.ts](https://github.com/ably/ably-cli/blob/v0.15.0/src/commands/accounts/current.ts)_ ## `ably accounts list` @@ -296,7 +295,7 @@ EXAMPLES $ ably accounts list --pretty-json ``` -_See code: [src/commands/accounts/list.ts](https://github.com/ably/ably-cli/blob/v0.16.0/src/commands/accounts/list.ts)_ +_See code: [src/commands/accounts/list.ts](https://github.com/ably/ably-cli/blob/v0.15.0/src/commands/accounts/list.ts)_ ## `ably accounts login [TOKEN]` @@ -338,7 +337,7 @@ EXAMPLES $ ably accounts login --pretty-json ``` -_See code: [src/commands/accounts/login.ts](https://github.com/ably/ably-cli/blob/v0.16.0/src/commands/accounts/login.ts)_ +_See code: [src/commands/accounts/login.ts](https://github.com/ably/ably-cli/blob/v0.15.0/src/commands/accounts/login.ts)_ ## `ably accounts logout [ALIAS]` @@ -379,61 +378,7 @@ EXAMPLES $ ably accounts logout --pretty-json ``` -_See code: [src/commands/accounts/logout.ts](https://github.com/ably/ably-cli/blob/v0.16.0/src/commands/accounts/logout.ts)_ - -## `ably accounts stats` - -Get account stats with optional live updates - -``` -USAGE - $ ably accounts stats [--access-token ] [--api-key ] [--client-id ] [--env ] - [--endpoint ] [--host ] [--json | --pretty-json] [--token ] [-v] [--debug] [--end ] - [--interval ] [--limit ] [--live] [--start ] [--unit minute|hour|day|month] - -FLAGS - -v, --verbose Output verbose logs - --access-token= Overrides any configured access token used for the Control API - --api-key= Overrides any configured API key used for the product APIs - --client-id= Overrides any default client ID when using API authentication. Use "none" to explicitly - set no client ID. Not applicable when using token authentication. - --debug Show debug information for live stats polling - --end= End time in milliseconds since epoch - --endpoint= Override the endpoint for all product API calls - --env= Override the environment for all product API calls - --host= Override the host endpoint for all product API calls - --interval= [default: 6] Polling interval in seconds (only used with --live) - --json Output in JSON format - --limit= [default: 10] Maximum number of stats records to return - --live Subscribe to live stats updates (uses minute interval) - --pretty-json Output in colorized JSON format - --start= Start time in milliseconds since epoch - --token= Authenticate using an Ably Token or JWT Token instead of an API key - --unit=