google-apis-contactcenterinsights_v1 0.35.0 → 0.37.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eca0dae6b6a7005acd442d51cd2cca9817929073cccaa0ba6aafcc24f9a3eca2
4
- data.tar.gz: f2a6a60b3bc117a8828ddad15dbc1e9ce995bfe17c13573c130b3d89b4d621e8
3
+ metadata.gz: eb3516ddc8be0b4751372e424d0f070e49f844ccb1d4fe9609268eb166fb21eb
4
+ data.tar.gz: 7d9bc63b2c7ce0a3d79c4e4247eefa0aebf597dbe5caee87b3619dd8e58a4ca6
5
5
  SHA512:
6
- metadata.gz: d366aa261f02c76d77ffb251699db806b4fee3d986af35e1d2fdc1eb823dbe9deb4b90986d4837c5f14272174f9ef228027e2bf6d7676a6d0766365f42c14ba3
7
- data.tar.gz: 8f9366e69d648220a953a639e36418d78bad0449b5ad853accb400bb6eecb554791fc0a2ff1d925f79f7864d28d8ee8fa86f795418b699687fa54e93f79df421
6
+ metadata.gz: cfc8cc5f34fae8373fd30d2e7b572c11025f99d986be73fe3a51724742ea4d309553affb917e070c14a4dbf7fe37bf615ee5f298a9cf07a209ead100d4221d57
7
+ data.tar.gz: e126ff337b27f50b20fb6372cb2c740db19b2154fcb35bbf516dfa8b3bb98b4374401bcc182d76cc25cfe0dd100cc1f127374ea5b84c23a05b2164b0958a7588
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-contactcenterinsights_v1
2
2
 
3
+ ### v0.37.0 (2024-01-23)
4
+
5
+ * Regenerated from discovery document revision 20240115
6
+ * Regenerated using generator version 0.13.0
7
+
8
+ ### v0.36.0 (2024-01-07)
9
+
10
+ * Regenerated from discovery document revision 20240102
11
+
3
12
  ### v0.35.0 (2023-12-10)
4
13
 
5
14
  * Regenerated from discovery document revision 20231204
@@ -890,6 +890,11 @@ module Google
890
890
  # @return [String]
891
891
  attr_accessor :obfuscated_user_id
892
892
 
893
+ # Conversation metadata related to quality management.
894
+ # Corresponds to the JSON property `qualityMetadata`
895
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadata]
896
+ attr_accessor :quality_metadata
897
+
893
898
  # Output only. The annotations that were generated during the customer and agent
894
899
  # interaction.
895
900
  # Corresponds to the JSON property `runtimeAnnotations`
@@ -942,6 +947,7 @@ module Google
942
947
  @medium = args[:medium] if args.key?(:medium)
943
948
  @name = args[:name] if args.key?(:name)
944
949
  @obfuscated_user_id = args[:obfuscated_user_id] if args.key?(:obfuscated_user_id)
950
+ @quality_metadata = args[:quality_metadata] if args.key?(:quality_metadata)
945
951
  @runtime_annotations = args[:runtime_annotations] if args.key?(:runtime_annotations)
946
952
  @start_time = args[:start_time] if args.key?(:start_time)
947
953
  @transcript = args[:transcript] if args.key?(:transcript)
@@ -1072,6 +1078,81 @@ module Google
1072
1078
  end
1073
1079
  end
1074
1080
 
