From 775d34ff883b6d5e3245ad90dd327b9178d55287 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Sat, 19 Feb 2022 17:56:32 +0000 Subject: [PATCH] remove send --- emoji/examples.json | 14 -------------- emoji/proto/emoji.proto | 15 --------------- emoji/publicapi.json | 3 --- 3 files changed, 32 deletions(-) diff --git a/emoji/examples.json b/emoji/examples.json index eb76c83..2aa7c45 100644 --- a/emoji/examples.json +++ b/emoji/examples.json @@ -34,19 +34,5 @@ "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 🍺" - } - } ] } diff --git a/emoji/proto/emoji.proto b/emoji/proto/emoji.proto index c3d9e4d..1cd3f9d 100644 --- a/emoji/proto/emoji.proto +++ b/emoji/proto/emoji.proto @@ -8,7 +8,6 @@ service Emoji { rpc Find(FindRequest) returns (FindResponse) {} rpc Flag(FlagRequest) returns (FlagResponse) {} rpc Print(PrintRequest) returns (PrintResponse) {} - rpc Send(SendRequest) returns (SendResponse) {} } // Find an emoji by its alias e.g :beer: @@ -45,17 +44,3 @@ message PrintResponse { string text = 1; } -// Send an emoji to anyone via SMS. Messages are sent in the form ' Sent from ' -message SendRequest { - // the name of the sender from e.g Alice - string from = 1; - // phone number to send to (including international dialing code) - string to = 2; - // message to send including emoji aliases - string message = 3; -} - -message SendResponse { - // whether or not it succeeded - bool success = 1; -} diff --git a/emoji/publicapi.json b/emoji/publicapi.json index 3c97d00..9fd7863 100644 --- a/emoji/publicapi.json +++ b/emoji/publicapi.json @@ -3,7 +3,4 @@ "icon": "😀", "category": "utility", "display_name": "Emoji" - "pricing": { - "Emoji.Send": 75000 - }, }