Skip to content

Commit 3f49546

Browse files
1 parent 3c1fb8b commit 3f49546

File tree

9 files changed

+85
-13
lines changed

9 files changed

+85
-13
lines changed

clients/google-api-services-dialogflow/v2/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-dialogflow</artifactId>
25-
<version>v2-rev20251105-2.0.0</version>
25+
<version>v2-rev20251110-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-dialogflow:v2-rev20251105-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dialogflow:v2-rev20251110-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dialogflow/v2/2.0.0/com/google/api/services/dialogflow/v2/model/GoogleCloudDialogflowV2HumanAgentAssistantConfigConversationModelConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* Custom conversation models used in agent assist feature. Supported feature: ARTICLE_SUGGESTION,
21-
* SMART_COMPOSE, SMART_REPLY, CONVERSATION_SUMMARIZATION.
21+
* SMART_COMPOSE, SMART_REPLY, CONVERSATION_SUMMARIZATION
2222
*
2323
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2424
* transmitted over HTTP when working with the Dialogflow API. For a detailed explanation see:

clients/google-api-services-dialogflow/v2/2.0.0/com/google/api/services/dialogflow/v2/model/GoogleCloudDialogflowV2Participant.java

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,17 @@
2929
@SuppressWarnings("javadoc")
3030
public final class GoogleCloudDialogflowV2Participant extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. For tracking the utilization of prebuilt Agent Assist integration modules. This field
34+
* is only inscope for Integration type that include UI Modules, Backend Modules, and Agent
35+
* Desktop connector, it is out of scope for CCaaS and Direct Integration. For each human agent,
36+
* prebuilt UI Modules needs to trigger the UpdateParticipant API to update this field. Both
37+
* CreateParticipantRequest and UpdateParticipantRequest will be supported.
38+
* The value may be {@code null}.
39+
*/
40+
@com.google.api.client.util.Key
41+
private java.lang.String agentDesktopSource;
42+
3243
/**
3344
* Optional. Key-value filters on the metadata of documents returned by article suggestion. If
3445
* specified, article suggestion only returns suggested documents that match all filters in their
@@ -82,6 +93,31 @@ public final class GoogleCloudDialogflowV2Participant extends com.google.api.cli
8293
@com.google.api.client.util.Key
8394
private java.lang.String sipRecordingMediaLabel;
8495

96+
/**
97+
* Optional. For tracking the utilization of prebuilt Agent Assist integration modules. This field
98+
* is only inscope for Integration type that include UI Modules, Backend Modules, and Agent
99+
* Desktop connector, it is out of scope for CCaaS and Direct Integration. For each human agent,
100+
* prebuilt UI Modules needs to trigger the UpdateParticipant API to update this field. Both
101+
* CreateParticipantRequest and UpdateParticipantRequest will be supported.
102+
* @return value or {@code null} for none
103+
*/
104+
public java.lang.String getAgentDesktopSource() {
105+
return agentDesktopSource;
106+
}
107+
108+
/**
109+
* Optional. For tracking the utilization of prebuilt Agent Assist integration modules. This field
110+
* is only inscope for Integration type that include UI Modules, Backend Modules, and Agent
111+
* Desktop connector, it is out of scope for CCaaS and Direct Integration. For each human agent,
112+
* prebuilt UI Modules needs to trigger the UpdateParticipant API to update this field. Both
113+
* CreateParticipantRequest and UpdateParticipantRequest will be supported.
114+
* @param agentDesktopSource agentDesktopSource or {@code null} for none
115+
*/
116+
public GoogleCloudDialogflowV2Participant setAgentDesktopSource(java.lang.String agentDesktopSource) {
117+
this.agentDesktopSource = agentDesktopSource;
118+
return this;
119+
}
120+
85121
/**
86122
* Optional. Key-value filters on the metadata of documents returned by article suggestion. If
87123
* specified, article suggestion only returns suggested documents that match all filters in their

clients/google-api-services-dialogflow/v2/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-dialogflow</artifactId>
11-
<version>v2-rev20251105-2.0.0</version>
12-
<name>Dialogflow API v2-rev20251105-2.0.0</name>
11+
<version>v2-rev20251110-2.0.0</version>
12+
<name>Dialogflow API v2-rev20251110-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-dialogflow/v2/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-dialogflow</artifactId>
25-
<version>v2-rev20251105-2.0.0</version>
25+
<version>v2-rev20251110-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-dialogflow:v2-rev20251105-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dialogflow:v2-rev20251110-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dialogflow/v2beta1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-dialogflow</artifactId>
25-
<version>v2beta1-rev20251105-2.0.0</version>
25+
<version>v2beta1-rev20251110-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-dialogflow:v2beta1-rev20251105-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dialogflow:v2beta1-rev20251110-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dialogflow/v2beta1/2.0.0/com/google/api/services/dialogflow/v2beta1/model/GoogleCloudDialogflowV2beta1Participant.java

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,17 @@
2929
@SuppressWarnings("javadoc")
3030
public final class GoogleCloudDialogflowV2beta1Participant extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. For tracking the utilization of prebuilt Agent Assist integration modules. This field
34+
* is only inscope for Integration type that include UI Modules, Backend Modules, and Agent
35+
* Desktop connector, it is out of scope for CCaaS and Direct Integration. For each human agent,
36+
* prebuilt UI Modules needs to trigger the UpdateParticipant API to update this field. Both
37+
* CreateParticipantRequest and UpdateParticipantRequest will be supported.
38+
* The value may be {@code null}.
39+
*/
40+
@com.google.api.client.util.Key
41+
private java.lang.String agentDesktopSource;
42+
3243
/**
3344
* Optional. Key-value filters on the metadata of documents returned by article suggestion. If
3445
* specified, article suggestion only returns suggested documents that match all filters in their
@@ -75,6 +86,31 @@ public final class GoogleCloudDialogflowV2beta1Participant extends com.google.ap
7586
@com.google.api.client.util.Key
7687
private java.lang.String role;
7788

89+
/**
90+
* Optional. For tracking the utilization of prebuilt Agent Assist integration modules. This field
91+
* is only inscope for Integration type that include UI Modules, Backend Modules, and Agent
92+
* Desktop connector, it is out of scope for CCaaS and Direct Integration. For each human agent,
93+
* prebuilt UI Modules needs to trigger the UpdateParticipant API to update this field. Both
94+
* CreateParticipantRequest and UpdateParticipantRequest will be supported.
95+
* @return value or {@code null} for none
96+
*/
97+
public java.lang.String getAgentDesktopSource() {
98+
return agentDesktopSource;
99+
}
100+
101+
/**
102+
* Optional. For tracking the utilization of prebuilt Agent Assist integration modules. This field
103+
* is only inscope for Integration type that include UI Modules, Backend Modules, and Agent
104+
* Desktop connector, it is out of scope for CCaaS and Direct Integration. For each human agent,
105+
* prebuilt UI Modules needs to trigger the UpdateParticipant API to update this field. Both
106+
* CreateParticipantRequest and UpdateParticipantRequest will be supported.
107+
* @param agentDesktopSource agentDesktopSource or {@code null} for none
108+
*/
109+
public GoogleCloudDialogflowV2beta1Participant setAgentDesktopSource(java.lang.String agentDesktopSource) {
110+
this.agentDesktopSource = agentDesktopSource;
111+
return this;
112+
}
113+
78114
/**
79115
* Optional. Key-value filters on the metadata of documents returned by article suggestion. If
80116
* specified, article suggestion only returns suggested documents that match all filters in their

clients/google-api-services-dialogflow/v2beta1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-dialogflow</artifactId>
11-
<version>v2beta1-rev20251105-2.0.0</version>
12-
<name>Dialogflow API v2beta1-rev20251105-2.0.0</name>
11+
<version>v2beta1-rev20251110-2.0.0</version>
12+
<name>Dialogflow API v2beta1-rev20251110-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-dialogflow/v2beta1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-dialogflow</artifactId>
25-
<version>v2beta1-rev20251105-2.0.0</version>
25+
<version>v2beta1-rev20251110-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-dialogflow:v2beta1-rev20251105-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dialogflow:v2beta1-rev20251110-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)