@maxim_mazurok/gapi.client.dialogflow-v2 0.0.20230717 → 0.0.20230722
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 +4 -1
- package/package.json +1 -1
- package/tests.ts +7 -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: 20230722
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -5616,6 +5616,9 @@ declare namespace gapi.client {
|
|
|
5616
5616
|
*/
|
|
5617
5617
|
payload?:
|
|
5618
5618
|
{ [P in string]: any };
|
|
5619
|
+
/** The platform of the virtual agent response messages. If not empty, only emits messages from this platform in the response. Valid values are the enum names of platform. */
|
|
5620
|
+
platform?:
|
|
5621
|
+
string;
|
|
5619
5622
|
/** Specifies whether to delete all contexts in the current session before the new ones are activated. */
|
|
5620
5623
|
resetContexts?:
|
|
5621
5624
|
boolean;
|
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: 20230722
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -532,6 +532,7 @@ gapi.load('client', async () => {
|
|
|
532
532
|
payload: {
|
|
533
533
|
A: 42
|
|
534
534
|
},
|
|
535
|
+
platform: "Test string",
|
|
535
536
|
resetContexts: true,
|
|
536
537
|
sentimentAnalysisRequestConfig: {
|
|
537
538
|
analyzeQueryTextSentiment: true,
|
|
@@ -1907,6 +1908,7 @@ gapi.load('client', async () => {
|
|
|
1907
1908
|
payload: {
|
|
1908
1909
|
A: 42
|
|
1909
1910
|
},
|
|
1911
|
+
platform: "Test string",
|
|
1910
1912
|
resetContexts: true,
|
|
1911
1913
|
sentimentAnalysisRequestConfig: {
|
|
1912
1914
|
analyzeQueryTextSentiment: true,
|
|
@@ -2689,6 +2691,7 @@ gapi.load('client', async () => {
|
|
|
2689
2691
|
payload: {
|
|
2690
2692
|
A: 42
|
|
2691
2693
|
},
|
|
2694
|
+
platform: "Test string",
|
|
2692
2695
|
resetContexts: true,
|
|
2693
2696
|
sentimentAnalysisRequestConfig: {
|
|
2694
2697
|
analyzeQueryTextSentiment: true,
|
|
@@ -3498,6 +3501,7 @@ gapi.load('client', async () => {
|
|
|
3498
3501
|
payload: {
|
|
3499
3502
|
A: 42
|
|
3500
3503
|
},
|
|
3504
|
+
platform: "Test string",
|
|
3501
3505
|
resetContexts: true,
|
|
3502
3506
|
sentimentAnalysisRequestConfig: {
|
|
3503
3507
|
analyzeQueryTextSentiment: true,
|
|
@@ -4741,6 +4745,7 @@ gapi.load('client', async () => {
|
|
|
4741
4745
|
payload: {
|
|
4742
4746
|
A: 42
|
|
4743
4747
|
},
|
|
4748
|
+
platform: "Test string",
|
|
4744
4749
|
resetContexts: true,
|
|
4745
4750
|
sentimentAnalysisRequestConfig: {
|
|
4746
4751
|
analyzeQueryTextSentiment: true,
|
|
@@ -5590,6 +5595,7 @@ gapi.load('client', async () => {
|
|
|
5590
5595
|
payload: {
|
|
5591
5596
|
A: 42
|
|
5592
5597
|
},
|
|
5598
|
+
platform: "Test string",
|
|
5593
5599
|
resetContexts: true,
|
|
5594
5600
|
sentimentAnalysisRequestConfig: {
|
|
5595
5601
|
analyzeQueryTextSentiment: true,
|