aws-sdk-textract 1.51.0 → 1.53.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-textract/client.rb +624 -18
- data/lib/aws-sdk-textract/client_api.rb +434 -0
- data/lib/aws-sdk-textract/endpoints.rb +168 -0
- data/lib/aws-sdk-textract/errors.rb +44 -0
- data/lib/aws-sdk-textract/plugins/endpoints.rb +24 -0
- data/lib/aws-sdk-textract/types.rb +881 -12
- data/lib/aws-sdk-textract.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a956adb889649c11d86db63c8691bae2205e86af4faf058527a3ec137d4899c8
|
4
|
+
data.tar.gz: 13b5e7d583b343bd2c171ba1297c5e7dbb90af2913983104f90310e1efd7381d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 116a361ce643667b083282b06d1753e166e7d718809519c44bfc92ebd7c2dba19a0ddbdf0ac8a19771f80698cc097db739241f75457fac4ec9de23b335339b93
|
7
|
+
data.tar.gz: eccd57955dc6a7f05dd5d0a16da71a897b2e643ba57bdad477fb1604ad3f6ee331705f5178c2bba90669966df0d2b102d847dbb2bc4de50dfedba2b273cb6104
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.53.0 (2023-10-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds 9 new APIs for adapter and adapter version management, 3 new APIs for tagging, and updates AnalyzeDocument and StartDocumentAnalysis API parameters for using adapters.
|
8
|
+
|
9
|
+
1.52.0 (2023-09-27)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds new feature - Layout to Analyze Document API which can automatically extract layout elements such as titles, paragraphs, headers, section headers, lists, page numbers, footers, table areas, key-value areas and figure areas and order the elements as a human would read.
|
13
|
+
|
4
14
|
1.51.0 (2023-09-19)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.53.0
|