Skip to content
This repository was archived by the owner on Feb 5, 2025. It is now read-only.

Commit cb4d075

Browse files
author
Satana Charuwichitratana
authored
Merge pull request #51 from intocode-io/1.2.x
Release 1.2.0
2 parents 0011bc2 + 55d8a12 commit cb4d075

File tree

66 files changed

+2122
-37
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+2122
-37
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [1.2.0]
4+
### Added
5+
- `things register:scenario-set` Register (create or update) a scenario set for automatic communication under a product.
6+
- `things get:scenario-set` Get the scenario set registered under a product
7+
- `things remove:scenario-set` Delete a scenario set registered under a product
8+
39
## [1.1.0]
410
### Added
511
- `things list:trial`

README.md

+29-2
Original file line numberDiff line numberDiff line change
@@ -14,32 +14,39 @@ Command line interface for LINE APIs. This module will help you to easily work w
1414
LINE API CLI helps you to work with LINE-API-related projects faster as you do not need to switch between a web browser and IDE ( after your first-time setup :P ). If you already are a hardcore "Terminal/Console" fanboy that using cURL to work with LINE APIs, using this package will reduce your time typing same long API cURL commands.
1515

1616
### Available commands, operations, and options
17-
17+
#### LINE API configuration and token management
1818
- `line`
1919
- `init`
2020
- `token`
2121
- `--issue`
2222
- `--revoke`
23+
#### Richmenu API
2324
- `richmenu`
2425
- `add`
2526
- `remove`
2627
- `list`
2728
- `default`
2829
- `link`
2930
- `unlink`
31+
#### LIFF API v1
3032
- `liff`
3133
- `add`
3234
- `remove`
3335
- `update`
3436
- `list`
37+
#### LINE Things API
3538
- `things`
3639
- `add:trial`
3740
- `remove:trial`
3841
- `list:trial`
3942
- `get:device`
4043
- `get:devices`
4144
- `get:product`
42-
- (Upcoming features in v1.2.0) Scenario management API for automatic communication
45+
#### Scenario management API for automatic communication
46+
- `things`
47+
- `register:scenario-set`
48+
- `remove:scenario-set`
49+
- `get:scenario-set`
4350

4451
## Installation
4552

@@ -215,6 +222,26 @@ things get:devices
215222
things get:product
216223
```
217224

225+
## Scenario management API for automatic communication
226+
227+
### Register (create or update) a scenario set for automatic communication under a product
228+
229+
```
230+
things register:scenario-set
231+
```
232+
233+
### Get the scenario set registered under a product
234+
235+
```
236+
things get:scenario-set
237+
```
238+
239+
### Delete a scenario set registered under a product
240+
241+
```
242+
things remove:scenario-set
243+
```
244+
218245
## Comprehensive usage
219246

220247
We provide comprehensive usage of each command / operation / option with CLI. Simply run a command with/without operation and follow by `--help` option. For example,

bin/apis/things-get-product-scenario-set-request.js

+35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/apis/things-get-product-scenario-set-request.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/apis/things-remove-product-scenario-set-request.js

+35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/apis/things-remove-product-scenario-set-request.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/apis/things-update-product-scenario-set-request.js

+36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/apis/things-update-product-scenario-set-request.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/commands/things-command.js

+25-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/commands/things-command.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/index.js

+22-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)