1081
+ # Conversation metadata related to quality management.
1082
+ class GoogleCloudContactcenterinsightsV1ConversationQualityMetadata
1083
+ include Google::Apis::Core::Hashable
1084
+
1085
+ # Information about agents involved in the call.
1086
+ # Corresponds to the JSON property `agentInfo`
1087
+ # @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo>]
1088
+ attr_accessor :agent_info
1089
+
1090
+ # An arbitrary integer value indicating the customer's satisfaction rating.
1091
+ # Corresponds to the JSON property `customerSatisfactionRating`
1092
+ # @return [Fixnum]
1093
+ attr_accessor :customer_satisfaction_rating
1094
+
1095
+ # An arbitrary string value specifying the menu path the customer took.
1096
+ # Corresponds to the JSON property `menuPath`
1097
+ # @return [String]
1098
+ attr_accessor :menu_path
1099
+
1100
+ # The amount of time the customer waited to connect with an agent.
1101
+ # Corresponds to the JSON property `waitDuration`
1102
+ # @return [String]
1103
+ attr_accessor :wait_duration
1104
+
1105
+ def initialize(**args)
1106
+ update!(**args)
1107
+ end
1108
+
1109
+ # Update properties of this object
1110
+ def update!(**args)
1111
+ @agent_info = args[:agent_info] if args.key?(:agent_info)
1112
+ @customer_satisfaction_rating = args[:customer_satisfaction_rating] if args.key?(:customer_satisfaction_rating)
1113
+ @menu_path = args[:menu_path] if args.key?(:menu_path)
1114
+ @wait_duration = args[:wait_duration] if args.key?(:wait_duration)
1115
+ end
1116
+ end
1117
+
1118
+ # Information about an agent involved in the conversation.
1119
+ class GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo
1120
+ include Google::Apis::Core::Hashable
1121
+
1122
+ # A user-specified string representing the agent.
1123
+ # Corresponds to the JSON property `agentId`
1124
+ # @return [String]
1125
+ attr_accessor :agent_id
1126
+
1127
+ # The agent's name.
1128
+ # Corresponds to the JSON property `displayName`
1129
+ # @return [String]
1130
+ attr_accessor :display_name
1131
+
1132
+ # A user-provided string indicating the outcome of the agent's segment of the
1133
+ # call.
1134
+ # Corresponds to the JSON property `dispositionCode`
1135
+ # @return [String]
1136
+ attr_accessor :disposition_code
1137
+
1138
+ # A user-specified string representing the agent's team.
1139
+ # Corresponds to the JSON property `team`
1140
+ # @return [String]
1141
+ attr_accessor :team
1142
+
1143
+ def initialize(**args)
1144
+ update!(**args)
1145
+ end
1146
+
1147
+ # Update properties of this object
1148
+ def update!(**args)
1149
+ @agent_id = args[:agent_id] if args.key?(:agent_id)
1150
+ @display_name = args[:display_name] if args.key?(:display_name)
1151
+ @disposition_code = args[:disposition_code] if args.key?(:disposition_code)
1152
+ @team = args[:team] if args.key?(:team)
1153
+ end
1154
+ end
1155
+
1075
1156
  # Conversation summarization suggestion data.
1076
1157
  class GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData
1077
1158
  include Google::Apis::Core::Hashable
@@ -2024,9 +2105,8 @@ module Google
2024
2105
  class GoogleCloudContactcenterinsightsV1IngestConversationsRequestConversationConfig
2025
2106
  include Google::Apis::Core::Hashable
2026
2107
 
2027
- # Optional. For audio conversations, this field indicates which of the channels,
2028
- # 1 or 2, contains the agent. Note that this must be set for audio conversations
2029
- # to be properly displayed and analyzed.
2108
+ # Optional. Indicates which of the channels, 1 or 2, contains the agent. Note
2109
+ # that this must be set for conversations to be properly displayed and analyzed.
2030
2110
  # Corresponds to the JSON property `agentChannel`
2031
2111
  # @return [Fixnum]
2032
2112
  attr_accessor :agent_channel
@@ -2037,9 +2117,8 @@ module Google
2037
2117
  # @return [String]
2038
2118
  attr_accessor :agent_id
2039
2119
 
2040
- # Optional. For audio conversations, this field indicates which of the channels,
2041
- # 1 or 2, contains the customer. Note that this must be set for audio
2042
- # conversations to be properly displayed and analyzed.
2120
+ # Optional. Indicates which of the channels, 1 or 2, contains the agent. Note
2121
+ # that this must be set for conversations to be properly displayed and analyzed.
2043
2122
  # Corresponds to the JSON property `customerChannel`
