google-apis-contactcenterinsights_v1 0.67.0 → 0.68.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: 9d8715e82750a42f921fffaa48614cf1002c99af918c292c6aac9dc7901c5305
4
- data.tar.gz: 8db5a0f55623a7fe6b4824e442e171dfde3fc75c5cde94a93e36413e0a450f3a
3
+ metadata.gz: 88de1f8e300b9fbabc9c7f3af6d40d13d03b993e2c3b8d9eba81659e4815d62f
4
+ data.tar.gz: 802c9368f7d715e00c388d177f7a2709660581fede7053ec743b717527dbce42
5
5
  SHA512:
6
- metadata.gz: 778106f3b3240682cfebc154090e17ec0c0fb1b27d1ad04ff26183505d79e562b5c34d2362ebd217bb791e996885ca225d655f57d6b203fee4cc6ef4871b422b
7
- data.tar.gz: 264200e1dff197d7bb277a2b9778138ef5c7d481fa492ae0ae2e56b7b4f6a4132d2cf40a03ccb73af66c3ab65c5bbd435b6e9da130859c9d3bfcac7938dcdba1
6
+ metadata.gz: a9fddf9d7c1a7bb7b4055657fc720cd0047d8e2960b591c59a17430c31b2649a03c08307e96f9cd1718778482883711233ddc1403ca0901c2b30716402d48cbe
7
+ data.tar.gz: 80402ffecb34ea4e8b1848e12162492e406711238b86e12862152ede7895fdd278cb8266f910841bc10f742099252ea99664fbe8cfc7bdf9a2cfde9fc52b20ac
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-contactcenterinsights_v1
2
2
 
3
+ ### v0.68.0 (2025-07-13)
4
+
5
+ * Regenerated from discovery document revision 20250711
6
+
3
7
  ### v0.67.0 (2025-07-06)
4
8
 
5
9
  * Regenerated from discovery document revision 20250701
@@ -2001,6 +2001,11 @@ module Google
2001
2001
  # @return [String]
2002
2002
  attr_accessor :conversation_model
2003
2003
 
2004
+ # Agent Assist generator ID.
2005
+ # Corresponds to the JSON property `generatorId`
2006
+ # @return [String]
2007
+ attr_accessor :generator_id
2008
+
2004
2009
  # A map that contains metadata about the summarization and the document from
2005
2010
  # which it originates.
2006
2011
  # Corresponds to the JSON property `metadata`
@@ -2028,6 +2033,7 @@ module Google
2028
2033
  @answer_record = args[:answer_record] if args.key?(:answer_record)
2029
2034
  @confidence = args[:confidence] if args.key?(:confidence)
2030
2035
  @conversation_model = args[:conversation_model] if args.key?(:conversation_model)
2036
+ @generator_id = args[:generator_id] if args.key?(:generator_id)
2031
2037
  @metadata = args[:metadata] if args.key?(:metadata)
2032
2038
  @text = args[:text] if args.key?(:text)
2033
2039
  @text_sections = args[:text_sections] if args.key?(:text_sections)
@@ -5131,11 +5137,22 @@ module Google
5131
5137
  # @return [Fixnum]
5132
5138
  attr_accessor :order
5133
5139
 
5140
+ # Configuration for a predefined question. This field will only be set if the
5141
+ # Question Type is predefined.
5142
+ # Corresponds to the JSON property `predefinedQuestionConfig`
5143
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig]
5144
+ attr_accessor :predefined_question_config
5145
+
5134
5146
  # Question text. E.g., "Did the agent greet the customer?"
5135
5147
  # Corresponds to the JSON property `questionBody`
5136
5148
  # @return [String]
5137
5149
  attr_accessor :question_body
5138
5150
 
5151
+ # The type of question.
5152
+ # Corresponds to the JSON property `questionType`
5153
+ # @return [String]
5154
+ attr_accessor :question_type
5155
+
5139
5156
  # Questions are tagged for categorization and scoring. Tags can either be: -
5140
5157
  # Default Tags: These are predefined categories. They are identified by their
5141
5158
  # string value (e.g., "BUSINESS", "COMPLIANCE", and "CUSTOMER"). - Custom Tags:
@@ -5171,7 +5188,9 @@ module Google
5171
5188
  @metrics = args[:metrics] if args.key?(:metrics)
5172
5189
  @name = args[:name] if args.key?(:name)
5173
5190
  @order = args[:order] if args.key?(:order)
5191
+ @predefined_question_config = args[:predefined_question_config] if args.key?(:predefined_question_config)
5174
5192
  @question_body = args[:question_body] if args.key?(:question_body)
5193
+ @question_type = args[:question_type] if args.key?(:question_type)
5175
5194
  @tags = args[:tags] if args.key?(:tags)
5176
5195
  @tuning_metadata = args[:tuning_metadata] if args.key?(:tuning_metadata)
5177
5196
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -5253,6 +5272,26 @@ module Google
5253
5272
  end
5254
5273
  end
5255
5274
 
5275
+ # Configuration for a predefined question. This field will only be set if the
5276
+ # Question Type is predefined.
5277
+ class GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig
5278
+ include Google::Apis::Core::Hashable
5279
+
5280
+ # The type of the predefined question.
5281
+ # Corresponds to the JSON property `type`
5282
+ # @return [String]
5283
+ attr_accessor :type
5284
+
5285
+ def initialize(**args)
5286
+ update!(**args)
5287
+ end
5288
+
5289
+ # Update properties of this object
5290
+ def update!(**args)
5291
+ @type = args[:type] if args.key?(:type)
5292
+ end
5293
+ end
5294
+
5256
5295
  # A tag is a resource which aims to categorize a set of questions across
