Skip to content

Commit 7441e3c

Browse files
committed
feat: added alias and displayMessage for FlowType
1 parent 3a9e322 commit 7441e3c

File tree

1 file changed

+91
-79
lines changed

1 file changed

+91
-79
lines changed
Lines changed: 91 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -1,80 +1,92 @@
11
{
2-
"identifier": "HTTP",
3-
"settings": [
4-
{
5-
"identifier": "HTTP_URL",
6-
"unique": false,
7-
"dataTypeIdentifier": "HTTP_URL",
8-
"defaultValue": null,
9-
"name": [
10-
{
11-
"code": "en-US",
12-
"content": "URL"
13-
}
14-
],
15-
"description": [
16-
{
17-
"code": "en-US",
18-
"content": "Specifies the HTTP URL endpoint."
19-
}
20-
]
21-
},
22-
{
23-
"identifier": "HTTP_METHOD",
24-
"unique": false,
25-
"dataTypeIdentifier": "HTTP_METHOD",
26-
"defaultValue": null,
27-
"name": [
28-
{
29-
"code": "en-US",
30-
"content": "Method"
31-
}
32-
],
33-
"description": [
34-
{
35-
"code": "en-US",
36-
"content": "Specifies the HTTP request method (e.g., GET, POST, PUT, DELETE)."
37-
}
38-
]
39-
},
40-
{
41-
"identifier": "HTTP_HOST",
42-
"unique": false,
43-
"dataTypeIdentifier": "TEXT",
44-
"defaultValue": null,
45-
"name": [
46-
{
47-
"code": "en-US",
48-
"content": "Host"
49-
}
50-
],
51-
"description": [
52-
{
53-
"code": "en-US",
54-
"content": "Specifies the target host name or IP address."
55-
}
56-
]
57-
}
58-
],
59-
"inputTypeIdentifier": "HTTP_ADAPTER_INPUT",
60-
"returnTypeIdentifier": "HTTP_RESPONSE",
61-
"editable": false,
62-
"name": [
63-
{
64-
"code": "en-US",
65-
"content": "Rest Endpoint"
66-
}
67-
],
68-
"description": [
69-
{
70-
"code": "en-US",
71-
"content": "A REST API is a web service that lets clients interact with data on a server using standard HTTP methods like GET, POST, PUT, and DELETE usually returning results in JSON format."
72-
}
73-
],
74-
"documentation": [
75-
{
76-
"code": "en-US",
77-
"content": "A REST API is a web service that lets clients interact with data on a server using standard HTTP methods like GET, POST, PUT, and DELETE usually returning results in JSON format."
78-
}
79-
]
80-
}
2+
"identifier": "HTTP",
3+
"settings": [
4+
{
5+
"identifier": "HTTP_URL",
6+
"unique": false,
7+
"dataTypeIdentifier": "HTTP_URL",
8+
"defaultValue": null,
9+
"name": [
10+
{
11+
"code": "en-US",
12+
"content": "URL"
13+
}
14+
],
15+
"description": [
16+
{
17+
"code": "en-US",
18+
"content": "Specifies the HTTP URL endpoint."
19+
}
20+
]
21+
},
22+
{
23+
"identifier": "HTTP_METHOD",
24+
"unique": false,
25+
"dataTypeIdentifier": "HTTP_METHOD",
26+
"defaultValue": null,
27+
"name": [
28+
{
29+
"code": "en-US",
30+
"content": "Method"
31+
}
32+
],
33+
"description": [
34+
{
35+
"code": "en-US",
36+
"content": "Specifies the HTTP request method (e.g., GET, POST, PUT, DELETE)."
37+
}
38+
]
39+
},
40+
{
41+
"identifier": "HTTP_HOST",
42+
"unique": false,
43+
"dataTypeIdentifier": "TEXT",
44+
"defaultValue": null,
45+
"name": [
46+
{
47+
"code": "en-US",
48+
"content": "Host"
49+
}
50+
],
51+
"description": [
52+
{
53+
"code": "en-US",
54+
"content": "Specifies the target host name or IP address."
55+
}
56+
]
57+
}
58+
],
59+
"inputTypeIdentifier": "HTTP_ADAPTER_INPUT",
60+
"returnTypeIdentifier": "HTTP_RESPONSE",
61+
"editable": false,
62+
"name": [
63+
{
64+
"code": "en-US",
65+
"content": "Rest Endpoint"
66+
}
67+
],
68+
"description": [
69+
{
70+
"code": "en-US",
71+
"content": "A REST API is a web service that lets clients interact with data on a server using standard HTTP methods like GET, POST, PUT, and DELETE usually returning results in JSON format."
72+
}
73+
],
74+
"documentation": [
75+
{
76+
"code": "en-US",
77+
"content": "A REST API is a web service that lets clients interact with data on a server using standard HTTP methods like GET, POST, PUT, and DELETE usually returning results in JSON format."
78+
}
79+
],
80+
"displayMessage": [
81+
{
82+
"code": "en-US",
83+
"content": "On ${method} request to §{route}"
84+
}
85+
],
86+
"alias": [
87+
{
88+
"code": "en-US",
89+
"content": "http;rest;route;web;webhook"
90+
}
91+
]
92+
}

0 commit comments

Comments
 (0)