@maxim_mazurok/gapi.client.contactcenterinsights-v1 0.0.20230621 → 0.0.20230702
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 +13 -1
- package/package.json +1 -1
- package/tests.ts +5 -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: 20230702
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -721,6 +721,12 @@ declare namespace gapi.client {
|
|
|
721
721
|
/** Output only. Number of issues in this issue model. */
|
|
722
722
|
issueCount?:
|
|
723
723
|
string;
|
|
724
|
+
/** Language of the model. */
|
|
725
|
+
languageCode?:
|
|
726
|
+
string;
|
|
727
|
+
/** Type of the model. */
|
|
728
|
+
modelType?:
|
|
729
|
+
string;
|
|
724
730
|
/** Immutable. The resource name of the issue model. Format: projects/{project}/locations/{location}/issueModels/{issue_model} */
|
|
725
731
|
name?:
|
|
726
732
|
string;
|
|
@@ -1692,6 +1698,12 @@ declare namespace gapi.client {
|
|
|
1692
1698
|
/** Output only. Number of issues in this issue model. */
|
|
1693
1699
|
issueCount?:
|
|
1694
1700
|
string;
|
|
1701
|
+
/** Language of the model. */
|
|
1702
|
+
languageCode?:
|
|
1703
|
+
string;
|
|
1704
|
+
/** Type of the model. */
|
|
1705
|
+
modelType?:
|
|
1706
|
+
string;
|
|
1695
1707
|
/** Immutable. The resource name of the issue model. Format: projects/{project}/locations/{location}/issueModels/{issue_model} */
|
|
1696
1708
|
name?:
|
|
1697
1709
|
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: 20230702
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -1144,6 +1144,8 @@ gapi.load('client', async () => {
|
|
|
1144
1144
|
trainingConversationsCount: "Test string",
|
|
1145
1145
|
},
|
|
1146
1146
|
issueCount: "Test string",
|
|
1147
|
+
languageCode: "Test string",
|
|
1148
|
+
modelType: "Test string",
|
|
1147
1149
|
name: "Test string",
|
|
1148
1150
|
state: "Test string",
|
|
1149
1151
|
trainingStats: {
|
|
@@ -1190,6 +1192,8 @@ gapi.load('client', async () => {
|
|
|
1190
1192
|
trainingConversationsCount: "Test string",
|
|
1191
1193
|
},
|
|
1192
1194
|
issueCount: "Test string",
|
|
1195
|
+
languageCode: "Test string",
|
|
1196
|
+
modelType: "Test string",
|
|
1193
1197
|
name: "Test string",
|
|
1194
1198
|
state: "Test string",
|
|
1195
1199
|
trainingStats: {
|