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: 367052612

Source-Author: Google APIs <[email protected]>
Source-Date: Tue Apr 6 11:51:30 2021 -0700
Source-Repo: googleapis/googleapis
Source-Sha: 9a386bc12400c03f81c97f599d7ba7cb0b440577
Source-Link: googleapis/googleapis@9a386bc
  • Loading branch information
yoshi-automation committed Apr 6, 2021
1 parent 4cd514e commit 1415dc7
Show file tree
Hide file tree
Showing 18 changed files with 1,457 additions and 439 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 1415dc7

Please sign in to comment.