Skip to content

Commit

Permalink
chore(release): publish
Browse files Browse the repository at this point in the history
  • Loading branch information
kellyjandrews committed Feb 25, 2022
1 parent bc76c62 commit 812f977
Show file tree
Hide file tree
Showing 30 changed files with 142 additions and 66 deletions.
11 changes: 11 additions & 0 deletions packages/applications/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.1.2](https://github.com/Vonage/vonage-cli/compare/@vonage/[email protected]...@vonage/[email protected]) (2022-02-25)


### Bug Fixes

* Args not found bug ([#50](https://github.com/Vonage/vonage-cli/issues/50)) ([bc76c62](https://github.com/Vonage/vonage-cli/commit/bc76c62188e4d9dbbae069daa5c2a7e4cee88a29))





## [1.1.1](https://github.com/Vonage/vonage-cli/compare/@vonage/[email protected]...@vonage/[email protected]) (2022-02-22)


Expand Down
18 changes: 9 additions & 9 deletions packages/applications/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ $ npm install -g @vonage/cli-plugin-applications
$ oclif-example COMMAND
running command...
$ oclif-example (-v|--version|version)
@vonage/cli-plugin-applications/1.1.1 linux-x64 node-v12.18.2
@vonage/cli-plugin-applications/1.1.2 linux-x64 node-v16.14.0
$ oclif-example --help [COMMAND]
USAGE
$ oclif-example COMMAND
Expand Down Expand Up @@ -54,7 +54,7 @@ EXAMPLES
vonage apps --output=json
```

_See code: [dist/commands/apps/index.ts](https://github.com/Vonage/vonage-cli/blob/v1.1.1/dist/commands/apps/index.ts)_
_See code: [dist/commands/apps/index.ts](https://github.com/Vonage/vonage-cli/blob/v1.1.2/dist/commands/apps/index.ts)_

## `oclif-example apps:create [NAME]`

Expand Down Expand Up @@ -94,10 +94,10 @@ OPTIONS
EXAMPLES
vonage apps:create
vonage apps:create APP_NAME --voice_answer_url=https://www.sample.com
vonage apps:create APP_NAME --voice_answer_url=https://www.sample.com --voice_event_url=https://www.sample.com
```

_See code: [dist/commands/apps/create.ts](https://github.com/Vonage/vonage-cli/blob/v1.1.1/dist/commands/apps/create.ts)_
_See code: [dist/commands/apps/create.ts](https://github.com/Vonage/vonage-cli/blob/v1.1.2/dist/commands/apps/create.ts)_

## `oclif-example apps:delete [APPID]`

Expand All @@ -115,7 +115,7 @@ EXAMPLES
vonage apps:delete
```

_See code: [dist/commands/apps/delete.ts](https://github.com/Vonage/vonage-cli/blob/v1.1.1/dist/commands/apps/delete.ts)_
_See code: [dist/commands/apps/delete.ts](https://github.com/Vonage/vonage-cli/blob/v1.1.2/dist/commands/apps/delete.ts)_

## `oclif-example apps:link [APPID] --number=[NUMBER]`

Expand All @@ -130,7 +130,7 @@ OPTIONS
--number=number (required) Owned number to be assigned
```

_See code: [dist/commands/apps/link.ts](https://github.com/Vonage/vonage-cli/blob/v1.1.1/dist/commands/apps/link.ts)_
_See code: [dist/commands/apps/link.ts](https://github.com/Vonage/vonage-cli/blob/v1.1.2/dist/commands/apps/link.ts)_

## `oclif-example apps:show [APPID]`

Expand All @@ -144,7 +144,7 @@ OPTIONS
-h, --help show CLI help
```

_See code: [dist/commands/apps/show.ts](https://github.com/Vonage/vonage-cli/blob/v1.1.1/dist/commands/apps/show.ts)_
_See code: [dist/commands/apps/show.ts](https://github.com/Vonage/vonage-cli/blob/v1.1.2/dist/commands/apps/show.ts)_

## `oclif-example apps:unlink`

Expand All @@ -159,7 +159,7 @@ OPTIONS
--number=number Owned number to be unassigned
```

_See code: [dist/commands/apps/unlink.ts](https://github.com/Vonage/vonage-cli/blob/v1.1.1/dist/commands/apps/unlink.ts)_
_See code: [dist/commands/apps/unlink.ts](https://github.com/Vonage/vonage-cli/blob/v1.1.2/dist/commands/apps/unlink.ts)_

## `oclif-example apps:update [APPID]`

Expand Down Expand Up @@ -188,5 +188,5 @@ EXAMPLES
vonage apps:update APP_ID --voice_answer_url="https://www.example.com/answer
```

_See code: [dist/commands/apps/update.ts](https://github.com/Vonage/vonage-cli/blob/v1.1.1/dist/commands/apps/update.ts)_
_See code: [dist/commands/apps/update.ts](https://github.com/Vonage/vonage-cli/blob/v1.1.2/dist/commands/apps/update.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion packages/applications/package-lock.json

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

4 changes: 2 additions & 2 deletions packages/applications/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@vonage/cli-plugin-applications",
"description": "A plugin for Vonage CLI",
"version": "1.1.1",
"version": "1.1.2",
"author": "Vonage Dev Rel <[email protected]>",
"bugs": "https://github.com/Vonage/vonage-cli/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/parser": "^3.8.5",
"@types/mocha": "^9.0.0",
"@vonage/cli-utils": "^1.2.0",
"@vonage/cli-utils": "^1.2.1",
"chalk": "^2.4.2",
"cli-ux": "^5.6.3",
"eslint-config-oclif": "^4.0.0",
Expand Down
11 changes: 11 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.1.2](https://github.com/Vonage/vonage-cli/compare/@vonage/[email protected]...@vonage/[email protected]) (2022-02-25)


### Bug Fixes

* Args not found bug ([#50](https://github.com/Vonage/vonage-cli/issues/50)) ([bc76c62](https://github.com/Vonage/vonage-cli/commit/bc76c62188e4d9dbbae069daa5c2a7e4cee88a29))





## [1.1.1](https://github.com/Vonage/vonage-cli/compare/@vonage/[email protected]...@vonage/[email protected]) (2022-02-22)

**Note:** Version bump only for package @vonage/cli
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package-lock.json

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

12 changes: 6 additions & 6 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vonage/cli",
"description": "CLI to interact with Vonage APIs",
"version": "1.1.1",
"version": "1.1.2",
"author": "Vonage Dev Rel <[email protected]>",
"bin": {
"vonage": "./bin/run"
Expand All @@ -15,11 +15,11 @@
"@types/lodash.merge": "^4.6.6",
"@types/node": "^16.6.1",
"@types/shelljs": "^0.8.8",
"@vonage/cli-plugin-applications": "^1.1.1",
"@vonage/cli-plugin-numberinsight": "^1.1.1",
"@vonage/cli-plugin-numbers": "^1.1.1",
"@vonage/cli-plugin-users": "^1.1.1",
"@vonage/cli-utils": "^1.2.0",
"@vonage/cli-plugin-applications": "^1.1.2",
"@vonage/cli-plugin-numberinsight": "^1.1.2",
"@vonage/cli-plugin-numbers": "^1.1.2",
"@vonage/cli-plugin-users": "^1.1.2",
"@vonage/cli-utils": "^1.2.1",
"cli-ux": "^5.6.3",
"lodash": "^4.17.20",
"shelljs": "^0.8.4",
Expand Down
8 changes: 8 additions & 0 deletions packages/conversations/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0-beta.16](https://github.com/Vonage/vonage-cli/compare/@vonage/[email protected]...@vonage/[email protected]) (2022-02-25)

**Note:** Version bump only for package @vonage/cli-plugin-conversations





# [1.0.0-beta.15](https://github.com/Vonage/vonage-cli/compare/@vonage/[email protected]...@vonage/[email protected]) (2022-02-22)


Expand Down
22 changes: 11 additions & 11 deletions packages/conversations/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $ npm install -g @vonage/cli-plugin-conversations
$ oclif-example COMMAND
running command...
$ oclif-example (-v|--version|version)
@vonage/cli-plugin-conversations/1.0.0-beta.15 linux-x64 node-v12.18.2
@vonage/cli-plugin-conversations/1.0.0-beta.16 linux-x64 node-v16.14.0
$ oclif-example --help [COMMAND]
USAGE
$ oclif-example COMMAND
Expand Down Expand Up @@ -53,7 +53,7 @@ OPTIONS
-h, --help show CLI help
```

_See code: [dist/commands/apps/conversations/index.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.15/dist/commands/apps/conversations/index.ts)_
_See code: [dist/commands/apps/conversations/index.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.16/dist/commands/apps/conversations/index.ts)_

## `oclif-example apps:conversations:create [NAME]`

Expand All @@ -70,7 +70,7 @@ OPTIONS
--ttl=ttl
```

_See code: [dist/commands/apps/conversations/create.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.15/dist/commands/apps/conversations/create.ts)_
_See code: [dist/commands/apps/conversations/create.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.16/dist/commands/apps/conversations/create.ts)_

## `oclif-example apps:conversations:delete [CONVERSATIONID]`

Expand All @@ -84,7 +84,7 @@ OPTIONS
-h, --help show CLI help
```

_See code: [dist/commands/apps/conversations/delete.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.15/dist/commands/apps/conversations/delete.ts)_
_See code: [dist/commands/apps/conversations/delete.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.16/dist/commands/apps/conversations/delete.ts)_

## `oclif-example apps:conversations:members [CONVERSATIONID]`

Expand All @@ -98,7 +98,7 @@ OPTIONS
-h, --help show CLI help
```

_See code: [dist/commands/apps/conversations/members/index.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.15/dist/commands/apps/conversations/members/index.ts)_
_See code: [dist/commands/apps/conversations/members/index.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.16/dist/commands/apps/conversations/members/index.ts)_

## `oclif-example apps:conversations:members:add [CONVERSATIONID] [USERID]`

Expand All @@ -112,7 +112,7 @@ OPTIONS
-h, --help show CLI help
```

_See code: [dist/commands/apps/conversations/members/add.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.15/dist/commands/apps/conversations/members/add.ts)_
_See code: [dist/commands/apps/conversations/members/add.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.16/dist/commands/apps/conversations/members/add.ts)_

## `oclif-example apps:conversations:members:remove [CONVERSATIONID] [MEMBERID]`

Expand All @@ -126,7 +126,7 @@ OPTIONS
-h, --help show CLI help
```

_See code: [dist/commands/apps/conversations/members/remove.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.15/dist/commands/apps/conversations/members/remove.ts)_
_See code: [dist/commands/apps/conversations/members/remove.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.16/dist/commands/apps/conversations/members/remove.ts)_

## `oclif-example apps:conversations:members:show [CONVERSATIONID] [MEMBERID]`

Expand All @@ -140,7 +140,7 @@ OPTIONS
-h, --help show CLI help
```

_See code: [dist/commands/apps/conversations/members/show.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.15/dist/commands/apps/conversations/members/show.ts)_
_See code: [dist/commands/apps/conversations/members/show.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.16/dist/commands/apps/conversations/members/show.ts)_

## `oclif-example apps:conversations:show [CONVERSATIONID]`

Expand All @@ -154,7 +154,7 @@ OPTIONS
-h, --help show CLI help
```

_See code: [dist/commands/apps/conversations/show.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.15/dist/commands/apps/conversations/show.ts)_
_See code: [dist/commands/apps/conversations/show.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.16/dist/commands/apps/conversations/show.ts)_

## `oclif-example apps:conversations:update [CONVERSATIONID]`

Expand All @@ -172,7 +172,7 @@ OPTIONS
--ttl=ttl
```

_See code: [dist/commands/apps/conversations/update.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.15/dist/commands/apps/conversations/update.ts)_
_See code: [dist/commands/apps/conversations/update.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.16/dist/commands/apps/conversations/update.ts)_

## `oclif-example apps:users:conversations [USERID]`

Expand All @@ -189,5 +189,5 @@ OPTIONS
--page_size=page_size
```

_See code: [dist/commands/apps/users/conversations.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.15/dist/commands/apps/users/conversations.ts)_
_See code: [dist/commands/apps/users/conversations.ts](https://github.com/Vonage/vonage-cli/blob/v1.0.0-beta.16/dist/commands/apps/users/conversations.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion packages/conversations/package-lock.json

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

4 changes: 2 additions & 2 deletions packages/conversations/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vonage/cli-plugin-conversations",
"version": "1.0.0-beta.15",
"version": "1.0.0-beta.16",
"author": "Vonage Dev Rel <[email protected]>",
"homepage": "https://github.com/vonage/vonage-cli",
"license": "MIT",
Expand All @@ -9,7 +9,7 @@
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/parser": "^3.8.5",
"@vonage/cli-utils": "^1.2.0",
"@vonage/cli-utils": "^1.2.1",
"@vonage/jwt": "^3.0.0-beta.1",
"@vonage/vetch": "^3.0.0-beta.3",
"chalk": "^2.4.2",
Expand Down
8 changes: 8 additions & 0 deletions packages/numberInsight/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.1.2](https://github.com/Vonage/vonage-cli/compare/@vonage/[email protected]...@vonage/[email protected]) (2022-02-25)

**Note:** Version bump only for package @vonage/cli-plugin-numberinsight





## [1.1.1](https://github.com/Vonage/vonage-cli/compare/@vonage/[email protected]...@vonage/[email protected]) (2022-02-22)


Expand Down
4 changes: 2 additions & 2 deletions packages/numberInsight/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $ npm install -g @vonage/cli-plugin-numberinsight
$ oclif-example COMMAND
running command...
$ oclif-example (-v|--version|version)
@vonage/cli-plugin-numberinsight/1.1.1 linux-x64 node-v12.18.2
@vonage/cli-plugin-numberinsight/1.1.2 linux-x64 node-v16.14.0
$ oclif-example --help [COMMAND]
USAGE
$ oclif-example COMMAND
Expand Down Expand Up @@ -48,5 +48,5 @@ EXAMPLES
vonage numberinsight 15555555555 --level=advanced
```

_See code: [dist/commands/numberinsight/index.js](https://github.com/Vonage/vonage-cli/blob/v1.1.1/dist/commands/numberinsight/index.js)_
_See code: [dist/commands/numberinsight/index.js](https://github.com/Vonage/vonage-cli/blob/v1.1.2/dist/commands/numberinsight/index.js)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion packages/numberInsight/package-lock.json

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

4 changes: 2 additions & 2 deletions packages/numberInsight/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vonage/cli-plugin-numberinsight",
"version": "1.1.1",
"version": "1.1.2",
"author": "Vonage Dev Rel <[email protected]>",
"bugs": "https://github.com/Vonage/vonage-cli/issues",
"dependencies": {
Expand All @@ -9,7 +9,7 @@
"@oclif/parser": "^3.8.5",
"@types/inquirer": "^7.3.1",
"@types/node": "^16.6.1",
"@vonage/cli-utils": "^1.2.0",
"@vonage/cli-utils": "^1.2.1",
"chalk": "^2.4.2",
"cli-ux": "^5.6.3",
"lodash": "^4.17.20",
Expand Down
8 changes: 8 additions & 0 deletions packages/numbers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.1.2](https://github.com/Vonage/vonage-cli/compare/@vonage/[email protected]...@vonage/[email protected]) (2022-02-25)

**Note:** Version bump only for package @vonage/cli-plugin-numbers





## [1.1.1](https://github.com/Vonage/vonage-cli/compare/@vonage/[email protected]...@vonage/[email protected]) (2022-02-22)


Expand Down
Loading

0 comments on commit 812f977

Please sign in to comment.