-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert to oclif v3, fix version script
- Loading branch information
Showing
5 changed files
with
3,491 additions
and
2,830 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
nodejs 20.17.0 | ||
nodejs 16.20.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"version": "2.2.0", | ||
"commands": { | ||
"api": { | ||
"id": "api", | ||
"description": "make a manual API request\nThe api command is a convenient but low-level way to send requests\nto the Heroku API. It sends an HTTP request to the Heroku API\nusing the given method on the given path. For methods PUT, PATCH,\nand POST, it uses stdin unmodified as the request body. It prints\nthe response unmodified on stdout.\n\nIt is essentially like curl for the Heroku API.\n\nMethod name input will be upcased, so both 'heroku api GET /apps' and\n'heroku api get /apps' are valid commands.", | ||
"strict": true, | ||
"pluginName": "@heroku-cli/plugin-api", | ||
"pluginAlias": "@heroku-cli/plugin-api", | ||
"pluginType": "core", | ||
"aliases": [], | ||
"hiddenAliases": [], | ||
"examples": [ | ||
"$ heroku api GET /apps/myapp\n{\n created_at: \"2011-11-11T04:17:13-00:00\",\n id: \"12345678-9abc-def0-1234-456789012345\",\n name: \"myapp\",\n …\n}\n\n$ heroku api PATCH /apps/myapp/config-vars --body '{\"FOO\": \"bar\"}'\n{\n FOO: \"bar\"\n …\n}\n\n$ export HEROKU_HEADERS\n$ HEROKU_HEADERS='{\n\"Content-Type\": \"application/x-www-form-urlencoded\",\n\"Accept\": \"application/json\"\n}'\n$ printf 'type=web&qty=2' | heroku api POST /apps/myapp/ps/scale\n2" | ||
], | ||
"flags": { | ||
"version": { | ||
"name": "version", | ||
"type": "option", | ||
"char": "v", | ||
"description": "version to use (e.g. 2, 3, or 3.variant)", | ||
"multiple": false | ||
}, | ||
"accept-inclusion": { | ||
"name": "accept-inclusion", | ||
"type": "option", | ||
"char": "a", | ||
"description": "Accept-Inclusion header to use", | ||
"multiple": false | ||
}, | ||
"body": { | ||
"name": "body", | ||
"type": "option", | ||
"char": "b", | ||
"description": "JSON input body", | ||
"multiple": false | ||
} | ||
}, | ||
"args": { | ||
"method": { | ||
"name": "method", | ||
"description": "GET, POST, PUT, PATCH, or DELETE", | ||
"required": true | ||
}, | ||
"path": { | ||
"name": "path", | ||
"description": "endpoint to call" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.