@aws-sdk/client-textract 3.130.0 → 3.141.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.
Files changed (27) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/AnalyzeDocumentCommand.js +2 -2
  4. package/dist-cjs/commands/AnalyzeExpenseCommand.js +2 -2
  5. package/dist-cjs/commands/AnalyzeIDCommand.js +2 -2
  6. package/dist-cjs/commands/DetectDocumentTextCommand.js +2 -2
  7. package/dist-cjs/commands/GetDocumentAnalysisCommand.js +2 -2
  8. package/dist-cjs/commands/GetDocumentTextDetectionCommand.js +2 -2
  9. package/dist-cjs/commands/GetExpenseAnalysisCommand.js +2 -2
  10. package/dist-cjs/commands/StartDocumentAnalysisCommand.js +2 -2
  11. package/dist-cjs/commands/StartDocumentTextDetectionCommand.js +2 -2
  12. package/dist-cjs/commands/StartExpenseAnalysisCommand.js +2 -2
  13. package/dist-cjs/models/models_0.js +190 -284
  14. package/dist-es/commands/AnalyzeDocumentCommand.js +3 -3
  15. package/dist-es/commands/AnalyzeExpenseCommand.js +3 -3
  16. package/dist-es/commands/AnalyzeIDCommand.js +3 -3
  17. package/dist-es/commands/DetectDocumentTextCommand.js +3 -3
  18. package/dist-es/commands/GetDocumentAnalysisCommand.js +3 -3
  19. package/dist-es/commands/GetDocumentTextDetectionCommand.js +3 -3
  20. package/dist-es/commands/GetExpenseAnalysisCommand.js +3 -3
  21. package/dist-es/commands/StartDocumentAnalysisCommand.js +3 -3
  22. package/dist-es/commands/StartDocumentTextDetectionCommand.js +3 -3
  23. package/dist-es/commands/StartExpenseAnalysisCommand.js +3 -3
  24. package/dist-es/models/models_0.js +47 -188
  25. package/dist-types/models/models_0.d.ts +188 -282
  26. package/dist-types/ts3.4/models/models_0.d.ts +94 -188
  27. package/package.json +7 -7
@@ -18,10 +18,6 @@ export interface S3Object {
18
18
 
19
19
  Version?: string;
20
20
  }
21
- export declare namespace S3Object {
22
-
23
- const filterSensitiveLog: (obj: S3Object) => any;
24
- }
25
21
 