5257
5296
  # multiple scorecards, e.g., "Customer Satisfaction","Billing", etc.
5258
5297
  class GoogleCloudContactcenterinsightsV1QaQuestionTag
@@ -5357,6 +5396,13 @@ module Google
5357
5396
  # @return [String]
5358
5397
  attr_accessor :display_name
5359
5398
 
5399
+ # Whether the scorecard is the default one for the project. A default scorecard
5400
+ # cannot be deleted and will always appear first in scorecard selector.
5401
+ # Corresponds to the JSON property `isDefault`
5402
+ # @return [Boolean]
5403
+ attr_accessor :is_default
5404
+ alias_method :is_default?, :is_default
5405
+
5360
5406
  # Identifier. The scorecard name. Format: projects/`project`/locations/`location`
5361
5407
  # /qaScorecards/`qa_scorecard`
5362
5408
  # Corresponds to the JSON property `name`
@@ -5377,6 +5423,7 @@ module Google
5377
5423
  @create_time = args[:create_time] if args.key?(:create_time)
5378
5424
  @description = args[:description] if args.key?(:description)
5379
5425
  @display_name = args[:display_name] if args.key?(:display_name)
5426
+ @is_default = args[:is_default] if args.key?(:is_default)
5380
5427
  @name = args[:name] if args.key?(:name)
5381
5428
  @update_time = args[:update_time] if args.key?(:update_time)
5382
5429
  end
@@ -8215,6 +8262,11 @@ module Google
8215
8262
  # @return [String]
8216
8263
  attr_accessor :conversation_model
8217
8264
 
8265
+ # Agent Assist generator ID.
8266
+ # Corresponds to the JSON property `generatorId`
8267
+ # @return [String]
8268
+ attr_accessor :generator_id
8269
+
8218
8270
  # A map that contains metadata about the summarization and the document from
8219
8271
  # which it originates.
8220
8272
  # Corresponds to the JSON property `metadata`
@@ -8242,6 +8294,7 @@ module Google
8242
8294
  @answer_record = args[:answer_record] if args.key?(:answer_record)
8243
8295
  @confidence = args[:confidence] if args.key?(:confidence)
8244
8296
  @conversation_model = args[:conversation_model] if args.key?(:conversation_model)
8297
+ @generator_id = args[:generator_id] if args.key?(:generator_id)
8245
8298
  @metadata = args[:metadata] if args.key?(:metadata)
8246
8299
  @text = args[:text] if args.key?(:text)
8247
8300
  @text_sections = args[:text_sections] if args.key?(:text_sections)
@@ -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.67.0"
19
+ GEM_VERSION = "0.68.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 = "20250701"
25
+ REVISION = "20250711"
26
26
  end
27
27
  end
28
28
  end
@@ -928,6 +928,12 @@ module Google
928
928
  include Google::Apis::Core::JsonObjectSupport
929
929
  end
930
930
 
931
+ class GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig
932
+ class Representation < Google::Apis::Core::JsonRepresentation; end
933
+
934
+ include Google::Apis::Core::JsonObjectSupport
935
+ end
936
+
931
937
  class GoogleCloudContactcenterinsightsV1QaQuestionTag
932
938
  class Representation < Google::Apis::Core::JsonRepresentation; end
933
939
 
@@ -2596,6 +2602,7 @@ module Google
2596
2602
  property :answer_record, as: 'answerRecord'
2597
2603
  property :confidence, as: 'confidence'
2598
2604
  property :conversation_model, as: 'conversationModel'
2605
+ property :generator_id, as: 'generatorId'
2599
2606
  hash :metadata, as: 'metadata'
2600
2607
  property :text, as: 'text'
2601
2608
  hash :text_sections, as: 'textSections'
@@ -3549,7 +3556,10 @@ module Google
3549
3556
 
3550
3557
  property :name, as: 'name'
3551
3558
  property :order, as: 'order'
3559
+ property :predefined_question_config, as: 'predefinedQuestionConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig::Representation
3560
+
3552
3561
  property :question_body, as: 'questionBody'
3562
+ property :question_type, as: 'questionType'
3553
3563
  collection :tags, as: 'tags'
3554
3564
  property :tuning_metadata, as: 'tuningMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1QaQuestionTuningMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1QaQuestionTuningMetadata::Representation
3555
3565
 
@@ -3576,6 +3586,13 @@ module Google
3576
3586
  end
3577
3587
  end
3578
3588
 
3589
+ class GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig
3590
+ # @private
3591
+ class Representation < Google::Apis::Core::JsonRepresentation
3592
+ property :type, as: 'type'
3593
+ end
3594
+ end
3595
+
3579
3596
  class GoogleCloudContactcenterinsightsV1QaQuestionTag
3580
3597
  # @private
3581
3598
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3602,6 +3619,7 @@ module Google
3602
3619
  property :create_time, as: 'createTime'
3603
3620
  property :description, as: 'description'
3604
3621
  property :display_name, as: 'displayName'
3622
+ property :is_default, as: 'isDefault'
3605
3623
  property :name, as: 'name'
3606
3624
  property :update_time, as: 'updateTime'
3607
3625
  end
@@ -4414,6 +4432,7 @@ module Google
4414
4432
  property :answer_record, as: 'answerRecord'
4415
4433
  property :confidence, as: 'confidence'
4416
4434
  property :conversation_model, as: 'conversationModel'
4435
+ property :generator_id, as: 'generatorId'
4417
4436
  hash :metadata, as: 'metadata'
4418
4437
  property :text, as: 'text'
4419
4438
  hash :text_sections, as: 'textSections'
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.67.0
4
+ version: 0.68.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.67.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.68.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: