diff --git a/README.md b/README.md index 248a794..7e60bff 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ $ npm install -g @internxt/cli $ internxt COMMAND running command... $ internxt (--version) -@internxt/cli/1.2.0 darwin-arm64 node-v20.10.0 +@internxt/cli/1.2.1 darwin-arm64 node-v20.14.0 $ internxt --help [COMMAND] USAGE $ internxt COMMAND @@ -42,6 +42,7 @@ USAGE # Commands +* [`internxt add-cert`](#internxt-add-cert) * [`internxt config`](#internxt-config) * [`internxt create-folder`](#internxt-create-folder) * [`internxt download`](#internxt-download) @@ -55,6 +56,23 @@ USAGE * [`internxt webdav ACTION`](#internxt-webdav-action) * [`internxt whoami`](#internxt-whoami) +## `internxt add-cert` + +Add a self-signed certificate to the trusted store for macOS, Linux, and Windows. + +``` +USAGE + $ internxt add-cert + +DESCRIPTION + Add a self-signed certificate to the trusted store for macOS, Linux, and Windows. + +EXAMPLES + $ internxt add-cert +``` + +_See code: [src/commands/add-cert.ts](https://github.com/internxt/cli/blob/v1.2.1/src/commands/add-cert.ts)_ + ## `internxt config` Display useful information from the user logged into the Internxt CLI. @@ -82,7 +100,7 @@ EXAMPLES $ internxt config ``` -_See code: [src/commands/config.ts](https://github.com/internxt/cli/blob/v1.2.0/src/commands/config.ts)_ +_See code: [src/commands/config.ts](https://github.com/internxt/cli/blob/v1.2.1/src/commands/config.ts)_ ## `internxt create-folder` @@ -103,7 +121,7 @@ EXAMPLES $ internxt create-folder ``` -_See code: [src/commands/create-folder.ts](https://github.com/internxt/cli/blob/v1.2.0/src/commands/create-folder.ts)_ +_See code: [src/commands/create-folder.ts](https://github.com/internxt/cli/blob/v1.2.1/src/commands/create-folder.ts)_ ## `internxt download` @@ -126,7 +144,7 @@ EXAMPLES $ internxt download ``` -_See code: [src/commands/download.ts](https://github.com/internxt/cli/blob/v1.2.0/src/commands/download.ts)_ +_See code: [src/commands/download.ts](https://github.com/internxt/cli/blob/v1.2.1/src/commands/download.ts)_ ## `internxt list` @@ -160,7 +178,7 @@ EXAMPLES $ internxt list ``` -_See code: [src/commands/list.ts](https://github.com/internxt/cli/blob/v1.2.0/src/commands/list.ts)_ +_See code: [src/commands/list.ts](https://github.com/internxt/cli/blob/v1.2.1/src/commands/list.ts)_ ## `internxt login` @@ -186,7 +204,7 @@ EXAMPLES $ internxt login ``` -_See code: [src/commands/login.ts](https://github.com/internxt/cli/blob/v1.2.0/src/commands/login.ts)_ +_See code: [src/commands/login.ts](https://github.com/internxt/cli/blob/v1.2.1/src/commands/login.ts)_ ## `internxt logout` @@ -203,7 +221,7 @@ EXAMPLES $ internxt logout ``` -_See code: [src/commands/logout.ts](https://github.com/internxt/cli/blob/v1.2.0/src/commands/logout.ts)_ +_See code: [src/commands/logout.ts](https://github.com/internxt/cli/blob/v1.2.1/src/commands/logout.ts)_ ## `internxt logs` @@ -220,7 +238,7 @@ EXAMPLES $ internxt logs ``` -_See code: [src/commands/logs.ts](https://github.com/internxt/cli/blob/v1.2.0/src/commands/logs.ts)_ +_See code: [src/commands/logs.ts](https://github.com/internxt/cli/blob/v1.2.1/src/commands/logs.ts)_ ## `internxt move` @@ -245,7 +263,7 @@ EXAMPLES $ internxt move ``` -_See code: [src/commands/move.ts](https://github.com/internxt/cli/blob/v1.2.0/src/commands/move.ts)_ +_See code: [src/commands/move.ts](https://github.com/internxt/cli/blob/v1.2.1/src/commands/move.ts)_ ## `internxt trash` @@ -269,7 +287,7 @@ EXAMPLES $ internxt trash ``` -_See code: [src/commands/trash.ts](https://github.com/internxt/cli/blob/v1.2.0/src/commands/trash.ts)_ +_See code: [src/commands/trash.ts](https://github.com/internxt/cli/blob/v1.2.1/src/commands/trash.ts)_ ## `internxt upload` @@ -293,7 +311,7 @@ EXAMPLES $ internxt upload ``` -_See code: [src/commands/upload.ts](https://github.com/internxt/cli/blob/v1.2.0/src/commands/upload.ts)_ +_See code: [src/commands/upload.ts](https://github.com/internxt/cli/blob/v1.2.1/src/commands/upload.ts)_ ## `internxt webdav ACTION` @@ -316,7 +334,7 @@ EXAMPLES $ internxt webdav status ``` -_See code: [src/commands/webdav.ts](https://github.com/internxt/cli/blob/v1.2.0/src/commands/webdav.ts)_ +_See code: [src/commands/webdav.ts](https://github.com/internxt/cli/blob/v1.2.1/src/commands/webdav.ts)_ ## `internxt whoami` @@ -333,7 +351,7 @@ EXAMPLES $ internxt whoami ``` -_See code: [src/commands/whoami.ts](https://github.com/internxt/cli/blob/v1.2.0/src/commands/whoami.ts)_ +_See code: [src/commands/whoami.ts](https://github.com/internxt/cli/blob/v1.2.1/src/commands/whoami.ts)_ # Current Limitations diff --git a/package.json b/package.json index 64c25b6..2d040cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "author": "PixoDev", - "version": "1.2.0", + "version": "1.2.1", "description": "Internxt CLI to manage your encrypted storage", "scripts": { "build": "tsc",