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
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
## 1.0.3 (Jan 15, 2021)
## 1.0.3 (May 28, 2021)

* Make statuses case-insensitive
* Update to sailor version 2.6.23
* Update to sailor version 2.6.24
* Update README documentation
* Changed petstore password in component.json

## 1.0.2 (Jan 4, 2021)
## 1.0.2 (January 4, 2021)

* Update to sailor version 2.6.21
* Update to version 14 of node

Expand Down
20 changes: 15 additions & 5 deletions component.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
"description": "elastic.io component for the Petstore API",
"docsUrl": "https://github.com/elasticio/petstore-component-nodejs",
"buildType":"docker",
"version": "1.0.3",
"credentials": {
"fields": {
"apiKey": {
"label": "API key",
"required": true,
"viewClass": "TextFieldWithNoteView",
"note": "Please use <b>secret</b> as API key. For more details see <a href='https://petstore.elastic.io/docs/' target='_blank'>Petstore API docs</a>."
"viewClass": "PasswordFieldView",
"note": "Please use 'secret' as API key. For more details see Petstore API docs: https://petstore.elastic.io/docs"
}
}
},
Expand All @@ -18,7 +19,10 @@
"main": "./lib/triggers/getPetsByStatus.js",
"type": "polling",
"title": "Get Pets By Status (Dynamic Data Example)",
"description": "Get pets by status, with the available statuses pulled dynamically from API",
"help": {
"description": "Get pets by status, with the available statuses pulled dynamically from API",
"link": "/components/petstore-nodejs"
},
"fields": {
"status": {
"label": "Pet Status",
Expand All @@ -36,7 +40,10 @@
"main": "./lib/triggers/getPetsByStatusWithStaticData.js",
"type": "polling",
"title": "Get Pets By Status (Static Data Example)",
"description": "Get pets by status, with the available statuses statically typed to the component.json",
"help": {
"description": "Get pets by status, with the available statuses statically typed to the component.json",
"link": "/components/petstore-nodejs"
},
"fields": {
"status": {
"label": "Pet Status",
Expand All @@ -59,7 +66,10 @@
"createPet": {
"main": "./lib/actions/createPet.js",
"title": "Creates a new pet",
"description": "Creates a pet and adds it to the shop",
"help": {
"description": "Creates a pet and adds it to the shop",
"link": "/components/petstore-nodejs"
},
"metadata": {
"in": "./lib/schemas/createPet.in.json",
"out": "./lib/schemas/createPet.out.json"
Expand Down
Loading