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
2 changes: 2 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@
"long-dryers-nail",
"mean-shoes-heal",
"moody-fishes-protect",
"neat-buses-unite",
"nice-files-approve",
"odd-fireants-act",
"old-rocks-try",
"proud-cameras-visit",
"purple-steaks-behave",
"quick-brooms-develop",
"selfish-pears-joke",
Expand Down
18 changes: 9 additions & 9 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.14

### Patch Changes

- [#381](https://github.com/SmartThingsCommunity/smartthings-cli/pull/381) [`852cdd7`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/852cdd748497f66628c6ef810a312594731efe48) Thanks [@john-u](https://github.com/john-u)! - resolve logcat command bug that was ignoring all messages from the hub

- Updated dependencies [[`ea04f1e`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/ea04f1ed890201608f921979c0c3b3a647ce6e59)]:
- @smartthings/cli-lib@1.0.0-beta.14

## 1.0.0-beta.13

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

Large diffs are not rendered by default.

6 changes: 3 additions & 3 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.13",
"version": "1.0.0-beta.14",
"description": "Command Line Interface for the SmartThings APIs",
"author": "SmartThings, Inc.",
"bin": {
Expand Down Expand Up @@ -70,7 +70,7 @@
"@oclif/plugin-autocomplete": "^1.3.0",
"@oclif/plugin-not-found": "^2.3.1",
"@oclif/plugin-plugins": "^2.1.0",
"@smartthings/cli-lib": "^1.0.0-beta.13",
"@smartthings/cli-lib": "^1.0.0-beta.14",
"@smartthings/core-sdk": "^5.1.1",
"@smartthings/plugin-cli-edge": "^1.15.2",
"aws-sdk": "^2.1175.0",
Expand All @@ -79,7 +79,7 @@
"log4js": "^6.6.0"
},
"devDependencies": {
"@smartthings/cli-testlib": "^1.0.0-beta.8",
"@smartthings/cli-testlib": "^1.0.0-beta.9",
"@types/inquirer": "^8.2.1",
"@types/jest": "^28.1.5",
"@types/js-yaml": "^4.0.5",
Expand Down
12 changes: 12 additions & 0 deletions packages/lib/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## 1.0.0-beta.14

### Patch Changes

- [#377](https://github.com/SmartThingsCommunity/smartthings-cli/pull/377) [`ea04f1e`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/ea04f1ed890201608f921979c0c3b3a647ce6e59) Thanks [@rossiam](https://github.com/rossiam)! - clean-up refactor of command helper functions (functions we use to do most of the work for most of our commands like `selectFromList` and `formatAndWriteItem`)

- made the `Sorting` interface generic, dependent on the type of the object being sorted
- changed type of `primaryKeyName` and `sortingKeyName` for `Sorting` interface to constrain them to string keys from the object being sorted
- added `extends object` constraint to objects handled by command helper functions
- rename `outputListing` to `outputItemOrList` and `outputListingGeneric` to `outputItemOrListGeneric`
- update/add config types for command helper functions with consistent naming (`InputAndOutputItemConfig` for `inputAndOutputItem`, `FormatAndWriteItemConfig` for `formatAndWriteItem`, etc.)

## 1.0.0-beta.13

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@smartthings/cli-lib",
"version": "1.0.0-beta.13",
"version": "1.0.0-beta.14",
"description": "SmartThings CLI utility library",
"author": "SmartThings, Inc.",
"bugs": {
Expand Down
15 changes: 15 additions & 0 deletions packages/testlib/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Change Log

## 1.0.0-beta.9

### Patch Changes

- [#377](https://github.com/SmartThingsCommunity/smartthings-cli/pull/377) [`ea04f1e`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/ea04f1ed890201608f921979c0c3b3a647ce6e59) Thanks [@rossiam](https://github.com/rossiam)! - clean-up refactor of command helper functions (functions we use to do most of the work for most of our commands like `selectFromList` and `formatAndWriteItem`)

- made the `Sorting` interface generic, dependent on the type of the object being sorted
- changed type of `primaryKeyName` and `sortingKeyName` for `Sorting` interface to constrain them to string keys from the object being sorted
- added `extends object` constraint to objects handled by command helper functions
- rename `outputListing` to `outputItemOrList` and `outputListingGeneric` to `outputItemOrListGeneric`
- update/add config types for command helper functions with consistent naming (`InputAndOutputItemConfig` for `inputAndOutputItem`, `FormatAndWriteItemConfig` for `formatAndWriteItem`, etc.)

- Updated dependencies [[`ea04f1e`](https://github.com/SmartThingsCommunity/smartthings-cli/commit/ea04f1ed890201608f921979c0c3b3a647ce6e59)]:
- @smartthings/cli-lib@1.0.0-beta.14

## 1.0.0-beta.8

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/testlib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@smartthings/cli-testlib",
"version": "1.0.0-beta.8",
"version": "1.0.0-beta.9",
"description": "SmartThings CLI testing utility methods library",
"author": "SmartThings, Inc.",
"bugs": {
Expand Down Expand Up @@ -28,7 +28,7 @@
"directory": "packages/testlib"
},
"dependencies": {
"@smartthings/cli-lib": "^1.0.0-beta.13",
"@smartthings/cli-lib": "^1.0.0-beta.14",
"@smartthings/core-sdk": "^5.1.1"
},
"devDependencies": {
Expand Down