Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"bright-kings-sort",
"calm-rats-battle",
"chilly-chicken-taste",
"clean-bulldogs-deny",
"cool-singers-dream",
"early-zoos-speak",
"eight-apricots-lie",
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## 1.0.0-beta.19

### Patch Changes

- [#410](https://github.com/SmartThingsCommunity/smartthings-cli/pull/410) [`4bff9ea`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/4bff9eac6bac23daa0b995fb0be64d919e409b2c) Thanks [@rossiam](https://github.com/rossiam)! - incorporate edge plugin into monorepo

- Updated dependencies [[`4bff9ea`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/4bff9eac6bac23daa0b995fb0be64d919e409b2c)]:
- @smartthings/plugin-cli-edge@2.0.0-beta.1

## 1.0.0-beta.18

### Patch Changes
Expand Down
240 changes: 120 additions & 120 deletions packages/cli/README.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@smartthings/cli",
"version": "1.0.0-beta.18",
"version": "1.0.0-beta.19",
"description": "Command Line Interface for the SmartThings APIs",
"author": "SmartThings, Inc.",
"bin": {
Expand Down Expand Up @@ -77,7 +77,7 @@
"@oclif/plugin-plugins": "^2.1.0",
"@smartthings/cli-lib": "^1.0.0-beta.16",
"@smartthings/core-sdk": "^5.1.1",
"@smartthings/plugin-cli-edge": "^2.0.0-beta.0",
"@smartthings/plugin-cli-edge": "^2.0.0-beta.1",
"aws-sdk": "^2.1175.0",
"inquirer": "^8.2.4",
"js-yaml": "^4.1.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/edge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @smartthings/plugin-cli-edge

## 2.0.0-beta.1

### Patch Changes

- [#410](https://github.com/SmartThingsCommunity/smartthings-cli/pull/410) [`4bff9ea`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/4bff9eac6bac23daa0b995fb0be64d919e409b2c) Thanks [@rossiam](https://github.com/rossiam)! - incorporate edge plugin into monorepo
48 changes: 24 additions & 24 deletions packages/edge/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ EXAMPLES
$ smartthings edge:channels --subscriber-type HUB --subscriber-id <hub-id>
```

_See code: [src/commands/edge/channels.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/channels.ts)_
_See code: [src/commands/edge/channels.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/channels.ts)_

## `smartthings edge:channels:assign [DRIVERID] [VERSION]`

Expand Down Expand Up @@ -130,7 +130,7 @@ ALIASES
$ smartthings edge:drivers:publish
```

_See code: [src/commands/edge/channels/assign.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/channels/assign.ts)_
_See code: [src/commands/edge/channels/assign.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/channels/assign.ts)_

## `smartthings edge:channels:assignments [IDORINDEX]`

Expand Down Expand Up @@ -190,7 +190,7 @@ DESCRIPTION
create a channel
```

_See code: [src/commands/edge/channels/create.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/channels/create.ts)_
_See code: [src/commands/edge/channels/create.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/channels/create.ts)_

## `smartthings edge:channels:delete [ID]`

Expand All @@ -216,7 +216,7 @@ DESCRIPTION
delete a channel
```

_See code: [src/commands/edge/channels/delete.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/channels/delete.ts)_
_See code: [src/commands/edge/channels/delete.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/channels/delete.ts)_

## `smartthings edge:channels:drivers [IDORINDEX]`

Expand Down Expand Up @@ -249,7 +249,7 @@ ALIASES
$ smartthings edge:channels:assignments
```

_See code: [src/commands/edge/channels/drivers.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/channels/drivers.ts)_
_See code: [src/commands/edge/channels/drivers.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/channels/drivers.ts)_

## `smartthings edge:channels:enroll [HUBID]`

Expand Down Expand Up @@ -277,7 +277,7 @@ DESCRIPTION
enroll a hub in a channel
```

_See code: [src/commands/edge/channels/enroll.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/channels/enroll.ts)_
_See code: [src/commands/edge/channels/enroll.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/channels/enroll.ts)_

## `smartthings edge:channels:enrollments [IDORINDEX]`

Expand Down Expand Up @@ -307,7 +307,7 @@ DESCRIPTION
list all channels a given hub is enrolled in
```

_See code: [src/commands/edge/channels/enrollments.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/channels/enrollments.ts)_
_See code: [src/commands/edge/channels/enrollments.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/channels/enrollments.ts)_

## `smartthings edge:channels:invitations [IDORINDEX]`

Expand Down Expand Up @@ -511,7 +511,7 @@ EXAMPLES
$ smartthings edge:channels:invites <invite id> # list details about the invite with id <invite id>
```

_See code: [src/commands/edge/channels/invites.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/channels/invites.ts)_
_See code: [src/commands/edge/channels/invites.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/channels/invites.ts)_

## `smartthings edge:channels:invites:accept ID`

Expand Down Expand Up @@ -540,7 +540,7 @@ ALIASES
$ smartthings edge:channels:invitations:accept
```

_See code: [src/commands/edge/channels/invites/accept.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/channels/invites/accept.ts)_
_See code: [src/commands/edge/channels/invites/accept.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/channels/invites/accept.ts)_

## `smartthings edge:channels:invites:create`

Expand Down Expand Up @@ -573,7 +573,7 @@ ALIASES
$ smartthings edge:channels:invitations:create
```

_See code: [src/commands/edge/channels/invites/create.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/channels/invites/create.ts)_
_See code: [src/commands/edge/channels/invites/create.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/channels/invites/create.ts)_

## `smartthings edge:channels:invites:delete [ID]`

Expand Down Expand Up @@ -606,7 +606,7 @@ ALIASES
$ smartthings edge:channels:invites:revoke
```

_See code: [src/commands/edge/channels/invites/delete.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/channels/invites/delete.ts)_
_See code: [src/commands/edge/channels/invites/delete.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/channels/invites/delete.ts)_

## `smartthings edge:channels:invites:revoke [ID]`

Expand Down Expand Up @@ -681,7 +681,7 @@ EXAMPLES
699c7308-8c72-4363-9571-880d0f5cc725
```

_See code: [src/commands/edge/channels/metainfo.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/channels/metainfo.ts)_
_See code: [src/commands/edge/channels/metainfo.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/channels/metainfo.ts)_

## `smartthings edge:channels:unassign [DRIVERID]`

Expand Down Expand Up @@ -712,7 +712,7 @@ ALIASES
$ smartthings edge:drivers:unpublish
```

_See code: [src/commands/edge/channels/unassign.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/channels/unassign.ts)_
_See code: [src/commands/edge/channels/unassign.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/channels/unassign.ts)_

## `smartthings edge:channels:unenroll [HUBID]`

Expand Down Expand Up @@ -740,7 +740,7 @@ DESCRIPTION
unenroll a hub from a channel
```

_See code: [src/commands/edge/channels/unenroll.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/channels/unenroll.ts)_
_See code: [src/commands/edge/channels/unenroll.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/channels/unenroll.ts)_

## `smartthings edge:channels:update [ID]`

Expand Down Expand Up @@ -772,7 +772,7 @@ DESCRIPTION
update a channel
```

_See code: [src/commands/edge/channels/update.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/channels/update.ts)_
_See code: [src/commands/edge/channels/update.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/channels/update.ts)_

## `smartthings edge:drivers [IDORINDEX]`

Expand Down Expand Up @@ -823,7 +823,7 @@ EXAMPLES
$ smartthings edge:drivers 699c7308-8c72-4363-9571-880d0f5cc725 --version 2021-10-25T00:48:23.295969
```

_See code: [src/commands/edge/drivers.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/drivers.ts)_
_See code: [src/commands/edge/drivers.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/drivers.ts)_

## `smartthings edge:drivers:default`

Expand Down Expand Up @@ -855,7 +855,7 @@ EXAMPLES
$ smartthings edge:drivers:default
```

_See code: [src/commands/edge/drivers/default.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/drivers/default.ts)_
_See code: [src/commands/edge/drivers/default.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/drivers/default.ts)_

## `smartthings edge:drivers:delete [ID]`

Expand All @@ -881,7 +881,7 @@ DESCRIPTION
delete an edge driver
```

_See code: [src/commands/edge/drivers/delete.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/drivers/delete.ts)_
_See code: [src/commands/edge/drivers/delete.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/drivers/delete.ts)_

## `smartthings edge:drivers:install [DRIVERID]`

Expand Down Expand Up @@ -917,7 +917,7 @@ EXAMPLES
$ smartthings edge:drivers:install -H <hub-id> -C <channel-id> <driver-id> # install a driver from a channel on an enrolled hub
```

_See code: [src/commands/edge/drivers/install.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/drivers/install.ts)_
_See code: [src/commands/edge/drivers/install.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/drivers/install.ts)_

## `smartthings edge:drivers:installed [IDORINDEX]`

Expand Down Expand Up @@ -949,7 +949,7 @@ DESCRIPTION
list all drivers installed on a given hub
```

_See code: [src/commands/edge/drivers/installed.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/drivers/installed.ts)_
_See code: [src/commands/edge/drivers/installed.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/drivers/installed.ts)_

## `smartthings edge:drivers:logcat [DRIVERID]`

Expand Down Expand Up @@ -979,7 +979,7 @@ DESCRIPTION
stream logs from installed drivers
```

_See code: [src/commands/edge/drivers/logcat.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/drivers/logcat.ts)_
_See code: [src/commands/edge/drivers/logcat.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/drivers/logcat.ts)_

## `smartthings edge:drivers:package [PROJECTDIRECTORY]`

Expand Down Expand Up @@ -1035,7 +1035,7 @@ EXAMPLES
$ smartthings edge:drivers:package -u driver.zip
```

_See code: [src/commands/edge/drivers/package.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/drivers/package.ts)_
_See code: [src/commands/edge/drivers/package.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/drivers/package.ts)_

## `smartthings edge:drivers:publish [DRIVERID] [VERSION]`

Expand Down Expand Up @@ -1106,7 +1106,7 @@ EXAMPLES
$ smartthings edge:drivers:switch --include-non-matching
```

_See code: [src/commands/edge/drivers/switch.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/drivers/switch.ts)_
_See code: [src/commands/edge/drivers/switch.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/drivers/switch.ts)_

## `smartthings edge:drivers:uninstall [DRIVERID]`

Expand Down Expand Up @@ -1134,7 +1134,7 @@ DESCRIPTION
uninstall an edge driver from a hub
```

_See code: [src/commands/edge/drivers/uninstall.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.0/src/commands/edge/drivers/uninstall.ts)_
_See code: [src/commands/edge/drivers/uninstall.ts](https://github.com/SmartThingsCommunity/smartthings-cli/blob/v2.0.0-beta.1/src/commands/edge/drivers/uninstall.ts)_

## `smartthings edge:drivers:unpublish [DRIVERID]`

Expand Down
2 changes: 1 addition & 1 deletion packages/edge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@smartthings/plugin-cli-edge",
"version": "2.0.0-beta.0",
"version": "2.0.0-beta.1",
"description": "Edge-related SmartThings CLI commands",
"author": "SmartThings, Inc.",
"bugs": {
Expand Down