Skip to content

Commit 37537b3

Browse files
authored
Sailor 2.6.24 and some minor updates and fixes (#28)
1 parent c3b7134 commit 37537b3

File tree

4 files changed

+4297
-69
lines changed

4 files changed

+4297
-69
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
## 1.0.3 (Jan 15, 2021)
1+
## 1.0.3 (May 28, 2021)
2+
23
* Make statuses case-insensitive
3-
* Update to sailor version 2.6.23
4+
* Update to sailor version 2.6.24
45
* Update README documentation
56
* Changed petstore password in component.json
67

7-
## 1.0.2 (Jan 4, 2021)
8+
## 1.0.2 (January 4, 2021)
9+
810
* Update to sailor version 2.6.21
911
* Update to version 14 of node
1012

component.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
"description": "elastic.io component for the Petstore API",
44
"docsUrl": "https://github.com/elasticio/petstore-component-nodejs",
55
"buildType":"docker",
6+
"version": "1.0.3",
67
"credentials": {
78
"fields": {
89
"apiKey": {
910
"label": "API key",
1011
"required": true,
11-
"viewClass": "TextFieldWithNoteView",
12-
"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>."
12+
"viewClass": "PasswordFieldView",
13+
"note": "Please use 'secret' as API key. For more details see Petstore API docs: https://petstore.elastic.io/docs"
1314
}
1415
}
1516
},
@@ -18,7 +19,10 @@
1819
"main": "./lib/triggers/getPetsByStatus.js",
1920
"type": "polling",
2021
"title": "Get Pets By Status (Dynamic Data Example)",
21-
"description": "Get pets by status, with the available statuses pulled dynamically from API",
22+
"help": {
23+
"description": "Get pets by status, with the available statuses pulled dynamically from API",
24+
"link": "/components/petstore-nodejs"
25+
},
2226
"fields": {
2327
"status": {
2428
"label": "Pet Status",
@@ -36,7 +40,10 @@
3640
"main": "./lib/triggers/getPetsByStatusWithStaticData.js",
3741
"type": "polling",
3842
"title": "Get Pets By Status (Static Data Example)",
39-
"description": "Get pets by status, with the available statuses statically typed to the component.json",
43+
"help": {
44+
"description": "Get pets by status, with the available statuses statically typed to the component.json",
45+
"link": "/components/petstore-nodejs"
46+
},
4047
"fields": {
4148
"status": {
4249
"label": "Pet Status",
@@ -59,7 +66,10 @@
5966
"createPet": {
6067
"main": "./lib/actions/createPet.js",
6168
"title": "Creates a new pet",
62-
"description": "Creates a pet and adds it to the shop",
69+
"help": {
70+
"description": "Creates a pet and adds it to the shop",
71+
"link": "/components/petstore-nodejs"
72+
},
6373
"metadata": {
6474
"in": "./lib/schemas/createPet.in.json",
6575
"out": "./lib/schemas/createPet.out.json"

0 commit comments

Comments
 (0)