@@ -25,8 +25,8 @@ $ heroku plugins:install @heroku-cli/plugin-addons-admin
25
25
$ npm install -g @heroku-cli/plugin-addons-admin
26
26
$ heroku COMMAND
27
27
running command...
28
- $ heroku (-v | --version | version)
29
- @heroku-cli/plugin-addons-admin/2.4.0 darwin-x64 node-v16.20 .2
28
+ $ heroku (-- version)
29
+ @heroku-cli/plugin-addons-admin/2.4.0 darwin-x64 node-v20.18 .2
30
30
$ heroku --help [COMMAND]
31
31
USAGE
32
32
$ heroku COMMAND
@@ -42,7 +42,7 @@ Follow the [Developing CLI Plugins](https://devcenter.heroku.com/articles/develo
42
42
<!-- commands -->
43
43
* [ ` heroku addons:admin:manifest:diff ` ] ( #heroku-addonsadminmanifestdiff )
44
44
* [ ` heroku addons:admin:manifest:generate ` ] ( #heroku-addonsadminmanifestgenerate )
45
- * [ ` heroku addons:admin:manifest:pull [ SLUG] ` ] ( #heroku-addonsadminmanifestpull-slug )
45
+ * [ ` heroku addons:admin:manifest:pull SLUG ` ] ( #heroku-addonsadminmanifestpull-slug )
46
46
* [ ` heroku addons:admin:manifest:push ` ] ( #heroku-addonsadminmanifestpush )
47
47
* [ ` heroku addons:admin:manifests [SLUG] ` ] ( #heroku-addonsadminmanifests-slug )
48
48
* [ ` heroku addons:admin:manifests:info [SLUG] ` ] ( #heroku-addonsadminmanifestsinfo-slug )
@@ -55,6 +55,9 @@ compares remote manifest to local manifest and finds differences
55
55
```
56
56
USAGE
57
57
$ heroku addons:admin:manifest:diff
58
+
59
+ DESCRIPTION
60
+ compares remote manifest to local manifest and finds differences
58
61
```
59
62
60
63
_ See code: [ src/commands/addons/admin/manifest/diff.ts] ( https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/manifest/diff.ts ) _
@@ -65,31 +68,37 @@ generate a manifest template
65
68
66
69
```
67
70
USAGE
68
- $ heroku addons:admin:manifest:generate
71
+ $ heroku addons:admin:manifest:generate [-a <value>] [-s <value>]
72
+
73
+ FLAGS
74
+ -a, --addon=<value> add-on name (name displayed on addon dashboard)
75
+ -s, --slug=<value> slugname/manifest id
69
76
70
- OPTIONS
71
- -a, --addon=addon add-on name (name displayed on addon dashboard)
72
- -s, --slug=slug slugname/manifest id
77
+ DESCRIPTION
78
+ generate a manifest template
73
79
74
- EXAMPLE
80
+ EXAMPLES
75
81
$ heroku addons:admin:generate
76
82
The file has been saved!
77
83
```
78
84
79
85
_ See code: [ src/commands/addons/admin/manifest/generate.ts] ( https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/manifest/generate.ts ) _
80
86
81
- ## ` heroku addons:admin:manifest:pull [ SLUG] `
87
+ ## ` heroku addons:admin:manifest:pull SLUG `
82
88
83
89
pull a manifest for a given slug
84
90
85
91
```
86
92
USAGE
87
- $ heroku addons:admin:manifest:pull [ SLUG]
93
+ $ heroku addons:admin:manifest:pull SLUG
88
94
89
95
ARGUMENTS
90
96
SLUG slug name of add-on
91
97
92
- EXAMPLE
98
+ DESCRIPTION
99
+ pull a manifest for a given slug
100
+
101
+ EXAMPLES
93
102
$ heroku addons:admin:manifest:pull testing-123
94
103
...
95
104
Fetching add-on manifest for testing-123... done
@@ -106,7 +115,10 @@ update remote manifest
106
115
USAGE
107
116
$ heroku addons:admin:manifest:push
108
117
109
- EXAMPLE
118
+ DESCRIPTION
119
+ update remote manifest
120
+
121
+ EXAMPLES
110
122
$ heroku addons:admin:manifest:push
111
123
...
112
124
Pushing manifest... done
@@ -122,6 +134,12 @@ list manifest history
122
134
```
123
135
USAGE
124
136
$ heroku addons:admin:manifests [SLUG]
137
+
138
+ ARGUMENTS
139
+ SLUG slug name of add-on
140
+
141
+ DESCRIPTION
142
+ list manifest history
125
143
```
126
144
127
145
_ See code: [ src/commands/addons/admin/manifests.ts] ( https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/manifests.ts ) _
@@ -132,10 +150,16 @@ show an individual history manifest
132
150
133
151
```
134
152
USAGE
135
- $ heroku addons:admin:manifests:info [SLUG]
153
+ $ heroku addons:admin:manifests:info [SLUG] -m <value>
154
+
155
+ ARGUMENTS
156
+ SLUG slug name of add-on
157
+
158
+ FLAGS
159
+ -m, --manifest=<value> (required) manifest history id
136
160
137
- OPTIONS
138
- -m, --manifest=manifest (required) manifest history id
161
+ DESCRIPTION
162
+ show an individual history manifest
139
163
```
140
164
141
165
_ See code: [ src/commands/addons/admin/manifests/info.ts] ( https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/manifests/info.ts ) _
@@ -151,10 +175,13 @@ USAGE
151
175
ARGUMENTS
152
176
SLUG slug name of add-on
153
177
154
- EXAMPLE
178
+ DESCRIPTION
179
+ open add-on dashboard
180
+
181
+ EXAMPLES
155
182
$ heroku addons:admin:open
156
- Checking addon-manifest.json... done
157
- Opening https://addons-next.heroku.com/addons/testing-123... done
183
+ Checking addon-manifest.json... done
184
+ Opening https://addons-next.heroku.com/addons/testing-123... done
158
185
```
159
186
160
187
_ See code: [ src/commands/addons/admin/open.ts] ( https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/open.ts ) _
0 commit comments