google-apis-contactcenterinsights_v1 0.42.0 → 0.43.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 06ce93735cdf88178fdaa0358a79f86cd66f4ed09cd0cc4141d1aec0733a5829
4
- data.tar.gz: '0118b6561f8f05cea342b086557677828117cc53427cf85bc149c4c8a6e8e789'
3
+ metadata.gz: 944dfd0c48e1bb4f6b1d66128adc132bdb036eaebc4b0181fc71fc0895e10e4c
4
+ data.tar.gz: ce4baf0a32dd2111f56cb9ba9653e0e8c74bbf81711e304ab28815ac2ed75af3
5
5
  SHA512:
6
- metadata.gz: 3b58689cd3cd0f2fd672db1724e9e78dcbfbeee809f77f56c4e85d69d6a982d93cdddb5be6b5833a38fcf9ca03257cdb2346bbd50103583af06c158e874aee19
7
- data.tar.gz: 19245f85f35423582a394e58f3dc57b5d1e2adcd3f34df2458ad6b78ad5ff02d02431e1204dc17c16f06d7f87762cf6d83bc4d2a885535fecd2b85fbca179c6a
6
+ metadata.gz: 5e17879bee6749ba543d0625355328a4de50a4e8975cfbf2317c8e045a52c65444c9b390d0625243f7f841c429c68364bad8ad8c9e78c5fbde6930b3e938ae44
7
+ data.tar.gz: 8916aa467f60c49bd7af95bef16f4f3112dc2c5329ada72bba4a1febec7090ebd909fff3388d6b86fd140fba7680788d97f45ebbf46f56d0ce8e5e8aca18d992
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-contactcenterinsights_v1
2
2
 
3
+ ### v0.43.0 (2024-04-28)
4
+
5
+ * Regenerated from discovery document revision 20240420
6
+
3
7
  ### v0.42.0 (2024-04-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20240416
@@ -313,6 +313,11 @@ module Google
313
313
  # @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationLevelSentiment>]
314
314
  attr_accessor :sentiments
315
315
 
316
+ # Conversation-level silence data.
317
+ # Corresponds to the JSON property `silence`
318
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationLevelSilence]
319
+ attr_accessor :silence
320
+
316
321
  def initialize(**args)
317
322
  update!(**args)
318
323
  end
@@ -325,6 +330,7 @@ module Google
325
330
  @issue_model_result = args[:issue_model_result] if args.key?(:issue_model_result)
326
331
  @phrase_matchers = args[:phrase_matchers] if args.key?(:phrase_matchers)
327
332
  @sentiments = args[:sentiments] if args.key?(:sentiments)
333
+ @silence = args[:silence] if args.key?(:silence)
328
334
  end
329
335
  end
330
336
 
@@ -1219,6 +1225,31 @@ module Google
1219
1225
  end
1220
1226
  end
1221
1227
 
1228
+ # Conversation-level silence data.
1229
+ class GoogleCloudContactcenterinsightsV1ConversationLevelSilence
1230
+ include Google::Apis::Core::Hashable
1231
+
1232
+ # Amount of time calculated to be in silence.
1233
+ # Corresponds to the JSON property `silenceDuration`
1234
+ # @return [String]
1235
+ attr_accessor :silence_duration
1236
+
1237
+ # Percentage of the total conversation spent in silence.
1238
+ # Corresponds to the JSON property `silencePercentage`
1239
+ # @return [Float]
1240
+ attr_accessor :silence_percentage
1241
+
1242
+ def initialize(**args)
1243
+ update!(**args)
1244
+ end
1245
+
1246
+ # Update properties of this object
1247
+ def update!(**args)
1248
+ @silence_duration = args[:silence_duration] if args.key?(:silence_duration)
1249
+ @silence_percentage = args[:silence_percentage] if args.key?(:silence_percentage)
1250
+ end
1251
+ end
1252
+
1222
1253
  # The call participant speaking for a given utterance.
1223
1254
  class GoogleCloudContactcenterinsightsV1ConversationParticipant
1224
1255
  include Google::Apis::Core::Hashable
@@ -4551,6 +4582,11 @@ module Google
4551
4582
  # @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSentiment>]
4552
4583
  attr_accessor :sentiments
4553
4584
 
4585
+ # Conversation-level silence data.
4586
+ # Corresponds to the JSON property `silence`
4587
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSilence]
4588
+ attr_accessor :silence
4589
+
4554
4590
  def initialize(**args)
4555
4591
  update!(**args)
4556
4592
  end
@@ -4563,6 +4599,7 @@ module Google
4563
4599
  @issue_model_result = args[:issue_model_result] if args.key?(:issue_model_result)
4564
4600
  @phrase_matchers = args[:phrase_matchers] if args.key?(:phrase_matchers)
