aws-sdk-qconnect 1.2.0 → 1.4.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-qconnect/client.rb +1 -1
- data/lib/aws-sdk-qconnect/client_api.rb +2 -0
- data/lib/aws-sdk-qconnect.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd297a844101fbb612b311b2700584861aba296b19973a8f74be8fc4502cc83f
|
|
4
|
+
data.tar.gz: b3e54871eeecdf3c694d01bf519011c398f5aec10c96beb865d9d98c175e897a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 92063b2f197e389b46eccf1d08a973c470d08f239c7d683ba647fd7885342f57925d4d2624bd417816d7b691cf23825ff1041e0509d29a8079353d2ef8cbbef4
|
|
7
|
+
data.tar.gz: 1be80e698dd382aa12e5ad06c7399d3d669cde30fbdf601e4c419a21d455aecdea6d890a1f63a3b7a8c44751b7f93d46c70632bddfc58c423c0b71a823949d10
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.4.0 (2024-01-19)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Increased Quick Response name max length to 100
|
|
8
|
+
|
|
9
|
+
1.3.0 (2024-01-10)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - QueryAssistant and GetRecommendations will be discontinued starting June 1, 2024. To receive generative responses after March 1, 2024 you will need to create a new Assistant in the Connect console and integrate the Amazon Q in Connect JavaScript library (amazon-q-connectjs) into your applications.
|
|
13
|
+
|
|
4
14
|
1.2.0 (2024-01-05)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.4.0
|
|
@@ -2969,7 +2969,7 @@ module Aws::QConnect
|
|
|
2969
2969
|
params: params,
|
|
2970
2970
|
config: config)
|
|
2971
2971
|
context[:gem_name] = 'aws-sdk-qconnect'
|
|
2972
|
-
context[:gem_version] = '1.
|
|
2972
|
+
context[:gem_version] = '1.4.0'
|
|
2973
2973
|
Seahorse::Client::Request.new(handlers, context)
|
|
2974
2974
|
end
|
|
2975
2975
|
|
|
@@ -1392,6 +1392,7 @@ module Aws::QConnect
|
|
|
1392
1392
|
o.name = "GetRecommendations"
|
|
1393
1393
|
o.http_method = "GET"
|
|
1394
1394
|
o.http_request_uri = "/assistants/{assistantId}/sessions/{sessionId}/recommendations"
|
|
1395
|
+
o.deprecated = true
|
|
1395
1396
|
o.input = Shapes::ShapeRef.new(shape: GetRecommendationsRequest)
|
|
1396
1397
|
o.output = Shapes::ShapeRef.new(shape: GetRecommendationsResponse)
|
|
1397
1398
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
@@ -1544,6 +1545,7 @@ module Aws::QConnect
|
|
|
1544
1545
|
o.name = "QueryAssistant"
|
|
1545
1546
|
o.http_method = "POST"
|
|
1546
1547
|
o.http_request_uri = "/assistants/{assistantId}/query"
|
|
1548
|
+
o.deprecated = true
|
|
1547
1549
|
o.input = Shapes::ShapeRef.new(shape: QueryAssistantRequest)
|
|
1548
1550
|
o.output = Shapes::ShapeRef.new(shape: QueryAssistantResponse)
|
|
1549
1551
|
o.errors << Shapes::ShapeRef.new(shape: RequestTimeoutException)
|
data/lib/aws-sdk-qconnect.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-qconnect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-01-
|
|
11
|
+
date: 2024-01-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -72,7 +72,7 @@ licenses:
|
|
|
72
72
|
metadata:
|
|
73
73
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-qconnect
|
|
74
74
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-qconnect/CHANGELOG.md
|
|
75
|
-
post_install_message:
|
|
75
|
+
post_install_message:
|
|
76
76
|
rdoc_options: []
|
|
77
77
|
require_paths:
|
|
78
78
|
- lib
|
|
@@ -87,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
88
|
version: '0'
|
|
89
89
|
requirements: []
|
|
90
|
-
rubygems_version: 3.
|
|
91
|
-
signing_key:
|
|
90
|
+
rubygems_version: 3.4.10
|
|
91
|
+
signing_key:
|
|
92
92
|
specification_version: 4
|
|
93
93
|
summary: AWS SDK for Ruby - Amazon Q Connect
|
|
94
94
|
test_files: []
|