@aws-sdk/client-textract 3.297.0 → 3.299.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.
- package/dist-cjs/commands/AnalyzeDocumentCommand.js +2 -3
- package/dist-cjs/commands/AnalyzeExpenseCommand.js +2 -3
- package/dist-cjs/commands/AnalyzeIDCommand.js +2 -3
- package/dist-cjs/commands/DetectDocumentTextCommand.js +2 -3
- package/dist-cjs/commands/GetDocumentAnalysisCommand.js +2 -3
- package/dist-cjs/commands/GetDocumentTextDetectionCommand.js +2 -3
- package/dist-cjs/commands/GetExpenseAnalysisCommand.js +2 -3
- package/dist-cjs/commands/GetLendingAnalysisCommand.js +2 -3
- package/dist-cjs/commands/GetLendingAnalysisSummaryCommand.js +2 -3
- package/dist-cjs/commands/StartDocumentAnalysisCommand.js +2 -3
- package/dist-cjs/commands/StartDocumentTextDetectionCommand.js +2 -3
- package/dist-cjs/commands/StartExpenseAnalysisCommand.js +2 -3
- package/dist-cjs/commands/StartLendingAnalysisCommand.js +2 -3
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +12 -274
- package/dist-es/commands/AnalyzeDocumentCommand.js +2 -3
- package/dist-es/commands/AnalyzeExpenseCommand.js +2 -3
- package/dist-es/commands/AnalyzeIDCommand.js +2 -3
- package/dist-es/commands/DetectDocumentTextCommand.js +2 -3
- package/dist-es/commands/GetDocumentAnalysisCommand.js +2 -3
- package/dist-es/commands/GetDocumentTextDetectionCommand.js +2 -3
- package/dist-es/commands/GetExpenseAnalysisCommand.js +2 -3
- package/dist-es/commands/GetLendingAnalysisCommand.js +2 -3
- package/dist-es/commands/GetLendingAnalysisSummaryCommand.js +2 -3
- package/dist-es/commands/StartDocumentAnalysisCommand.js +2 -3
- package/dist-es/commands/StartDocumentTextDetectionCommand.js +2 -3
- package/dist-es/commands/StartExpenseAnalysisCommand.js +2 -3
- package/dist-es/commands/StartLendingAnalysisCommand.js +2 -3
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +11 -204
- package/dist-types/Textract.d.ts +3 -13
- package/dist-types/commands/AnalyzeDocumentCommand.d.ts +0 -2
- package/dist-types/commands/AnalyzeIDCommand.d.ts +1 -1
- package/dist-types/commands/DetectDocumentTextCommand.d.ts +0 -1
- package/dist-types/commands/GetDocumentAnalysisCommand.d.ts +0 -4
- package/dist-types/commands/GetDocumentTextDetectionCommand.d.ts +0 -1
- package/dist-types/commands/GetLendingAnalysisCommand.d.ts +2 -2
- package/dist-types/commands/StartDocumentAnalysisCommand.d.ts +0 -1
- package/dist-types/commands/StartExpenseAnalysisCommand.d.ts +0 -1
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +114 -300
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +11 -174
- package/package.json +11 -10
|
@@ -64,12 +64,20 @@ export declare enum BlockType {
|
|
|
64
64
|
SELECTION_ELEMENT = "SELECTION_ELEMENT",
|
|
65
65
|
SIGNATURE = "SIGNATURE",
|
|
66
66
|
TABLE = "TABLE",
|
|
67
|
+
TABLE_FOOTER = "TABLE_FOOTER",
|
|
68
|
+
TABLE_TITLE = "TABLE_TITLE",
|
|
67
69
|
TITLE = "TITLE",
|
|
68
70
|
WORD = "WORD",
|
|
69
71
|
}
|
|
70
72
|
export declare enum EntityType {
|
|
71
73
|
COLUMN_HEADER = "COLUMN_HEADER",
|
|
72
74
|
KEY = "KEY",
|
|
75
|
+
SEMI_STRUCTURED_TABLE = "SEMI_STRUCTURED_TABLE",
|
|
76
|
+
STRUCTURED_TABLE = "STRUCTURED_TABLE",
|
|
77
|
+
TABLE_FOOTER = "TABLE_FOOTER",
|
|
78
|
+
TABLE_SECTION_TITLE = "TABLE_SECTION_TITLE",
|
|
79
|
+
TABLE_SUMMARY = "TABLE_SUMMARY",
|
|
80
|
+
TABLE_TITLE = "TABLE_TITLE",
|
|
73
81
|
VALUE = "VALUE",
|
|
74
82
|
}
|
|
75
83
|
export interface BoundingBox {
|
|
@@ -91,6 +99,9 @@ export declare enum RelationshipType {
|
|
|
91
99
|
CHILD = "CHILD",
|
|
92
100
|
COMPLEX_FEATURES = "COMPLEX_FEATURES",
|
|
93
101
|
MERGED_CELL = "MERGED_CELL",
|
|
102
|
+
TABLE = "TABLE",
|
|
103
|
+
TABLE_FOOTER = "TABLE_FOOTER",
|
|
104
|
+
TABLE_TITLE = "TABLE_TITLE",
|
|
94
105
|
TITLE = "TITLE",
|
|
95
106
|
VALUE = "VALUE",
|
|
96
107
|
}
|
|
@@ -539,177 +550,3 @@ export interface StartLendingAnalysisRequest {
|
|
|
539
550
|
export interface StartLendingAnalysisResponse {
|
|
540
551
|
JobId?: string;
|
|
541
552
|
}
|
|
542
|
-
export declare const S3ObjectFilterSensitiveLog: (obj: S3Object) => any;
|
|
543
|
-
export declare const DocumentFilterSensitiveLog: (obj: Document) => any;
|
|
544
|
-
export declare const HumanLoopDataAttributesFilterSensitiveLog: (
|
|
545
|
-
obj: HumanLoopDataAttributes
|
|
546
|
-
) => any;
|
|
547
|
-
export declare const HumanLoopConfigFilterSensitiveLog: (
|
|
548
|
-
obj: HumanLoopConfig
|
|
549
|
-
) => any;
|
|
550
|
-
export declare const QueryFilterSensitiveLog: (obj: Query) => any;
|
|
551
|
-
export declare const QueriesConfigFilterSensitiveLog: (
|
|
552
|
-
obj: QueriesConfig
|
|
553
|
-
) => any;
|
|
554
|
-
export declare const AnalyzeDocumentRequestFilterSensitiveLog: (
|
|
555
|
-
obj: AnalyzeDocumentRequest
|
|
556
|
-
) => any;
|
|
557
|
-
export declare const BoundingBoxFilterSensitiveLog: (obj: BoundingBox) => any;
|
|
558
|
-
export declare const PointFilterSensitiveLog: (obj: Point) => any;
|
|
559
|
-
export declare const GeometryFilterSensitiveLog: (obj: Geometry) => any;
|
|
560
|
-
export declare const RelationshipFilterSensitiveLog: (obj: Relationship) => any;
|
|
561
|
-
export declare const BlockFilterSensitiveLog: (obj: Block) => any;
|
|
562
|
-
export declare const DocumentMetadataFilterSensitiveLog: (
|
|
563
|
-
obj: DocumentMetadata
|
|
564
|
-
) => any;
|
|
565
|
-
export declare const HumanLoopActivationOutputFilterSensitiveLog: (
|
|
566
|
-
obj: HumanLoopActivationOutput
|
|
567
|
-
) => any;
|
|
568
|
-
export declare const AnalyzeDocumentResponseFilterSensitiveLog: (
|
|
569
|
-
obj: AnalyzeDocumentResponse
|
|
570
|
-
) => any;
|
|
571
|
-
export declare const AnalyzeExpenseRequestFilterSensitiveLog: (
|
|
572
|
-
obj: AnalyzeExpenseRequest
|
|
573
|
-
) => any;
|
|
574
|
-
export declare const ExpenseCurrencyFilterSensitiveLog: (
|
|
575
|
-
obj: ExpenseCurrency
|
|
576
|
-
) => any;
|
|
577
|
-
export declare const ExpenseGroupPropertyFilterSensitiveLog: (
|
|
578
|
-
obj: ExpenseGroupProperty
|
|
579
|
-
) => any;
|
|
580
|
-
export declare const ExpenseDetectionFilterSensitiveLog: (
|
|
581
|
-
obj: ExpenseDetection
|
|
582
|
-
) => any;
|
|
583
|
-
export declare const ExpenseTypeFilterSensitiveLog: (obj: ExpenseType) => any;
|
|
584
|
-
export declare const ExpenseFieldFilterSensitiveLog: (obj: ExpenseField) => any;
|
|
585
|
-
export declare const LineItemFieldsFilterSensitiveLog: (
|
|
586
|
-
obj: LineItemFields
|
|
587
|
-
) => any;
|
|
588
|
-
export declare const LineItemGroupFilterSensitiveLog: (
|
|
589
|
-
obj: LineItemGroup
|
|
590
|
-
) => any;
|
|
591
|
-
export declare const ExpenseDocumentFilterSensitiveLog: (
|
|
592
|
-
obj: ExpenseDocument
|
|
593
|
-
) => any;
|
|
594
|
-
export declare const AnalyzeExpenseResponseFilterSensitiveLog: (
|
|
595
|
-
obj: AnalyzeExpenseResponse
|
|
596
|
-
) => any;
|
|
597
|
-
export declare const AnalyzeIDRequestFilterSensitiveLog: (
|
|
598
|
-
obj: AnalyzeIDRequest
|
|
599
|
-
) => any;
|
|
600
|
-
export declare const NormalizedValueFilterSensitiveLog: (
|
|
601
|
-
obj: NormalizedValue
|
|
602
|
-
) => any;
|
|
603
|
-
export declare const AnalyzeIDDetectionsFilterSensitiveLog: (
|
|
604
|
-
obj: AnalyzeIDDetections
|
|
605
|
-
) => any;
|
|
606
|
-
export declare const IdentityDocumentFieldFilterSensitiveLog: (
|
|
607
|
-
obj: IdentityDocumentField
|
|
608
|
-
) => any;
|
|
609
|
-
export declare const IdentityDocumentFilterSensitiveLog: (
|
|
610
|
-
obj: IdentityDocument
|
|
611
|
-
) => any;
|
|
612
|
-
export declare const AnalyzeIDResponseFilterSensitiveLog: (
|
|
613
|
-
obj: AnalyzeIDResponse
|
|
614
|
-
) => any;
|
|
615
|
-
export declare const DetectDocumentTextRequestFilterSensitiveLog: (
|
|
616
|
-
obj: DetectDocumentTextRequest
|
|
617
|
-
) => any;
|
|
618
|
-
export declare const DetectDocumentTextResponseFilterSensitiveLog: (
|
|
619
|
-
obj: DetectDocumentTextResponse
|
|
620
|
-
) => any;
|
|
621
|
-
export declare const DetectedSignatureFilterSensitiveLog: (
|
|
622
|
-
obj: DetectedSignature
|
|
623
|
-
) => any;
|
|
624
|
-
export declare const SplitDocumentFilterSensitiveLog: (
|
|
625
|
-
obj: SplitDocument
|
|
626
|
-
) => any;
|
|
627
|
-
export declare const UndetectedSignatureFilterSensitiveLog: (
|
|
628
|
-
obj: UndetectedSignature
|
|
629
|
-
) => any;
|
|
630
|
-
export declare const DocumentGroupFilterSensitiveLog: (
|
|
631
|
-
obj: DocumentGroup
|
|
632
|
-
) => any;
|
|
633
|
-
export declare const DocumentLocationFilterSensitiveLog: (
|
|
634
|
-
obj: DocumentLocation
|
|
635
|
-
) => any;
|
|
636
|
-
export declare const LendingDetectionFilterSensitiveLog: (
|
|
637
|
-
obj: LendingDetection
|
|
638
|
-
) => any;
|
|
639
|
-
export declare const LendingFieldFilterSensitiveLog: (obj: LendingField) => any;
|
|
640
|
-
export declare const SignatureDetectionFilterSensitiveLog: (
|
|
641
|
-
obj: SignatureDetection
|
|
642
|
-
) => any;
|
|
643
|
-
export declare const LendingDocumentFilterSensitiveLog: (
|
|
644
|
-
obj: LendingDocument
|
|
645
|
-
) => any;
|
|
646
|
-
export declare const ExtractionFilterSensitiveLog: (obj: Extraction) => any;
|
|
647
|
-
export declare const GetDocumentAnalysisRequestFilterSensitiveLog: (
|
|
648
|
-
obj: GetDocumentAnalysisRequest
|
|
649
|
-
) => any;
|
|
650
|
-
export declare const WarningFilterSensitiveLog: (obj: Warning) => any;
|
|
651
|
-
export declare const GetDocumentAnalysisResponseFilterSensitiveLog: (
|
|
652
|
-
obj: GetDocumentAnalysisResponse
|
|
653
|
-
) => any;
|
|
654
|
-
export declare const GetDocumentTextDetectionRequestFilterSensitiveLog: (
|
|
655
|
-
obj: GetDocumentTextDetectionRequest
|
|
656
|
-
) => any;
|
|
657
|
-
export declare const GetDocumentTextDetectionResponseFilterSensitiveLog: (
|
|
658
|
-
obj: GetDocumentTextDetectionResponse
|
|
659
|
-
) => any;
|
|
660
|
-
export declare const GetExpenseAnalysisRequestFilterSensitiveLog: (
|
|
661
|
-
obj: GetExpenseAnalysisRequest
|
|
662
|
-
) => any;
|
|
663
|
-
export declare const GetExpenseAnalysisResponseFilterSensitiveLog: (
|
|
664
|
-
obj: GetExpenseAnalysisResponse
|
|
665
|
-
) => any;
|
|
666
|
-
export declare const GetLendingAnalysisRequestFilterSensitiveLog: (
|
|
667
|
-
obj: GetLendingAnalysisRequest
|
|
668
|
-
) => any;
|
|
669
|
-
export declare const PredictionFilterSensitiveLog: (obj: Prediction) => any;
|
|
670
|
-
export declare const PageClassificationFilterSensitiveLog: (
|
|
671
|
-
obj: PageClassification
|
|
672
|
-
) => any;
|
|
673
|
-
export declare const LendingResultFilterSensitiveLog: (
|
|
674
|
-
obj: LendingResult
|
|
675
|
-
) => any;
|
|
676
|
-
export declare const GetLendingAnalysisResponseFilterSensitiveLog: (
|
|
677
|
-
obj: GetLendingAnalysisResponse
|
|
678
|
-
) => any;
|
|
679
|
-
export declare const GetLendingAnalysisSummaryRequestFilterSensitiveLog: (
|
|
680
|
-
obj: GetLendingAnalysisSummaryRequest
|
|
681
|
-
) => any;
|
|
682
|
-
export declare const LendingSummaryFilterSensitiveLog: (
|
|
683
|
-
obj: LendingSummary
|
|
684
|
-
) => any;
|
|
685
|
-
export declare const GetLendingAnalysisSummaryResponseFilterSensitiveLog: (
|
|
686
|
-
obj: GetLendingAnalysisSummaryResponse
|
|
687
|
-
) => any;
|
|
688
|
-
export declare const NotificationChannelFilterSensitiveLog: (
|
|
689
|
-
obj: NotificationChannel
|
|
690
|
-
) => any;
|
|
691
|
-
export declare const OutputConfigFilterSensitiveLog: (obj: OutputConfig) => any;
|
|
692
|
-
export declare const StartDocumentAnalysisRequestFilterSensitiveLog: (
|
|
693
|
-
obj: StartDocumentAnalysisRequest
|
|
694
|
-
) => any;
|
|
695
|
-
export declare const StartDocumentAnalysisResponseFilterSensitiveLog: (
|
|
696
|
-
obj: StartDocumentAnalysisResponse
|
|
697
|
-
) => any;
|
|
698
|
-
export declare const StartDocumentTextDetectionRequestFilterSensitiveLog: (
|
|
699
|
-
obj: StartDocumentTextDetectionRequest
|
|
700
|
-
) => any;
|
|
701
|
-
export declare const StartDocumentTextDetectionResponseFilterSensitiveLog: (
|
|
702
|
-
obj: StartDocumentTextDetectionResponse
|
|
703
|
-
) => any;
|
|
704
|
-
export declare const StartExpenseAnalysisRequestFilterSensitiveLog: (
|
|
705
|
-
obj: StartExpenseAnalysisRequest
|
|
706
|
-
) => any;
|
|
707
|
-
export declare const StartExpenseAnalysisResponseFilterSensitiveLog: (
|
|
708
|
-
obj: StartExpenseAnalysisResponse
|
|
709
|
-
) => any;
|
|
710
|
-
export declare const StartLendingAnalysisRequestFilterSensitiveLog: (
|
|
711
|
-
obj: StartLendingAnalysisRequest
|
|
712
|
-
) => any;
|
|
713
|
-
export declare const StartLendingAnalysisResponseFilterSensitiveLog: (
|
|
714
|
-
obj: StartLendingAnalysisResponse
|
|
715
|
-
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-textract",
|
|
3
3
|
"description": "AWS SDK for JavaScript Textract Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.299.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
12
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
14
15
|
"generate:client": "node ../../scripts/generate-clients/single-service --solo textract"
|
|
15
16
|
},
|
|
16
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -20,22 +21,22 @@
|
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.299.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.299.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.299.0",
|
|
26
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
29
30
|
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.299.0",
|
|
31
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
32
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
33
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
34
35
|
"@aws-sdk/middleware-retry": "3.296.0",
|
|
35
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.299.0",
|
|
37
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
39
40
|
"@aws-sdk/node-config-provider": "3.296.0",
|
|
40
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
41
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
@@ -46,11 +47,11 @@
|
|
|
46
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
47
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
48
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.299.0",
|
|
50
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
51
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.299.0",
|
|
54
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
55
56
|
"tslib": "^2.5.0"
|
|
56
57
|
},
|