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

Commit 0011bc2

Browse files
author
Satana Charuwichitratana
authored
Merge pull request #43 from intocode-io/1.1.x
Release 1.1.0
2 parents b6657c5 + 01201da commit 0011bc2

File tree

65 files changed

+2697
-64
lines changed

Some content is hidden

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

65 files changed

+2697
-64
lines changed

.github/workflows/test.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: test
22

3-
on: [pull_request]
3+
on:
4+
pull_request:
5+
branches:
6+
- '1.*'
47

58
jobs:
69
build:

.prettierrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": true,
3+
"tabWidth": 2,
4+
"trailingComma": "none"
5+
}

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
## [1.1.0]
44
### Added
55
- `things list:trial`
6+
- `things add:trial`
67
- `things remove:trial`
8+
- `things get:device` Get device information by device ID and user ID
9+
- `things get:product` Specify the device ID, and acquire the product ID and PSDI
10+
- `things get:devices` Specify the product ID and user ID, and acquire the device information
711

812
## [1.0.0]
913
### Added

README.md

+32-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,14 @@ LINE API CLI helps you to work with LINE-API-related projects faster as you do n
3232
- `remove`
3333
- `update`
3434
- `list`
35-
- `things` (upcoming)
35+
- `things`
36+
- `add:trial`
37+
- `remove:trial`
38+
- `list:trial`
39+
- `get:device`
40+
- `get:devices`
41+
- `get:product`
42+
- (Upcoming features in v1.2.0) Scenario management API for automatic communication
3643

3744
## Installation
3845

@@ -178,12 +185,36 @@ liff update
178185
things list:trial
179186
```
180187

188+
### Add a trial product
189+
190+
```
191+
things add:trial
192+
```
193+
181194
### Remove a trial product
182195

183196
```
184197
things remove:trial
185198
```
186199

200+
### Get device information by device ID and user ID
201+
202+
```
203+
things get:device
204+
```
205+
206+
### Specify the product ID and user ID, and acquire the device information
207+
208+
```
209+
things get:devices
210+
```
211+
212+
### Specify the device ID, and acquire the product ID and PSDI
213+
214+
```
215+
things get:product
216+
```
217+
187218
## Comprehensive usage
188219

189220
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-add-trial-request.js

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

bin/apis/things-add-trial-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-get-device-by-device-user-request.js

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

bin/apis/things-get-device-by-device-user-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-get-device-request.js

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

bin/apis/things-get-device-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-get-devices-by-product-user-request.js

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

bin/apis/things-get-devices-by-product-user-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

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

0 commit comments

Comments
 (0)