26
22
  export interface Document {
27
23
 
@@ -29,10 +25,6 @@ export interface Document {
29
25
 
30
26
  S3Object?: S3Object;
31
27
  }
32
- export declare namespace Document {
33
-
34
- const filterSensitiveLog: (obj: Document) => any;
35
- }
36
28
  export declare enum FeatureType {
37
29
  FORMS = "FORMS",
38
30
  QUERIES = "QUERIES",
@@ -47,10 +39,6 @@ export interface HumanLoopDataAttributes {
47
39
 
48
40
  ContentClassifiers?: (ContentClassifier | string)[];
49
41
  }
50
- export declare namespace HumanLoopDataAttributes {
51
-
52
- const filterSensitiveLog: (obj: HumanLoopDataAttributes) => any;
53
- }
54
42
 
55
43
  export interface HumanLoopConfig {
56
44
 
@@ -60,10 +48,6 @@ export interface HumanLoopConfig {
60
48
 
61
49
  DataAttributes?: HumanLoopDataAttributes;
62
50
  }
63
- export declare namespace HumanLoopConfig {
64
-
65
- const filterSensitiveLog: (obj: HumanLoopConfig) => any;
66
- }
67
51
 
68
52
  export interface Query {
69
53
 
@@ -73,19 +57,11 @@ export interface Query {
73
57
 
74
58
  Pages?: string[];
75
59
  }
76
- export declare namespace Query {
77
-
78
- const filterSensitiveLog: (obj: Query) => any;
79
- }
80
60
 
81
61
  export interface QueriesConfig {
82
62
 
83
63
  Queries: Query[] | undefined;
84
64
  }
85
- export declare namespace QueriesConfig {
86
-
87
- const filterSensitiveLog: (obj: QueriesConfig) => any;
88
- }
89
65
  export interface AnalyzeDocumentRequest {
90
66
 
91
67
  Document: Document | undefined;
@@ -96,10 +72,6 @@ export interface AnalyzeDocumentRequest {
96
72
 
97
73
  QueriesConfig?: QueriesConfig;
98
74
  }
99
- export declare namespace AnalyzeDocumentRequest {
100
-
101
- const filterSensitiveLog: (obj: AnalyzeDocumentRequest) => any;
102
- }
103
75
  export declare enum BlockType {
104
76
  CELL = "CELL",
105
77
  KEY_VALUE_SET = "KEY_VALUE_SET",
@@ -129,10 +101,6 @@ export interface BoundingBox {
129
101
 
130
102
  Top?: number;
131
103
  }
132
- export declare namespace BoundingBox {
133
-
134
- const filterSensitiveLog: (obj: BoundingBox) => any;
135
- }
136
104
 
137
105
  export interface Point {
138
106
 
@@ -140,10 +108,6 @@ export interface Point {
140
108
 
141
109
  Y?: number;
142
110
  }
143
- export declare namespace Point {
144
-
145
- const filterSensitiveLog: (obj: Point) => any;
146
- }
147
111
 
148
112
  export interface Geometry {
149
113
 
@@ -151,10 +115,6 @@ export interface Geometry {
151
115
 
152
116
  Polygon?: Point[];
153
117
  }
154
- export declare namespace Geometry {
155
-
156
- const filterSensitiveLog: (obj: Geometry) => any;
157
- }
158
118
  export declare enum RelationshipType {
159
119
  ANSWER = "ANSWER",
160
120
  CHILD = "CHILD",
@@ -170,10 +130,6 @@ export interface Relationship {
170
130
 
171
131
  Ids?: string[];
172
132
  }
173
- export declare namespace Relationship {
174
-
175
- const filterSensitiveLog: (obj: Relationship) => any;
176
- }
177
133
  export declare enum SelectionStatus {
178
134
  NOT_SELECTED = "NOT_SELECTED",
179
135
  SELECTED = "SELECTED"
@@ -215,19 +171,11 @@ export interface Block {
215
171
 
216
172
  Query?: Query;
217
173
  }
218
- export declare namespace Block {
219
-
220
- const filterSensitiveLog: (obj: Block) => any;
221
- }
222
174
 
223
175
  export interface DocumentMetadata {
224
176
 
225
177
  Pages?: number;
226
178
  }
227
- export declare namespace DocumentMetadata {
228
-
229
- const filterSensitiveLog: (obj: DocumentMetadata) => any;
230
- }
231
179
 
232
180
  export interface HumanLoopActivationOutput {
233
181
 
@@ -237,10 +185,6 @@ export interface HumanLoopActivationOutput {
237
185
 
238
186
  HumanLoopActivationConditionsEvaluationResults?: __LazyJsonString | string;
239
187
  }
240
- export declare namespace HumanLoopActivationOutput {
241
-
242
- const filterSensitiveLog: (obj: HumanLoopActivationOutput) => any;
243
- }
244
188
  export interface AnalyzeDocumentResponse {
245
189
 
246
190
  DocumentMetadata?: DocumentMetadata;
@@ -251,10 +195,6 @@ export interface AnalyzeDocumentResponse {
251
195
 
252
196
  AnalyzeDocumentModelVersion?: string;
253
197
  }
254
- export declare namespace AnalyzeDocumentResponse {
255
-
256
- const filterSensitiveLog: (obj: AnalyzeDocumentResponse) => any;
257
- }
258
198
 
259
199
  export declare class BadDocumentException extends __BaseException {
260
200
  readonly name: "BadDocumentException";
@@ -346,10 +286,6 @@ export interface AnalyzeExpenseRequest {
346
286
 
347
287
  Document: Document | undefined;
348
288
  }
349
- export declare namespace AnalyzeExpenseRequest {
350
-
351
- const filterSensitiveLog: (obj: AnalyzeExpenseRequest) => any;
352
- }
353
289
 
354
290
  export interface ExpenseDetection {
355
291
 
@@ -359,10 +295,6 @@ export interface ExpenseDetection {
359
295
 
360
296
  Confidence?: number;
361
297
  }
362
- export declare namespace ExpenseDetection {
363
-
364
- const filterSensitiveLog: (obj: ExpenseDetection) => any;
365
- }
366
298
 
367
299
  export interface ExpenseType {
368
300
 
@@ -370,10 +302,6 @@ export interface ExpenseType {
370
302
 
371
303
  Confidence?: number;
372
304
  }
373
- export declare namespace ExpenseType {
374
-
375
- const filterSensitiveLog: (obj: ExpenseType) => any;
376
- }
377
305
 
378
306
  export interface ExpenseField {
379
307
 
@@ -385,19 +313,11 @@ export interface ExpenseField {
385
313
 
386
314
  PageNumber?: number;
387
315
  }
388
- export declare namespace ExpenseField {
389
-
390
- const filterSensitiveLog: (obj: ExpenseField) => any;
391
- }
392
316
 
393
317
  export interface LineItemFields {
394
318
 
395
319
  LineItemExpenseFields?: ExpenseField[];
396
320
  }
397
- export declare namespace LineItemFields {
398
-
399
- const filterSensitiveLog: (obj: LineItemFields) => any;
400
- }
401
321
 
402
322
  export interface LineItemGroup {
403
323
 
@@ -405,10 +325,6 @@ export interface LineItemGroup {
405
325
 
406
326
  LineItems?: LineItemFields[];
407
327
  }
408
- export declare namespace LineItemGroup {
409
-
410
- const filterSensitiveLog: (obj: LineItemGroup) => any;
411
- }
412
328
 
413
329
  export interface ExpenseDocument {
414
330
 
@@ -418,28 +334,16 @@ export interface ExpenseDocument {
418
334
 
419
335
  LineItemGroups?: LineItemGroup[];
420
336
  }
421
- export declare namespace ExpenseDocument {
422
-
423
- const filterSensitiveLog: (obj: ExpenseDocument) => any;
424
- }
425
337
  export interface AnalyzeExpenseResponse {
426
338
 
427
339
  DocumentMetadata?: DocumentMetadata;
428
340
 
429
341
  ExpenseDocuments?: ExpenseDocument[];
430
342
  }
431
- export declare namespace AnalyzeExpenseResponse {
432
-
433
- const filterSensitiveLog: (obj: AnalyzeExpenseResponse) => any;
434
- }
435
343
  export interface AnalyzeIDRequest {
436
344
 
437
345
  DocumentPages: Document[] | undefined;
438
346
  }
439
- export declare namespace AnalyzeIDRequest {
440
-
441
- const filterSensitiveLog: (obj: AnalyzeIDRequest) => any;
442
- }
443
347
  export declare enum ValueType {
444
348
  DATE = "DATE"
445
349
  }
@@ -450,10 +354,6 @@ export interface NormalizedValue {
450
354
 
451
355
  ValueType?: ValueType | string;
452
356
  }
453
- export declare namespace NormalizedValue {
454
-
455
- const filterSensitiveLog: (obj: NormalizedValue) => any;
456
- }
457
357
 
458
358
  export interface AnalyzeIDDetections {
459
359
 
@@ -463,10 +363,6 @@ export interface AnalyzeIDDetections {
463
363
 
464
364
  Confidence?: number;
465
365
  }
466
- export declare namespace AnalyzeIDDetections {
467
-
468
- const filterSensitiveLog: (obj: AnalyzeIDDetections) => any;
469
- }
470
366
 
471
367
  export interface IdentityDocumentField {
472
368
 
@@ -474,10 +370,6 @@ export interface IdentityDocumentField {
474
370
 
475
371
  ValueDetection?: AnalyzeIDDetections;
476
372
  }
477
- export declare namespace IdentityDocumentField {
478
-
479
- const filterSensitiveLog: (obj: IdentityDocumentField) => any;
480
- }
481
373
 
482
374
  export interface IdentityDocument {
483
375
 
@@ -485,10 +377,6 @@ export interface IdentityDocument {
485
377
 
486
378
  IdentityDocumentFields?: IdentityDocumentField[];
487
379
  }
488
- export declare namespace IdentityDocument {
489
-
490
- const filterSensitiveLog: (obj: IdentityDocument) => any;
491
- }
492
380
  export interface AnalyzeIDResponse {
493
381
 
494
382
  IdentityDocuments?: IdentityDocument[];
@@ -497,18 +385,10 @@ export interface AnalyzeIDResponse {
497
385
 
498
386
  AnalyzeIDModelVersion?: string;
499
387
  }
500
- export declare namespace AnalyzeIDResponse {
501
-
502
- const filterSensitiveLog: (obj: AnalyzeIDResponse) => any;
503
- }
504
388
  export interface DetectDocumentTextRequest {
505
389
 
506
390
  Document: Document | undefined;
507
391
  }
508
- export declare namespace DetectDocumentTextRequest {
509
-
510
- const filterSensitiveLog: (obj: DetectDocumentTextRequest) => any;
511
- }
512
392
  export interface DetectDocumentTextResponse {
513
393
 
514
394
  DocumentMetadata?: DocumentMetadata;
@@ -517,19 +397,11 @@ export interface DetectDocumentTextResponse {
517
397
 
518
398
  DetectDocumentTextModelVersion?: string;
519
399
  }
520
- export declare namespace DetectDocumentTextResponse {
521
-
522
- const filterSensitiveLog: (obj: DetectDocumentTextResponse) => any;
523
- }
524
400
 
525
401
  export interface DocumentLocation {
526
402
 
527
403
  S3Object?: S3Object;
528
404
  }
529
- export declare namespace DocumentLocation {
530
-
531
- const filterSensitiveLog: (obj: DocumentLocation) => any;
532
- }
533
405
  export interface GetDocumentAnalysisRequest {
534
406
 
535
407
  JobId: string | undefined;
@@ -538,10 +410,6 @@ export interface GetDocumentAnalysisRequest {
538
410
 
539
411
  NextToken?: string;
540
412
  }
541
- export declare namespace GetDocumentAnalysisRequest {
542
-
543
- const filterSensitiveLog: (obj: GetDocumentAnalysisRequest) => any;
544
- }
545
413
  export declare enum JobStatus {
546
414
  FAILED = "FAILED",
547
415
  IN_PROGRESS = "IN_PROGRESS",
@@ -555,10 +423,6 @@ export interface Warning {
555
423
 
556
424
  Pages?: number[];
557
425
  }
558
- export declare namespace Warning {
559
-
560
- const filterSensitiveLog: (obj: Warning) => any;
561
- }
562
426
  export interface GetDocumentAnalysisResponse {
563
427
 
564
428
  DocumentMetadata?: DocumentMetadata;
@@ -575,10 +439,6 @@ export interface GetDocumentAnalysisResponse {
575
439
 
576
440
  AnalyzeDocumentModelVersion?: string;
577
441
  }
578
- export declare namespace GetDocumentAnalysisResponse {
579
-
580
- const filterSensitiveLog: (obj: GetDocumentAnalysisResponse) => any;
581
- }
582
442
 
583
443
  export declare class InvalidJobIdException extends __BaseException {
584
444
  readonly name: "InvalidJobIdException";
@@ -605,10 +465,6 @@ export interface GetDocumentTextDetectionRequest {
605
465
 
606
466
  NextToken?: string;
607
467
  }
608
- export declare namespace GetDocumentTextDetectionRequest {
609
-
610
- const filterSensitiveLog: (obj: GetDocumentTextDetectionRequest) => any;
611
- }
612
468
  export interface GetDocumentTextDetectionResponse {
613
469
 
614
470
  DocumentMetadata?: DocumentMetadata;
@@ -625,10 +481,6 @@ export interface GetDocumentTextDetectionResponse {
625
481
 
626
482
  DetectDocumentTextModelVersion?: string;
627
483
  }
628
- export declare namespace GetDocumentTextDetectionResponse {
629
-
630
- const filterSensitiveLog: (obj: GetDocumentTextDetectionResponse) => any;
631
- }
632
484
  export interface GetExpenseAnalysisRequest {
633
485
 
634
486
  JobId: string | undefined;
@@ -637,10 +489,6 @@ export interface GetExpenseAnalysisRequest {
637
489
 
638
490
  NextToken?: string;
639
491
  }
640
- export declare namespace GetExpenseAnalysisRequest {
641
-
642
- const filterSensitiveLog: (obj: GetExpenseAnalysisRequest) => any;
643
- }
644
492
  export interface GetExpenseAnalysisResponse {
645
493
 
646
494
  DocumentMetadata?: DocumentMetadata;
@@ -657,10 +505,6 @@ export interface GetExpenseAnalysisResponse {
657
505
 
658
506
  AnalyzeExpenseModelVersion?: string;
659
507
  }
660
- export declare namespace GetExpenseAnalysisResponse {
661
-
662
- const filterSensitiveLog: (obj: GetExpenseAnalysisResponse) => any;
663
- }
664
508
 
665
509
  export declare class IdempotentParameterMismatchException extends __BaseException {
666
510
  readonly name: "IdempotentParameterMismatchException";
@@ -686,10 +530,6 @@ export interface NotificationChannel {
686
530
 
687
531
  RoleArn: string | undefined;
688
532
  }
689
- export declare namespace NotificationChannel {
690
-
691
- const filterSensitiveLog: (obj: NotificationChannel) => any;
692
- }
693
533
 
694
534
  export interface OutputConfig {
695
535
 
@@ -697,10 +537,6 @@ export interface OutputConfig {
697
537
 
698
538
  S3Prefix?: string;
699
539
  }
700
- export declare namespace OutputConfig {
701
-
702
- const filterSensitiveLog: (obj: OutputConfig) => any;
703
- }
704
540
  export interface StartDocumentAnalysisRequest {
705
541
 
706
542
  DocumentLocation: DocumentLocation | undefined;
@@ -719,18 +555,10 @@ export interface StartDocumentAnalysisRequest {
719
555
 
720
556
  QueriesConfig?: QueriesConfig;
721
557
  }
722
- export declare namespace StartDocumentAnalysisRequest {
723
-
724
- const filterSensitiveLog: (obj: StartDocumentAnalysisRequest) => any;
725
- }
726
558
  export interface StartDocumentAnalysisResponse {
727
559
 
728
560
  JobId?: string;
729
561
  }
730
- export declare namespace StartDocumentAnalysisResponse {
731
-
732
- const filterSensitiveLog: (obj: StartDocumentAnalysisResponse) => any;
733
- }
734
562
  export interface StartDocumentTextDetectionRequest {
735
563
 
736
564
  DocumentLocation: DocumentLocation | undefined;
@@ -745,18 +573,10 @@ export interface StartDocumentTextDetectionRequest {
745
573
 
746
574
  KMSKeyId?: string;
747
575
  }
748
- export declare namespace StartDocumentTextDetectionRequest {
749
-
750
- const filterSensitiveLog: (obj: StartDocumentTextDetectionRequest) => any;
751
- }
752
576
  export interface StartDocumentTextDetectionResponse {
753
577
 
754
578
  JobId?: string;
755
579
  }
756
- export declare namespace StartDocumentTextDetectionResponse {
757
-
758
- const filterSensitiveLog: (obj: StartDocumentTextDetectionResponse) => any;
759
- }
760
580
  export interface StartExpenseAnalysisRequest {
761
581
 
762
582
  DocumentLocation: DocumentLocation | undefined;
@@ -771,15 +591,101 @@ export interface StartExpenseAnalysisRequest {
771
591
 
772
592
  KMSKeyId?: string;
773
593
  }
774
- export declare namespace StartExpenseAnalysisRequest {
775
-
776
- const filterSensitiveLog: (obj: StartExpenseAnalysisRequest) => any;
777
- }
778
594
  export interface StartExpenseAnalysisResponse {
779
595
 
780
596
  JobId?: string;
781
597
  }
782
- export declare namespace StartExpenseAnalysisResponse {
783
-
784
- const filterSensitiveLog: (obj: StartExpenseAnalysisResponse) => any;
785
- }
598
+
599
+ export declare const S3ObjectFilterSensitiveLog: (obj: S3Object) => any;
600
+
601
+ export declare const DocumentFilterSensitiveLog: (obj: Document) => any;
602
+
603
+ export declare const HumanLoopDataAttributesFilterSensitiveLog: (obj: HumanLoopDataAttributes) => any;
604
+
605
+ export declare const HumanLoopConfigFilterSensitiveLog: (obj: HumanLoopConfig) => any;
606
+
607
+ export declare const QueryFilterSensitiveLog: (obj: Query) => any;
608
+
609
+ export declare const QueriesConfigFilterSensitiveLog: (obj: QueriesConfig) => any;
610
+
611
+ export declare const AnalyzeDocumentRequestFilterSensitiveLog: (obj: AnalyzeDocumentRequest) => any;
612
+
613
+ export declare const BoundingBoxFilterSensitiveLog: (obj: BoundingBox) => any;
614
+
615
+ export declare const PointFilterSensitiveLog: (obj: Point) => any;
616
+
617
+ export declare const GeometryFilterSensitiveLog: (obj: Geometry) => any;
618
+
619
+ export declare const RelationshipFilterSensitiveLog: (obj: Relationship) => any;
620
+
621
+ export declare const BlockFilterSensitiveLog: (obj: Block) => any;
622
+
623
+ export declare const DocumentMetadataFilterSensitiveLog: (obj: DocumentMetadata) => any;
624
+
625
+ export declare const HumanLoopActivationOutputFilterSensitiveLog: (obj: HumanLoopActivationOutput) => any;
626
+
627
+ export declare const AnalyzeDocumentResponseFilterSensitiveLog: (obj: AnalyzeDocumentResponse) => any;
628
+
629
+ export declare const AnalyzeExpenseRequestFilterSensitiveLog: (obj: AnalyzeExpenseRequest) => any;
630
+
631
+ export declare const ExpenseDetectionFilterSensitiveLog: (obj: ExpenseDetection) => any;
632
+
633
+ export declare const ExpenseTypeFilterSensitiveLog: (obj: ExpenseType) => any;
634
+
635
+ export declare const ExpenseFieldFilterSensitiveLog: (obj: ExpenseField) => any;
636
+
637
+ export declare const LineItemFieldsFilterSensitiveLog: (obj: LineItemFields) => any;
638
+
639
+ export declare const LineItemGroupFilterSensitiveLog: (obj: LineItemGroup) => any;
640
+
641
+ export declare const ExpenseDocumentFilterSensitiveLog: (obj: ExpenseDocument) => any;
642
+
643
+ export declare const AnalyzeExpenseResponseFilterSensitiveLog: (obj: AnalyzeExpenseResponse) => any;
644
+
645
+ export declare const AnalyzeIDRequestFilterSensitiveLog: (obj: AnalyzeIDRequest) => any;
646
+
647
+ export declare const NormalizedValueFilterSensitiveLog: (obj: NormalizedValue) => any;
648
+
649
+ export declare const AnalyzeIDDetectionsFilterSensitiveLog: (obj: AnalyzeIDDetections) => any;
650
+
651
+ export declare const IdentityDocumentFieldFilterSensitiveLog: (obj: IdentityDocumentField) => any;
652
+
653
+ export declare const IdentityDocumentFilterSensitiveLog: (obj: IdentityDocument) => any;
654
+
655
+ export declare const AnalyzeIDResponseFilterSensitiveLog: (obj: AnalyzeIDResponse) => any;
656
+
657
+ export declare const DetectDocumentTextRequestFilterSensitiveLog: (obj: DetectDocumentTextRequest) => any;
658
+
659
+ export declare const DetectDocumentTextResponseFilterSensitiveLog: (obj: DetectDocumentTextResponse) => any;
660
+
661
+ export declare const DocumentLocationFilterSensitiveLog: (obj: DocumentLocation) => any;
662
+
663
+ export declare const GetDocumentAnalysisRequestFilterSensitiveLog: (obj: GetDocumentAnalysisRequest) => any;
664
+
665
+ export declare const WarningFilterSensitiveLog: (obj: Warning) => any;
666
+
667
+ export declare const GetDocumentAnalysisResponseFilterSensitiveLog: (obj: GetDocumentAnalysisResponse) => any;
668
+
669
+ export declare const GetDocumentTextDetectionRequestFilterSensitiveLog: (obj: GetDocumentTextDetectionRequest) => any;
670
+
671
+ export declare const GetDocumentTextDetectionResponseFilterSensitiveLog: (obj: GetDocumentTextDetectionResponse) => any;
672
+
673
+ export declare const GetExpenseAnalysisRequestFilterSensitiveLog: (obj: GetExpenseAnalysisRequest) => any;
674
+
675
+ export declare const GetExpenseAnalysisResponseFilterSensitiveLog: (obj: GetExpenseAnalysisResponse) => any;
676
+
677
+ export declare const NotificationChannelFilterSensitiveLog: (obj: NotificationChannel) => any;
678
+
679
+ export declare const OutputConfigFilterSensitiveLog: (obj: OutputConfig) => any;
680
+
681
+ export declare const StartDocumentAnalysisRequestFilterSensitiveLog: (obj: StartDocumentAnalysisRequest) => any;
682
+
683
+ export declare const StartDocumentAnalysisResponseFilterSensitiveLog: (obj: StartDocumentAnalysisResponse) => any;
684
+
685
+ export declare const StartDocumentTextDetectionRequestFilterSensitiveLog: (obj: StartDocumentTextDetectionRequest) => any;
686
+
687
+ export declare const StartDocumentTextDetectionResponseFilterSensitiveLog: (obj: StartDocumentTextDetectionResponse) => any;
688
+
689
+ export declare const StartExpenseAnalysisRequestFilterSensitiveLog: (obj: StartExpenseAnalysisRequest) => any;
690
+
691
+ export declare const StartExpenseAnalysisResponseFilterSensitiveLog: (obj: StartExpenseAnalysisResponse) => 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.130.0",
4
+ "version": "3.141.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",
@@ -18,10 +18,10 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.130.0",
21
+ "@aws-sdk/client-sts": "3.141.0",
22
22
  "@aws-sdk/config-resolver": "3.130.0",
23
- "@aws-sdk/credential-provider-node": "3.130.0",
24
- "@aws-sdk/fetch-http-handler": "3.127.0",
23
+ "@aws-sdk/credential-provider-node": "3.141.0",
24
+ "@aws-sdk/fetch-http-handler": "3.131.0",
25
25
  "@aws-sdk/hash-node": "3.127.0",
26
26
  "@aws-sdk/invalid-dependency": "3.127.0",
27
27
  "@aws-sdk/middleware-content-length": "3.127.0",
@@ -36,15 +36,15 @@
36
36
  "@aws-sdk/node-config-provider": "3.127.0",
37
37
  "@aws-sdk/node-http-handler": "3.127.0",
38
38
  "@aws-sdk/protocol-http": "3.127.0",
39
- "@aws-sdk/smithy-client": "3.127.0",
39
+ "@aws-sdk/smithy-client": "3.137.0",
40
40
  "@aws-sdk/types": "3.127.0",
41
41
  "@aws-sdk/url-parser": "3.127.0",
42
42
  "@aws-sdk/util-base64-browser": "3.109.0",
43
43
  "@aws-sdk/util-base64-node": "3.55.0",
44
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
45
45
  "@aws-sdk/util-body-length-node": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-browser": "3.127.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.130.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.137.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.137.0",
48
48
  "@aws-sdk/util-user-agent-browser": "3.127.0",
49
49
  "@aws-sdk/util-user-agent-node": "3.127.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.109.0",