@maxim_mazurok/gapi.client.dialogflow-v2 0.0.20230630 → 0.0.20230705
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +9 -3
- package/package.json +1 -1
- package/tests.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://dialogflow.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230705
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -236,12 +236,15 @@ declare namespace gapi.client {
|
|
|
236
236
|
string;
|
|
237
237
|
}
|
|
238
238
|
interface GoogleCloudDialogflowCxV3beta1ExportAgentResponse {
|
|
239
|
-
/** Uncompressed raw byte content for agent. */
|
|
239
|
+
/** Uncompressed raw byte content for agent. This field is populated if none of `agent_uri` and `git_destination` are specified in ExportAgentRequest. */
|
|
240
240
|
agentContent?:
|
|
241
241
|
string;
|
|
242
242
|
/** The URI to a file containing the exported agent. This field is populated if `agent_uri` is specified in ExportAgentRequest. */
|
|
243
243
|
agentUri?:
|
|
244
244
|
string;
|
|
245
|
+
/** Commit SHA of the git push. This field is populated if `git_destination` are specified in ExportAgentRequest. */
|
|
246
|
+
commitSha?:
|
|
247
|
+
string;
|
|
245
248
|
}
|
|
246
249
|
interface GoogleCloudDialogflowCxV3beta1ExportFlowResponse {
|
|
247
250
|
/** Uncompressed raw byte content for flow. */
|
|
@@ -1286,12 +1289,15 @@ declare namespace gapi.client {
|
|
|
1286
1289
|
string;
|
|
1287
1290
|
}
|
|
1288
1291
|
interface GoogleCloudDialogflowCxV3ExportAgentResponse {
|
|
1289
|
-
/** Uncompressed raw byte content for agent. */
|
|
1292
|
+
/** Uncompressed raw byte content for agent. This field is populated if none of `agent_uri` and `git_destination` are specified in ExportAgentRequest. */
|
|
1290
1293
|
agentContent?:
|
|
1291
1294
|
string;
|
|
1292
1295
|
/** The URI to a file containing the exported agent. This field is populated if `agent_uri` is specified in ExportAgentRequest. */
|
|
1293
1296
|
agentUri?:
|
|
1294
1297
|
string;
|
|
1298
|
+
/** Commit SHA of the git push. This field is populated if `git_destination` are specified in ExportAgentRequest. */
|
|
1299
|
+
commitSha?:
|
|
1300
|
+
string;
|
|
1295
1301
|
}
|
|
1296
1302
|
interface GoogleCloudDialogflowCxV3ExportFlowResponse {
|
|
1297
1303
|
/** Uncompressed raw byte content for flow. */
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230705
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|