@maxim_mazurok/gapi.client.contactcenterinsights-v1 0.0.20221029 → 0.0.20221108
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 +7 -1
- package/package.json +1 -1
- package/tests.ts +22 -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://contactcenterinsights.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20221108
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -269,6 +269,8 @@ declare namespace gapi.client {
|
|
|
269
269
|
intentMatchData?: GoogleCloudContactcenterinsightsV1IntentMatchData;
|
|
270
270
|
/** Data specifying an interruption. */
|
|
271
271
|
interruptionData?: any;
|
|
272
|
+
/** Data specifying an issue match. */
|
|
273
|
+
issueMatchData?: GoogleCloudContactcenterinsightsV1IssueMatchData;
|
|
272
274
|
/** Data specifying a phrase match. */
|
|
273
275
|
phraseMatchData?: GoogleCloudContactcenterinsightsV1PhraseMatchData;
|
|
274
276
|
/** Data specifying sentiment. */
|
|
@@ -572,6 +574,10 @@ declare namespace gapi.client {
|
|
|
572
574
|
/** Score indicating the likelihood of the issue assignment. currently bounded on [0,1]. */
|
|
573
575
|
score?: number;
|
|
574
576
|
}
|
|
577
|
+
interface GoogleCloudContactcenterinsightsV1IssueMatchData {
|
|
578
|
+
/** Information about the issue's assignment. */
|
|
579
|
+
issueAssignment?: GoogleCloudContactcenterinsightsV1IssueAssignment;
|
|
580
|
+
}
|
|
575
581
|
interface GoogleCloudContactcenterinsightsV1IssueModel {
|
|
576
582
|
/** Output only. The time at which this issue model was created. */
|
|
577
583
|
createTime?: string;
|
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: 20221108
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -116,6 +116,13 @@ gapi.load('client', async () => {
|
|
|
116
116
|
},
|
|
117
117
|
interruptionData: {
|
|
118
118
|
},
|
|
119
|
+
issueMatchData: {
|
|
120
|
+
issueAssignment: {
|
|
121
|
+
displayName: "Test string",
|
|
122
|
+
issue: "Test string",
|
|
123
|
+
score: 42,
|
|
124
|
+
},
|
|
125
|
+
},
|
|
119
126
|
phraseMatchData: {
|
|
120
127
|
displayName: "Test string",
|
|
121
128
|
phraseMatcher: "Test string",
|
|
@@ -359,6 +366,13 @@ gapi.load('client', async () => {
|
|
|
359
366
|
},
|
|
360
367
|
interruptionData: {
|
|
361
368
|
},
|
|
369
|
+
issueMatchData: {
|
|
370
|
+
issueAssignment: {
|
|
371
|
+
displayName: "Test string",
|
|
372
|
+
issue: "Test string",
|
|
373
|
+
score: 42,
|
|
374
|
+
},
|
|
375
|
+
},
|
|
362
376
|
phraseMatchData: {
|
|
363
377
|
displayName: "Test string",
|
|
364
378
|
phraseMatcher: "Test string",
|
|
@@ -555,6 +569,13 @@ gapi.load('client', async () => {
|
|
|
555
569
|
},
|
|
556
570
|
interruptionData: {
|
|
557
571
|
},
|
|
572
|
+
issueMatchData: {
|
|
573
|
+
issueAssignment: {
|
|
574
|
+
displayName: "Test string",
|
|
575
|
+
issue: "Test string",
|
|
576
|
+
score: 42,
|
|
577
|
+
},
|
|
578
|
+
},
|
|
558
579
|
phraseMatchData: {
|
|
559
580
|
displayName: "Test string",
|
|
560
581
|
phraseMatcher: "Test string",
|