aws-sdk-lex 1.92.0 → 1.93.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lex/client.rb +1 -1
- data/lib/aws-sdk-lex.rb +1 -1
- data/sig/client.rbs +3 -17
- data/sig/params.rbs +22 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 113daa0c81744bf214b35654bc1569dda2e6b9fef09019bdebb0741b1891b9de
|
|
4
|
+
data.tar.gz: 376da17d0d39e8f9b1453d41420aaa22da3c860d55b873d92ce432ca6093de96
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 31921ce9f6a269664f449e362d303aface2c2de1a58fcb8b096d6bc30551b0c6e582b02725fd0156a6036342e8b521facec7d1b8021ccf1520a5d739599d5212
|
|
7
|
+
data.tar.gz: 84f4513e56a2aec3999fd71341ee650a26bb642a9b57284eab3206b1ac08a70962b087afa9414f95fd7c5a074f1823e110fffa616aa03890ac0fb7dad2d924e0
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.93.0
|
data/lib/aws-sdk-lex/client.rb
CHANGED
data/lib/aws-sdk-lex.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -171,14 +171,7 @@ module Aws
|
|
|
171
171
|
?request_attributes: Hash[::String, ::String],
|
|
172
172
|
input_text: ::String,
|
|
173
173
|
?active_contexts: Array[
|
|
174
|
-
|
|
175
|
-
name: ::String,
|
|
176
|
-
time_to_live: {
|
|
177
|
-
time_to_live_in_seconds: ::Integer?,
|
|
178
|
-
turns_to_live: ::Integer?
|
|
179
|
-
},
|
|
180
|
-
parameters: Hash[::String, ::String]
|
|
181
|
-
},
|
|
174
|
+
Params::active_context
|
|
182
175
|
]
|
|
183
176
|
) -> _PostTextResponseSuccess
|
|
184
177
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PostTextResponseSuccess
|
|
@@ -222,18 +215,11 @@ module Aws
|
|
|
222
215
|
dialog_action_type: ("ElicitIntent" | "ConfirmIntent" | "ElicitSlot" | "Close" | "Delegate"),
|
|
223
216
|
fulfillment_state: ("Fulfilled" | "Failed" | "ReadyForFulfillment")?,
|
|
224
217
|
slot_to_elicit: ::String?
|
|
225
|
-
}
|
|
218
|
+
}
|
|
226
219
|
],
|
|
227
220
|
?accept: ::String,
|
|
228
221
|
?active_contexts: Array[
|
|
229
|
-
|
|
230
|
-
name: ::String,
|
|
231
|
-
time_to_live: {
|
|
232
|
-
time_to_live_in_seconds: ::Integer?,
|
|
233
|
-
turns_to_live: ::Integer?
|
|
234
|
-
},
|
|
235
|
-
parameters: Hash[::String, ::String]
|
|
236
|
-
},
|
|
222
|
+
Params::active_context
|
|
237
223
|
]
|
|
238
224
|
) ?{ (*untyped) -> void } -> _PutSessionResponseSuccess
|
|
239
225
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _PutSessionResponseSuccess
|
data/sig/params.rbs
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module Lex
|
|
10
|
+
module Params
|
|
11
|
+
type active_context = {
|
|
12
|
+
name: ::String,
|
|
13
|
+
time_to_live: {
|
|
14
|
+
time_to_live_in_seconds: ::Integer?,
|
|
15
|
+
turns_to_live: ::Integer?
|
|
16
|
+
},
|
|
17
|
+
parameters: Hash[::String, ::String]
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-lex
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.93.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -67,6 +67,7 @@ files:
|
|
|
67
67
|
- lib/aws-sdk-lex/types.rb
|
|
68
68
|
- sig/client.rbs
|
|
69
69
|
- sig/errors.rbs
|
|
70
|
+
- sig/params.rbs
|
|
70
71
|
- sig/resource.rbs
|
|
71
72
|
- sig/types.rbs
|
|
72
73
|
- sig/waiters.rbs
|