Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: Drop support old Node version and integrate typescript SDK #548

Merged
merged 28 commits into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node: ['14', '16', '18']
exclude:
- os: macos-latest
node: 14
node: ['18', '20', '22']
name: Node ${{ matrix.node }} on ${{ matrix.os }}
steps:
- name: Checkout
Expand Down
28 changes: 16 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Box CLI

[![Project Status](http://opensource.box.com/badges/active.svg)](http://opensource.box.com/badges)
![Platform](https://img.shields.io/badge/node-14--18-blue)
![Platform](https://img.shields.io/badge/node-18--22-blue)
[![Coverage](https://coveralls.io/repos/github/box/boxcli/badge.svg?branch=main)](https://coveralls.io/github/box/boxcli?branch=main)


Expand All @@ -21,17 +21,21 @@ Among other features, Box CLI includes the following functionality:
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->

- [Getting Started](#getting-started)
- [CLI Installation](#cli-installation)
- [CLI and Server Authentication with JWT](#cli-and-server-authentication-with-jwt)
- [Usage](#usage)
- [Box CLI](#box-cli)
- [Table of contents](#table-of-contents)
- [Getting Started](#getting-started)
- [CLI Installation](#cli-installation)
- [Windows \& macOS Installers](#windows--macos-installers)
- [Linux \& Node install](#linux--node-install)
- [CLI and Server Authentication with JWT](#cli-and-server-authentication-with-jwt)
- [Usage](#usage)
- [Command Topics](#command-topics)
- [Questions, Bugs, and Feature Requests?](#questions-bugs-and-feature-requests)
- [Versions](#versions)
- [Supported Version](#supported-version)
- [Version schedule](#version-schedule)
- [Contributing to the Box CLI](#contributing-to-the-box-cli)
- [Copyright and License](#copyright-and-license)
- [Questions, Bugs, and Feature Requests?](#questions-bugs-and-feature-requests)
- [Versions](#versions)
- [Supported Version](#supported-version)
- [Version schedule](#version-schedule)
- [Contributing to the Box CLI](#contributing-to-the-box-cli)
- [Copyright and License](#copyright-and-license)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

Expand Down Expand Up @@ -185,7 +189,7 @@ A current release is on the leading edge of our SDK development, and is intended

| Version | Supported Environments | State | First Release | EOL/Terminated |
|---------|-------------------------|-----------|---------------|----------------|
| 3 | Node.js >= 14 | Supported | 01 Feb 2022 | TBD |
| 3 | Node.js >= 18 | Supported | 01 Feb 2022 | TBD |
congminh1254 marked this conversation as resolved.
Show resolved Hide resolved
| 2 | | EOL | 14 Dec 2018 | 01 Feb 2022 |
| 1 | | EOL | 01 Nov 2017 | 14 Dec 2018 |

Expand Down
5 changes: 3 additions & 2 deletions docs/ai.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@

Sends an AI request to supported LLMs and returns an answer

* [`box ai:ask`](#box-aiask)
* [`box ai:text-gen`](#box-aitext-gen)
- [`box ai`](#box-ai)
- [`box ai:ask`](#box-aiask)
- [`box ai:text-gen`](#box-aitext-gen)

## `box ai:ask`

Expand Down
Loading
Loading