@@ -24,7 +24,7 @@ $ npm install -g @ably/cli
2424$ ably COMMAND
2525running command...
2626$ ably (--version)
27- @ably/cli/0.17.0 darwin-arm64 node-v24.4.1
27+ @ably/cli/0.17.0 darwin-arm64 node-v25.3.0
2828$ ably --help [COMMAND]
2929USAGE
3030 $ ably COMMAND
@@ -1949,7 +1949,7 @@ _See code: [src/commands/channels/presence/enter.ts](https://github.com/ably/abl
19491949
19501950Get all current presence members on a channel
19511951
1952- ``` text
1952+ ```
19531953USAGE
19541954 $ ably channels presence get CHANNEL [-v] [--json | --pretty-json] [--limit <value>]
19551955
@@ -2077,26 +2077,23 @@ Subscribe to messages published on one or more Ably channels
20772077```
20782078USAGE
20792079 $ ably channels subscribe CHANNELS... [-v] [--json | --pretty-json] [--client-id <value>] [-D <value>] [--rewind
2080- <value>] [--cipher-algorithm <value>] [--cipher-key <value>] [--cipher-key-length <value>] [--cipher-mode <value>]
2081- [--delta] [--sequence-numbers]
2080+ <value>] [--cipher <value>] [--delta] [--sequence-numbers]
20822081
20832082ARGUMENTS
20842083 CHANNELS... Channel name(s) to subscribe to
20852084
20862085FLAGS
2087- -D, --duration=<value> Automatically exit after N seconds
2088- -v, --verbose Output verbose logs
2089- --cipher-algorithm=<value> [default: aes] Encryption algorithm to use
2090- --cipher-key=<value> Encryption key for decrypting messages (base64-encoded or hex-encoded)
2091- --cipher-key-length=<value> [default: 256] Length of encryption key in bits
2092- --cipher-mode=<value> [default: cbc] Cipher mode to use
2093- --client-id=<value> Overrides any default client ID when using API authentication. Use "none" to
2094- explicitly set no client ID. Not applicable when using token authentication.
2095- --delta Enable delta compression (VCDIFF) to reduce message payload sizes
2096- --json Output in JSON format
2097- --pretty-json Output in colorized JSON format
2098- --rewind=<value> Number of messages to rewind when subscribing (default: 0)
2099- --sequence-numbers Include sequence numbers in output
2086+ -D, --duration=<value> Automatically exit after N seconds
2087+ -v, --verbose Output verbose logs
2088+ --cipher=<value> Decryption key for encrypted messages (base64-encoded or hex-encoded), uses AES-256-CBC by
2089+ default
2090+ --client-id=<value> Overrides any default client ID when using API authentication. Use "none" to explicitly set
2091+ no client ID. Not applicable when using token authentication.
2092+ --delta Enable delta compression (VCDIFF) to reduce message payload sizes
2093+ --json Output in JSON format
2094+ --pretty-json Output in colorized JSON format
2095+ --rewind=<value> Number of messages to rewind when subscribing (default: 0)
2096+ --sequence-numbers Include sequence numbers in output
21002097
21012098DESCRIPTION
21022099 Subscribe to messages published on one or more Ably channels
@@ -2110,7 +2107,7 @@ EXAMPLES
21102107
21112108 $ ably channels subscribe --delta my-channel
21122109
2113- $ ably channels subscribe --cipher-key YOUR_CIPHER_KEY my-channel
2110+ $ ably channels subscribe --cipher YOUR_CIPHER_KEY my-channel
21142111
21152112 $ ably channels subscribe my-channel --json
21162113
0 commit comments