aws-sdk-qconnect 1.49.0 → 1.50.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: 2e8cc2266c56a29ee5c140638290e8d1212b9e489bf9044f96caf58c9ab71c62
4
- data.tar.gz: 23d99a8d3765fd323a1aa6bb625cc292d7f746a60cbc0844164ad0fba62a6333
3
+ metadata.gz: 7e1459507c28c58df93faa4a5b7166dbbc193809a09006f8b42145d5a31f0261
4
+ data.tar.gz: b301892663cfb5df1a9bb525ba7ff8e5c612820db4185e0a9109530727ac28e7
5
5
  SHA512:
6
- metadata.gz: 92197832abddddd91369722179b7b54ad7538c42db2e72085406b50da95d091254c5567d4138418f3ead23efef250a266806308184faf9d73f9b78bf10ab062d
7
- data.tar.gz: 2dea92323e35b0d19f1a4744eaf3c2b2db8c9eb2920193e4e8a8428a0c8db7f16251ca7a65ed1709d7b8f84b387afc756153cc8a90b74b7d54f5dbf7b944236a
6
+ metadata.gz: 42682754281325540df037213acd19b481bb9952c7f1b773fd7d6a4b79dffeccd86acc9cdbb9314308dde1ea703afb19176d9a400c654dfe75680e4637f1d7e2
7
+ data.tar.gz: 9be9d6a2a47f884f92af9bad8ad7c79fe36690f7229754208cf9c26b7b5f2e383d13c2fc3d3f0b14fade055485ad6f8ebc7eb572beb7734dcd2d9f6513ee7b41
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.50.0 (2026-02-16)
5
+ ------------------
6
+
7
+ * Feature - Update MessageType enum to include missing types.
8
+
4
9
  1.49.0 (2026-01-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.49.0
1
+ 1.50.0
@@ -4577,7 +4577,7 @@ module Aws::QConnect
4577
4577
  #
4578
4578
  # @example Response structure
4579
4579
  #
4580
- # resp.type #=> String, one of "TEXT"
4580
+ # resp.type #=> String, one of "TEXT", "TOOL_USE_RESULT"
4581
4581
  # resp.response.value.text.value #=> String
4582
4582
  # resp.response.value.text.citations #=> Array
4583
4583
  # resp.response.value.text.citations[0].content_id #=> String
@@ -7309,7 +7309,7 @@ module Aws::QConnect
7309
7309
  # resp = client.send_message({
7310
7310
  # assistant_id: "UuidOrArn", # required
7311
7311
  # session_id: "UuidOrArn", # required
7312
- # type: "TEXT", # required, accepts TEXT
7312
+ # type: "TEXT", # required, accepts TEXT, TOOL_USE_RESULT
7313
7313
  # message: { # required
7314
7314
  # value: { # required
7315
7315
  # text: {
@@ -9453,7 +9453,7 @@ module Aws::QConnect
9453
9453
  tracer: tracer
9454
9454
  )
9455
9455
  context[:gem_name] = 'aws-sdk-qconnect'
9456
- context[:gem_version] = '1.49.0'
9456
+ context[:gem_version] = '1.50.0'
9457
9457
  Seahorse::Client::Request.new(handlers, context)
9458
9458
  end
9459
9459
 
@@ -55,7 +55,7 @@ module Aws::QConnect
55
55
  autoload :EndpointProvider, 'aws-sdk-qconnect/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-qconnect/endpoints'
57
57
 
58
- GEM_VERSION = '1.49.0'
58
+ GEM_VERSION = '1.50.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1271,7 +1271,7 @@ module Aws
1271
1271
 
1272
1272
  interface _GetNextMessageResponseSuccess
1273
1273
  include ::Seahorse::Client::_ResponseSuccess[Types::GetNextMessageResponse]
1274
- def type: () -> ("TEXT")
1274
+ def type: () -> ("TEXT" | "TOOL_USE_RESULT")
1275
1275
  def response: () -> Types::MessageOutput
1276
1276
  def request_message_id: () -> ::String
1277
1277
  def conversation_state: () -> Types::ConversationState
@@ -1954,7 +1954,7 @@ module Aws
1954
1954
  def send_message: (
1955
1955
  assistant_id: ::String,
1956
1956
  session_id: ::String,
1957
- type: ("TEXT"),
1957
+ type: ("TEXT" | "TOOL_USE_RESULT"),
1958
1958
  message: {
1959
1959
  value: {
1960
1960
  text: {
data/sig/types.rbs CHANGED
@@ -1406,7 +1406,7 @@ module Aws::QConnect
1406
1406
  end
1407
1407
 
1408
1408
  class GetNextMessageResponse
1409
- attr_accessor type: ("TEXT")
1409
+ attr_accessor type: ("TEXT" | "TOOL_USE_RESULT")
1410
1410
  attr_accessor response: Types::MessageOutput
1411
1411
  attr_accessor request_message_id: ::String
1412
1412
  attr_accessor conversation_state: Types::ConversationState
@@ -2722,7 +2722,7 @@ module Aws::QConnect
2722
2722
  class SendMessageRequest
2723
2723
  attr_accessor assistant_id: ::String
2724
2724
  attr_accessor session_id: ::String
2725
- attr_accessor type: ("TEXT")
2725
+ attr_accessor type: ("TEXT" | "TOOL_USE_RESULT")
2726
2726
  attr_accessor message: Types::MessageInput
2727
2727
  attr_accessor ai_agent_id: ::String
2728
2728
  attr_accessor conversation_context: Types::ConversationContext
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-qconnect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.49.0
4
+ version: 1.50.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services