google-apis-contactcenterinsights_v1 0.49.0 → 0.51.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/contactcenterinsights_v1/classes.rb +16 -0
- data/lib/google/apis/contactcenterinsights_v1/gem_version.rb +2 -2
- data/lib/google/apis/contactcenterinsights_v1/representations.rb +2 -0
- data/lib/google/apis/contactcenterinsights_v1/service.rb +5 -5
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3d96d0392e952c4f259336356c160bded5e487f2a5aa2f1a3c44fac1b13f66e3
|
4
|
+
data.tar.gz: 298474d4fc1917bed5c82e41e4821476f2e0d65de871a2c3a411698d53c14ab0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: edb2d05c671bb5d150ad27f3b87470b75040cbf6f15969531e28eae08fc7a41e5fef8526c869cafde52887ddb77c8b2060b9d1a7bdf30abd531c9aceb5f71c23
|
7
|
+
data.tar.gz: 79768a0bccf99daef615612b041f755e9d8308b146eea2e797704e4dacb66f138b65b302022cfe05a4bf5763693eec11043d90723ea7a1a41b1a6fea53a85463
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-contactcenterinsights_v1
|
2
2
|
|
3
|
+
### v0.51.0 (2024-09-29)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240925
|
6
|
+
|
7
|
+
### v0.50.0 (2024-09-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240910
|
10
|
+
|
3
11
|
### v0.49.0 (2024-08-11)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240805
|
@@ -885,6 +885,13 @@ module Google
|
|
885
885
|
# @return [String]
|
886
886
|
attr_accessor :medium
|
887
887
|
|
888
|
+
# Input only. JSON Metadata encoded as a string. This field is primarily used by
|
889
|
+
# Insights integrations with various telphony systems and must be in one of
|
890
|
+
# Insights' supported formats.
|
891
|
+
# Corresponds to the JSON property `metadataJson`
|
892
|
+
# @return [String]
|
893
|
+
attr_accessor :metadata_json
|
894
|
+
|
888
895
|
# Immutable. The resource name of the conversation. Format: projects/`project`/
|
889
896
|
# locations/`location`/conversations/`conversation`
|
890
897
|
# Corresponds to the JSON property `name`
|
@@ -951,6 +958,7 @@ module Google
|
|
951
958
|
@latest_analysis = args[:latest_analysis] if args.key?(:latest_analysis)
|
952
959
|
@latest_summary = args[:latest_summary] if args.key?(:latest_summary)
|
953
960
|
@medium = args[:medium] if args.key?(:medium)
|
961
|
+
@metadata_json = args[:metadata_json] if args.key?(:metadata_json)
|
954
962
|
@name = args[:name] if args.key?(:name)
|
955
963
|
@obfuscated_user_id = args[:obfuscated_user_id] if args.key?(:obfuscated_user_id)
|
956
964
|
@quality_metadata = args[:quality_metadata] if args.key?(:quality_metadata)
|
@@ -4608,6 +4616,13 @@ module Google
|
|
4608
4616
|
# @return [String]
|
4609
4617
|
attr_accessor :medium
|
4610
4618
|
|
4619
|
+
# Input only. JSON Metadata encoded as a string. This field is primarily used by
|
4620
|
+
# Insights integrations with various telphony systems and must be in one of
|
4621
|
+
# Insights' supported formats.
|
4622
|
+
# Corresponds to the JSON property `metadataJson`
|
4623
|
+
# @return [String]
|
4624
|
+
attr_accessor :metadata_json
|
4625
|
+
|
4611
4626
|
# Immutable. The resource name of the conversation. Format: projects/`project`/
|
4612
4627
|
# locations/`location`/conversations/`conversation`
|
4613
4628
|
# Corresponds to the JSON property `name`
|
@@ -4674,6 +4689,7 @@ module Google
|
|
4674
4689
|
@latest_analysis = args[:latest_analysis] if args.key?(:latest_analysis)
|
4675
4690
|
@latest_summary = args[:latest_summary] if args.key?(:latest_summary)
|
4676
4691
|
@medium = args[:medium] if args.key?(:medium)
|
4692
|
+
@metadata_json = args[:metadata_json] if args.key?(:metadata_json)
|
4677
4693
|
@name = args[:name] if args.key?(:name)
|
4678
4694
|
@obfuscated_user_id = args[:obfuscated_user_id] if args.key?(:obfuscated_user_id)
|
4679
4695
|
@quality_metadata = args[:quality_metadata] if args.key?(:quality_metadata)
|
@@ -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.51.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240925"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1499,6 +1499,7 @@ module Google
|
|
1499
1499
|
property :latest_summary, as: 'latestSummary', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData::Representation
|
1500
1500
|
|
1501
1501
|
property :medium, as: 'medium'
|
1502
|
+
property :metadata_json, as: 'metadataJson'
|
1502
1503
|
property :name, as: 'name'
|
1503
1504
|
property :obfuscated_user_id, as: 'obfuscatedUserId'
|
1504
1505
|
property :quality_metadata, as: 'qualityMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadata::Representation
|
@@ -2588,6 +2589,7 @@ module Google
|
|
2588
2589
|
property :latest_summary, as: 'latestSummary', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData::Representation
|
2589
2590
|
|
2590
2591
|
property :medium, as: 'medium'
|
2592
|
+
property :metadata_json, as: 'metadataJson'
|
2591
2593
|
property :name, as: 'name'
|
2592
2594
|
property :obfuscated_user_id, as: 'obfuscatedUserId'
|
2593
2595
|
property :quality_metadata, as: 'qualityMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadata::Representation
|
@@ -249,8 +249,8 @@ module Google
|
|
249
249
|
execute_or_queue_command(command, &block)
|
250
250
|
end
|
251
251
|
|
252
|
-
# Creates a conversation.
|
253
|
-
# Use `conversations.upload` instead.
|
252
|
+
# Creates a conversation. Note that this method does not support audio
|
253
|
+
# transcription or redaction. Use `conversations.upload` instead.
|
254
254
|
# @param [String] parent
|
255
255
|
# Required. The parent resource of the conversation.
|
256
256
|
# @param [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Conversation] google_cloud_contactcenterinsights_v1_conversation_object
|
@@ -405,9 +405,9 @@ module Google
|
|
405
405
|
# ordering).
|
406
406
|
# @param [Fixnum] page_size
|
407
407
|
# The maximum number of conversations to return in the response. A valid page
|
408
|
-
# size ranges from 0 to
|
409
|
-
# a default page size of 100 will be chosen. Note that a call might
|
410
|
-
# fewer results than the requested page size.
|
408
|
+
# size ranges from 0 to 100,000 inclusive. If the page size is zero or
|
409
|
+
# unspecified, a default page size of 100 will be chosen. Note that a call might
|
410
|
+
# return fewer results than the requested page size.
|
411
411
|
# @param [String] page_token
|
412
412
|
# The value returned by the last `ListConversationsResponse`. This value
|
413
413
|
# indicates that this is a continuation of a prior `ListConversations` call and
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.51.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.51.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|