2044
2123
  # @return [Fixnum]
2045
2124
  attr_accessor :customer_channel
@@ -4093,6 +4172,11 @@ module Google
4093
4172
  # @return [String]
4094
4173
  attr_accessor :obfuscated_user_id
4095
4174
 
4175
+ # Conversation metadata related to quality management.
4176
+ # Corresponds to the JSON property `qualityMetadata`
4177
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadata]
4178
+ attr_accessor :quality_metadata
4179
+
4096
4180
  # Output only. The annotations that were generated during the customer and agent
4097
4181
  # interaction.
4098
4182
  # Corresponds to the JSON property `runtimeAnnotations`
@@ -4145,6 +4229,7 @@ module Google
4145
4229
  @medium = args[:medium] if args.key?(:medium)
4146
4230
  @name = args[:name] if args.key?(:name)
4147
4231
  @obfuscated_user_id = args[:obfuscated_user_id] if args.key?(:obfuscated_user_id)
4232
+ @quality_metadata = args[:quality_metadata] if args.key?(:quality_metadata)
4148
4233
  @runtime_annotations = args[:runtime_annotations] if args.key?(:runtime_annotations)
4149
4234
  @start_time = args[:start_time] if args.key?(:start_time)
4150
4235
  @transcript = args[:transcript] if args.key?(:transcript)
@@ -4275,6 +4360,81 @@ module Google
4275
4360
  end
4276
4361
  end
4277
4362
 
4363
+ # Conversation metadata related to quality management.
4364
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadata
4365
+ include Google::Apis::Core::Hashable
4366
+
4367
+ # Information about agents involved in the call.
4368
+ # Corresponds to the JSON property `agentInfo`
4369
+ # @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo>]
4370
+ attr_accessor :agent_info
4371
+
4372
+ # An arbitrary integer value indicating the customer's satisfaction rating.
4373
+ # Corresponds to the JSON property `customerSatisfactionRating`
4374
+ # @return [Fixnum]
4375
+ attr_accessor :customer_satisfaction_rating
4376
+
4377
+ # An arbitrary string value specifying the menu path the customer took.
4378
+ # Corresponds to the JSON property `menuPath`
4379
+ # @return [String]
4380
+ attr_accessor :menu_path
4381
+
4382
+ # The amount of time the customer waited to connect with an agent.
4383
+ # Corresponds to the JSON property `waitDuration`
4384
+ # @return [String]
4385
+ attr_accessor :wait_duration
4386
+
4387
+ def initialize(**args)
4388
+ update!(**args)
4389
+ end
4390
+
4391
+ # Update properties of this object
4392
+ def update!(**args)
4393
+ @agent_info = args[:agent_info] if args.key?(:agent_info)
4394
+ @customer_satisfaction_rating = args[:customer_satisfaction_rating] if args.key?(:customer_satisfaction_rating)
4395
+ @menu_path = args[:menu_path] if args.key?(:menu_path)
4396
+ @wait_duration = args[:wait_duration] if args.key?(:wait_duration)
4397
+ end
4398
+ end
4399
+
4400
+ # Information about an agent involved in the conversation.
4401
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo
4402
+ include Google::Apis::Core::Hashable
4403
+
4404
+ # A user-specified string representing the agent.
4405
+ # Corresponds to the JSON property `agentId`
4406
+ # @return [String]
4407
+ attr_accessor :agent_id
4408
+
4409
+ # The agent's name.
4410
+ # Corresponds to the JSON property `displayName`
4411
+ # @return [String]
4412
+ attr_accessor :display_name
4413
+
4414
+ # A user-provided string indicating the outcome of the agent's segment of the
4415
+ # call.
4416
+ # Corresponds to the JSON property `dispositionCode`
4417
+ # @return [String]
4418
+ attr_accessor :disposition_code
4419
+
4420
+ # A user-specified string representing the agent's team.
4421
+ # Corresponds to the JSON property `team`
4422
+ # @return [String]
4423
+ attr_accessor :team
4424
+
4425
+ def initialize(**args)
4426
+ update!(**args)
4427
+ end
4428
+
4429
+ # Update properties of this object
4430
+ def update!(**args)
4431
+ @agent_id = args[:agent_id] if args.key?(:agent_id)
4432
+ @display_name = args[:display_name] if args.key?(:display_name)
4433
+ @disposition_code = args[:disposition_code] if args.key?(:disposition_code)
4434
+ @team = args[:team] if args.key?(:team)
4435
+ end
4436
+ end
4437
+
4278
4438
  # Conversation summarization suggestion data.
