google-apis-contactcenterinsights_v1 0.71.0 → 0.72.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 +24 -0
- data/lib/google/apis/contactcenterinsights_v1/gem_version.rb +2 -2
- data/lib/google/apis/contactcenterinsights_v1/representations.rb +3 -0
- data/lib/google/apis/contactcenterinsights_v1/service.rb +17 -6
- 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: 8d20c13d1b92a4f4144c422b682cd73e7776b3ab75f35ccd3844d7f021ab17d3
|
4
|
+
data.tar.gz: 5230b6d9c744b34278c2cbcc0418c4da251a148ceaeca9fb3b0ae036fa8eb19c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21d80a2d31fbfd20cdc68d90f30b997dd3bbab3004f347516e0e19af01c22aef40f4c4ac6ca1f2ddab3c545573e9c7c6bf1d7ad0ddd226d410e616fd42735e5b
|
7
|
+
data.tar.gz: 80596f767c5cd026ee4f4087cd6eae66d038aa720e7bdb39484e83c1e3e30b9167714acc9083b0c12a24b0d9fd14c233e3d09c08fb5d0634d655588802bf77f2
|
data/CHANGELOG.md
CHANGED
@@ -5091,6 +5091,14 @@ module Google
|
|
5091
5091
|
# @return [Float]
|
5092
5092
|
attr_accessor :score
|
5093
5093
|
|
5094
|
+
# Output only. A value of "Skip". If provided, this field may only be set to `
|
5095
|
+
# true`. If a question receives this answer, it will be excluded from any score
|
5096
|
+
# calculations. This would mean that the question was not evaluated.
|
5097
|
+
# Corresponds to the JSON property `skipValue`
|
5098
|
+
# @return [Boolean]
|
5099
|
+
attr_accessor :skip_value
|
5100
|
+
alias_method :skip_value?, :skip_value
|
5101
|
+
|
5094
5102
|
# String value.
|
5095
5103
|
# Corresponds to the JSON property `strValue`
|
5096
5104
|
# @return [String]
|
@@ -5109,6 +5117,7 @@ module Google
|
|
5109
5117
|
@num_value = args[:num_value] if args.key?(:num_value)
|
5110
5118
|
@potential_score = args[:potential_score] if args.key?(:potential_score)
|
5111
5119
|
@score = args[:score] if args.key?(:score)
|
5120
|
+
@skip_value = args[:skip_value] if args.key?(:skip_value)
|
5112
5121
|
@str_value = args[:str_value] if args.key?(:str_value)
|
5113
5122
|
end
|
5114
5123
|
end
|
@@ -5428,6 +5437,11 @@ module Google
|
|
5428
5437
|
# @return [String]
|
5429
5438
|
attr_accessor :name
|
5430
5439
|
|
5440
|
+
# Output only. The source of the scorecard.
|
5441
|
+
# Corresponds to the JSON property `source`
|
5442
|
+
# @return [String]
|
5443
|
+
attr_accessor :source
|
5444
|
+
|
5431
5445
|
# Output only. The most recent time at which the scorecard was updated.
|
5432
5446
|
# Corresponds to the JSON property `updateTime`
|
5433
5447
|
# @return [String]
|
@@ -5444,6 +5458,7 @@ module Google
|
|
5444
5458
|
@display_name = args[:display_name] if args.key?(:display_name)
|
5445
5459
|
@is_default = args[:is_default] if args.key?(:is_default)
|
5446
5460
|
@name = args[:name] if args.key?(:name)
|
5461
|
+
@source = args[:source] if args.key?(:source)
|
5447
5462
|
@update_time = args[:update_time] if args.key?(:update_time)
|
5448
5463
|
end
|
5449
5464
|
end
|
@@ -10627,6 +10642,14 @@ module Google
|
|
10627
10642
|
# @return [Float]
|
10628
10643
|
attr_accessor :score
|
10629
10644
|
|
10645
|
+
# Output only. A value of "Skip". If provided, this field may only be set to `
|
10646
|
+
# true`. If a question receives this answer, it will be excluded from any score
|
10647
|
+
# calculations. This would mean that the question was not evaluated.
|
10648
|
+
# Corresponds to the JSON property `skipValue`
|
10649
|
+
# @return [Boolean]
|
10650
|
+
attr_accessor :skip_value
|
10651
|
+
alias_method :skip_value?, :skip_value
|
10652
|
+
|
10630
10653
|
# String value.
|
10631
10654
|
# Corresponds to the JSON property `strValue`
|
10632
10655
|
# @return [String]
|
@@ -10645,6 +10668,7 @@ module Google
|
|
10645
10668
|
@num_value = args[:num_value] if args.key?(:num_value)
|
10646
10669
|
@potential_score = args[:potential_score] if args.key?(:potential_score)
|
10647
10670
|
@score = args[:score] if args.key?(:score)
|
10671
|
+
@skip_value = args[:skip_value] if args.key?(:skip_value)
|
10648
10672
|
@str_value = args[:str_value] if args.key?(:str_value)
|
10649
10673
|
end
|
10650
10674
|
end
|
@@ -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.72.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 = "20250821"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3591,6 +3591,7 @@ module Google
|
|
3591
3591
|
property :num_value, as: 'numValue'
|
3592
3592
|
property :potential_score, as: 'potentialScore'
|
3593
3593
|
property :score, as: 'score'
|
3594
|
+
property :skip_value, as: 'skipValue'
|
3594
3595
|
property :str_value, as: 'strValue'
|
3595
3596
|
end
|
3596
3597
|
end
|
@@ -3672,6 +3673,7 @@ module Google
|
|
3672
3673
|
property :display_name, as: 'displayName'
|
3673
3674
|
property :is_default, as: 'isDefault'
|
3674
3675
|
property :name, as: 'name'
|
3676
|
+
property :source, as: 'source'
|
3675
3677
|
property :update_time, as: 'updateTime'
|
3676
3678
|
end
|
3677
3679
|
end
|
@@ -5174,6 +5176,7 @@ module Google
|
|
5174
5176
|
property :num_value, as: 'numValue'
|
5175
5177
|
property :potential_score, as: 'potentialScore'
|
5176
5178
|
property :score, as: 'score'
|
5179
|
+
property :skip_value, as: 'skipValue'
|
5177
5180
|
property :str_value, as: 'strValue'
|
5178
5181
|
end
|
5179
5182
|
end
|
@@ -5148,10 +5148,10 @@ module Google
|
|
5148
5148
|
# Required. The parent resource of the QaQuestionTags.
|
5149
5149
|
# @param [String] filter
|
5150
5150
|
# Optional. A filter to reduce results to a specific subset. Supports
|
5151
|
-
#
|
5152
|
-
#
|
5153
|
-
#
|
5154
|
-
# qa_question_id - id of the question to list tags for`
|
5151
|
+
# conjunctions (ie. AND operators). Supported fields include the following: * `
|
5152
|
+
# project_id` - id of the project to list tags for * `qa_scorecard_id` - id of
|
5153
|
+
# the scorecard to list tags for * `revision_id` - id of the scorecard revision
|
5154
|
+
# to list tags for` * `qa_question_id - id of the question to list tags for`
|
5155
5155
|
# @param [String] fields
|
5156
5156
|
# Selector specifying which fields to include in a partial response.
|
5157
5157
|
# @param [String] quota_user
|
@@ -5337,6 +5337,10 @@ module Google
|
|
5337
5337
|
# Optional. The value returned by the last `ListQaScorecardsResponse`. This
|
5338
5338
|
# value indicates that this is a continuation of a prior `ListQaScorecards` call
|
5339
5339
|
# and that the system should return the next page of data.
|
5340
|
+
# @param [Array<String>, String] qa_scorecard_sources
|
5341
|
+
# Optional. The source of scorecards are based on how those Scorecards were
|
5342
|
+
# created, e.g., a customer-defined scorecard, a predefined scorecard, etc. This
|
5343
|
+
# field is used to retrieve Scorecards of one or more sources.
|
5340
5344
|
# @param [String] fields
|
5341
5345
|
# Selector specifying which fields to include in a partial response.
|
5342
5346
|
# @param [String] quota_user
|
@@ -5354,13 +5358,14 @@ module Google
|
|
5354
5358
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5355
5359
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5356
5360
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5357
|
-
def list_project_location_qa_scorecards(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5361
|
+
def list_project_location_qa_scorecards(parent, page_size: nil, page_token: nil, qa_scorecard_sources: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5358
5362
|
command = make_simple_command(:get, 'v1/{+parent}/qaScorecards', options)
|
5359
5363
|
command.response_representation = Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListQaScorecardsResponse::Representation
|
5360
5364
|
command.response_class = Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListQaScorecardsResponse
|
5361
5365
|
command.params['parent'] = parent unless parent.nil?
|
5362
5366
|
command.query['pageSize'] = page_size unless page_size.nil?
|
5363
5367
|
command.query['pageToken'] = page_token unless page_token.nil?
|
5368
|
+
command.query['qaScorecardSources'] = qa_scorecard_sources unless qa_scorecard_sources.nil?
|
5364
5369
|
command.query['fields'] = fields unless fields.nil?
|
5365
5370
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5366
5371
|
execute_or_queue_command(command, &block)
|
@@ -5560,6 +5565,11 @@ module Google
|
|
5560
5565
|
# This value indicates that this is a continuation of a prior `
|
5561
5566
|
# ListQaScorecardRevisions` call and that the system should return the next page
|
5562
5567
|
# of data.
|
5568
|
+
# @param [Array<String>, String] qa_scorecard_sources
|
5569
|
+
# Optional. The source of scorecards are based on how those Scorecards were
|
5570
|
+
# created, e.g., a customer-defined scorecard, a predefined scorecard, etc. This
|
5571
|
+
# field is used to retrieve Scorecards Revisions from Scorecards of one or more
|
5572
|
+
# sources.
|
5563
5573
|
# @param [String] fields
|
5564
5574
|
# Selector specifying which fields to include in a partial response.
|
5565
5575
|
# @param [String] quota_user
|
@@ -5577,7 +5587,7 @@ module Google
|
|
5577
5587
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5578
5588
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5579
5589
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5580
|
-
def list_project_location_qa_scorecard_revisions(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5590
|
+
def list_project_location_qa_scorecard_revisions(parent, filter: nil, page_size: nil, page_token: nil, qa_scorecard_sources: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5581
5591
|
command = make_simple_command(:get, 'v1/{+parent}/revisions', options)
|
5582
5592
|
command.response_representation = Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListQaScorecardRevisionsResponse::Representation
|
5583
5593
|
command.response_class = Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListQaScorecardRevisionsResponse
|
@@ -5585,6 +5595,7 @@ module Google
|
|
5585
5595
|
command.query['filter'] = filter unless filter.nil?
|
5586
5596
|
command.query['pageSize'] = page_size unless page_size.nil?
|
5587
5597
|
command.query['pageToken'] = page_token unless page_token.nil?
|
5598
|
+
command.query['qaScorecardSources'] = qa_scorecard_sources unless qa_scorecard_sources.nil?
|
5588
5599
|
command.query['fields'] = fields unless fields.nil?
|
5589
5600
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5590
5601
|
execute_or_queue_command(command, &block)
|
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.72.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.72.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:
|