Skip to content

Commit 55b855b

Browse files
committed
v0.0.8
1 parent 8f8cf76 commit 55b855b

File tree

2 files changed

+13
-85
lines changed

2 files changed

+13
-85
lines changed

README.md

Lines changed: 12 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,22 @@ USAGE
2626
# Commands
2727
<!-- commands -->
2828
* [`heroku datacloud:connect ORG_NAME`](#heroku-datacloudconnect-org_name)
29-
* [`heroku datacloud:data-action-target:create LABEL`](#heroku-dataclouddata-action-targetcreate-label)
30-
* [`heroku datacloud:disconnect ORG_NAME`](#heroku-dataclouddisconnect-org_name)
3129
* [`heroku integration:connections`](#heroku-integrationconnections)
3230
* [`heroku integration:connections:info ORG_NAME`](#heroku-integrationconnectionsinfo-org_name)
3331
* [`heroku integration:project PROJECT_NAME`](#heroku-integrationproject-project_name)
3432
* [`heroku salesforce:connect ORG_NAME`](#heroku-salesforceconnect-org_name)
35-
* [`heroku salesforce:disconnect ORG_NAME`](#heroku-salesforcedisconnect-org_name)
3633
* [`heroku salesforce:import API_SPEC_FILE`](#heroku-salesforceimport-api_spec_file)
3734

3835
## `heroku datacloud:connect ORG_NAME`
3936

40-
connects a Data Cloud Org to a Heroku app
37+
connects a Heroku app to a Datacloud Org
4138

4239
```
4340
USAGE
4441
$ heroku datacloud:connect [ORG_NAME] -a <value> [--browser <value>] [-l <value>] [-r <value>]
4542
4643
ARGUMENTS
47-
ORG_NAME Data Cloud Org instance name. Must begin with a letter. Then allowed chars are alphanumeric and underscores
48-
'_' (non-consecutive). Must end with a letter or a number. Must be min 3, max 30 characters.
44+
ORG_NAME Datacloud Org instance name
4945
5046
FLAGS
5147
-a, --app=<value> (required) app to run command against
@@ -54,57 +50,10 @@ FLAGS
5450
--browser=<value> browser to open OAuth flow with (example: "firefox", "safari")
5551
5652
DESCRIPTION
57-
connects a Data Cloud Org to a Heroku app
53+
connects a Heroku app to a Datacloud Org
5854
```
5955

60-
_See code: [dist/commands/datacloud/connect.ts](https://github.com/heroku/heroku-cli-plugin-integration/blob/v0.0.7/dist/commands/datacloud/connect.ts)_
61-
62-
## `heroku datacloud:data-action-target:create LABEL`
63-
64-
creates a Data Cloud Data Action Target for a Heroku app
65-
66-
```
67-
USAGE
68-
$ heroku datacloud:data-action-target:create [LABEL] -a <value> -o <value> -p <value> [-n <value>] [-t WebHook]
69-
70-
ARGUMENTS
71-
LABEL Data Action Target label
72-
73-
FLAGS
74-
-a, --app=<value> (required) app to run command against
75-
-n, --api-name=<value> API name for the Data Action Target, default derived from label
76-
-o, --org-name=<value> (required) authorized Data Cloud Org instance name where the Data Action Target is
77-
created
78-
-p, --target-api-path=<value> (required) API path for the Data Action Target excluding app URL, eg "/" or
79-
"/handleDataCloudDataChangeEvent"
80-
-t, --type=<option> [default: WebHook] Data Action Target type
81-
<options: WebHook>
82-
83-
DESCRIPTION
84-
creates a Data Cloud Data Action Target for a Heroku app
85-
```
86-
87-
_See code: [dist/commands/datacloud/data-action-target/create.ts](https://github.com/heroku/heroku-cli-plugin-integration/blob/v0.0.7/dist/commands/datacloud/data-action-target/create.ts)_
88-
89-
## `heroku datacloud:disconnect ORG_NAME`
90-
91-
disconnects a Data Cloud Org from a Heroku app
92-
93-
```
94-
USAGE
95-
$ heroku datacloud:disconnect [ORG_NAME] -a <value>
96-
97-
ARGUMENTS
98-
ORG_NAME Data Cloud Org instance name
99-
100-
FLAGS
101-
-a, --app=<value> (required) app to run command against
102-
103-
DESCRIPTION
104-
disconnects a Data Cloud Org from a Heroku app
105-
```
106-
107-
_See code: [dist/commands/datacloud/disconnect.ts](https://github.com/heroku/heroku-cli-plugin-integration/blob/v0.0.7/dist/commands/datacloud/disconnect.ts)_
56+
_See code: [dist/commands/datacloud/connect.ts](https://github.com/heroku/heroku-cli-plugin-integration/blob/v0.0.8/dist/commands/datacloud/connect.ts)_
10857

10958
## `heroku integration:connections`
11059

@@ -122,7 +71,7 @@ DESCRIPTION
12271
lists Heroku Integration connections
12372
```
12473

125-
_See code: [dist/commands/integration/connections/index.ts](https://github.com/heroku/heroku-cli-plugin-integration/blob/v0.0.7/dist/commands/integration/connections/index.ts)_
74+
_See code: [dist/commands/integration/connections/index.ts](https://github.com/heroku/heroku-cli-plugin-integration/blob/v0.0.8/dist/commands/integration/connections/index.ts)_
12675

12776
## `heroku integration:connections:info ORG_NAME`
12877

@@ -143,7 +92,7 @@ DESCRIPTION
14392
shows info for a Heroku Integration connection
14493
```
14594

146-
_See code: [dist/commands/integration/connections/info.ts](https://github.com/heroku/heroku-cli-plugin-integration/blob/v0.0.7/dist/commands/integration/connections/info.ts)_
95+
_See code: [dist/commands/integration/connections/info.ts](https://github.com/heroku/heroku-cli-plugin-integration/blob/v0.0.8/dist/commands/integration/connections/info.ts)_
14796

14897
## `heroku integration:project PROJECT_NAME`
14998

@@ -163,19 +112,18 @@ DESCRIPTION
163112
generates a Heroku Integration project template
164113
```
165114

166-
_See code: [dist/commands/integration/project.ts](https://github.com/heroku/heroku-cli-plugin-integration/blob/v0.0.7/dist/commands/integration/project.ts)_
115+
_See code: [dist/commands/integration/project.ts](https://github.com/heroku/heroku-cli-plugin-integration/blob/v0.0.8/dist/commands/integration/project.ts)_
167116

168117
## `heroku salesforce:connect ORG_NAME`
169118

170-
connects a Salesforce Org to Heroku app
119+
connects a Heroku app to a Salesforce Org
171120

172121
```
173122
USAGE
174123
$ heroku salesforce:connect [ORG_NAME] -a <value> [--browser <value>] [-l <value>] [-r <value>] [-S]
175124
176125
ARGUMENTS
177-
ORG_NAME Salesforce Org instance name. Must begin with a letter. Then allowed chars are alphanumeric and underscores
178-
'_' (non-consecutive). Must end with a letter or a number. Must be min 3, max 30 characters.
126+
ORG_NAME Salesforce Org instance name
179127
180128
FLAGS
181129
-S, --store-as-run-as-user store user credentials
@@ -185,30 +133,10 @@ FLAGS
185133
--browser=<value> browser to open OAuth flow with (example: "firefox", "safari")
186134
187135
DESCRIPTION
188-
connects a Salesforce Org to Heroku app
189-
```
190-
191-
_See code: [dist/commands/salesforce/connect.ts](https://github.com/heroku/heroku-cli-plugin-integration/blob/v0.0.7/dist/commands/salesforce/connect.ts)_
192-
193-
## `heroku salesforce:disconnect ORG_NAME`
194-
195-
disconnects a Salesforce Org from a Heroku app
196-
197-
```
198-
USAGE
199-
$ heroku salesforce:disconnect [ORG_NAME] -a <value>
200-
201-
ARGUMENTS
202-
ORG_NAME Salesforce Org instance name
203-
204-
FLAGS
205-
-a, --app=<value> (required) app to run command against
206-
207-
DESCRIPTION
208-
disconnects a Salesforce Org from a Heroku app
136+
connects a Heroku app to a Salesforce Org
209137
```
210138

211-
_See code: [dist/commands/salesforce/disconnect.ts](https://github.com/heroku/heroku-cli-plugin-integration/blob/v0.0.7/dist/commands/salesforce/disconnect.ts)_
139+
_See code: [dist/commands/salesforce/connect.ts](https://github.com/heroku/heroku-cli-plugin-integration/blob/v0.0.8/dist/commands/salesforce/connect.ts)_
212140

213141
## `heroku salesforce:import API_SPEC_FILE`
214142

@@ -232,5 +160,5 @@ DESCRIPTION
232160
Imports an API specification to an authenticated Salesforce Org.
233161
```
234162

235-
_See code: [dist/commands/salesforce/import.ts](https://github.com/heroku/heroku-cli-plugin-integration/blob/v0.0.7/dist/commands/salesforce/import.ts)_
163+
_See code: [dist/commands/salesforce/import.ts](https://github.com/heroku/heroku-cli-plugin-integration/blob/v0.0.8/dist/commands/salesforce/import.ts)_
236164
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@heroku-cli/plugin-integration",
33
"description": "Heroku CLI plugin for Heroku Integration add-on",
4-
"version": "0.0.7",
4+
"version": "0.0.8",
55
"author": "Heroku",
66
"bugs": "https://github.com/heroku/heroku-cli-plugin-integration/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)