4279
4439
  class GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData
4280
4440
  include Google::Apis::Core::Hashable
@@ -5207,9 +5367,8 @@ module Google
5207
5367
  class GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestConversationConfig
5208
5368
  include Google::Apis::Core::Hashable
5209
5369
 
5210
- # Optional. For audio conversations, this field indicates which of the channels,
5211
- # 1 or 2, contains the agent. Note that this must be set for audio conversations
5212
- # to be properly displayed and analyzed.
5370
+ # Optional. Indicates which of the channels, 1 or 2, contains the agent. Note
5371
+ # that this must be set for conversations to be properly displayed and analyzed.
5213
5372
  # Corresponds to the JSON property `agentChannel`
5214
5373
  # @return [Fixnum]
5215
5374
  attr_accessor :agent_channel
@@ -5220,9 +5379,8 @@ module Google
5220
5379
  # @return [String]
5221
5380
  attr_accessor :agent_id
5222
5381
 
5223
- # Optional. For audio conversations, this field indicates which of the channels,
5224
- # 1 or 2, contains the customer. Note that this must be set for audio
5225
- # conversations to be properly displayed and analyzed.
5382
+ # Optional. Indicates which of the channels, 1 or 2, contains the agent. Note
5383
+ # that this must be set for conversations to be properly displayed and analyzed.
5226
5384
  # Corresponds to the JSON property `customerChannel`
5227
5385
  # @return [Fixnum]
5228
5386
  attr_accessor :customer_channel
@@ -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.35.0"
19
+ GEM_VERSION = "0.37.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.12.0"
22
+ GENERATOR_VERSION = "0.13.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231204"
25
+ REVISION = "20240115"
26
26
  end
27
27
  end
28
28
  end
@@ -166,6 +166,18 @@ module Google
166
166
  include Google::Apis::Core::JsonObjectSupport
167
167
  end
168
168
 
169
+ class GoogleCloudContactcenterinsightsV1ConversationQualityMetadata
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
175
+ class GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
169
181
  class GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData
170
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
183
 
@@ -706,6 +718,18 @@ module Google
706
718
  include Google::Apis::Core::JsonObjectSupport
707
719
  end
708
720
 
721
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadata
722
+ class Representation < Google::Apis::Core::JsonRepresentation; end
723
+
724
+ include Google::Apis::Core::JsonObjectSupport
725
+ end
726
+
727
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo
728
+ class Representation < Google::Apis::Core::JsonRepresentation; end
729
+
730
+ include Google::Apis::Core::JsonObjectSupport
731
+ end
732
+
709
733
  class GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData
710
734
  class Representation < Google::Apis::Core::JsonRepresentation; end
711
735
 
@@ -1307,6 +1331,8 @@ module Google
1307
1331
  property :medium, as: 'medium'
1308
1332
  property :name, as: 'name'
1309
1333
  property :obfuscated_user_id, as: 'obfuscatedUserId'
1334
+ property :quality_metadata, as: 'qualityMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadata::Representation
1335
+
1310
1336
  collection :runtime_annotations, as: 'runtimeAnnotations', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RuntimeAnnotation, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RuntimeAnnotation::Representation
1311
1337
 
1312
1338
  property :start_time, as: 'startTime'
@@ -1356,6 +1382,27 @@ module Google
1356
1382
  end
