Skip to content

Commit

Permalink
chore(release): 1.7.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.7.0](v1.6.0...v1.7.0) (2023-08-03)

### Features

* allowing reactor formulas to be updated ([#14](#14)) ([997254a](997254a))
  • Loading branch information
semantic-release-bot committed Aug 3, 2023
1 parent 997254a commit dcc0916
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [1.7.0](https://github.com/Basis-Theory-Labs/basistheory-cli/compare/v1.6.0...v1.7.0) (2023-08-03)


### Features

* allowing reactor formulas to be updated ([#14](https://github.com/Basis-Theory-Labs/basistheory-cli/issues/14)) ([997254a](https://github.com/Basis-Theory-Labs/basistheory-cli/commit/997254a1ff21f653acc49b9d569ccfcfe570ad7f))

# [1.6.0](https://github.com/Basis-Theory-Labs/basistheory-cli/compare/v1.5.2...v1.6.0) (2023-07-24)


Expand Down
61 changes: 58 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $ npm install -g @basis-theory-labs/cli
$ bt COMMAND
running command...
$ bt (--version)
@basis-theory-labs/cli/1.6.0 linux-x64 node-v18.16.1
@basis-theory-labs/cli/1.7.0 linux-x64 node-v18.17.0
$ bt --help [COMMAND]
USAGE
$ bt COMMAND
Expand All @@ -33,6 +33,8 @@ USAGE
* [`bt proxies delete ID`](#bt-proxies-delete-id)
* [`bt proxies logs [ID]`](#bt-proxies-logs-id)
* [`bt proxies update ID`](#bt-proxies-update-id)
* [`bt reactorFormulas`](#bt-reactorformulas)
* [`bt reactorFormulas update ID`](#bt-reactorformulas-update-id)
* [`bt reactors`](#bt-reactors)
* [`bt reactors logs [ID]`](#bt-reactors-logs-id)

Expand All @@ -55,7 +57,7 @@ EXAMPLES
$ bt proxies
```

_See code: [dist/commands/proxies/index.ts](https://github.com/Basis-Theory-Labs/basistheory-cli/blob/v1.6.0/dist/commands/proxies/index.ts)_
_See code: [dist/commands/proxies/index.ts](https://github.com/Basis-Theory-Labs/basistheory-cli/blob/v1.7.0/dist/commands/proxies/index.ts)_

## `bt proxies create`

Expand Down Expand Up @@ -169,6 +171,59 @@ EXAMPLES
$ bt proxies update 03858bf5-32d3-4a2e-b74b-daeea0883bca --configuration ./.env.proxy
```

## `bt reactorFormulas`

List Reactor Formulas. Requires `reactor:read` Management Application permission

```
USAGE
$ bt reactorFormulas -x <value> [-p <value>]
FLAGS
-p, --page=<value> [default: 1] reactors formulas list page to fetch
-x, --management-key=<value> (required) management key used for connecting with the reactor / proxy
DESCRIPTION
List Reactor Formulas. Requires `reactor:read` Management Application permission
EXAMPLES
$ bt reactorFormulas
```

_See code: [dist/commands/reactorFormulas/index.ts](https://github.com/Basis-Theory-Labs/basistheory-cli/blob/v1.7.0/dist/commands/reactorFormulas/index.ts)_

## `bt reactorFormulas update ID`

Updates an existing Reactor Formula. Requires `reactor:update` Management Application permission

```
USAGE
$ bt reactorFormulas update ID -x <value> -n <value> -s <value> -c <value> -p <value> [-d <value>] [-i <value>] [-w]
ARGUMENTS
ID Reactor Formula id to update
FLAGS
-c, --configuration=<value> (required) path to configuration definition to use in the Reactor Formula
-d, --description=<value> description of the Reactor Formula
-i, --icon=<value> icon of the Reactor Formula
-n, --name=<value> (required) name of the Reactor Formula
-p, --request-parameters=<value> (required) path to request params definition to use in the Reactor Formula
-s, --code=<value> (required) path to JavaScript file containing code
-w, --watch Watch for changes in informed files
-x, --management-key=<value> (required) management key used for connecting with the reactor / proxy
DESCRIPTION
Updates an existing Reactor Formula. Requires `reactor:update` Management Application permission
EXAMPLES
$ bt reactorFormulas update 03858bf5-32d3-4a2e-b74b-daeea0883bca
$ bt reactorFormulas update 03858bf5-32d3-4a2e-b74b-daeea0883bca --code ./formula.js
$ bt reactorFormulas update 03858bf5-32d3-4a2e-b74b-daeea0883bca --code ./formula.js -w
```

## `bt reactors`

List Reactors. Requires `reactor:read` Management Application permission
Expand All @@ -188,7 +243,7 @@ EXAMPLES
$ bt reactors
```

_See code: [dist/commands/reactors/index.ts](https://github.com/Basis-Theory-Labs/basistheory-cli/blob/v1.6.0/dist/commands/reactors/index.ts)_
_See code: [dist/commands/reactors/index.ts](https://github.com/Basis-Theory-Labs/basistheory-cli/blob/v1.7.0/dist/commands/reactors/index.ts)_

## `bt reactors logs [ID]`

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@basis-theory-labs/cli",
"version": "1.6.0",
"version": "1.7.0",
"description": "Basis Theory CLI tool",
"author": "Davi Aquino @djejaquino",
"bin": {
Expand Down

0 comments on commit dcc0916

Please sign in to comment.