123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- syntax = "proto3";
- package google.actions.sdk.v2;
- import "google/actions/sdk/v2/conversation/intent.proto";
- import "google/actions/sdk/v2/conversation/prompt/content/canvas.proto";
- import "google/actions/sdk/v2/conversation/prompt/prompt.proto";
- import "google/actions/sdk/v2/event_logs.proto";
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/protobuf/empty.proto";
- import "google/type/latlng.proto";
- option go_package = "google.golang.org/genproto/googleapis/actions/sdk/v2;sdk";
- option java_multiple_files = true;
- option java_outer_classname = "ActionsTestingProto";
- option java_package = "com.google.actions.sdk.v2";
- service ActionsTesting {
- option (google.api.default_host) = "actions.googleapis.com";
-
- rpc SendInteraction(SendInteractionRequest) returns (SendInteractionResponse) {
- option (google.api.http) = {
- post: "/v2/{project=projects/*}:sendInteraction"
- body: "*"
- };
- }
-
- rpc MatchIntents(MatchIntentsRequest) returns (MatchIntentsResponse) {
- option (google.api.http) = {
- post: "/v2/{project=projects/*}:matchIntents"
- body: "*"
- };
- option (google.api.method_signature) = "project,query,locale";
- }
-
-
-
-
-
-
-
-
-
-
-
- rpc SetWebAndAppActivityControl(SetWebAndAppActivityControlRequest) returns (google.protobuf.Empty) {
- option (google.api.http) = {
- post: "/v2:setWebAndAppActivityControl"
- body: "*"
- };
- option (google.api.method_signature) = "enabled";
- }
- }
- message SendInteractionRequest {
-
-
- string project = 1 [(google.api.field_behavior) = REQUIRED];
-
- UserInput input = 2 [(google.api.field_behavior) = REQUIRED];
-
- DeviceProperties device_properties = 3 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- string conversation_token = 4;
- }
- message UserInput {
-
- enum InputType {
-
- INPUT_TYPE_UNSPECIFIED = 0;
-
- TOUCH = 1;
-
- VOICE = 2;
-
- KEYBOARD = 3;
-
- URL = 4;
- }
-
- string query = 1;
-
- InputType type = 2;
- }
- message DeviceProperties {
-
-
- enum Surface {
-
- SURFACE_UNSPECIFIED = 0;
-
- SPEAKER = 1;
-
- PHONE = 2;
-
- ALLO = 3;
-
- SMART_DISPLAY = 4;
-
- KAI_OS = 5;
- }
-
- Surface surface = 1;
-
- Location location = 2;
-
-
-
-
- string locale = 3;
-
-
-
- string time_zone = 4;
- }
- message Location {
-
-
-
- google.type.LatLng coordinates = 1;
-
-
-
- string formatted_address = 2;
-
-
-
-
-
- string zip_code = 3;
-
-
-
-
-
- string city = 4;
- }
- message SendInteractionResponse {
-
- Output output = 1;
-
- Diagnostics diagnostics = 2;
-
-
- string conversation_token = 3;
- }
- message Output {
-
- string text = 1;
-
-
- repeated string speech = 2;
-
- google.actions.sdk.v2.conversation.Canvas canvas = 3;
-
-
-
- google.actions.sdk.v2.conversation.Prompt actions_builder_prompt = 4;
- }
- message Diagnostics {
-
-
-
- repeated ExecutionEvent actions_builder_events = 1;
- }
- message MatchIntentsRequest {
-
-
- string project = 1 [(google.api.field_behavior) = REQUIRED];
-
- string query = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- string locale = 3 [(google.api.field_behavior) = REQUIRED];
- }
- message MatchIntentsResponse {
-
-
- repeated google.actions.sdk.v2.conversation.Intent matched_intents = 1;
- }
- message SetWebAndAppActivityControlRequest {
-
- bool enabled = 1;
- }
|