├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lib ├── libactions_java_lib.jar └── libdialogflow_java_lib.jar ├── pom.xml ├── settings.gradle └── src ├── main ├── META-INF │ └── MANIFEST.MF ├── kotlin │ └── com │ │ └── google │ │ └── actions │ │ └── api │ │ ├── ActionContext.kt │ │ ├── ActionRequest.kt │ │ ├── ActionResponse.kt │ │ ├── ActionsSdkApp.kt │ │ ├── App.kt │ │ ├── Constants.kt │ │ ├── DefaultApp.kt │ │ ├── DialogflowApp.kt │ │ ├── ForIntent.kt │ │ ├── SessionEntityType.kt │ │ ├── impl │ │ ├── AogRequest.kt │ │ ├── AogResponse.kt │ │ ├── DialogflowRequest.kt │ │ ├── DialogflowResponse.kt │ │ └── io │ │ │ ├── RequestDeserializers.kt │ │ │ └── ResponseSerializer.kt │ │ ├── response │ │ ├── ResponseBuilder.kt │ │ └── helperintent │ │ │ ├── CompletePurchase.kt │ │ │ ├── Confirmation.kt │ │ │ ├── DateTimePrompt.kt │ │ │ ├── DeliveryAddress.kt │ │ │ ├── DigitalPurchaseCheck.kt │ │ │ ├── HelperIntent.kt │ │ │ ├── NewSurface.kt │ │ │ ├── Permission.kt │ │ │ ├── Place.kt │ │ │ ├── RegisterUpdate.kt │ │ │ ├── SelectionCarousel.kt │ │ │ ├── SelectionList.kt │ │ │ ├── SignIn.kt │ │ │ ├── TransactionDecision.kt │ │ │ ├── TransactionRequirements.kt │ │ │ ├── UpdatePermission.kt │ │ │ └── transactions │ │ │ └── v3 │ │ │ ├── TransactionDecision.kt │ │ │ └── TransactionRequirements.kt │ │ ├── smarthome │ │ ├── SmartHomeApp.kt │ │ ├── SmartHomeRequest.kt │ │ └── SmartHomeResponse.kt │ │ └── test │ │ └── MockRequestBuilder.kt ├── main.iml ├── proto │ └── google │ │ ├── api │ │ ├── annotations.proto │ │ └── http.proto │ │ └── home │ │ └── graph │ │ └── v1 │ │ ├── device.proto │ │ └── homegraph.proto └── resources │ └── metadata.properties └── test ├── kotlin └── com │ └── google │ └── actions │ └── api │ ├── AogRequestTest.kt │ ├── AogResponseTest.kt │ ├── DialogflowRequestTest.kt │ ├── DialogflowResponseTest.kt │ ├── smarthome │ ├── HomeGraphTest.kt │ ├── SmartHomeRequestTest.kt │ ├── SmartHomeResponseTest.kt │ └── TestSmartHomeApp.kt │ └── test │ └── MockRequestBuilderTest.kt ├── resources ├── aog_main.json ├── aog_place_error.json ├── aog_user_conversation_data.json ├── aog_user_storage.json ├── aog_with_all_surface_capabilities.json ├── aog_with_argument_extension.json ├── aog_with_arguments.json ├── aog_with_datetime.json ├── aog_with_delivery_address.json ├── aog_with_final_reprompt.json ├── aog_with_location.json ├── aog_with_option.json ├── aog_with_permission_denied.json ├── aog_with_place.json ├── aog_with_register_update.json ├── aog_with_reprompt.json ├── aog_with_transaction_decision.json ├── aog_with_transaction_requirements_check.json ├── aog_with_update_permission.json ├── dialogflow_complete.json ├── dialogflow_package_entitlements.json ├── dialogflow_user_storage.json ├── dialogflow_welcome.json ├── dialogflow_with_conv_data.json ├── dialogflow_with_datetime_response.json ├── input.json ├── smarthome_disconnect_request.json ├── smarthome_execute_2fa_request.json ├── smarthome_execute_2fa_response.json ├── smarthome_execute_customdata_request.json ├── smarthome_execute_dock_request.json ├── smarthome_execute_request.json ├── smarthome_execute_response.json ├── smarthome_query_customdata_request.json ├── smarthome_query_request.json ├── smarthome_query_response.json ├── smarthome_sync_request.json ├── smarthome_sync_response.json └── smarthome_sync_response_local.json └── test.iml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/gradlew.bat -------------------------------------------------------------------------------- /lib/libactions_java_lib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/lib/libactions_java_lib.jar -------------------------------------------------------------------------------- /lib/libdialogflow_java_lib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/lib/libdialogflow_java_lib.jar -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/pom.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/ActionContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/ActionContext.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/ActionRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/ActionRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/ActionResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/ActionResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/ActionsSdkApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/ActionsSdkApp.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/App.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/Constants.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/DefaultApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/DefaultApp.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/DialogflowApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/DialogflowApp.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/ForIntent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/ForIntent.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/SessionEntityType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/SessionEntityType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/impl/AogRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/impl/AogRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/impl/AogResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/impl/AogResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/impl/DialogflowRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/impl/DialogflowRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/impl/DialogflowResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/impl/DialogflowResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/impl/io/RequestDeserializers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/impl/io/RequestDeserializers.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/impl/io/ResponseSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/impl/io/ResponseSerializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/ResponseBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/ResponseBuilder.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/CompletePurchase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/CompletePurchase.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/Confirmation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/Confirmation.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/DateTimePrompt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/DateTimePrompt.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/DeliveryAddress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/DeliveryAddress.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/DigitalPurchaseCheck.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/DigitalPurchaseCheck.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/HelperIntent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/HelperIntent.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/NewSurface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/NewSurface.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/Permission.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/Permission.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/Place.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/Place.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/RegisterUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/RegisterUpdate.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/SelectionCarousel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/SelectionCarousel.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/SelectionList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/SelectionList.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/SignIn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/SignIn.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/TransactionDecision.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/TransactionDecision.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/TransactionRequirements.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/TransactionRequirements.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/UpdatePermission.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/UpdatePermission.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/transactions/v3/TransactionDecision.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/transactions/v3/TransactionDecision.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/response/helperintent/transactions/v3/TransactionRequirements.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/response/helperintent/transactions/v3/TransactionRequirements.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/smarthome/SmartHomeApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/smarthome/SmartHomeApp.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/smarthome/SmartHomeRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/smarthome/SmartHomeRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/smarthome/SmartHomeResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/smarthome/SmartHomeResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/google/actions/api/test/MockRequestBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/kotlin/com/google/actions/api/test/MockRequestBuilder.kt -------------------------------------------------------------------------------- /src/main/main.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/main.iml -------------------------------------------------------------------------------- /src/main/proto/google/api/annotations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/proto/google/api/annotations.proto -------------------------------------------------------------------------------- /src/main/proto/google/api/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/proto/google/api/http.proto -------------------------------------------------------------------------------- /src/main/proto/google/home/graph/v1/device.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/proto/google/home/graph/v1/device.proto -------------------------------------------------------------------------------- /src/main/proto/google/home/graph/v1/homegraph.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/main/proto/google/home/graph/v1/homegraph.proto -------------------------------------------------------------------------------- /src/main/resources/metadata.properties: -------------------------------------------------------------------------------- 1 | version=v1.8.0 -------------------------------------------------------------------------------- /src/test/kotlin/com/google/actions/api/AogRequestTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/kotlin/com/google/actions/api/AogRequestTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/google/actions/api/AogResponseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/kotlin/com/google/actions/api/AogResponseTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/google/actions/api/DialogflowRequestTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/kotlin/com/google/actions/api/DialogflowRequestTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/google/actions/api/DialogflowResponseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/kotlin/com/google/actions/api/DialogflowResponseTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/google/actions/api/smarthome/HomeGraphTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/kotlin/com/google/actions/api/smarthome/HomeGraphTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/google/actions/api/smarthome/SmartHomeRequestTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/kotlin/com/google/actions/api/smarthome/SmartHomeRequestTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/google/actions/api/smarthome/SmartHomeResponseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/kotlin/com/google/actions/api/smarthome/SmartHomeResponseTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/google/actions/api/smarthome/TestSmartHomeApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/kotlin/com/google/actions/api/smarthome/TestSmartHomeApp.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/google/actions/api/test/MockRequestBuilderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/kotlin/com/google/actions/api/test/MockRequestBuilderTest.kt -------------------------------------------------------------------------------- /src/test/resources/aog_main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_main.json -------------------------------------------------------------------------------- /src/test/resources/aog_place_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_place_error.json -------------------------------------------------------------------------------- /src/test/resources/aog_user_conversation_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_user_conversation_data.json -------------------------------------------------------------------------------- /src/test/resources/aog_user_storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_user_storage.json -------------------------------------------------------------------------------- /src/test/resources/aog_with_all_surface_capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_with_all_surface_capabilities.json -------------------------------------------------------------------------------- /src/test/resources/aog_with_argument_extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_with_argument_extension.json -------------------------------------------------------------------------------- /src/test/resources/aog_with_arguments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_with_arguments.json -------------------------------------------------------------------------------- /src/test/resources/aog_with_datetime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_with_datetime.json -------------------------------------------------------------------------------- /src/test/resources/aog_with_delivery_address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_with_delivery_address.json -------------------------------------------------------------------------------- /src/test/resources/aog_with_final_reprompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_with_final_reprompt.json -------------------------------------------------------------------------------- /src/test/resources/aog_with_location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_with_location.json -------------------------------------------------------------------------------- /src/test/resources/aog_with_option.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_with_option.json -------------------------------------------------------------------------------- /src/test/resources/aog_with_permission_denied.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_with_permission_denied.json -------------------------------------------------------------------------------- /src/test/resources/aog_with_place.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_with_place.json -------------------------------------------------------------------------------- /src/test/resources/aog_with_register_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_with_register_update.json -------------------------------------------------------------------------------- /src/test/resources/aog_with_reprompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_with_reprompt.json -------------------------------------------------------------------------------- /src/test/resources/aog_with_transaction_decision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_with_transaction_decision.json -------------------------------------------------------------------------------- /src/test/resources/aog_with_transaction_requirements_check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_with_transaction_requirements_check.json -------------------------------------------------------------------------------- /src/test/resources/aog_with_update_permission.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/aog_with_update_permission.json -------------------------------------------------------------------------------- /src/test/resources/dialogflow_complete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/dialogflow_complete.json -------------------------------------------------------------------------------- /src/test/resources/dialogflow_package_entitlements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/dialogflow_package_entitlements.json -------------------------------------------------------------------------------- /src/test/resources/dialogflow_user_storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/dialogflow_user_storage.json -------------------------------------------------------------------------------- /src/test/resources/dialogflow_welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/dialogflow_welcome.json -------------------------------------------------------------------------------- /src/test/resources/dialogflow_with_conv_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/dialogflow_with_conv_data.json -------------------------------------------------------------------------------- /src/test/resources/dialogflow_with_datetime_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/dialogflow_with_datetime_response.json -------------------------------------------------------------------------------- /src/test/resources/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/input.json -------------------------------------------------------------------------------- /src/test/resources/smarthome_disconnect_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/smarthome_disconnect_request.json -------------------------------------------------------------------------------- /src/test/resources/smarthome_execute_2fa_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/smarthome_execute_2fa_request.json -------------------------------------------------------------------------------- /src/test/resources/smarthome_execute_2fa_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/smarthome_execute_2fa_response.json -------------------------------------------------------------------------------- /src/test/resources/smarthome_execute_customdata_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/smarthome_execute_customdata_request.json -------------------------------------------------------------------------------- /src/test/resources/smarthome_execute_dock_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/smarthome_execute_dock_request.json -------------------------------------------------------------------------------- /src/test/resources/smarthome_execute_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/smarthome_execute_request.json -------------------------------------------------------------------------------- /src/test/resources/smarthome_execute_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/smarthome_execute_response.json -------------------------------------------------------------------------------- /src/test/resources/smarthome_query_customdata_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/smarthome_query_customdata_request.json -------------------------------------------------------------------------------- /src/test/resources/smarthome_query_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/smarthome_query_request.json -------------------------------------------------------------------------------- /src/test/resources/smarthome_query_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/smarthome_query_response.json -------------------------------------------------------------------------------- /src/test/resources/smarthome_sync_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/smarthome_sync_request.json -------------------------------------------------------------------------------- /src/test/resources/smarthome_sync_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/smarthome_sync_response.json -------------------------------------------------------------------------------- /src/test/resources/smarthome_sync_response_local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/resources/smarthome_sync_response_local.json -------------------------------------------------------------------------------- /src/test/test.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actions-on-google-java/HEAD/src/test/test.iml --------------------------------------------------------------------------------