4565
4601
  @sentiments = args[:sentiments] if args.key?(:sentiments)
4602
+ @silence = args[:silence] if args.key?(:silence)
4566
4603
  end
4567
4604
  end
4568
4605
 
@@ -5319,6 +5356,31 @@ module Google
5319
5356
  end
5320
5357
  end
5321
5358
 
5359
+ # Conversation-level silence data.
5360
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSilence
5361
+ include Google::Apis::Core::Hashable
5362
+
5363
+ # Amount of time calculated to be in silence.
5364
+ # Corresponds to the JSON property `silenceDuration`
5365
+ # @return [String]
5366
+ attr_accessor :silence_duration
5367
+
5368
+ # Percentage of the total conversation spent in silence.
5369
+ # Corresponds to the JSON property `silencePercentage`
5370
+ # @return [Float]
5371
+ attr_accessor :silence_percentage
5372
+
5373
+ def initialize(**args)
5374
+ update!(**args)
5375
+ end
5376
+
5377
+ # Update properties of this object
5378
+ def update!(**args)
5379
+ @silence_duration = args[:silence_duration] if args.key?(:silence_duration)
5380
+ @silence_percentage = args[:silence_percentage] if args.key?(:silence_percentage)
5381
+ end
5382
+ end
5383
+
5322
5384
  # The call participant speaking for a given utterance.
5323
5385
  class GoogleCloudContactcenterinsightsV1alpha1ConversationParticipant
5324
5386
  include Google::Apis::Core::Hashable
@@ -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.42.0"
19
+ GEM_VERSION = "0.43.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240416"
25
+ REVISION = "20240420"
26
26
  end
27
27
  end
28
28
  end
@@ -196,6 +196,12 @@ module Google
196
196
  include Google::Apis::Core::JsonObjectSupport
197
197
  end
198
198
 
199
+ class GoogleCloudContactcenterinsightsV1ConversationLevelSilence
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
199
205
  class GoogleCloudContactcenterinsightsV1ConversationParticipant
200
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
207
 
@@ -916,6 +922,12 @@ module Google
916
922
  include Google::Apis::Core::JsonObjectSupport
917
923
  end
918
924
 
925
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSilence
926
+ class Representation < Google::Apis::Core::JsonRepresentation; end
927
+
928
+ include Google::Apis::Core::JsonObjectSupport
929
+ end
930
+
919
931
  class GoogleCloudContactcenterinsightsV1alpha1ConversationParticipant
920
932
  class Representation < Google::Apis::Core::JsonRepresentation; end
921
933
 
@@ -1515,6 +1527,8 @@ module Google
1515
1527
 
1516
1528
  collection :sentiments, as: 'sentiments', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationLevelSentiment, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationLevelSentiment::Representation
1517
1529
 
1530
+ property :silence, as: 'silence', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationLevelSilence, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationLevelSilence::Representation
1531
+
1518
1532
  end
1519
1533
  end
1520
1534
 
@@ -1765,6 +1779,14 @@ module Google
1765
1779
  end
1766
1780
  end
1767
1781
 
1782
+ class GoogleCloudContactcenterinsightsV1ConversationLevelSilence
1783
+ # @private
1784
+ class Representation < Google::Apis::Core::JsonRepresentation
1785
+ property :silence_duration, as: 'silenceDuration'
1786
+ property :silence_percentage, as: 'silencePercentage'
1787
+ end
1788
+ end
1789
+
1768
1790
  class GoogleCloudContactcenterinsightsV1ConversationParticipant
1769
1791
  # @private
1770
1792
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2784,6 +2806,8 @@ module Google
2784
2806
 
2785
2807
  collection :sentiments, as: 'sentiments', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSentiment, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSentiment::Representation
2786
2808
 
2809
+ property :silence, as: 'silence', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSilence, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSilence::Representation
2810
+
2787
2811
  end
2788
2812
  end
2789
2813
 
@@ -2993,6 +3017,14 @@ module Google
2993
3017
  end
2994
3018
  end
2995
3019
 
3020
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSilence
3021
+ # @private
3022
+ class Representation < Google::Apis::Core::JsonRepresentation
3023
+ property :silence_duration, as: 'silenceDuration'
3024
+ property :silence_percentage, as: 'silencePercentage'
3025
+ end
3026
+ end
3027
+
2996
3028
  class GoogleCloudContactcenterinsightsV1alpha1ConversationParticipant
2997
3029
  # @private
2998
3030
  class Representation < Google::Apis::Core::JsonRepresentation
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.42.0
4
+ version: 0.43.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-04-21 00:00:00.000000000 Z
11
+ date: 2024-04-28 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.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.43.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: []