aws-sdk-textract 1.91.0 → 1.92.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: 44259596d40a0fa6545d7bd02b0a9c7f55bfa1cd179c265f4f466a4475de7dd7
4
- data.tar.gz: 4975a3f34d67f1d62b5967458d387e7c284767f5af0f6b31fe1fecccf1f1539b
3
+ metadata.gz: 9d42cd709d44b98fdabec6d5ea2638186e7da3232e7d50c7962b0d6d750b9860
4
+ data.tar.gz: e85a94b8e8794c774dd86fb31a0f1d4c488938887d27f983b0dc3619fd2af797
5
5
  SHA512:
6
- metadata.gz: 245f3e6490df1f40961f9cd7d6edaf6d9f8ec6dd81e2d8908506f4f659a35b82eb18b2bcd8654c3f3acf94bae148c0f6c8ff78dec851c6c74c8c0e33ed3d073b
7
- data.tar.gz: 6d453a1ce0abef6a27e6ae64b23eff5ed1b713f8e33a88f4a0ab8943ad7a75514c6d59d57ebefe43b304b127b285964d4d044c78db465800ad05e78e053cf612
6
+ metadata.gz: '090ad75e0a5e83f8c337687596a6ae99c603418097f46faac2390d6b9adb80f02ae156d59b1a30fb3f30f7949d2affb3ae5f655e8187ed0cf37d1ab88c45d7a0'
7
+ data.tar.gz: f5ab29b89c816f002c9cd959709922c9ac2034bb930b0fc60b014a4c8f08468adf760691af1682d98ff943d72b80f909c09c5c92f41000810cee6e40a032a9c5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.92.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.91.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.91.0
1
+ 1.92.0
@@ -2845,7 +2845,7 @@ module Aws::Textract
2845
2845
  tracer: tracer
2846
2846
  )
2847
2847
  context[:gem_name] = 'aws-sdk-textract'
2848
- context[:gem_version] = '1.91.0'
2848
+ context[:gem_version] = '1.92.0'
2849
2849
  Seahorse::Client::Request.new(handlers, context)
2850
2850
  end
2851
2851
 
@@ -54,7 +54,7 @@ module Aws::Textract
54
54
  autoload :EndpointProvider, 'aws-sdk-textract/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-textract/endpoints'
56
56
 
57
- GEM_VERSION = '1.91.0'
57
+ GEM_VERSION = '1.92.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -88,14 +88,7 @@ module Aws
88
88
  end
89
89
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Textract/Client.html#analyze_document-instance_method
90
90
  def analyze_document: (
91
- document: {
92
- bytes: ::String?,
93
- s3_object: {
94
- bucket: ::String?,
95
- name: ::String?,
96
- version: ::String?
97
- }?
98
- },
91
+ document: Params::document,
99
92
  feature_types: Array[("TABLES" | "FORMS" | "QUERIES" | "SIGNATURES" | "LAYOUT")],
100
93
  ?human_loop_config: {
101
94
  human_loop_name: ::String,
@@ -110,7 +103,7 @@ module Aws
110
103
  text: ::String,
111
104
  alias: ::String?,
112
105
  pages: Array[::String]?
113
- },
106
+ }
114
107
  ]
115
108
  },
116
109
  ?adapters_config: {
@@ -119,7 +112,7 @@ module Aws
119
112
  adapter_id: ::String,
120
113
  pages: Array[::String]?,
121
114
  version: ::String
122
- },
115
+ }
123
116
  ]
124
117
  }
125
118
  ) -> _AnalyzeDocumentResponseSuccess
@@ -132,14 +125,7 @@ module Aws
132
125
  end
133
126
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Textract/Client.html#analyze_expense-instance_method
134
127
  def analyze_expense: (
135
- document: {
136
- bytes: ::String?,
137
- s3_object: {
138
- bucket: ::String?,
139
- name: ::String?,
140
- version: ::String?
141
- }?
142
- }
128
+ document: Params::document
143
129
  ) -> _AnalyzeExpenseResponseSuccess
144
130
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AnalyzeExpenseResponseSuccess
145
131
 
@@ -152,14 +138,7 @@ module Aws
152
138
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Textract/Client.html#analyze_id-instance_method
153
139
  def analyze_id: (
154
140
  document_pages: Array[
155
- {
156
- bytes: ::String?,
157
- s3_object: {
158
- bucket: ::String?,
159
- name: ::String?,
160
- version: ::String?
161
- }?
162
- },
141
+ Params::document
163
142
  ]
164
143
  ) -> _AnalyzeIDResponseSuccess
165
144
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AnalyzeIDResponseSuccess
@@ -231,14 +210,7 @@ module Aws
231
210
  end
232
211
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Textract/Client.html#detect_document_text-instance_method
233
212
  def detect_document_text: (
234
- document: {
235
- bytes: ::String?,
236
- s3_object: {
237
- bucket: ::String?,
238
- name: ::String?,
239
- version: ::String?
240
- }?
241
- }
213
+ document: Params::document
242
214
  ) -> _DetectDocumentTextResponseSuccess
243
215
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DetectDocumentTextResponseSuccess
244
216
 
@@ -436,7 +408,7 @@ module Aws
436
408
  text: ::String,
437
409
  alias: ::String?,
438
410
  pages: Array[::String]?
439
- },
411
+ }
440
412
  ]
441
413
  },
442
414
  ?adapters_config: {
@@ -445,7 +417,7 @@ module Aws
445
417
  adapter_id: ::String,
446
418
  pages: Array[::String]?,
447
419
  version: ::String
448
- },
420
+ }
449
421
  ]
450
422
  }
451
423
  ) -> _StartDocumentAnalysisResponseSuccess
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 Textract
10
+ module Params
11
+ type document = {
12
+ bytes: ::String?,
13
+ s3_object: {
14
+ bucket: ::String?,
15
+ name: ::String?,
16
+ version: ::String?
17
+ }?
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-textract
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.91.0
4
+ version: 1.92.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-textract/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