@maxim_mazurok/gapi.client.contactcenterinsights-v1 0.0.20241209 → 0.0.20241218
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 +101 -1
- package/package.json +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://contactcenterinsights.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20241218
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -387,6 +387,14 @@ declare namespace gapi.client {
|
|
|
387
387
|
/** Output only. The time the operation finished running. */
|
|
388
388
|
endTime?: string;
|
|
389
389
|
}
|
|
390
|
+
interface GoogleCloudContactcenterinsightsV1alpha1CreateIssueMetadata {
|
|
391
|
+
/** Output only. The time the operation was created. */
|
|
392
|
+
createTime?: string;
|
|
393
|
+
/** Output only. The time the operation finished running. */
|
|
394
|
+
endTime?: string;
|
|
395
|
+
/** The original request for creation. */
|
|
396
|
+
request?: GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest;
|
|
397
|
+
}
|
|
390
398
|
interface GoogleCloudContactcenterinsightsV1alpha1CreateIssueModelMetadata {
|
|
391
399
|
/** Output only. The time the operation was created. */
|
|
392
400
|
createTime?: string;
|
|
@@ -401,6 +409,12 @@ declare namespace gapi.client {
|
|
|
401
409
|
/** Required. The parent resource of the issue model. */
|
|
402
410
|
parent?: string;
|
|
403
411
|
}
|
|
412
|
+
interface GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest {
|
|
413
|
+
/** Required. The values for the new issue. */
|
|
414
|
+
issue?: GoogleCloudContactcenterinsightsV1alpha1Issue;
|
|
415
|
+
/** Required. The parent resource of the issue. */
|
|
416
|
+
parent?: string;
|
|
417
|
+
}
|
|
404
418
|
interface GoogleCloudContactcenterinsightsV1alpha1DeleteIssueModelMetadata {
|
|
405
419
|
/** Output only. The time the operation was created. */
|
|
406
420
|
createTime?: string;
|
|
@@ -710,6 +724,20 @@ declare namespace gapi.client {
|
|
|
710
724
|
intentUniqueId?: string;
|
|
711
725
|
}
|
|
712
726
|
interface GoogleCloudContactcenterinsightsV1alpha1InterruptionData {}
|
|
727
|
+
interface GoogleCloudContactcenterinsightsV1alpha1Issue {
|
|
728
|
+
/** Output only. The time at which this issue was created. */
|
|
729
|
+
createTime?: string;
|
|
730
|
+
/** Representative description of the issue. */
|
|
731
|
+
displayDescription?: string;
|
|
732
|
+
/** The representative name for the issue. */
|
|
733
|
+
displayName?: string;
|
|
734
|
+
/** Immutable. The resource name of the issue. Format: projects/{project}/locations/{location}/issueModels/{issue_model}/issues/{issue} */
|
|
735
|
+
name?: string;
|
|
736
|
+
/** Output only. Resource names of the sample representative utterances that match to this issue. */
|
|
737
|
+
sampleUtterances?: string[];
|
|
738
|
+
/** Output only. The most recent time that this issue was updated. */
|
|
739
|
+
updateTime?: string;
|
|
740
|
+
}
|
|
713
741
|
interface GoogleCloudContactcenterinsightsV1alpha1IssueAssignment {
|
|
714
742
|
/** Immutable. Display name of the assigned issue. This field is set at time of analyis and immutable since then. */
|
|
715
743
|
displayName?: string;
|
|
@@ -1517,6 +1545,14 @@ declare namespace gapi.client {
|
|
|
1517
1545
|
/** Output only. The time the operation finished running. */
|
|
1518
1546
|
endTime?: string;
|
|
1519
1547
|
}
|
|
1548
|
+
interface GoogleCloudContactcenterinsightsV1CreateIssueMetadata {
|
|
1549
|
+
/** Output only. The time the operation was created. */
|
|
1550
|
+
createTime?: string;
|
|
1551
|
+
/** Output only. The time the operation finished running. */
|
|
1552
|
+
endTime?: string;
|
|
1553
|
+
/** The original request for creation. */
|
|
1554
|
+
request?: GoogleCloudContactcenterinsightsV1CreateIssueRequest;
|
|
1555
|
+
}
|
|
1520
1556
|
interface GoogleCloudContactcenterinsightsV1CreateIssueModelMetadata {
|
|
1521
1557
|
/** Output only. The time the operation was created. */
|
|
1522
1558
|
createTime?: string;
|
|
@@ -1531,6 +1567,12 @@ declare namespace gapi.client {
|
|
|
1531
1567
|
/** Required. The parent resource of the issue model. */
|
|
1532
1568
|
parent?: string;
|
|
1533
1569
|
}
|
|
1570
|
+
interface GoogleCloudContactcenterinsightsV1CreateIssueRequest {
|
|
1571
|
+
/** Required. The values for the new issue. */
|
|
1572
|
+
issue?: GoogleCloudContactcenterinsightsV1Issue;
|
|
1573
|
+
/** Required. The parent resource of the issue. */
|
|
1574
|
+
parent?: string;
|
|
1575
|
+
}
|
|
1534
1576
|
interface GoogleCloudContactcenterinsightsV1DeleteIssueModelMetadata {
|
|
1535
1577
|
/** Output only. The time the operation was created. */
|
|
1536
1578
|
createTime?: string;
|
|
@@ -3721,6 +3763,64 @@ declare namespace gapi.client {
|
|
|
3721
3763
|
): Request<GoogleLongrunningOperation>;
|
|
3722
3764
|
}
|
|
3723
3765
|
interface IssuesResource {
|
|
3766
|
+
/** Creates an issue. */
|
|
3767
|
+
create(request: {
|
|
3768
|
+
/** V1 error format. */
|
|
3769
|
+
'$.xgafv'?: string;
|
|
3770
|
+
/** OAuth access token. */
|
|
3771
|
+
access_token?: string;
|
|
3772
|
+
/** Data format for response. */
|
|
3773
|
+
alt?: string;
|
|
3774
|
+
/** JSONP */
|
|
3775
|
+
callback?: string;
|
|
3776
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3777
|
+
fields?: string;
|
|
3778
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3779
|
+
key?: string;
|
|
3780
|
+
/** OAuth 2.0 token for the current user. */
|
|
3781
|
+
oauth_token?: string;
|
|
3782
|
+
/** Required. The parent resource of the issue. */
|
|
3783
|
+
parent: string;
|
|
3784
|
+
/** Returns response with indentations and line breaks. */
|
|
3785
|
+
prettyPrint?: boolean;
|
|
3786
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3787
|
+
quotaUser?: string;
|
|
3788
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3789
|
+
upload_protocol?: string;
|
|
3790
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3791
|
+
uploadType?: string;
|
|
3792
|
+
/** Request body */
|
|
3793
|
+
resource: GoogleCloudContactcenterinsightsV1Issue;
|
|
3794
|
+
}): Request<GoogleLongrunningOperation>;
|
|
3795
|
+
create(
|
|
3796
|
+
request: {
|
|
3797
|
+
/** V1 error format. */
|
|
3798
|
+
'$.xgafv'?: string;
|
|
3799
|
+
/** OAuth access token. */
|
|
3800
|
+
access_token?: string;
|
|
3801
|
+
/** Data format for response. */
|
|
3802
|
+
alt?: string;
|
|
3803
|
+
/** JSONP */
|
|
3804
|
+
callback?: string;
|
|
3805
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3806
|
+
fields?: string;
|
|
3807
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3808
|
+
key?: string;
|
|
3809
|
+
/** OAuth 2.0 token for the current user. */
|
|
3810
|
+
oauth_token?: string;
|
|
3811
|
+
/** Required. The parent resource of the issue. */
|
|
3812
|
+
parent: string;
|
|
3813
|
+
/** Returns response with indentations and line breaks. */
|
|
3814
|
+
prettyPrint?: boolean;
|
|
3815
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3816
|
+
quotaUser?: string;
|
|
3817
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3818
|
+
upload_protocol?: string;
|
|
3819
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3820
|
+
uploadType?: string;
|
|
3821
|
+
},
|
|
3822
|
+
body: GoogleCloudContactcenterinsightsV1Issue
|
|
3823
|
+
): Request<GoogleLongrunningOperation>;
|
|
3724
3824
|
/** Deletes an issue. */
|
|
3725
3825
|
delete(request?: {
|
|
3726
3826
|
/** V1 error format. */
|