Everything service has examples now, fixes for client generator (#203)

This commit is contained in:
Janos Dobronszki
2021-09-13 16:19:53 +01:00
committed by GitHub
parent a9dfd7cc03
commit 6cb1a023aa
14 changed files with 581 additions and 119 deletions

52
emoji/examples.json Normal file
View File

@@ -0,0 +1,52 @@
{
"find": [
{
"title": "Find emoji",
"run_check": false,
"request": {
"alias": ":beer:"
},
"response": {
"emoji": "🍺"
}
}
],
"flag": [
{
"title": "Get flag by country code",
"run_check": false,
"request": {
"alias": "GB"
},
"response": {
"flag": "🇬🇧"
}
}
],
"print": [
{
"title": "Print text including emoji",
"run_check": false,
"request": {
"text": "let's grab a :beer:"
},
"response": {
"text": "let's grab a 🍺"
}
}
],
"send": [
{
"title": "Send a text containing an emoji to anyone via SMS.",
"run_check": false,
"request": {
"from": "Alice",
"to": "+44782669123",
"message": "let's grab a :beer:"
},
"response": {
"text": "let's grab a 🍺"
}
}
]
}