@maxim_mazurok/gapi.client.contactcenterinsights-v1 0.1.20250926 → 0.1.20251024

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.
Files changed (2) hide show
  1. package/index.d.ts +134 -427
  2. 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: 20250926
12
+ // Revision: 20251024
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -516,10 +516,20 @@ declare namespace gapi.client {
516
516
  interface GoogleCloudContactcenterinsightsV1alpha1Dimension {
517
517
  /** Output only. Metadata about the agent dimension. */
518
518
  agentDimensionMetadata?: GoogleCloudContactcenterinsightsV1alpha1DimensionAgentDimensionMetadata;
519
+ /** Output only. Metadata about the client sentiment category dimension. */
520
+ clientSentimentCategoryDimensionMetadata?: GoogleCloudContactcenterinsightsV1alpha1DimensionClientSentimentCategoryDimensionMetadata;
521
+ /** Output only. Metadata about the Conversational Agents playbook dimension. */
522
+ conversationalAgentsPlaybookDimensionMetadata?: GoogleCloudContactcenterinsightsV1alpha1DimensionConversationalAgentsPlaybookDimensionMetadata;
523
+ /** Output only. Metadata about the Conversational Agents tool dimension. */
524
+ conversationalAgentsToolDimensionMetadata?: GoogleCloudContactcenterinsightsV1alpha1DimensionConversationalAgentsToolDimensionMetadata;
525
+ /** Output only. Metadata about the conversation profile dimension. */
526
+ conversationProfileDimensionMetadata?: GoogleCloudContactcenterinsightsV1alpha1DimensionConversationProfileDimensionMetadata;
519
527
  /** The key of the dimension. */
520
528
  dimensionKey?: string;
521
529
  /** Output only. Metadata about the issue dimension. */
522
530
  issueDimensionMetadata?: GoogleCloudContactcenterinsightsV1alpha1DimensionIssueDimensionMetadata;
531
+ /** Output only. Metadata about the conversation medium dimension. */
532
+ mediumDimensionMetadata?: GoogleCloudContactcenterinsightsV1alpha1DimensionMediumDimensionMetadata;
523
533
  /** Output only. Metadata about the QA question-answer dimension. */
524
534
  qaQuestionAnswerDimensionMetadata?: GoogleCloudContactcenterinsightsV1alpha1DimensionQaQuestionAnswerDimensionMetadata;
525
535
  /** Output only. Metadata about the QA question dimension. */
@@ -543,6 +553,26 @@ declare namespace gapi.client {
543
553
  /** Optional. The agent's version ID. Only applicable to automated agents. This will be populated for AGENT_VERSION_ID, and AGENT_DEPLOYMENT_ID dimensions. */
544
554
  agentVersionId?: string;
545
555
  }
556
+ interface GoogleCloudContactcenterinsightsV1alpha1DimensionClientSentimentCategoryDimensionMetadata {
557
+ /** Optional. The client sentiment category. */
558
+ sentimentCategory?: string;
559
+ }
560
+ interface GoogleCloudContactcenterinsightsV1alpha1DimensionConversationalAgentsPlaybookDimensionMetadata {
561
+ /** Optional. The dialogflow playbook display name. */
562
+ playbookDisplayName?: string;
563
+ /** Optional. The dialogflow playbook ID. */
564
+ playbookId?: string;
565
+ }
566
+ interface GoogleCloudContactcenterinsightsV1alpha1DimensionConversationalAgentsToolDimensionMetadata {
567
+ /** Optional. The dialogflow tool display name. */
568
+ toolDisplayName?: string;
569
+ /** Optional. The dialogflow tool ID. */
570
+ toolId?: string;
571
+ }
572
+ interface GoogleCloudContactcenterinsightsV1alpha1DimensionConversationProfileDimensionMetadata {
573
+ /** Optional. The conversation profile ID. */
574
+ conversationProfileId?: string;
575
+ }
546
576
  interface GoogleCloudContactcenterinsightsV1alpha1DimensionIssueDimensionMetadata {
547
577
  /** The issue display name. */
548
578
  issueDisplayName?: string;
@@ -551,6 +581,10 @@ declare namespace gapi.client {
551
581
  /** The parent issue model ID. */
552
582
  issueModelId?: string;
553
583
  }
584
+ interface GoogleCloudContactcenterinsightsV1alpha1DimensionMediumDimensionMetadata {
585
+ /** Optional. The conversation medium. Currently supports : PHONE_CALL, CHAT. */
586
+ medium?: string;
587
+ }
554
588
  interface GoogleCloudContactcenterinsightsV1alpha1DimensionQaQuestionAnswerDimensionMetadata {
555
589
  /** Optional. The full body of the question. */
556
590
  answerValue?: string;
@@ -938,8 +972,6 @@ declare namespace gapi.client {
938
972
  numValue?: number;
939
973
  /** Output only. The maximum potential score of the question. */
940
974
  potentialScore?: number;
941
- /** Output only. The rationale for the answer. This field is only populated for answers that are generated by the LLM. Manual edits currently do not have rationales. */
942
- rationale?: GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValueQaAnswerRationale;
943
975
  /** Output only. Numerical score of the answer. */
944
976
  score?: number;
945
977
  /** Output only. A value of "Skip". If provided, this field may only be set to `true`. If a question receives this answer, it will be excluded from any score calculations. This would mean that the question was not evaluated. */
@@ -947,10 +979,6 @@ declare namespace gapi.client {
947
979
  /** String value. */
948
980
  strValue?: string;
949
981
  }
950
- interface GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValueQaAnswerRationale {
951
- /** The rationale string for the answer. */
952
- rationale?: string;
953
- }
954
982
  interface GoogleCloudContactcenterinsightsV1alpha1QaQuestionTag {
955
983
  /** Output only. The time at which the question tag was created. */
956
984
  createTime?: string;
@@ -1906,10 +1934,20 @@ declare namespace gapi.client {
1906
1934
  interface GoogleCloudContactcenterinsightsV1Dimension {
1907
1935
  /** Output only. Metadata about the agent dimension. */
1908
1936
  agentDimensionMetadata?: GoogleCloudContactcenterinsightsV1DimensionAgentDimensionMetadata;
1937
+ /** Output only. Metadata about the client sentiment category dimension. */
1938
+ clientSentimentCategoryDimensionMetadata?: GoogleCloudContactcenterinsightsV1DimensionClientSentimentCategoryDimensionMetadata;
1939
+ /** Output only. Metadata about the Conversational Agents playbook dimension. */
1940
+ conversationalAgentsPlaybookDimensionMetadata?: GoogleCloudContactcenterinsightsV1DimensionConversationalAgentsPlaybookDimensionMetadata;
1941
+ /** Output only. Metadata about the Conversational Agents tool dimension. */
1942
+ conversationalAgentsToolDimensionMetadata?: GoogleCloudContactcenterinsightsV1DimensionConversationalAgentsToolDimensionMetadata;
1943
+ /** Output only. Metadata about the conversation profile dimension. */
1944
+ conversationProfileDimensionMetadata?: GoogleCloudContactcenterinsightsV1DimensionConversationProfileDimensionMetadata;
1909
1945
  /** The key of the dimension. */
1910
1946
  dimensionKey?: string;
1911
1947
  /** Output only. Metadata about the issue dimension. */
1912
1948
  issueDimensionMetadata?: GoogleCloudContactcenterinsightsV1DimensionIssueDimensionMetadata;
1949
+ /** Output only. Metadata about the conversation medium dimension. */
1950
+ mediumDimensionMetadata?: GoogleCloudContactcenterinsightsV1DimensionMediumDimensionMetadata;
1913
1951
  /** Output only. Metadata about the QA question-answer dimension. */
1914
1952
  qaQuestionAnswerDimensionMetadata?: GoogleCloudContactcenterinsightsV1DimensionQaQuestionAnswerDimensionMetadata;
1915
1953
  /** Output only. Metadata about the QA question dimension. */
@@ -1933,6 +1971,26 @@ declare namespace gapi.client {
1933
1971
  /** Optional. The agent's version ID. Only applicable to automated agents. This will be populated for AGENT_VERSION_ID, and AGENT_DEPLOYMENT_ID dimensions. */
1934
1972
  agentVersionId?: string;
1935
1973
  }
1974
+ interface GoogleCloudContactcenterinsightsV1DimensionClientSentimentCategoryDimensionMetadata {
1975
+ /** Optional. The client sentiment category. */
1976
+ sentimentCategory?: string;
1977
+ }
1978
+ interface GoogleCloudContactcenterinsightsV1DimensionConversationalAgentsPlaybookDimensionMetadata {
1979
+ /** Optional. The dialogflow playbook display name. */
1980
+ playbookDisplayName?: string;
1981
+ /** Optional. The dialogflow playbook ID. */
1982
+ playbookId?: string;
1983
+ }
1984
+ interface GoogleCloudContactcenterinsightsV1DimensionConversationalAgentsToolDimensionMetadata {
1985
+ /** Optional. The dialogflow tool display name. */
1986
+ toolDisplayName?: string;
1987
+ /** Optional. The dialogflow tool ID. */
1988
+ toolId?: string;
1989
+ }
1990
+ interface GoogleCloudContactcenterinsightsV1DimensionConversationProfileDimensionMetadata {
1991
+ /** Optional. The conversation profile ID. */
1992
+ conversationProfileId?: string;
1993
+ }
1936
1994
  interface GoogleCloudContactcenterinsightsV1DimensionIssueDimensionMetadata {
1937
1995
  /** The issue display name. */
1938
1996
  issueDisplayName?: string;
@@ -1941,6 +1999,10 @@ declare namespace gapi.client {
1941
1999
  /** The parent issue model ID. */
1942
2000
  issueModelId?: string;
1943
2001
  }
2002
+ interface GoogleCloudContactcenterinsightsV1DimensionMediumDimensionMetadata {
2003
+ /** Optional. The conversation medium. Currently supports : PHONE_CALL, CHAT. */
2004
+ medium?: string;
2005
+ }
1944
2006
  interface GoogleCloudContactcenterinsightsV1DimensionQaQuestionAnswerDimensionMetadata {
1945
2007
  /** Optional. The full body of the question. */
1946
2008
  answerValue?: string;
@@ -2501,8 +2563,6 @@ declare namespace gapi.client {
2501
2563
  numValue?: number;
2502
2564
  /** Output only. The maximum potential score of the question. */
2503
2565
  potentialScore?: number;
2504
- /** Output only. The rationale for the answer. This field is only populated for answers that are generated by the LLM. Manual edits currently do not have rationales. */
2505
- rationale?: GoogleCloudContactcenterinsightsV1QaAnswerAnswerValueQaAnswerRationale;
2506
2566
  /** Output only. Numerical score of the answer. */
2507
2567
  score?: number;
2508
2568
  /** Output only. A value of "Skip". If provided, this field may only be set to `true`. If a question receives this answer, it will be excluded from any score calculations. This would mean that the question was not evaluated. */
@@ -2510,10 +2570,6 @@ declare namespace gapi.client {
2510
2570
  /** String value. */
2511
2571
  strValue?: string;
2512
2572
  }
2513
- interface GoogleCloudContactcenterinsightsV1QaAnswerAnswerValueQaAnswerRationale {
2514
- /** The rationale string for the answer. */
2515
- rationale?: string;
2516
- }
2517
2573
  interface GoogleCloudContactcenterinsightsV1QaQuestion {
2518
2574
  /** Short, descriptive string, used in the UI where it's not practical to display the full question body. E.g., "Greeting". */
2519
2575
  abbreviation?: string;
@@ -2867,6 +2923,8 @@ declare namespace gapi.client {
2867
2923
  pubsubNotificationSettings?: {[P in string]: string};
2868
2924
  /** Default DLP redaction resources to be applied while ingesting conversations. This applies to conversations ingested from the `UploadConversation` and `IngestConversations` endpoints, including conversations coming from CCAI Platform. */
2869
2925
  redactionConfig?: GoogleCloudContactcenterinsightsV1RedactionConfig;
2926
+ /** Optional. The path to a Cloud Storage bucket containing conversation screen recordings. If provided, Insights will search in the bucket for a screen recording file matching the conversation data source object name prefix. If matches are found, these file URIs will be stored in the conversation screen recordings field. */
2927
+ screenRecordingBucketUri?: string;
2870
2928
  /** Optional. Default Speech-to-Text resources to use while ingesting audio files. Optional, CCAI Insights will create a default if not provided. This applies to conversations ingested from the `UploadConversation` and `IngestConversations` endpoints, including conversations coming from CCAI Platform. */
2871
2929
  speechConfig?: GoogleCloudContactcenterinsightsV1SpeechConfig;
2872
2930
  /** Output only. The time at which the settings were last updated. */
@@ -3486,153 +3544,6 @@ declare namespace gapi.client {
3486
3544
  body: GoogleCloudContactcenterinsightsV1AssessmentRule,
3487
3545
  ): Request<GoogleCloudContactcenterinsightsV1AssessmentRule>;
3488
3546
  }
3489
- interface AnalysesResource {
3490
- /** Creates an analysis. The long running operation is done when the analysis has completed. */
3491
- create(request: {
3492
- /** V1 error format. */
3493
- '$.xgafv'?: string;
3494
- /** OAuth access token. */
3495
- access_token?: string;
3496
- /** Data format for response. */
3497
- alt?: string;
3498
- /** JSONP */
3499
- callback?: string;
3500
- /** Selector specifying which fields to include in a partial response. */
3501
- fields?: string;
3502
- /** 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. */
3503
- key?: string;
3504
- /** OAuth 2.0 token for the current user. */
3505
- oauth_token?: string;
3506
- /** Required. The parent resource of the analysis. */
3507
- parent: string;
3508
- /** Returns response with indentations and line breaks. */
3509
- prettyPrint?: boolean;
3510
- /** 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. */
3511
- quotaUser?: string;
3512
- /** Upload protocol for media (e.g. "raw", "multipart"). */
3513
- upload_protocol?: string;
3514
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3515
- uploadType?: string;
3516
- /** Request body */
3517
- resource: GoogleCloudContactcenterinsightsV1Analysis;
3518
- }): Request<GoogleLongrunningOperation>;
3519
- create(
3520
- request: {
3521
- /** V1 error format. */
3522
- '$.xgafv'?: string;
3523
- /** OAuth access token. */
3524
- access_token?: string;
3525
- /** Data format for response. */
3526
- alt?: string;
3527
- /** JSONP */
3528
- callback?: string;
3529
- /** Selector specifying which fields to include in a partial response. */
3530
- fields?: string;
3531
- /** 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. */
3532
- key?: string;
3533
- /** OAuth 2.0 token for the current user. */
3534
- oauth_token?: string;
3535
- /** Required. The parent resource of the analysis. */
3536
- parent: string;
3537
- /** Returns response with indentations and line breaks. */
3538
- prettyPrint?: boolean;
3539
- /** 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. */
3540
- quotaUser?: string;
3541
- /** Upload protocol for media (e.g. "raw", "multipart"). */
3542
- upload_protocol?: string;
3543
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3544
- uploadType?: string;
3545
- },
3546
- body: GoogleCloudContactcenterinsightsV1Analysis,
3547
- ): Request<GoogleLongrunningOperation>;
3548
- /** Deletes an analysis. */
3549
- delete(request?: {
3550
- /** V1 error format. */
3551
- '$.xgafv'?: string;
3552
- /** OAuth access token. */
3553
- access_token?: string;
3554
- /** Data format for response. */
3555
- alt?: string;
3556
- /** JSONP */
3557
- callback?: string;
3558
- /** Selector specifying which fields to include in a partial response. */
3559
- fields?: string;
3560
- /** 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. */
3561
- key?: string;
3562
- /** Required. The name of the analysis to delete. */
3563
- name: string;
3564
- /** OAuth 2.0 token for the current user. */
3565
- oauth_token?: string;
3566
- /** Returns response with indentations and line breaks. */
3567
- prettyPrint?: boolean;
3568
- /** 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. */
3569
- quotaUser?: string;
3570
- /** Upload protocol for media (e.g. "raw", "multipart"). */
3571
- upload_protocol?: string;
3572
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3573
- uploadType?: string;
3574
- }): Request<{}>;
3575
- /** Gets an analysis. */
3576
- get(request?: {
3577
- /** V1 error format. */
3578
- '$.xgafv'?: string;
3579
- /** OAuth access token. */
3580
- access_token?: string;
3581
- /** Data format for response. */
3582
- alt?: string;
3583
- /** JSONP */
3584
- callback?: string;
3585
- /** Selector specifying which fields to include in a partial response. */
3586
- fields?: string;
3587
- /** 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. */
3588
- key?: string;
3589
- /** Required. The name of the analysis to get. */
3590
- name: string;
3591
- /** OAuth 2.0 token for the current user. */
3592
- oauth_token?: string;
3593
- /** Returns response with indentations and line breaks. */
3594
- prettyPrint?: boolean;
3595
- /** 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. */
3596
- quotaUser?: string;
3597
- /** Upload protocol for media (e.g. "raw", "multipart"). */
3598
- upload_protocol?: string;
3599
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3600
- uploadType?: string;
3601
- }): Request<GoogleCloudContactcenterinsightsV1Analysis>;
3602
- /** Lists analyses. */
3603
- list(request?: {
3604
- /** V1 error format. */
3605
- '$.xgafv'?: string;
3606
- /** OAuth access token. */
3607
- access_token?: string;
3608
- /** Data format for response. */
3609
- alt?: string;
3610
- /** JSONP */
3611
- callback?: string;
3612
- /** Selector specifying which fields to include in a partial response. */
3613
- fields?: string;
3614
- /** A filter to reduce results to a specific subset. Useful for querying conversations with specific properties. */
3615
- filter?: string;
3616
- /** 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. */
3617
- key?: string;
3618
- /** OAuth 2.0 token for the current user. */
3619
- oauth_token?: string;
3620
- /** The maximum number of analyses to return in the response. If this value is zero, the service will select a default size. A call might return fewer objects than requested. A non-empty `next_page_token` in the response indicates that more data is available. */
3621
- pageSize?: number;
3622
- /** The value returned by the last `ListAnalysesResponse`; indicates that this is a continuation of a prior `ListAnalyses` call and the system should return the next page of data. */
3623
- pageToken?: string;
3624
- /** Required. The parent resource of the analyses. */
3625
- parent: string;
3626
- /** Returns response with indentations and line breaks. */
3627
- prettyPrint?: boolean;
3628
- /** 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. */
3629
- quotaUser?: string;
3630
- /** Upload protocol for media (e.g. "raw", "multipart"). */
3631
- upload_protocol?: string;
3632
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3633
- uploadType?: string;
3634
- }): Request<GoogleCloudContactcenterinsightsV1ListAnalysesResponse>;
3635
- }
3636
3547
  interface NotesResource {
3637
3548
  /** Create Note. */
3638
3549
  create(request: {
@@ -4351,64 +4262,6 @@ declare namespace gapi.client {
4351
4262
  ): Request<GoogleCloudContactcenterinsightsV1FeedbackLabel>;
4352
4263
  }
4353
4264
  interface ConversationsResource {
4354
- /** Analyzes multiple conversations in a single request. */
4355
- bulkAnalyze(request: {
4356
- /** V1 error format. */
4357
- '$.xgafv'?: string;
4358
- /** OAuth access token. */
4359
- access_token?: string;
4360
- /** Data format for response. */
4361
- alt?: string;
4362
- /** JSONP */
4363
- callback?: string;
4364
- /** Selector specifying which fields to include in a partial response. */
4365
- fields?: string;
4366
- /** 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. */
4367
- key?: string;
4368
- /** OAuth 2.0 token for the current user. */
4369
- oauth_token?: string;
4370
- /** Required. The parent resource to create analyses in. */
4371
- parent: string;
4372
- /** Returns response with indentations and line breaks. */
4373
- prettyPrint?: boolean;
4374
- /** 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. */
4375
- quotaUser?: string;
4376
- /** Upload protocol for media (e.g. "raw", "multipart"). */
4377
- upload_protocol?: string;
4378
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
4379
- uploadType?: string;
4380
- /** Request body */
4381
- resource: GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest;
4382
- }): Request<GoogleLongrunningOperation>;
4383
- bulkAnalyze(
4384
- request: {
4385
- /** V1 error format. */
4386
- '$.xgafv'?: string;
4387
- /** OAuth access token. */
4388
- access_token?: string;
4389
- /** Data format for response. */
4390
- alt?: string;
4391
- /** JSONP */
4392
- callback?: string;
4393
- /** Selector specifying which fields to include in a partial response. */
4394
- fields?: string;
4395
- /** 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. */
4396
- key?: string;
4397
- /** OAuth 2.0 token for the current user. */
4398
- oauth_token?: string;
4399
- /** Required. The parent resource to create analyses in. */
4400
- parent: string;
4401
- /** Returns response with indentations and line breaks. */
4402
- prettyPrint?: boolean;
4403
- /** 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. */
4404
- quotaUser?: string;
4405
- /** Upload protocol for media (e.g. "raw", "multipart"). */
4406
- upload_protocol?: string;
4407
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
4408
- uploadType?: string;
4409
- },
4410
- body: GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest,
4411
- ): Request<GoogleLongrunningOperation>;
4412
4265
  /** Gets conversation statistics. */
4413
4266
  calculateStats(request?: {
4414
4267
  /** V1 error format. */
@@ -4533,7 +4386,6 @@ declare namespace gapi.client {
4533
4386
  /** The level of details of the conversation. Default is `BASIC`. */
4534
4387
  view?: string;
4535
4388
  }): Request<GoogleCloudContactcenterinsightsV1ListConversationsResponse>;
4536
- analyses: AnalysesResource;
4537
4389
  assessments: AssessmentsResource;
4538
4390
  feedbackLabels: FeedbackLabelsResource;
4539
4391
  }
@@ -6167,6 +6019,66 @@ declare namespace gapi.client {
6167
6019
  body: GoogleCloudContactcenterinsightsV1FeedbackLabel,
6168
6020
  ): Request<GoogleCloudContactcenterinsightsV1FeedbackLabel>;
6169
6021
  }
6022
+ interface SegmentsResource {
6023
+ /** Analyzes multiple conversations in a single request. */
6024
+ bulkAnalyze(request: {
6025
+ /** V1 error format. */
6026
+ '$.xgafv'?: string;
6027
+ /** OAuth access token. */
6028
+ access_token?: string;
6029
+ /** Data format for response. */
6030
+ alt?: string;
6031
+ /** JSONP */
6032
+ callback?: string;
6033
+ /** Selector specifying which fields to include in a partial response. */
6034
+ fields?: string;
6035
+ /** 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. */
6036
+ key?: string;
6037
+ /** OAuth 2.0 token for the current user. */
6038
+ oauth_token?: string;
6039
+ /** Required. The parent resource to create analyses in. */
6040
+ parent: string;
6041
+ /** Returns response with indentations and line breaks. */
6042
+ prettyPrint?: boolean;
6043
+ /** 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. */
6044
+ quotaUser?: string;
6045
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
6046
+ upload_protocol?: string;
6047
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6048
+ uploadType?: string;
6049
+ /** Request body */
6050
+ resource: GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest;
6051
+ }): Request<GoogleLongrunningOperation>;
6052
+ bulkAnalyze(
6053
+ request: {
6054
+ /** V1 error format. */
6055
+ '$.xgafv'?: string;
6056
+ /** OAuth access token. */
6057
+ access_token?: string;
6058
+ /** Data format for response. */
6059
+ alt?: string;
6060
+ /** JSONP */
6061
+ callback?: string;
6062
+ /** Selector specifying which fields to include in a partial response. */
6063
+ fields?: string;
6064
+ /** 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. */
6065
+ key?: string;
6066
+ /** OAuth 2.0 token for the current user. */
6067
+ oauth_token?: string;
6068
+ /** Required. The parent resource to create analyses in. */
6069
+ parent: string;
6070
+ /** Returns response with indentations and line breaks. */
6071
+ prettyPrint?: boolean;
6072
+ /** 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. */
6073
+ quotaUser?: string;
6074
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
6075
+ upload_protocol?: string;
6076
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6077
+ uploadType?: string;
6078
+ },
6079
+ body: GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest,
6080
+ ): Request<GoogleLongrunningOperation>;
6081
+ }
6170
6082
  interface ConversationsResource {
6171
6083
  /** Analyzes multiple conversations in a single request. */
6172
6084
  bulkAnalyze(request: {
@@ -6552,7 +6464,7 @@ declare namespace gapi.client {
6552
6464
  prettyPrint?: boolean;
6553
6465
  /** 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. */
6554
6466
  quotaUser?: string;
6555
- /** The list of fields to be updated. All possible fields can be updated by passing `*`, or a subset of the following updateable fields can be provided: * `agent_id` * `language_code` * `labels` * `metadata` * `quality_metadata` * `call_metadata` * `start_time` * `expire_time` or `ttl` * `data_source.gcs_source.audio_uri` or `data_source.dialogflow_source.audio_uri` */
6467
+ /** The list of fields to be updated. All possible fields can be updated by passing `*`, or a subset of the following updateable fields can be provided: * `agent_id` * `language_code` * `labels` * `metadata` * `quality_metadata` * `call_metadata` * `start_time` * `expire_time` or `ttl` * `data_source.gcs_source.audio_uri` or * `data_source.dialogflow_source.audio_uri` * `data_source.screen_recordings` */
6556
6468
  updateMask?: string;
6557
6469
  /** Upload protocol for media (e.g. "raw", "multipart"). */
6558
6470
  upload_protocol?: string;
@@ -6585,7 +6497,7 @@ declare namespace gapi.client {
6585
6497
  prettyPrint?: boolean;
6586
6498
  /** 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. */
6587
6499
  quotaUser?: string;
6588
- /** The list of fields to be updated. All possible fields can be updated by passing `*`, or a subset of the following updateable fields can be provided: * `agent_id` * `language_code` * `labels` * `metadata` * `quality_metadata` * `call_metadata` * `start_time` * `expire_time` or `ttl` * `data_source.gcs_source.audio_uri` or `data_source.dialogflow_source.audio_uri` */
6500
+ /** The list of fields to be updated. All possible fields can be updated by passing `*`, or a subset of the following updateable fields can be provided: * `agent_id` * `language_code` * `labels` * `metadata` * `quality_metadata` * `call_metadata` * `start_time` * `expire_time` or `ttl` * `data_source.gcs_source.audio_uri` or * `data_source.dialogflow_source.audio_uri` * `data_source.screen_recordings` */
6589
6501
  updateMask?: string;
6590
6502
  /** Upload protocol for media (e.g. "raw", "multipart"). */
6591
6503
  upload_protocol?: string;
@@ -6713,153 +6625,7 @@ declare namespace gapi.client {
6713
6625
  analyses: AnalysesResource;
6714
6626
  assessments: AssessmentsResource;
6715
6627
  feedbackLabels: FeedbackLabelsResource;
6716
- }
6717
- interface AnalysesResource {
6718
- /** Creates an analysis. The long running operation is done when the analysis has completed. */
6719
- create(request: {
6720
- /** V1 error format. */
6721
- '$.xgafv'?: string;
6722
- /** OAuth access token. */
6723
- access_token?: string;
6724
- /** Data format for response. */
6725
- alt?: string;
6726
- /** JSONP */
6727
- callback?: string;
6728
- /** Selector specifying which fields to include in a partial response. */
6729
- fields?: string;
6730
- /** 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. */
6731
- key?: string;
6732
- /** OAuth 2.0 token for the current user. */
6733
- oauth_token?: string;
6734
- /** Required. The parent resource of the analysis. */
6735
- parent: string;
6736
- /** Returns response with indentations and line breaks. */
6737
- prettyPrint?: boolean;
6738
- /** 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. */
6739
- quotaUser?: string;
6740
- /** Upload protocol for media (e.g. "raw", "multipart"). */
6741
- upload_protocol?: string;
6742
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6743
- uploadType?: string;
6744
- /** Request body */
6745
- resource: GoogleCloudContactcenterinsightsV1Analysis;
6746
- }): Request<GoogleLongrunningOperation>;
6747
- create(
6748
- request: {
6749
- /** V1 error format. */
6750
- '$.xgafv'?: string;
6751
- /** OAuth access token. */
6752
- access_token?: string;
6753
- /** Data format for response. */
6754
- alt?: string;
6755
- /** JSONP */
6756
- callback?: string;
6757
- /** Selector specifying which fields to include in a partial response. */
6758
- fields?: string;
6759
- /** 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. */
6760
- key?: string;
6761
- /** OAuth 2.0 token for the current user. */
6762
- oauth_token?: string;
6763
- /** Required. The parent resource of the analysis. */
6764
- parent: string;
6765
- /** Returns response with indentations and line breaks. */
6766
- prettyPrint?: boolean;
6767
- /** 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. */
6768
- quotaUser?: string;
6769
- /** Upload protocol for media (e.g. "raw", "multipart"). */
6770
- upload_protocol?: string;
6771
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6772
- uploadType?: string;
6773
- },
6774
- body: GoogleCloudContactcenterinsightsV1Analysis,
6775
- ): Request<GoogleLongrunningOperation>;
6776
- /** Deletes an analysis. */
6777
- delete(request?: {
6778
- /** V1 error format. */
6779
- '$.xgafv'?: string;
6780
- /** OAuth access token. */
6781
- access_token?: string;
6782
- /** Data format for response. */
6783
- alt?: string;
6784
- /** JSONP */
6785
- callback?: string;
6786
- /** Selector specifying which fields to include in a partial response. */
6787
- fields?: string;
6788
- /** 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. */
6789
- key?: string;
6790
- /** Required. The name of the analysis to delete. */
6791
- name: string;
6792
- /** OAuth 2.0 token for the current user. */
6793
- oauth_token?: string;
6794
- /** Returns response with indentations and line breaks. */
6795
- prettyPrint?: boolean;
6796
- /** 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. */
6797
- quotaUser?: string;
6798
- /** Upload protocol for media (e.g. "raw", "multipart"). */
6799
- upload_protocol?: string;
6800
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6801
- uploadType?: string;
6802
- }): Request<{}>;
6803
- /** Gets an analysis. */
6804
- get(request?: {
6805
- /** V1 error format. */
6806
- '$.xgafv'?: string;
6807
- /** OAuth access token. */
6808
- access_token?: string;
6809
- /** Data format for response. */
6810
- alt?: string;
6811
- /** JSONP */
6812
- callback?: string;
6813
- /** Selector specifying which fields to include in a partial response. */
6814
- fields?: string;
6815
- /** 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. */
6816
- key?: string;
6817
- /** Required. The name of the analysis to get. */
6818
- name: string;
6819
- /** OAuth 2.0 token for the current user. */
6820
- oauth_token?: string;
6821
- /** Returns response with indentations and line breaks. */
6822
- prettyPrint?: boolean;
6823
- /** 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. */
6824
- quotaUser?: string;
6825
- /** Upload protocol for media (e.g. "raw", "multipart"). */
6826
- upload_protocol?: string;
6827
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6828
- uploadType?: string;
6829
- }): Request<GoogleCloudContactcenterinsightsV1Analysis>;
6830
- /** Lists analyses. */
6831
- list(request?: {
6832
- /** V1 error format. */
6833
- '$.xgafv'?: string;
6834
- /** OAuth access token. */
6835
- access_token?: string;
6836
- /** Data format for response. */
6837
- alt?: string;
6838
- /** JSONP */
6839
- callback?: string;
6840
- /** Selector specifying which fields to include in a partial response. */
6841
- fields?: string;
6842
- /** A filter to reduce results to a specific subset. Useful for querying conversations with specific properties. */
6843
- filter?: string;
6844
- /** 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. */
6845
- key?: string;
6846
- /** OAuth 2.0 token for the current user. */
6847
- oauth_token?: string;
6848
- /** The maximum number of analyses to return in the response. If this value is zero, the service will select a default size. A call might return fewer objects than requested. A non-empty `next_page_token` in the response indicates that more data is available. */
6849
- pageSize?: number;
6850
- /** The value returned by the last `ListAnalysesResponse`; indicates that this is a continuation of a prior `ListAnalyses` call and the system should return the next page of data. */
6851
- pageToken?: string;
6852
- /** Required. The parent resource of the analyses. */
6853
- parent: string;
6854
- /** Returns response with indentations and line breaks. */
6855
- prettyPrint?: boolean;
6856
- /** 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. */
6857
- quotaUser?: string;
6858
- /** Upload protocol for media (e.g. "raw", "multipart"). */
6859
- upload_protocol?: string;
6860
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6861
- uploadType?: string;
6862
- }): Request<GoogleCloudContactcenterinsightsV1ListAnalysesResponse>;
6628
+ segments: SegmentsResource;
6863
6629
  }
6864
6630
  interface FeedbackLabelsResource {
6865
6631
  /** Create feedback label. */
@@ -7075,64 +6841,6 @@ declare namespace gapi.client {
7075
6841
  ): Request<GoogleCloudContactcenterinsightsV1FeedbackLabel>;
7076
6842
  }
7077
6843
  interface ConversationsResource {
7078
- /** Analyzes multiple conversations in a single request. */
7079
- bulkAnalyze(request: {
7080
- /** V1 error format. */
7081
- '$.xgafv'?: string;
7082
- /** OAuth access token. */
7083
- access_token?: string;
7084
- /** Data format for response. */
7085
- alt?: string;
7086
- /** JSONP */
7087
- callback?: string;
7088
- /** Selector specifying which fields to include in a partial response. */
7089
- fields?: string;
7090
- /** 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. */
7091
- key?: string;
7092
- /** OAuth 2.0 token for the current user. */
7093
- oauth_token?: string;
7094
- /** Required. The parent resource to create analyses in. */
7095
- parent: string;
7096
- /** Returns response with indentations and line breaks. */
7097
- prettyPrint?: boolean;
7098
- /** 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. */
7099
- quotaUser?: string;
7100
- /** Upload protocol for media (e.g. "raw", "multipart"). */
7101
- upload_protocol?: string;
7102
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7103
- uploadType?: string;
7104
- /** Request body */
7105
- resource: GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest;
7106
- }): Request<GoogleLongrunningOperation>;
7107
- bulkAnalyze(
7108
- request: {
7109
- /** V1 error format. */
7110
- '$.xgafv'?: string;
7111
- /** OAuth access token. */
7112
- access_token?: string;
7113
- /** Data format for response. */
7114
- alt?: string;
7115
- /** JSONP */
7116
- callback?: string;
7117
- /** Selector specifying which fields to include in a partial response. */
7118
- fields?: string;
7119
- /** 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. */
7120
- key?: string;
7121
- /** OAuth 2.0 token for the current user. */
7122
- oauth_token?: string;
7123
- /** Required. The parent resource to create analyses in. */
7124
- parent: string;
7125
- /** Returns response with indentations and line breaks. */
7126
- prettyPrint?: boolean;
7127
- /** 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. */
7128
- quotaUser?: string;
7129
- /** Upload protocol for media (e.g. "raw", "multipart"). */
7130
- upload_protocol?: string;
7131
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7132
- uploadType?: string;
7133
- },
7134
- body: GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest,
7135
- ): Request<GoogleLongrunningOperation>;
7136
6844
  /** Deletes multiple conversations in a single request. */
7137
6845
  bulkDelete(request: {
7138
6846
  /** V1 error format. */
@@ -7460,7 +7168,6 @@ declare namespace gapi.client {
7460
7168
  },
7461
7169
  body: GoogleCloudContactcenterinsightsV1SampleConversationsRequest,
7462
7170
  ): Request<GoogleLongrunningOperation>;
7463
- analyses: AnalysesResource;
7464
7171
  feedbackLabels: FeedbackLabelsResource;
7465
7172
  }
7466
7173
  interface InsightsdataResource {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.contactcenterinsights-v1",
3
- "version": "0.1.20250926",
3
+ "version": "0.1.20251024",
4
4
  "description": "TypeScript typings for Contact Center AI Insights API v1",
5
5
  "repository": {
6
6
  "type": "git",