Skip to content

Commit

Permalink
Release 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ferhatelmas committed Apr 21, 2021
1 parent a86a603 commit c964f44
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ $ npm install -g getstream-cli
$ stream COMMAND
running command...
$ stream (-v|--version|version)
getstream-cli/0.2.2 linux-x64 node-v14.10.0
getstream-cli/0.2.3 linux-x64 node-v14.10.0
$ stream --help [COMMAND]
USAGE
$ stream COMMAND
Expand Down
2 changes: 1 addition & 1 deletion build/commands/chat/log/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class Log extends _command.Command {
channel.on(event => {
const timestamp = _chalk.default.bold.green((0, _moment.default)(event.created_at).format(format));

const payload = `${timestamp}: ${_chalk.default.bold(event.channel.updated_by.name || event.channel.user.id)} performed event ${_chalk.default.bold(event.type)} in channel ${_chalk.default.bold(flags.channel)}.`;
const payload = `${timestamp}: ${_chalk.default.bold(event.user?.name || event.user?.id)} performed event ${_chalk.default.bold(event.type)} in channel ${_chalk.default.bold(flags.channel)}.`;
this.log(payload);
});
} else {
Expand Down
2 changes: 1 addition & 1 deletion docs/chat.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ USAGE
$ stream chat:channel:create
OPTIONS
-c, --channel=channel [default: 13db304f-2e4a-413e-a9d0-01e944c0a155] A unique ID for the channel you wish to create.
-c, --channel=channel [default: e3ff4f2e-dfb7-4c5f-b54d-2b11597bda17] A unique ID for the channel you wish to create.
-d, --data=data Additional data as JSON.
-i, --image=image URL to channel image.
-j, --json Output results in JSON. When not specified, returns output in a human friendly format.
Expand Down
2 changes: 1 addition & 1 deletion oclif.manifest.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "getstream-cli",
"description": "Configure & manage Stream applications from the command line. 🚀",
"version": "0.2.2",
"version": "0.2.3",
"bin": {
"stream": "./build/bin/run"
},
Expand Down

0 comments on commit c964f44

Please sign in to comment.