diff --git a/docs/guides/installing-the-slack-cli-for-mac-and-linux.md b/docs/guides/installing-the-slack-cli-for-mac-and-linux.md index 1d6a2dd3..88de9cd7 100644 --- a/docs/guides/installing-the-slack-cli-for-mac-and-linux.md +++ b/docs/guides/installing-the-slack-cli-for-mac-and-linux.md @@ -99,13 +99,13 @@ Manual installation allows you to customize certain paths used when installing t **2\. Download the** `slack` **CLI installer for your environment.** -🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.6.0_macOS_arm64.tar.gz) +🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.7.0_macOS_arm64.tar.gz) -🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.6.0_macOS_amd64.tar.gz) +🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.7.0_macOS_amd64.tar.gz) -🐧 💾 [**Download for Linux x86_64 (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.6.0_linux_amd64.tar.gz) +🐧 💾 [**Download for Linux x86_64 (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.7.0_linux_amd64.tar.gz) -🐧 💪 [**Download for Linux ARM64 (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.6.0_linux_arm64.tar.gz) +🐧 💪 [**Download for Linux ARM64 (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.7.0_linux_arm64.tar.gz) **3\. Add the** `slack` **CLI to your path.** @@ -123,7 +123,7 @@ We recommend using an alias if another `slack` binary exists. To do this, change ```sh $ slack version -Using slack v4.6.0 +Using slack v4.7.0 ``` diff --git a/docs/guides/installing-the-slack-cli-for-windows.md b/docs/guides/installing-the-slack-cli-for-windows.md index f05b2fd9..d50a6794 100644 --- a/docs/guides/installing-the-slack-cli-for-windows.md +++ b/docs/guides/installing-the-slack-cli-for-windows.md @@ -102,7 +102,7 @@ Manual installation allows you to customize certain paths used when installing t **2\. Download the** `slack` **CLI installer for your environment.** -   Windows (.zip) +   Windows (.zip) **3\. Add the** `slack` **CLI to your path.** @@ -118,7 +118,7 @@ We recommend using an alias if another `slack` binary exists. To do this, change ```pwsh $ slack version -Using slack v4.6.0 +Using slack v4.7.0 ``` diff --git a/docs/reference/commands/slack.md b/docs/reference/commands/slack.md index 551e9fcd..2ecef343 100644 --- a/docs/reference/commands/slack.md +++ b/docs/reference/commands/slack.md @@ -45,7 +45,6 @@ $ slack docs # Open Slack developer docs * [slack api](/tools/slack-cli/reference/commands/slack_api/) - Call any Slack API method * [slack app](/tools/slack-cli/reference/commands/slack_app/) - Install, uninstall, and list teams with the app installed * [slack auth](/tools/slack-cli/reference/commands/slack_auth/) - Add and remove local team authorizations -* [slack blocks](/tools/slack-cli/reference/commands/slack_blocks/) - Build with Block Kit * [slack collaborator](/tools/slack-cli/reference/commands/slack_collaborator/) - Manage app collaborators * [slack create](/tools/slack-cli/reference/commands/slack_create/) - Create a new Slack project * [slack datastore](/tools/slack-cli/reference/commands/slack_datastore/) - Interact with an app's datastore diff --git a/docs/reference/commands/slack_blocks.md b/docs/reference/commands/slack_blocks.md deleted file mode 100644 index ed0d32ba..00000000 --- a/docs/reference/commands/slack_blocks.md +++ /dev/null @@ -1,45 +0,0 @@ -# `slack blocks` - -Build with Block Kit - -## Description - -Build layouts using Block Kit and iterate on designs with Block Kit Builder. - -``` -slack blocks [flags] -``` - -## Flags - -``` - -h, --help help for blocks -``` - -## Global flags - -``` - --accessible use accessible prompts for screen readers - -a, --app string use a specific app ID or environment - --config-dir string use a custom path for system config directory - -e, --experiment strings use the experiment(s) in the command - -f, --force ignore warnings and continue executing command - --no-color remove styles and formatting from outputs - -s, --skip-update skip checking for latest version of CLI - -w, --team string select workspace or organization by team name or ID - --token string set the access token associated with a team - -v, --verbose print debug logging and additional info -``` - -## Examples - -``` -# Preview blocks in Block Kit Builder -$ slack blocks preview --blocks '[{"type":"divider"}]' -``` - -## See also - -* [slack](/tools/slack-cli/reference/commands/slack/) - Slack command-line tool -* [slack blocks preview](/tools/slack-cli/reference/commands/slack_blocks_preview/) - Preview blocks in Block Kit Builder - diff --git a/docs/reference/commands/slack_blocks_preview.md b/docs/reference/commands/slack_blocks_preview.md deleted file mode 100644 index 7f21343e..00000000 --- a/docs/reference/commands/slack_blocks_preview.md +++ /dev/null @@ -1,56 +0,0 @@ -# `slack blocks preview` - -Preview blocks in Block Kit Builder - -## Description - -Preview a set of Block Kit blocks with Block Kit Builder in a web browser. - -Provide blocks with the --blocks flag. -The input is a JSON array of blocks or a JSON object with a "blocks" array. -Pass - to --blocks, or omit all flags, to read from standard input. - -``` -slack blocks preview [flags] -``` - -## Flags - -``` - --blocks string blocks to preview as a JSON array or object - (use - to read from standard input) - -h, --help help for preview -``` - -## Global flags - -``` - --accessible use accessible prompts for screen readers - -a, --app string use a specific app ID or environment - --config-dir string use a custom path for system config directory - -e, --experiment strings use the experiment(s) in the command - -f, --force ignore warnings and continue executing command - --no-color remove styles and formatting from outputs - -s, --skip-update skip checking for latest version of CLI - -w, --team string select workspace or organization by team name or ID - --token string set the access token associated with a team - -v, --verbose print debug logging and additional info -``` - -## Examples - -``` -# Preview blocks passed as a flag value -$ slack blocks preview --blocks '[{"type":"divider"}]' - -# Preview blocks read from a file -$ slack blocks preview < blocks.json - -# Preview blocks read from a redirect and scoped to a team -$ slack blocks preview --team T0123456 --blocks - < blocks.json -``` - -## See also - -* [slack blocks](/tools/slack-cli/reference/commands/slack_blocks/) - Build with Block Kit -