1357
1383
  end
1358
1384
 
1385
+ class GoogleCloudContactcenterinsightsV1ConversationQualityMetadata
1386
+ # @private
1387
+ class Representation < Google::Apis::Core::JsonRepresentation
1388
+ collection :agent_info, as: 'agentInfo', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo::Representation
1389
+
1390
+ property :customer_satisfaction_rating, as: 'customerSatisfactionRating'
1391
+ property :menu_path, as: 'menuPath'
1392
+ property :wait_duration, as: 'waitDuration'
1393
+ end
1394
+ end
1395
+
1396
+ class GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo
1397
+ # @private
1398
+ class Representation < Google::Apis::Core::JsonRepresentation
1399
+ property :agent_id, as: 'agentId'
1400
+ property :display_name, as: 'displayName'
1401
+ property :disposition_code, as: 'dispositionCode'
1402
+ property :team, as: 'team'
1403
+ end
1404
+ end
1405
+
1359
1406
  class GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData
1360
1407
  # @private
1361
1408
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2249,6 +2296,8 @@ module Google
2249
2296
  property :medium, as: 'medium'
2250
2297
  property :name, as: 'name'
2251
2298
  property :obfuscated_user_id, as: 'obfuscatedUserId'
2299
+ property :quality_metadata, as: 'qualityMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadata::Representation
2300
+
2252
2301
  collection :runtime_annotations, as: 'runtimeAnnotations', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RuntimeAnnotation, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RuntimeAnnotation::Representation
2253
2302
 
2254
2303
  property :start_time, as: 'startTime'
@@ -2298,6 +2347,27 @@ module Google
2298
2347
  end
2299
2348
  end
2300
2349
 
2350
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadata
2351
+ # @private
2352
+ class Representation < Google::Apis::Core::JsonRepresentation
2353
+ collection :agent_info, as: 'agentInfo', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo::Representation
2354
+
2355
+ property :customer_satisfaction_rating, as: 'customerSatisfactionRating'
2356
+ property :menu_path, as: 'menuPath'
2357
+ property :wait_duration, as: 'waitDuration'
2358
+ end
2359
+ end
2360
+
2361
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo
2362
+ # @private
2363
+ class Representation < Google::Apis::Core::JsonRepresentation
2364
+ property :agent_id, as: 'agentId'
2365
+ property :display_name, as: 'displayName'
2366
+ property :disposition_code, as: 'dispositionCode'
2367
+ property :team, as: 'team'
2368
+ end
2369
+ end
2370
+
2301
2371
  class GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData
2302
2372
  # @private
2303
2373
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -32,6 +32,8 @@ module Google
32
32
  #
33
33
  # @see https://cloud.google.com/contact-center/insights/docs
34
34
  class ContactcenterinsightsService < Google::Apis::Core::BaseService
35
+ DEFAULT_ENDPOINT_TEMPLATE = "https://contactcenterinsights.$UNIVERSE_DOMAIN$/"
36
+
35
37
  # @return [String]
36
38
  # API key. Your API key identifies your project and provides you with API access,
37
39
  # quota, and reports. Required unless you provide an OAuth 2.0 token.
@@ -43,7 +45,7 @@ module Google
43
45
  attr_accessor :quota_user
44
46
 
45
47
  def initialize
46
- super('https://contactcenterinsights.googleapis.com/', '',
48
+ super(DEFAULT_ENDPOINT_TEMPLATE, '',
47
49
  client_name: 'google-apis-contactcenterinsights_v1',
48
50
  client_version: Google::Apis::ContactcenterinsightsV1::GEM_VERSION)
49
51
  @batch_path = 'batch'
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.35.0
4
+ version: 0.37.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: 2023-12-10 00:00:00.000000000 Z
11
+ date: 2024-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.11.0
19
+ version: 0.12.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.11.0
29
+ version: 0.12.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.37.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.19
78
+ rubygems_version: 3.5.3
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Contact Center AI Insights API V1