Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

Commit

Permalink
feat: support setting current_page to resume sessions; expose transit…
Browse files Browse the repository at this point in the history
…ion_route_groups in flows and language_code in webhook

PiperOrigin-RevId: 367042726

Source-Author: Google APIs <[email protected]>
Source-Date: Tue Apr 6 11:04:50 2021 -0700
Source-Repo: googleapis/googleapis
Source-Sha: 163ed6c0450949662bf2e6997eb7e0782cd4d800
Source-Link: googleapis/googleapis@163ed6c
  • Loading branch information
yoshi-automation committed Apr 6, 2021
1 parent 43cdc98 commit 4cd514e
Show file tree
Hide file tree
Showing 18 changed files with 1,443 additions and 426 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ public void createFlowTest() throws Exception {
.setDescription("description-1724546052")
.addAllTransitionRoutes(new ArrayList<TransitionRoute>())
.addAllEventHandlers(new ArrayList<EventHandler>())
.addAllTransitionRouteGroups(new ArrayList<String>())
.setNluSettings(NluSettings.newBuilder().build())
.build();
mockFlows.addResponse(expectedResponse);
Expand Down Expand Up @@ -141,6 +142,7 @@ public void createFlowTest2() throws Exception {
.setDescription("description-1724546052")
.addAllTransitionRoutes(new ArrayList<TransitionRoute>())
.addAllEventHandlers(new ArrayList<EventHandler>())
.addAllTransitionRouteGroups(new ArrayList<String>())
.setNluSettings(NluSettings.newBuilder().build())
.build();
mockFlows.addResponse(expectedResponse);
Expand Down Expand Up @@ -343,6 +345,7 @@ public void getFlowTest() throws Exception {
.setDescription("description-1724546052")
.addAllTransitionRoutes(new ArrayList<TransitionRoute>())
.addAllEventHandlers(new ArrayList<EventHandler>())
.addAllTransitionRouteGroups(new ArrayList<String>())
.setNluSettings(NluSettings.newBuilder().build())
.build();
mockFlows.addResponse(expectedResponse);
Expand Down Expand Up @@ -386,6 +389,7 @@ public void getFlowTest2() throws Exception {
.setDescription("description-1724546052")
.addAllTransitionRoutes(new ArrayList<TransitionRoute>())
.addAllEventHandlers(new ArrayList<EventHandler>())
.addAllTransitionRouteGroups(new ArrayList<String>())
.setNluSettings(NluSettings.newBuilder().build())
.build();
mockFlows.addResponse(expectedResponse);
Expand Down Expand Up @@ -429,6 +433,7 @@ public void updateFlowTest() throws Exception {
.setDescription("description-1724546052")
.addAllTransitionRoutes(new ArrayList<TransitionRoute>())
.addAllEventHandlers(new ArrayList<EventHandler>())
.addAllTransitionRouteGroups(new ArrayList<String>())
.setNluSettings(NluSettings.newBuilder().build())
.build();
mockFlows.addResponse(expectedResponse);
Expand Down
Loading

0 comments on commit 4cd514e

Please sign in to comment.