@usetransactional/cli 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/bin.js +1 -1
- package/dist/bin.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @usetransactional/cli
|
|
2
2
|
|
|
3
3
|
Official command-line interface for [Transactional](https://usetransactional.com) - manage email, SMS, forms, and more from your terminal.
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/@usetransactional/cli)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
|
|
8
8
|
## Installation
|
|
9
9
|
|
|
10
10
|
```bash
|
|
11
|
-
npm install -g
|
|
11
|
+
npm install -g @usetransactional/cli
|
|
12
12
|
```
|
|
13
13
|
|
|
14
14
|
Or using npx without installation:
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
npx
|
|
17
|
+
npx @usetransactional/cli login
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
## Quick Start
|
package/dist/bin.js
CHANGED
|
@@ -1548,7 +1548,7 @@ function createMcpCommand() {
|
|
|
1548
1548
|
initConfig();
|
|
1549
1549
|
function createProgram() {
|
|
1550
1550
|
const program2 = new Command();
|
|
1551
|
-
program2.name("transactional").description("CLI for Transactional - manage email, SMS, forms, and more").version("0.1.
|
|
1551
|
+
program2.name("transactional").description("CLI for Transactional - manage email, SMS, forms, and more").version("0.1.2");
|
|
1552
1552
|
program2.addCommand(createLoginCommand());
|
|
1553
1553
|
program2.addCommand(createLogoutCommand());
|
|
1554
1554
|
program2.addCommand(createWhoamiCommand());
|