google-apis-contactcenterinsights_v1 0.75.0 → 0.76.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/contactcenterinsights_v1/classes.rb +10 -50
- data/lib/google/apis/contactcenterinsights_v1/gem_version.rb +2 -2
- data/lib/google/apis/contactcenterinsights_v1/representations.rb +1 -30
- data/lib/google/apis/contactcenterinsights_v1/service.rb +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1cf97b83089519c64ba4dad190da338a7f16d398ced43303790fe89c3bab5daa
|
4
|
+
data.tar.gz: 0f3aed08b4e4285aebfea5ff09164e1fdaa2b7cdd014c6c532740a30eefdf6ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b156944d44deaff612981360727c7bca2d06899bfd12c08a9b0797282ef83940507fe628128fd6c4005a464e1665d5c13a78298c32c25c94993b04d49ceaadce
|
7
|
+
data.tar.gz: 3f52fa2d07f731ad2a19a74df1227c26075f9acd2e613caffb9ec83eb5e96be651154363d8342e2111c683fe8122c15d1a78ebb52b21f3917d0e27a328f70e30
|
data/CHANGELOG.md
CHANGED
@@ -5200,11 +5200,6 @@ module Google
|
|
5200
5200
|
# @return [Float]
|
5201
5201
|
attr_accessor :potential_score
|
5202
5202
|
|
5203
|
-
# Wrapper for the rationale for the answer.
|
5204
|
-
# Corresponds to the JSON property `rationale`
|
5205
|
-
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1QaAnswerAnswerValueQaAnswerRationale]
|
5206
|
-
attr_accessor :rationale
|
5207
|
-
|
5208
5203
|
# Output only. Numerical score of the answer.
|
5209
5204
|
# Corresponds to the JSON property `score`
|
5210
5205
|
# @return [Float]
|
@@ -5235,32 +5230,12 @@ module Google
|
|
5235
5230
|
@normalized_score = args[:normalized_score] if args.key?(:normalized_score)
|
5236
5231
|
@num_value = args[:num_value] if args.key?(:num_value)
|
5237
5232
|
@potential_score = args[:potential_score] if args.key?(:potential_score)
|
5238
|
-
@rationale = args[:rationale] if args.key?(:rationale)
|
5239
5233
|
@score = args[:score] if args.key?(:score)
|
5240
5234
|
@skip_value = args[:skip_value] if args.key?(:skip_value)
|
5241
5235
|
@str_value = args[:str_value] if args.key?(:str_value)
|
5242
5236
|
end
|
5243
5237
|
end
|
5244
5238
|
|
5245
|
-
# Wrapper for the rationale for the answer.
|
5246
|
-
class GoogleCloudContactcenterinsightsV1QaAnswerAnswerValueQaAnswerRationale
|
5247
|
-
include Google::Apis::Core::Hashable
|
5248
|
-
|
5249
|
-
# The rationale string for the answer.
|
5250
|
-
# Corresponds to the JSON property `rationale`
|
5251
|
-
# @return [String]
|
5252
|
-
attr_accessor :rationale
|
5253
|
-
|
5254
|
-
def initialize(**args)
|
5255
|
-
update!(**args)
|
5256
|
-
end
|
5257
|
-
|
5258
|
-
# Update properties of this object
|
5259
|
-
def update!(**args)
|
5260
|
-
@rationale = args[:rationale] if args.key?(:rationale)
|
5261
|
-
end
|
5262
|
-
end
|
5263
|
-
|
5264
5239
|
# A single question to be scored by the Insights QA feature.
|
5265
5240
|
class GoogleCloudContactcenterinsightsV1QaQuestion
|
5266
5241
|
include Google::Apis::Core::Hashable
|
@@ -6713,6 +6688,15 @@ module Google
|
|
6713
6688
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig]
|
6714
6689
|
attr_accessor :redaction_config
|
6715
6690
|
|
6691
|
+
# Optional. The path to a Cloud Storage bucket containing conversation screen
|
6692
|
+
# recordings. If provided, Insights will search in the bucket for a screen
|
6693
|
+
# recording file matching the conversation data source object name prefix. If
|
6694
|
+
# matches are found, these file URIs will be stored in the conversation screen
|
6695
|
+
# recordings field.
|
6696
|
+
# Corresponds to the JSON property `screenRecordingBucketUri`
|
6697
|
+
# @return [String]
|
6698
|
+
attr_accessor :screen_recording_bucket_uri
|
6699
|
+
|
6716
6700
|
# Speech-to-Text configuration. Speech-to-Text settings are applied to
|
6717
6701
|
# conversations ingested from the `UploadConversation` and `IngestConversations`
|
6718
6702
|
# endpoints, including conversation coming from CCAI Platform. They are not
|
@@ -6739,6 +6723,7 @@ module Google
|
|
6739
6723
|
@name = args[:name] if args.key?(:name)
|
6740
6724
|
@pubsub_notification_settings = args[:pubsub_notification_settings] if args.key?(:pubsub_notification_settings)
|
6741
6725
|
@redaction_config = args[:redaction_config] if args.key?(:redaction_config)
|
6726
|
+
@screen_recording_bucket_uri = args[:screen_recording_bucket_uri] if args.key?(:screen_recording_bucket_uri)
|
6742
6727
|
@speech_config = args[:speech_config] if args.key?(:speech_config)
|
6743
6728
|
@update_time = args[:update_time] if args.key?(:update_time)
|
6744
6729
|
end
|
@@ -10871,11 +10856,6 @@ module Google
|
|
10871
10856
|
# @return [Float]
|
10872
10857
|
attr_accessor :potential_score
|
10873
10858
|
|
10874
|
-
# Wrapper for the rationale for the answer.
|
10875
|
-
# Corresponds to the JSON property `rationale`
|
10876
|
-
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValueQaAnswerRationale]
|
10877
|
-
attr_accessor :rationale
|
10878
|
-
|
10879
10859
|
# Output only. Numerical score of the answer.
|
10880
10860
|
# Corresponds to the JSON property `score`
|
10881
10861
|
# @return [Float]
|
@@ -10906,32 +10886,12 @@ module Google
|
|
10906
10886
|
@normalized_score = args[:normalized_score] if args.key?(:normalized_score)
|
10907
10887
|
@num_value = args[:num_value] if args.key?(:num_value)
|
10908
10888
|
@potential_score = args[:potential_score] if args.key?(:potential_score)
|
10909
|
-
@rationale = args[:rationale] if args.key?(:rationale)
|
10910
10889
|
@score = args[:score] if args.key?(:score)
|
10911
10890
|
@skip_value = args[:skip_value] if args.key?(:skip_value)
|
10912
10891
|
@str_value = args[:str_value] if args.key?(:str_value)
|
10913
10892
|
end
|
10914
10893
|
end
|
10915
10894
|
|
10916
|
-
# Wrapper for the rationale for the answer.
|
10917
|
-
class GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValueQaAnswerRationale
|
10918
|
-
include Google::Apis::Core::Hashable
|
10919
|
-
|
10920
|
-
# The rationale string for the answer.
|
10921
|
-
# Corresponds to the JSON property `rationale`
|
10922
|
-
# @return [String]
|
10923
|
-
attr_accessor :rationale
|
10924
|
-
|
10925
|
-
def initialize(**args)
|
10926
|
-
update!(**args)
|
10927
|
-
end
|
10928
|
-
|
10929
|
-
# Update properties of this object
|
10930
|
-
def update!(**args)
|
10931
|
-
@rationale = args[:rationale] if args.key?(:rationale)
|
10932
|
-
end
|
10933
|
-
end
|
10934
|
-
|
10935
10895
|
# A tag is a resource which aims to categorize a set of questions across
|
10936
10896
|
# multiple scorecards, e.g., "Customer Satisfaction","Billing", etc.
|
10937
10897
|
class GoogleCloudContactcenterinsightsV1alpha1QaQuestionTag
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContactcenterinsightsV1
|
18
18
|
# Version of the google-apis-contactcenterinsights_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.76.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20251007"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -922,12 +922,6 @@ module Google
|
|
922
922
|
include Google::Apis::Core::JsonObjectSupport
|
923
923
|
end
|
924
924
|
|
925
|
-
class GoogleCloudContactcenterinsightsV1QaAnswerAnswerValueQaAnswerRationale
|
926
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
927
|
-
|
928
|
-
include Google::Apis::Core::JsonObjectSupport
|
929
|
-
end
|
930
|
-
|
931
925
|
class GoogleCloudContactcenterinsightsV1QaQuestion
|
932
926
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
933
927
|
|
@@ -1846,12 +1840,6 @@ module Google
|
|
1846
1840
|
include Google::Apis::Core::JsonObjectSupport
|
1847
1841
|
end
|
1848
1842
|
|
1849
|
-
class GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValueQaAnswerRationale
|
1850
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1851
|
-
|
1852
|
-
include Google::Apis::Core::JsonObjectSupport
|
1853
|
-
end
|
1854
|
-
|
1855
1843
|
class GoogleCloudContactcenterinsightsV1alpha1QaQuestionTag
|
1856
1844
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1857
1845
|
|
@@ -3647,21 +3635,12 @@ module Google
|
|
3647
3635
|
property :normalized_score, as: 'normalizedScore'
|
3648
3636
|
property :num_value, as: 'numValue'
|
3649
3637
|
property :potential_score, as: 'potentialScore'
|
3650
|
-
property :rationale, as: 'rationale', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1QaAnswerAnswerValueQaAnswerRationale, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1QaAnswerAnswerValueQaAnswerRationale::Representation
|
3651
|
-
|
3652
3638
|
property :score, as: 'score'
|
3653
3639
|
property :skip_value, as: 'skipValue'
|
3654
3640
|
property :str_value, as: 'strValue'
|
3655
3641
|
end
|
3656
3642
|
end
|
3657
3643
|
|
3658
|
-
class GoogleCloudContactcenterinsightsV1QaAnswerAnswerValueQaAnswerRationale
|
3659
|
-
# @private
|
3660
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
3661
|
-
property :rationale, as: 'rationale'
|
3662
|
-
end
|
3663
|
-
end
|
3664
|
-
|
3665
3644
|
class GoogleCloudContactcenterinsightsV1QaQuestion
|
3666
3645
|
# @private
|
3667
3646
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4057,6 +4036,7 @@ module Google
|
|
4057
4036
|
hash :pubsub_notification_settings, as: 'pubsubNotificationSettings'
|
4058
4037
|
property :redaction_config, as: 'redactionConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig::Representation
|
4059
4038
|
|
4039
|
+
property :screen_recording_bucket_uri, as: 'screenRecordingBucketUri'
|
4060
4040
|
property :speech_config, as: 'speechConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig::Representation
|
4061
4041
|
|
4062
4042
|
property :update_time, as: 'updateTime'
|
@@ -5259,21 +5239,12 @@ module Google
|
|
5259
5239
|
property :normalized_score, as: 'normalizedScore'
|
5260
5240
|
property :num_value, as: 'numValue'
|
5261
5241
|
property :potential_score, as: 'potentialScore'
|
5262
|
-
property :rationale, as: 'rationale', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValueQaAnswerRationale, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValueQaAnswerRationale::Representation
|
5263
|
-
|
5264
5242
|
property :score, as: 'score'
|
5265
5243
|
property :skip_value, as: 'skipValue'
|
5266
5244
|
property :str_value, as: 'strValue'
|
5267
5245
|
end
|
5268
5246
|
end
|
5269
5247
|
|
5270
|
-
class GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValueQaAnswerRationale
|
5271
|
-
# @private
|
5272
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
5273
|
-
property :rationale, as: 'rationale'
|
5274
|
-
end
|
5275
|
-
end
|
5276
|
-
|
5277
5248
|
class GoogleCloudContactcenterinsightsV1alpha1QaQuestionTag
|
5278
5249
|
# @private
|
5279
5250
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2674,7 +2674,8 @@ module Google
|
|
2674
2674
|
# passing `*`, or a subset of the following updateable fields can be provided: *
|
2675
2675
|
# `agent_id` * `language_code` * `labels` * `metadata` * `quality_metadata` * `
|
2676
2676
|
# call_metadata` * `start_time` * `expire_time` or `ttl` * `data_source.
|
2677
|
-
# gcs_source.audio_uri` or `data_source.dialogflow_source.audio_uri`
|
2677
|
+
# gcs_source.audio_uri` or * `data_source.dialogflow_source.audio_uri` * `
|
2678
|
+
# data_source.screen_recordings`
|
2678
2679
|
# @param [String] fields
|
2679
2680
|
# Selector specifying which fields to include in a partial response.
|
2680
2681
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-contactcenterinsights_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.76.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.76.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|