@aws-sdk/client-textract 3.952.0 → 3.954.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 (45) hide show
  1. package/dist-cjs/index.js +496 -346
  2. package/dist-cjs/runtimeConfig.shared.js +6 -6
  3. package/dist-es/commands/AnalyzeDocumentCommand.js +2 -2
  4. package/dist-es/commands/AnalyzeExpenseCommand.js +2 -2
  5. package/dist-es/commands/AnalyzeIDCommand.js +2 -2
  6. package/dist-es/commands/CreateAdapterCommand.js +2 -2
  7. package/dist-es/commands/CreateAdapterVersionCommand.js +2 -2
  8. package/dist-es/commands/DeleteAdapterCommand.js +2 -2
  9. package/dist-es/commands/DeleteAdapterVersionCommand.js +2 -2
  10. package/dist-es/commands/DetectDocumentTextCommand.js +2 -2
  11. package/dist-es/commands/GetAdapterCommand.js +2 -2
  12. package/dist-es/commands/GetAdapterVersionCommand.js +2 -2
  13. package/dist-es/commands/GetDocumentAnalysisCommand.js +2 -2
  14. package/dist-es/commands/GetDocumentTextDetectionCommand.js +2 -2
  15. package/dist-es/commands/GetExpenseAnalysisCommand.js +2 -2
  16. package/dist-es/commands/GetLendingAnalysisCommand.js +2 -2
  17. package/dist-es/commands/GetLendingAnalysisSummaryCommand.js +2 -2
  18. package/dist-es/commands/ListAdapterVersionsCommand.js +2 -2
  19. package/dist-es/commands/ListAdaptersCommand.js +2 -2
  20. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  21. package/dist-es/commands/StartDocumentAnalysisCommand.js +2 -2
  22. package/dist-es/commands/StartDocumentTextDetectionCommand.js +2 -2
  23. package/dist-es/commands/StartExpenseAnalysisCommand.js +2 -2
  24. package/dist-es/commands/StartLendingAnalysisCommand.js +2 -2
  25. package/dist-es/commands/TagResourceCommand.js +2 -2
  26. package/dist-es/commands/UntagResourceCommand.js +2 -2
  27. package/dist-es/commands/UpdateAdapterCommand.js +2 -2
  28. package/dist-es/index.js +1 -0
  29. package/dist-es/runtimeConfig.shared.js +6 -6
  30. package/dist-es/schemas/schemas_0.js +289 -282
  31. package/dist-types/TextractClient.d.ts +1 -10
  32. package/dist-types/index.d.ts +1 -0
  33. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  34. package/dist-types/runtimeConfig.d.ts +6 -2
  35. package/dist-types/runtimeConfig.native.d.ts +6 -2
  36. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  37. package/dist-types/schemas/schemas_0.d.ts +144 -185
  38. package/dist-types/ts3.4/TextractClient.d.ts +0 -4
  39. package/dist-types/ts3.4/index.d.ts +1 -0
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  44. package/dist-types/ts3.4/schemas/schemas_0.d.ts +143 -186
  45. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class TextractClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let TextractServiceException$1 = class TextractServiceException extends smithyClient.ServiceException {
113
+ class TextractServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, TextractServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends TextractServiceException$1 {
120
+ class AccessDeniedException extends TextractServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  Message;
@@ -132,8 +132,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends TextractServic
132
132
  this.Message = opts.Message;
133
133
  this.Code = opts.Code;
134
134
  }
135
- };
136
- let BadDocumentException$1 = class BadDocumentException extends TextractServiceException$1 {
135
+ }
136
+ class BadDocumentException extends TextractServiceException {
137
137
  name = "BadDocumentException";
138
138
  $fault = "client";
139
139
  Message;
@@ -148,8 +148,8 @@ let BadDocumentException$1 = class BadDocumentException extends TextractServiceE
148
148
  this.Message = opts.Message;
149
149
  this.Code = opts.Code;
150
150
  }
151
- };
152
- let DocumentTooLargeException$1 = class DocumentTooLargeException extends TextractServiceException$1 {
151
+ }
152
+ class DocumentTooLargeException extends TextractServiceException {
153
153
  name = "DocumentTooLargeException";
154
154
  $fault = "client";
155
155
  Message;
@@ -164,8 +164,8 @@ let DocumentTooLargeException$1 = class DocumentTooLargeException extends Textra
164
164
  this.Message = opts.Message;
165
165
  this.Code = opts.Code;
166
166
  }
167
- };
168
- let HumanLoopQuotaExceededException$1 = class HumanLoopQuotaExceededException extends TextractServiceException$1 {
167
+ }
168
+ class HumanLoopQuotaExceededException extends TextractServiceException {
169
169
  name = "HumanLoopQuotaExceededException";
170
170
  $fault = "client";
171
171
  ResourceType;
@@ -186,8 +186,8 @@ let HumanLoopQuotaExceededException$1 = class HumanLoopQuotaExceededException ex
186
186
  this.Message = opts.Message;
187
187
  this.Code = opts.Code;
188
188
  }
189
- };
190
- let InternalServerError$1 = class InternalServerError extends TextractServiceException$1 {
189
+ }
190
+ class InternalServerError extends TextractServiceException {
191
191
  name = "InternalServerError";
192
192
  $fault = "server";
193
193
  Message;
@@ -202,8 +202,8 @@ let InternalServerError$1 = class InternalServerError extends TextractServiceExc
202
202
  this.Message = opts.Message;
203
203
  this.Code = opts.Code;
204
204
  }
205
- };
206
- let InvalidParameterException$1 = class InvalidParameterException extends TextractServiceException$1 {
205
+ }
206
+ class InvalidParameterException extends TextractServiceException {
207
207
  name = "InvalidParameterException";
208
208
  $fault = "client";
209
209
  Message;
@@ -218,8 +218,8 @@ let InvalidParameterException$1 = class InvalidParameterException extends Textra
218
218
  this.Message = opts.Message;
219
219
  this.Code = opts.Code;
220
220
  }
221
- };
222
- let InvalidS3ObjectException$1 = class InvalidS3ObjectException extends TextractServiceException$1 {
221
+ }
222
+ class InvalidS3ObjectException extends TextractServiceException {
223
223
  name = "InvalidS3ObjectException";
224
224
  $fault = "client";
225
225
  Message;
@@ -234,8 +234,8 @@ let InvalidS3ObjectException$1 = class InvalidS3ObjectException extends Textract
234
234
  this.Message = opts.Message;
235
235
  this.Code = opts.Code;
236
236
  }
237
- };
238
- let ProvisionedThroughputExceededException$1 = class ProvisionedThroughputExceededException extends TextractServiceException$1 {
237
+ }
238
+ class ProvisionedThroughputExceededException extends TextractServiceException {
239
239
  name = "ProvisionedThroughputExceededException";
240
240
  $fault = "client";
241
241
  Message;
@@ -250,8 +250,8 @@ let ProvisionedThroughputExceededException$1 = class ProvisionedThroughputExceed
250
250
  this.Message = opts.Message;
251
251
  this.Code = opts.Code;
252
252
  }
253
- };
254
- let ThrottlingException$1 = class ThrottlingException extends TextractServiceException$1 {
253
+ }
254
+ class ThrottlingException extends TextractServiceException {
255
255
  name = "ThrottlingException";
256
256
  $fault = "server";
257
257
  Message;
@@ -266,8 +266,8 @@ let ThrottlingException$1 = class ThrottlingException extends TextractServiceExc
266
266
  this.Message = opts.Message;
267
267
  this.Code = opts.Code;
268
268
  }
269
- };
270
- let UnsupportedDocumentException$1 = class UnsupportedDocumentException extends TextractServiceException$1 {
269
+ }
270
+ class UnsupportedDocumentException extends TextractServiceException {
271
271
  name = "UnsupportedDocumentException";
272
272
  $fault = "client";
273
273
  Message;
@@ -282,8 +282,8 @@ let UnsupportedDocumentException$1 = class UnsupportedDocumentException extends
282
282
  this.Message = opts.Message;
283
283
  this.Code = opts.Code;
284
284
  }
285
- };
286
- let ConflictException$1 = class ConflictException extends TextractServiceException$1 {
285
+ }
286
+ class ConflictException extends TextractServiceException {
287
287
  name = "ConflictException";
288
288
  $fault = "client";
289
289
  Message;
@@ -298,8 +298,8 @@ let ConflictException$1 = class ConflictException extends TextractServiceExcepti
298
298
  this.Message = opts.Message;
299
299
  this.Code = opts.Code;
300
300
  }
301
- };
302
- let IdempotentParameterMismatchException$1 = class IdempotentParameterMismatchException extends TextractServiceException$1 {
301
+ }
302
+ class IdempotentParameterMismatchException extends TextractServiceException {
303
303
  name = "IdempotentParameterMismatchException";
304
304
  $fault = "client";
305
305
  Message;
@@ -314,8 +314,8 @@ let IdempotentParameterMismatchException$1 = class IdempotentParameterMismatchEx
314
314
  this.Message = opts.Message;
315
315
  this.Code = opts.Code;
316
316
  }
317
- };
318
- let LimitExceededException$1 = class LimitExceededException extends TextractServiceException$1 {
317
+ }
318
+ class LimitExceededException extends TextractServiceException {
319
319
  name = "LimitExceededException";
320
320
  $fault = "client";
321
321
  Message;
@@ -330,8 +330,8 @@ let LimitExceededException$1 = class LimitExceededException extends TextractServ
330
330
  this.Message = opts.Message;
331
331
  this.Code = opts.Code;
332
332
  }
333
- };
334
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends TextractServiceException$1 {
333
+ }
334
+ class ServiceQuotaExceededException extends TextractServiceException {
335
335
  name = "ServiceQuotaExceededException";
336
336
  $fault = "client";
337
337
  Message;
@@ -346,8 +346,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
346
346
  this.Message = opts.Message;
347
347
  this.Code = opts.Code;
348
348
  }
349
- };
350
- let ValidationException$1 = class ValidationException extends TextractServiceException$1 {
349
+ }
350
+ class ValidationException extends TextractServiceException {
351
351
  name = "ValidationException";
352
352
  $fault = "client";
353
353
  Message;
@@ -362,8 +362,8 @@ let ValidationException$1 = class ValidationException extends TextractServiceExc
362
362
  this.Message = opts.Message;
363
363
  this.Code = opts.Code;
364
364
  }
365
- };
366
- let InvalidKMSKeyException$1 = class InvalidKMSKeyException extends TextractServiceException$1 {
365
+ }
366
+ class InvalidKMSKeyException extends TextractServiceException {
367
367
  name = "InvalidKMSKeyException";
368
368
  $fault = "client";
369
369
  Message;
@@ -378,8 +378,8 @@ let InvalidKMSKeyException$1 = class InvalidKMSKeyException extends TextractServ
378
378
  this.Message = opts.Message;
379
379
  this.Code = opts.Code;
380
380
  }
381
- };
382
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends TextractServiceException$1 {
381
+ }
382
+ class ResourceNotFoundException extends TextractServiceException {
383
383
  name = "ResourceNotFoundException";
384
384
  $fault = "client";
385
385
  Message;
@@ -394,8 +394,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Textra
394
394
  this.Message = opts.Message;
395
395
  this.Code = opts.Code;
396
396
  }
397
- };
398
- let InvalidJobIdException$1 = class InvalidJobIdException extends TextractServiceException$1 {
397
+ }
398
+ class InvalidJobIdException extends TextractServiceException {
399
399
  name = "InvalidJobIdException";
400
400
  $fault = "client";
401
401
  Message;
@@ -410,7 +410,7 @@ let InvalidJobIdException$1 = class InvalidJobIdException extends TextractServic
410
410
  this.Message = opts.Message;
411
411
  this.Code = opts.Code;
412
412
  }
413
- };
413
+ }
414
414
 
415
415
  const _A = "Adapter";
416
416
  const _AC = "AdaptersConfig";
@@ -710,21 +710,21 @@ var SynthesizedJsonHumanLoopActivationConditionsEvaluationResults = [
710
710
  { [_mT]: _a },
711
711
  0,
712
712
  ];
713
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c }, [_M, _C], [0, 0]];
714
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
715
- var Adapter = [3, n0, _A, 0, [_AI, _P, _V], [0, 64 | 0, 0]];
716
- var AdapterOverview = [3, n0, _AO, 0, [_AI, _AN, _CT, _FT], [0, 0, 4, 64 | 0]];
717
- var AdaptersConfig = [3, n0, _AC, 0, [_Ad], [() => Adapters]];
718
- var AdapterVersionDatasetConfig = [3, n0, _AVDC, 0, [_MSO], [() => S3Object]];
719
- var AdapterVersionEvaluationMetric = [
713
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c }, [_M, _C], [0, 0]];
714
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
715
+ var Adapter$ = [3, n0, _A, 0, [_AI, _P, _V], [0, 64 | 0, 0]];
716
+ var AdapterOverview$ = [3, n0, _AO, 0, [_AI, _AN, _CT, _FT], [0, 0, 4, 64 | 0]];
717
+ var AdaptersConfig$ = [3, n0, _AC, 0, [_Ad], [() => Adapters]];
718
+ var AdapterVersionDatasetConfig$ = [3, n0, _AVDC, 0, [_MSO], [() => S3Object$]];
719
+ var AdapterVersionEvaluationMetric$ = [
720
720
  3,
721
721
  n0,
722
722
  _AVEM,
723
723
  0,
724
724
  [_B, _AV, _FTe],
725
- [() => EvaluationMetric, () => EvaluationMetric, 0],
725
+ [() => EvaluationMetric$, () => EvaluationMetric$, 0],
726
726
  ];
727
- var AdapterVersionOverview = [
727
+ var AdapterVersionOverview$ = [
728
728
  3,
729
729
  n0,
730
730
  _AVO,
@@ -732,62 +732,62 @@ var AdapterVersionOverview = [
732
732
  [_AI, _AV, _CT, _FT, _S, _SM],
733
733
  [0, 0, 4, 64 | 0, 0, 0],
734
734
  ];
735
- var AnalyzeDocumentRequest = [
735
+ var AnalyzeDocumentRequest$ = [
736
736
  3,
737
737
  n0,
738
738
  _ADR,
739
739
  0,
740
740
  [_D, _FT, _HLC, _QC, _AC],
741
- [() => Document, 64 | 0, () => HumanLoopConfig, () => QueriesConfig, () => AdaptersConfig],
741
+ [() => Document$, 64 | 0, () => HumanLoopConfig$, () => QueriesConfig$, () => AdaptersConfig$],
742
742
  ];
743
- var AnalyzeDocumentResponse = [
743
+ var AnalyzeDocumentResponse$ = [
744
744
  3,
745
745
  n0,
746
746
  _ADRn,
747
747
  0,
748
748
  [_DM, _Bl, _HLAO, _ADMV],
749
- [() => DocumentMetadata, () => BlockList, [() => HumanLoopActivationOutput, 0], 0],
749
+ [() => DocumentMetadata$, () => BlockList, [() => HumanLoopActivationOutput$, 0], 0],
750
750
  ];
751
- var AnalyzeExpenseRequest = [3, n0, _AER, 0, [_D], [() => Document]];
752
- var AnalyzeExpenseResponse = [
751
+ var AnalyzeExpenseRequest$ = [3, n0, _AER, 0, [_D], [() => Document$]];
752
+ var AnalyzeExpenseResponse$ = [
753
753
  3,
754
754
  n0,
755
755
  _AERn,
756
756
  0,
757
757
  [_DM, _ED],
758
- [() => DocumentMetadata, () => ExpenseDocumentList],
758
+ [() => DocumentMetadata$, () => ExpenseDocumentList],
759
759
  ];
760
- var AnalyzeIDDetections = [
760
+ var AnalyzeIDDetections$ = [
761
761
  3,
762
762
  n0,
763
763
  _AIDD,
764
764
  0,
765
765
  [_T, _NV, _Co],
766
- [0, () => NormalizedValue, 1],
766
+ [0, () => NormalizedValue$, 1],
767
767
  ];
768
- var AnalyzeIDRequest = [3, n0, _AIDR, 0, [_DP], [() => DocumentPages]];
769
- var AnalyzeIDResponse = [
768
+ var AnalyzeIDRequest$ = [3, n0, _AIDR, 0, [_DP], [() => DocumentPages]];
769
+ var AnalyzeIDResponse$ = [
770
770
  3,
771
771
  n0,
772
772
  _AIDRn,
773
773
  0,
774
774
  [_ID, _DM, _AIDMV],
775
- [() => IdentityDocumentList, () => DocumentMetadata, 0],
775
+ [() => IdentityDocumentList, () => DocumentMetadata$, 0],
776
776
  ];
777
- var BadDocumentException = [-3, n0, _BDE, { [_e]: _c }, [_M, _C], [0, 0]];
778
- schema.TypeRegistry.for(n0).registerError(BadDocumentException, BadDocumentException$1);
779
- var Block = [
777
+ var BadDocumentException$ = [-3, n0, _BDE, { [_e]: _c }, [_M, _C], [0, 0]];
778
+ schema.TypeRegistry.for(n0).registerError(BadDocumentException$, BadDocumentException);
779
+ var Block$ = [
780
780
  3,
781
781
  n0,
782
782
  _Blo,
783
783
  0,
784
784
  [_BT, _Co, _T, _TT, _RI, _CI, _RS, _CS, _G, _I, _R, _ET, _SS, _Pa, _Q],
785
- [0, 1, 0, 0, 1, 1, 1, 1, () => Geometry, 0, () => RelationshipList, 64 | 0, 0, 1, () => Query],
785
+ [0, 1, 0, 0, 1, 1, 1, 1, () => Geometry$, 0, () => RelationshipList, 64 | 0, 0, 1, () => Query$],
786
786
  ];
787
- var BoundingBox = [3, n0, _BB, 0, [_W, _H, _L, _To], [1, 1, 1, 1]];
788
- var ConflictException = [-3, n0, _CE, { [_e]: _c }, [_M, _C], [0, 0]];
789
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
790
- var CreateAdapterRequest = [
787
+ var BoundingBox$ = [3, n0, _BB, 0, [_W, _H, _L, _To], [1, 1, 1, 1]];
788
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c }, [_M, _C], [0, 0]];
789
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
790
+ var CreateAdapterRequest$ = [
791
791
  3,
792
792
  n0,
793
793
  _CAR,
@@ -795,32 +795,32 @@ var CreateAdapterRequest = [
795
795
  [_AN, _CRT, _De, _FT, _AU, _Ta],
796
796
  [0, [0, 4], 0, 64 | 0, 0, 128 | 0],
797
797
  ];
798
- var CreateAdapterResponse = [3, n0, _CARr, 0, [_AI], [0]];
799
- var CreateAdapterVersionRequest = [
798
+ var CreateAdapterResponse$ = [3, n0, _CARr, 0, [_AI], [0]];
799
+ var CreateAdapterVersionRequest$ = [
800
800
  3,
801
801
  n0,
802
802
  _CAVR,
803
803
  0,
804
804
  [_AI, _CRT, _DC, _KMSKI, _OC, _Ta],
805
- [0, [0, 4], () => AdapterVersionDatasetConfig, 0, () => OutputConfig, 128 | 0],
805
+ [0, [0, 4], () => AdapterVersionDatasetConfig$, 0, () => OutputConfig$, 128 | 0],
806
806
  ];
807
- var CreateAdapterVersionResponse = [3, n0, _CAVRr, 0, [_AI, _AV], [0, 0]];
808
- var DeleteAdapterRequest = [3, n0, _DAR, 0, [_AI], [0]];
809
- var DeleteAdapterResponse = [3, n0, _DARe, 0, [], []];
810
- var DeleteAdapterVersionRequest = [3, n0, _DAVR, 0, [_AI, _AV], [0, 0]];
811
- var DeleteAdapterVersionResponse = [3, n0, _DAVRe, 0, [], []];
812
- var DetectDocumentTextRequest = [3, n0, _DDTR, 0, [_D], [() => Document]];
813
- var DetectDocumentTextResponse = [
807
+ var CreateAdapterVersionResponse$ = [3, n0, _CAVRr, 0, [_AI, _AV], [0, 0]];
808
+ var DeleteAdapterRequest$ = [3, n0, _DAR, 0, [_AI], [0]];
809
+ var DeleteAdapterResponse$ = [3, n0, _DARe, 0, [], []];
810
+ var DeleteAdapterVersionRequest$ = [3, n0, _DAVR, 0, [_AI, _AV], [0, 0]];
811
+ var DeleteAdapterVersionResponse$ = [3, n0, _DAVRe, 0, [], []];
812
+ var DetectDocumentTextRequest$ = [3, n0, _DDTR, 0, [_D], [() => Document$]];
813
+ var DetectDocumentTextResponse$ = [
814
814
  3,
815
815
  n0,
816
816
  _DDTRe,
817
817
  0,
818
818
  [_DM, _Bl, _DDTMV],
819
- [() => DocumentMetadata, () => BlockList, 0],
819
+ [() => DocumentMetadata$, () => BlockList, 0],
820
820
  ];
821
- var DetectedSignature = [3, n0, _DS, 0, [_Pa], [1]];
822
- var Document = [3, n0, _D, 0, [_By, _SO], [21, () => S3Object]];
823
- var DocumentGroup = [
821
+ var DetectedSignature$ = [3, n0, _DS, 0, [_Pa], [1]];
822
+ var Document$ = [3, n0, _D, 0, [_By, _SO], [21, () => S3Object$]];
823
+ var DocumentGroup$ = [
824
824
  3,
825
825
  n0,
826
826
  _DG,
@@ -828,14 +828,14 @@ var DocumentGroup = [
828
828
  [_Ty, _SD, _DSe, _US],
829
829
  [0, () => SplitDocumentList, () => DetectedSignatureList, () => UndetectedSignatureList],
830
830
  ];
831
- var DocumentLocation = [3, n0, _DL, 0, [_SO], [() => S3Object]];
832
- var DocumentMetadata = [3, n0, _DM, 0, [_P], [1]];
833
- var DocumentTooLargeException = [-3, n0, _DTLE, { [_e]: _c }, [_M, _C], [0, 0]];
834
- schema.TypeRegistry.for(n0).registerError(DocumentTooLargeException, DocumentTooLargeException$1);
835
- var EvaluationMetric = [3, n0, _EM, 0, [_FS, _Pr, _Re], [1, 1, 1]];
836
- var ExpenseCurrency = [3, n0, _EC, 0, [_C, _Co], [0, 1]];
837
- var ExpenseDetection = [3, n0, _EDx, 0, [_T, _G, _Co], [0, () => Geometry, 1]];
838
- var ExpenseDocument = [
831
+ var DocumentLocation$ = [3, n0, _DL, 0, [_SO], [() => S3Object$]];
832
+ var DocumentMetadata$ = [3, n0, _DM, 0, [_P], [1]];
833
+ var DocumentTooLargeException$ = [-3, n0, _DTLE, { [_e]: _c }, [_M, _C], [0, 0]];
834
+ schema.TypeRegistry.for(n0).registerError(DocumentTooLargeException$, DocumentTooLargeException);
835
+ var EvaluationMetric$ = [3, n0, _EM, 0, [_FS, _Pr, _Re], [1, 1, 1]];
836
+ var ExpenseCurrency$ = [3, n0, _EC, 0, [_C, _Co], [0, 1]];
837
+ var ExpenseDetection$ = [3, n0, _EDx, 0, [_T, _G, _Co], [0, () => Geometry$, 1]];
838
+ var ExpenseDocument$ = [
839
839
  3,
840
840
  n0,
841
841
  _EDxp,
@@ -843,34 +843,34 @@ var ExpenseDocument = [
843
843
  [_EI, _SF, _LIG, _Bl],
844
844
  [1, () => ExpenseFieldList, () => LineItemGroupList, () => BlockList],
845
845
  ];
846
- var ExpenseField = [
846
+ var ExpenseField$ = [
847
847
  3,
848
848
  n0,
849
849
  _EF,
850
850
  0,
851
851
  [_Ty, _LD, _VD, _PN, _Cu, _GP],
852
852
  [
853
- () => ExpenseType,
854
- () => ExpenseDetection,
855
- () => ExpenseDetection,
853
+ () => ExpenseType$,
854
+ () => ExpenseDetection$,
855
+ () => ExpenseDetection$,
856
856
  1,
857
- () => ExpenseCurrency,
857
+ () => ExpenseCurrency$,
858
858
  () => ExpenseGroupPropertyList,
859
859
  ],
860
860
  ];
861
- var ExpenseGroupProperty = [3, n0, _EGP, 0, [_Typ, _I], [64 | 0, 0]];
862
- var ExpenseType = [3, n0, _ETx, 0, [_T, _Co], [0, 1]];
863
- var Extraction = [
861
+ var ExpenseGroupProperty$ = [3, n0, _EGP, 0, [_Typ, _I], [64 | 0, 0]];
862
+ var ExpenseType$ = [3, n0, _ETx, 0, [_T, _Co], [0, 1]];
863
+ var Extraction$ = [
864
864
  3,
865
865
  n0,
866
866
  _E,
867
867
  0,
868
868
  [_LDe, _EDxp, _IDd],
869
- [() => LendingDocument, () => ExpenseDocument, () => IdentityDocument],
869
+ [() => LendingDocument$, () => ExpenseDocument$, () => IdentityDocument$],
870
870
  ];
871
- var Geometry = [3, n0, _G, 0, [_BB, _Po, _RA], [() => BoundingBox, () => Polygon, 1]];
872
- var GetAdapterRequest = [3, n0, _GAR, 0, [_AI], [0]];
873
- var GetAdapterResponse = [
871
+ var Geometry$ = [3, n0, _G, 0, [_BB, _Po, _RA], [() => BoundingBox$, () => Polygon, 1]];
872
+ var GetAdapterRequest$ = [3, n0, _GAR, 0, [_AI], [0]];
873
+ var GetAdapterResponse$ = [
874
874
  3,
875
875
  n0,
876
876
  _GARe,
@@ -878,8 +878,8 @@ var GetAdapterResponse = [
878
878
  [_AI, _AN, _CT, _De, _FT, _AU, _Ta],
879
879
  [0, 0, 4, 0, 64 | 0, 0, 128 | 0],
880
880
  ];
881
- var GetAdapterVersionRequest = [3, n0, _GAVR, 0, [_AI, _AV], [0, 0]];
882
- var GetAdapterVersionResponse = [
881
+ var GetAdapterVersionRequest$ = [3, n0, _GAVR, 0, [_AI, _AV], [0, 0]];
882
+ var GetAdapterVersionResponse$ = [
883
883
  3,
884
884
  n0,
885
885
  _GAVRe,
@@ -892,59 +892,59 @@ var GetAdapterVersionResponse = [
892
892
  64 | 0,
893
893
  0,
894
894
  0,
895
- () => AdapterVersionDatasetConfig,
895
+ () => AdapterVersionDatasetConfig$,
896
896
  0,
897
- () => OutputConfig,
897
+ () => OutputConfig$,
898
898
  () => AdapterVersionEvaluationMetrics,
899
899
  128 | 0,
900
900
  ],
901
901
  ];
902
- var GetDocumentAnalysisRequest = [3, n0, _GDAR, 0, [_JI, _MR, _NT], [0, 1, 0]];
903
- var GetDocumentAnalysisResponse = [
902
+ var GetDocumentAnalysisRequest$ = [3, n0, _GDAR, 0, [_JI, _MR, _NT], [0, 1, 0]];
903
+ var GetDocumentAnalysisResponse$ = [
904
904
  3,
905
905
  n0,
906
906
  _GDARe,
907
907
  0,
908
908
  [_DM, _JS, _NT, _Bl, _Wa, _SM, _ADMV],
909
- [() => DocumentMetadata, 0, 0, () => BlockList, () => Warnings, 0, 0],
909
+ [() => DocumentMetadata$, 0, 0, () => BlockList, () => Warnings, 0, 0],
910
910
  ];
911
- var GetDocumentTextDetectionRequest = [3, n0, _GDTDR, 0, [_JI, _MR, _NT], [0, 1, 0]];
912
- var GetDocumentTextDetectionResponse = [
911
+ var GetDocumentTextDetectionRequest$ = [3, n0, _GDTDR, 0, [_JI, _MR, _NT], [0, 1, 0]];
912
+ var GetDocumentTextDetectionResponse$ = [
913
913
  3,
914
914
  n0,
915
915
  _GDTDRe,
916
916
  0,
917
917
  [_DM, _JS, _NT, _Bl, _Wa, _SM, _DDTMV],
918
- [() => DocumentMetadata, 0, 0, () => BlockList, () => Warnings, 0, 0],
918
+ [() => DocumentMetadata$, 0, 0, () => BlockList, () => Warnings, 0, 0],
919
919
  ];
920
- var GetExpenseAnalysisRequest = [3, n0, _GEAR, 0, [_JI, _MR, _NT], [0, 1, 0]];
921
- var GetExpenseAnalysisResponse = [
920
+ var GetExpenseAnalysisRequest$ = [3, n0, _GEAR, 0, [_JI, _MR, _NT], [0, 1, 0]];
921
+ var GetExpenseAnalysisResponse$ = [
922
922
  3,
923
923
  n0,
924
924
  _GEARe,
925
925
  0,
926
926
  [_DM, _JS, _NT, _ED, _Wa, _SM, _AEMV],
927
- [() => DocumentMetadata, 0, 0, () => ExpenseDocumentList, () => Warnings, 0, 0],
927
+ [() => DocumentMetadata$, 0, 0, () => ExpenseDocumentList, () => Warnings, 0, 0],
928
928
  ];
929
- var GetLendingAnalysisRequest = [3, n0, _GLAR, 0, [_JI, _MR, _NT], [0, 1, 0]];
930
- var GetLendingAnalysisResponse = [
929
+ var GetLendingAnalysisRequest$ = [3, n0, _GLAR, 0, [_JI, _MR, _NT], [0, 1, 0]];
930
+ var GetLendingAnalysisResponse$ = [
931
931
  3,
932
932
  n0,
933
933
  _GLARe,
934
934
  0,
935
935
  [_DM, _JS, _NT, _Res, _Wa, _SM, _ALMV],
936
- [() => DocumentMetadata, 0, 0, () => LendingResultList, () => Warnings, 0, 0],
936
+ [() => DocumentMetadata$, 0, 0, () => LendingResultList, () => Warnings, 0, 0],
937
937
  ];
938
- var GetLendingAnalysisSummaryRequest = [3, n0, _GLASR, 0, [_JI], [0]];
939
- var GetLendingAnalysisSummaryResponse = [
938
+ var GetLendingAnalysisSummaryRequest$ = [3, n0, _GLASR, 0, [_JI], [0]];
939
+ var GetLendingAnalysisSummaryResponse$ = [
940
940
  3,
941
941
  n0,
942
942
  _GLASRe,
943
943
  0,
944
944
  [_DM, _JS, _Su, _Wa, _SM, _ALMV],
945
- [() => DocumentMetadata, 0, () => LendingSummary, () => Warnings, 0, 0],
945
+ [() => DocumentMetadata$, 0, () => LendingSummary$, () => Warnings, 0, 0],
946
946
  ];
947
- var HumanLoopActivationOutput = [
947
+ var HumanLoopActivationOutput$ = [
948
948
  3,
949
949
  n0,
950
950
  _HLAO,
@@ -952,16 +952,16 @@ var HumanLoopActivationOutput = [
952
952
  [_HLA, _HLAR, _HLACER],
953
953
  [0, 64 | 0, [() => SynthesizedJsonHumanLoopActivationConditionsEvaluationResults, 0]],
954
954
  ];
955
- var HumanLoopConfig = [
955
+ var HumanLoopConfig$ = [
956
956
  3,
957
957
  n0,
958
958
  _HLC,
959
959
  0,
960
960
  [_HLN, _FDA, _DA],
961
- [0, 0, () => HumanLoopDataAttributes],
961
+ [0, 0, () => HumanLoopDataAttributes$],
962
962
  ];
963
- var HumanLoopDataAttributes = [3, n0, _HLDA, 0, [_CC], [64 | 0]];
964
- var HumanLoopQuotaExceededException = [
963
+ var HumanLoopDataAttributes$ = [3, n0, _HLDA, 0, [_CC], [64 | 0]];
964
+ var HumanLoopQuotaExceededException$ = [
965
965
  -3,
966
966
  n0,
967
967
  _HLQEE,
@@ -969,10 +969,10 @@ var HumanLoopQuotaExceededException = [
969
969
  [_RT, _QCu, _SC, _M, _C],
970
970
  [0, 0, 0, 0, 0],
971
971
  ];
972
- schema.TypeRegistry.for(n0).registerError(HumanLoopQuotaExceededException, HumanLoopQuotaExceededException$1);
973
- var IdempotentParameterMismatchException = [-3, n0, _IPME, { [_e]: _c }, [_M, _C], [0, 0]];
974
- schema.TypeRegistry.for(n0).registerError(IdempotentParameterMismatchException, IdempotentParameterMismatchException$1);
975
- var IdentityDocument = [
972
+ schema.TypeRegistry.for(n0).registerError(HumanLoopQuotaExceededException$, HumanLoopQuotaExceededException);
973
+ var IdempotentParameterMismatchException$ = [-3, n0, _IPME, { [_e]: _c }, [_M, _C], [0, 0]];
974
+ schema.TypeRegistry.for(n0).registerError(IdempotentParameterMismatchException$, IdempotentParameterMismatchException);
975
+ var IdentityDocument$ = [
976
976
  3,
977
977
  n0,
978
978
  _IDd,
@@ -980,26 +980,26 @@ var IdentityDocument = [
980
980
  [_DI, _IDF, _Bl],
981
981
  [1, () => IdentityDocumentFieldList, () => BlockList],
982
982
  ];
983
- var IdentityDocumentField = [
983
+ var IdentityDocumentField$ = [
984
984
  3,
985
985
  n0,
986
986
  _IDFd,
987
987
  0,
988
988
  [_Ty, _VD],
989
- [() => AnalyzeIDDetections, () => AnalyzeIDDetections],
989
+ [() => AnalyzeIDDetections$, () => AnalyzeIDDetections$],
990
990
  ];
991
- var InternalServerError = [-3, n0, _ISE, { [_e]: _s }, [_M, _C], [0, 0]];
992
- schema.TypeRegistry.for(n0).registerError(InternalServerError, InternalServerError$1);
993
- var InvalidJobIdException = [-3, n0, _IJIE, { [_e]: _c }, [_M, _C], [0, 0]];
994
- schema.TypeRegistry.for(n0).registerError(InvalidJobIdException, InvalidJobIdException$1);
995
- var InvalidKMSKeyException = [-3, n0, _IKMSKE, { [_e]: _c }, [_M, _C], [0, 0]];
996
- schema.TypeRegistry.for(n0).registerError(InvalidKMSKeyException, InvalidKMSKeyException$1);
997
- var InvalidParameterException = [-3, n0, _IPE, { [_e]: _c }, [_M, _C], [0, 0]];
998
- schema.TypeRegistry.for(n0).registerError(InvalidParameterException, InvalidParameterException$1);
999
- var InvalidS3ObjectException = [-3, n0, _ISOE, { [_e]: _c }, [_M, _C], [0, 0]];
1000
- schema.TypeRegistry.for(n0).registerError(InvalidS3ObjectException, InvalidS3ObjectException$1);
1001
- var LendingDetection = [3, n0, _LDen, 0, [_T, _SS, _G, _Co], [0, 0, () => Geometry, 1]];
1002
- var LendingDocument = [
991
+ var InternalServerError$ = [-3, n0, _ISE, { [_e]: _s }, [_M, _C], [0, 0]];
992
+ schema.TypeRegistry.for(n0).registerError(InternalServerError$, InternalServerError);
993
+ var InvalidJobIdException$ = [-3, n0, _IJIE, { [_e]: _c }, [_M, _C], [0, 0]];
994
+ schema.TypeRegistry.for(n0).registerError(InvalidJobIdException$, InvalidJobIdException);
995
+ var InvalidKMSKeyException$ = [-3, n0, _IKMSKE, { [_e]: _c }, [_M, _C], [0, 0]];
996
+ schema.TypeRegistry.for(n0).registerError(InvalidKMSKeyException$, InvalidKMSKeyException);
997
+ var InvalidParameterException$ = [-3, n0, _IPE, { [_e]: _c }, [_M, _C], [0, 0]];
998
+ schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
999
+ var InvalidS3ObjectException$ = [-3, n0, _ISOE, { [_e]: _c }, [_M, _C], [0, 0]];
1000
+ schema.TypeRegistry.for(n0).registerError(InvalidS3ObjectException$, InvalidS3ObjectException);
1001
+ var LendingDetection$ = [3, n0, _LDen, 0, [_T, _SS, _G, _Co], [0, 0, () => Geometry$, 1]];
1002
+ var LendingDocument$ = [
1003
1003
  3,
1004
1004
  n0,
1005
1005
  _LDe,
@@ -1007,30 +1007,30 @@ var LendingDocument = [
1007
1007
  [_LF, _SDi],
1008
1008
  [() => LendingFieldList, () => SignatureDetectionList],
1009
1009
  ];
1010
- var LendingField = [
1010
+ var LendingField$ = [
1011
1011
  3,
1012
1012
  n0,
1013
1013
  _LFe,
1014
1014
  0,
1015
1015
  [_Ty, _KD, _VDa],
1016
- [0, () => LendingDetection, () => LendingDetectionList],
1016
+ [0, () => LendingDetection$, () => LendingDetectionList],
1017
1017
  ];
1018
- var LendingResult = [
1018
+ var LendingResult$ = [
1019
1019
  3,
1020
1020
  n0,
1021
1021
  _LR,
1022
1022
  0,
1023
1023
  [_Pa, _PC, _Ex],
1024
- [1, () => PageClassification, () => ExtractionList],
1024
+ [1, () => PageClassification$, () => ExtractionList],
1025
1025
  ];
1026
- var LendingSummary = [3, n0, _LS, 0, [_DGo, _UDT], [() => DocumentGroupList, 64 | 0]];
1027
- var LimitExceededException = [-3, n0, _LEE, { [_e]: _c }, [_M, _C], [0, 0]];
1028
- schema.TypeRegistry.for(n0).registerError(LimitExceededException, LimitExceededException$1);
1029
- var LineItemFields = [3, n0, _LIF, 0, [_LIEF], [() => ExpenseFieldList]];
1030
- var LineItemGroup = [3, n0, _LIGi, 0, [_LIGI, _LI], [1, () => LineItemList]];
1031
- var ListAdaptersRequest = [3, n0, _LAR, 0, [_ACT, _BCT, _MR, _NT], [4, 4, 1, 0]];
1032
- var ListAdaptersResponse = [3, n0, _LARi, 0, [_Ad, _NT], [() => AdapterList, 0]];
1033
- var ListAdapterVersionsRequest = [
1026
+ var LendingSummary$ = [3, n0, _LS, 0, [_DGo, _UDT], [() => DocumentGroupList, 64 | 0]];
1027
+ var LimitExceededException$ = [-3, n0, _LEE, { [_e]: _c }, [_M, _C], [0, 0]];
1028
+ schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
1029
+ var LineItemFields$ = [3, n0, _LIF, 0, [_LIEF], [() => ExpenseFieldList]];
1030
+ var LineItemGroup$ = [3, n0, _LIGi, 0, [_LIGI, _LI], [1, () => LineItemList]];
1031
+ var ListAdaptersRequest$ = [3, n0, _LAR, 0, [_ACT, _BCT, _MR, _NT], [4, 4, 1, 0]];
1032
+ var ListAdaptersResponse$ = [3, n0, _LARi, 0, [_Ad, _NT], [() => AdapterList, 0]];
1033
+ var ListAdapterVersionsRequest$ = [
1034
1034
  3,
1035
1035
  n0,
1036
1036
  _LAVR,
@@ -1038,7 +1038,7 @@ var ListAdapterVersionsRequest = [
1038
1038
  [_AI, _ACT, _BCT, _MR, _NT],
1039
1039
  [0, 4, 4, 1, 0],
1040
1040
  ];
1041
- var ListAdapterVersionsResponse = [
1041
+ var ListAdapterVersionsResponse$ = [
1042
1042
  3,
1043
1043
  n0,
1044
1044
  _LAVRi,
@@ -1046,12 +1046,12 @@ var ListAdapterVersionsResponse = [
1046
1046
  [_AVd, _NT],
1047
1047
  [() => AdapterVersionList, 0],
1048
1048
  ];
1049
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RARN], [0]];
1050
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_Ta], [128 | 0]];
1051
- var NormalizedValue = [3, n0, _NV, 0, [_Va, _VT], [0, 0]];
1052
- var NotificationChannel = [3, n0, _NC, 0, [_SNSTA, _RAo], [0, 0]];
1053
- var OutputConfig = [3, n0, _OC, 0, [_SB, _SP], [0, 0]];
1054
- var PageClassification = [
1049
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RARN], [0]];
1050
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_Ta], [128 | 0]];
1051
+ var NormalizedValue$ = [3, n0, _NV, 0, [_Va, _VT], [0, 0]];
1052
+ var NotificationChannel$ = [3, n0, _NC, 0, [_SNSTA, _RAo], [0, 0]];
1053
+ var OutputConfig$ = [3, n0, _OC, 0, [_SB, _SP], [0, 0]];
1054
+ var PageClassification$ = [
1055
1055
  3,
1056
1056
  n0,
1057
1057
  _PC,
@@ -1059,77 +1059,77 @@ var PageClassification = [
1059
1059
  [_PT, _PN],
1060
1060
  [() => PredictionList, () => PredictionList],
1061
1061
  ];
1062
- var Point = [3, n0, _Poi, 0, [_X, _Y], [1, 1]];
1063
- var Prediction = [3, n0, _Pre, 0, [_Va, _Co], [0, 1]];
1064
- var ProvisionedThroughputExceededException = [-3, n0, _PTEE, { [_e]: _c }, [_M, _C], [0, 0]];
1065
- schema.TypeRegistry.for(n0).registerError(ProvisionedThroughputExceededException, ProvisionedThroughputExceededException$1);
1066
- var QueriesConfig = [3, n0, _QC, 0, [_Qu], [() => Queries]];
1067
- var Query = [3, n0, _Q, 0, [_T, _Al, _P], [0, 0, 64 | 0]];
1068
- var Relationship = [3, n0, _Rel, 0, [_Ty, _Id], [0, 64 | 0]];
1069
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c }, [_M, _C], [0, 0]];
1070
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
1071
- var S3Object = [3, n0, _SO, 0, [_Bu, _N, _V], [0, 0, 0]];
1072
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c }, [_M, _C], [0, 0]];
1073
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1074
- var SignatureDetection = [3, n0, _SDig, 0, [_Co, _G], [1, () => Geometry]];
1075
- var SplitDocument = [3, n0, _SDp, 0, [_In, _P], [1, 64 | 1]];
1076
- var StartDocumentAnalysisRequest = [
1062
+ var Point$ = [3, n0, _Poi, 0, [_X, _Y], [1, 1]];
1063
+ var Prediction$ = [3, n0, _Pre, 0, [_Va, _Co], [0, 1]];
1064
+ var ProvisionedThroughputExceededException$ = [-3, n0, _PTEE, { [_e]: _c }, [_M, _C], [0, 0]];
1065
+ schema.TypeRegistry.for(n0).registerError(ProvisionedThroughputExceededException$, ProvisionedThroughputExceededException);
1066
+ var QueriesConfig$ = [3, n0, _QC, 0, [_Qu], [() => Queries]];
1067
+ var Query$ = [3, n0, _Q, 0, [_T, _Al, _P], [0, 0, 64 | 0]];
1068
+ var Relationship$ = [3, n0, _Rel, 0, [_Ty, _Id], [0, 64 | 0]];
1069
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c }, [_M, _C], [0, 0]];
1070
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
1071
+ var S3Object$ = [3, n0, _SO, 0, [_Bu, _N, _V], [0, 0, 0]];
1072
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c }, [_M, _C], [0, 0]];
1073
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
1074
+ var SignatureDetection$ = [3, n0, _SDig, 0, [_Co, _G], [1, () => Geometry$]];
1075
+ var SplitDocument$ = [3, n0, _SDp, 0, [_In, _P], [1, 64 | 1]];
1076
+ var StartDocumentAnalysisRequest$ = [
1077
1077
  3,
1078
1078
  n0,
1079
1079
  _SDAR,
1080
1080
  0,
1081
1081
  [_DL, _FT, _CRT, _JT, _NC, _OC, _KMSKI, _QC, _AC],
1082
1082
  [
1083
- () => DocumentLocation,
1083
+ () => DocumentLocation$,
1084
1084
  64 | 0,
1085
1085
  0,
1086
1086
  0,
1087
- () => NotificationChannel,
1088
- () => OutputConfig,
1087
+ () => NotificationChannel$,
1088
+ () => OutputConfig$,
1089
1089
  0,
1090
- () => QueriesConfig,
1091
- () => AdaptersConfig,
1090
+ () => QueriesConfig$,
1091
+ () => AdaptersConfig$,
1092
1092
  ],
1093
1093
  ];
1094
- var StartDocumentAnalysisResponse = [3, n0, _SDARt, 0, [_JI], [0]];
1095
- var StartDocumentTextDetectionRequest = [
1094
+ var StartDocumentAnalysisResponse$ = [3, n0, _SDARt, 0, [_JI], [0]];
1095
+ var StartDocumentTextDetectionRequest$ = [
1096
1096
  3,
1097
1097
  n0,
1098
1098
  _SDTDR,
1099
1099
  0,
1100
1100
  [_DL, _CRT, _JT, _NC, _OC, _KMSKI],
1101
- [() => DocumentLocation, 0, 0, () => NotificationChannel, () => OutputConfig, 0],
1101
+ [() => DocumentLocation$, 0, 0, () => NotificationChannel$, () => OutputConfig$, 0],
1102
1102
  ];
1103
- var StartDocumentTextDetectionResponse = [3, n0, _SDTDRt, 0, [_JI], [0]];
1104
- var StartExpenseAnalysisRequest = [
1103
+ var StartDocumentTextDetectionResponse$ = [3, n0, _SDTDRt, 0, [_JI], [0]];
1104
+ var StartExpenseAnalysisRequest$ = [
1105
1105
  3,
1106
1106
  n0,
1107
1107
  _SEAR,
1108
1108
  0,
1109
1109
  [_DL, _CRT, _JT, _NC, _OC, _KMSKI],
1110
- [() => DocumentLocation, 0, 0, () => NotificationChannel, () => OutputConfig, 0],
1110
+ [() => DocumentLocation$, 0, 0, () => NotificationChannel$, () => OutputConfig$, 0],
1111
1111
  ];
1112
- var StartExpenseAnalysisResponse = [3, n0, _SEARt, 0, [_JI], [0]];
1113
- var StartLendingAnalysisRequest = [
1112
+ var StartExpenseAnalysisResponse$ = [3, n0, _SEARt, 0, [_JI], [0]];
1113
+ var StartLendingAnalysisRequest$ = [
1114
1114
  3,
1115
1115
  n0,
1116
1116
  _SLAR,
1117
1117
  0,
1118
1118
  [_DL, _CRT, _JT, _NC, _OC, _KMSKI],
1119
- [() => DocumentLocation, 0, 0, () => NotificationChannel, () => OutputConfig, 0],
1119
+ [() => DocumentLocation$, 0, 0, () => NotificationChannel$, () => OutputConfig$, 0],
1120
1120
  ];
1121
- var StartLendingAnalysisResponse = [3, n0, _SLARt, 0, [_JI], [0]];
1122
- var TagResourceRequest = [3, n0, _TRR, 0, [_RARN, _Ta], [0, 128 | 0]];
1123
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
1124
- var ThrottlingException = [-3, n0, _TE, { [_e]: _s }, [_M, _C], [0, 0]];
1125
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
1126
- var UndetectedSignature = [3, n0, _USn, 0, [_Pa], [1]];
1127
- var UnsupportedDocumentException = [-3, n0, _UDE, { [_e]: _c }, [_M, _C], [0, 0]];
1128
- schema.TypeRegistry.for(n0).registerError(UnsupportedDocumentException, UnsupportedDocumentException$1);
1129
- var UntagResourceRequest = [3, n0, _URR, 0, [_RARN, _TK], [0, 64 | 0]];
1130
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
1131
- var UpdateAdapterRequest = [3, n0, _UAR, 0, [_AI, _De, _AN, _AU], [0, 0, 0, 0]];
1132
- var UpdateAdapterResponse = [
1121
+ var StartLendingAnalysisResponse$ = [3, n0, _SLARt, 0, [_JI], [0]];
1122
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_RARN, _Ta], [0, 128 | 0]];
1123
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
1124
+ var ThrottlingException$ = [-3, n0, _TE, { [_e]: _s }, [_M, _C], [0, 0]];
1125
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
1126
+ var UndetectedSignature$ = [3, n0, _USn, 0, [_Pa], [1]];
1127
+ var UnsupportedDocumentException$ = [-3, n0, _UDE, { [_e]: _c }, [_M, _C], [0, 0]];
1128
+ schema.TypeRegistry.for(n0).registerError(UnsupportedDocumentException$, UnsupportedDocumentException);
1129
+ var UntagResourceRequest$ = [3, n0, _URR, 0, [_RARN, _TK], [0, 64 | 0]];
1130
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
1131
+ var UpdateAdapterRequest$ = [3, n0, _UAR, 0, [_AI, _De, _AN, _AU], [0, 0, 0, 0]];
1132
+ var UpdateAdapterResponse$ = [
1133
1133
  3,
1134
1134
  n0,
1135
1135
  _UARp,
@@ -1137,209 +1137,216 @@ var UpdateAdapterResponse = [
1137
1137
  [_AI, _AN, _CT, _De, _FT, _AU],
1138
1138
  [0, 0, 4, 0, 64 | 0, 0],
1139
1139
  ];
1140
- var ValidationException = [-3, n0, _VE, { [_e]: _c }, [_M, _C], [0, 0]];
1141
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1142
- var Warning = [3, n0, _War, 0, [_ECr, _P], [0, 64 | 1]];
1143
- var TextractServiceException = [-3, _sm, "TextractServiceException", 0, [], []];
1144
- schema.TypeRegistry.for(_sm).registerError(TextractServiceException, TextractServiceException$1);
1145
- var AdapterList = [1, n0, _AL, 0, () => AdapterOverview];
1146
- var Adapters = [1, n0, _Ad, 0, () => Adapter];
1147
- var AdapterVersionEvaluationMetrics = [1, n0, _AVEMd, 0, () => AdapterVersionEvaluationMetric];
1148
- var AdapterVersionList = [1, n0, _AVL, 0, () => AdapterVersionOverview];
1149
- var BlockList = [1, n0, _BL, 0, () => Block];
1150
- var DetectedSignatureList = [1, n0, _DSL, 0, () => DetectedSignature];
1151
- var DocumentGroupList = [1, n0, _DGL, 0, () => DocumentGroup];
1152
- var DocumentPages = [1, n0, _DP, 0, () => Document];
1153
- var ExpenseDocumentList = [1, n0, _EDL, 0, () => ExpenseDocument];
1154
- var ExpenseFieldList = [1, n0, _EFL, 0, () => ExpenseField];
1155
- var ExpenseGroupPropertyList = [1, n0, _EGPL, 0, () => ExpenseGroupProperty];
1156
- var ExtractionList = [1, n0, _EL, 0, () => Extraction];
1157
- var IdentityDocumentFieldList = [1, n0, _IDFL, 0, () => IdentityDocumentField];
1158
- var IdentityDocumentList = [1, n0, _IDL, 0, () => IdentityDocument];
1159
- var LendingDetectionList = [1, n0, _LDL, 0, () => LendingDetection];
1160
- var LendingFieldList = [1, n0, _LFL, 0, () => LendingField];
1161
- var LendingResultList = [1, n0, _LRL, 0, () => LendingResult];
1162
- var LineItemGroupList = [1, n0, _LIGL, 0, () => LineItemGroup];
1163
- var LineItemList = [1, n0, _LIL, 0, () => LineItemFields];
1164
- var Polygon = [1, n0, _Po, 0, () => Point];
1165
- var PredictionList = [1, n0, _PL, 0, () => Prediction];
1166
- var Queries = [1, n0, _Qu, 0, () => Query];
1167
- var RelationshipList = [1, n0, _RL, 0, () => Relationship];
1168
- var SignatureDetectionList = [1, n0, _SDL, 0, () => SignatureDetection];
1169
- var SplitDocumentList = [1, n0, _SDLp, 0, () => SplitDocument];
1170
- var UndetectedSignatureList = [1, n0, _USL, 0, () => UndetectedSignature];
1171
- var Warnings = [1, n0, _Wa, 0, () => Warning];
1172
- var AnalyzeDocument = [
1140
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c }, [_M, _C], [0, 0]];
1141
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1142
+ var Warning$ = [3, n0, _War, 0, [_ECr, _P], [0, 64 | 1]];
1143
+ var TextractServiceException$ = [-3, _sm, "TextractServiceException", 0, [], []];
1144
+ schema.TypeRegistry.for(_sm).registerError(TextractServiceException$, TextractServiceException);
1145
+ var AdapterList = [1, n0, _AL, 0, () => AdapterOverview$];
1146
+ var Adapters = [1, n0, _Ad, 0, () => Adapter$];
1147
+ var AdapterVersionEvaluationMetrics = [1, n0, _AVEMd, 0, () => AdapterVersionEvaluationMetric$];
1148
+ var AdapterVersionList = [1, n0, _AVL, 0, () => AdapterVersionOverview$];
1149
+ var BlockList = [1, n0, _BL, 0, () => Block$];
1150
+ var DetectedSignatureList = [1, n0, _DSL, 0, () => DetectedSignature$];
1151
+ var DocumentGroupList = [1, n0, _DGL, 0, () => DocumentGroup$];
1152
+ var DocumentPages = [1, n0, _DP, 0, () => Document$];
1153
+ var ExpenseDocumentList = [1, n0, _EDL, 0, () => ExpenseDocument$];
1154
+ var ExpenseFieldList = [1, n0, _EFL, 0, () => ExpenseField$];
1155
+ var ExpenseGroupPropertyList = [1, n0, _EGPL, 0, () => ExpenseGroupProperty$];
1156
+ var ExtractionList = [1, n0, _EL, 0, () => Extraction$];
1157
+ var IdentityDocumentFieldList = [1, n0, _IDFL, 0, () => IdentityDocumentField$];
1158
+ var IdentityDocumentList = [1, n0, _IDL, 0, () => IdentityDocument$];
1159
+ var LendingDetectionList = [1, n0, _LDL, 0, () => LendingDetection$];
1160
+ var LendingFieldList = [1, n0, _LFL, 0, () => LendingField$];
1161
+ var LendingResultList = [1, n0, _LRL, 0, () => LendingResult$];
1162
+ var LineItemGroupList = [1, n0, _LIGL, 0, () => LineItemGroup$];
1163
+ var LineItemList = [1, n0, _LIL, 0, () => LineItemFields$];
1164
+ var Polygon = [1, n0, _Po, 0, () => Point$];
1165
+ var PredictionList = [1, n0, _PL, 0, () => Prediction$];
1166
+ var Queries = [1, n0, _Qu, 0, () => Query$];
1167
+ var RelationshipList = [1, n0, _RL, 0, () => Relationship$];
1168
+ var SignatureDetectionList = [1, n0, _SDL, 0, () => SignatureDetection$];
1169
+ var SplitDocumentList = [1, n0, _SDLp, 0, () => SplitDocument$];
1170
+ var UndetectedSignatureList = [1, n0, _USL, 0, () => UndetectedSignature$];
1171
+ var Warnings = [1, n0, _Wa, 0, () => Warning$];
1172
+ var AnalyzeDocument$ = [
1173
1173
  9,
1174
1174
  n0,
1175
1175
  _AD,
1176
1176
  0,
1177
- () => AnalyzeDocumentRequest,
1178
- () => AnalyzeDocumentResponse,
1177
+ () => AnalyzeDocumentRequest$,
1178
+ () => AnalyzeDocumentResponse$,
1179
1179
  ];
1180
- var AnalyzeExpense = [
1180
+ var AnalyzeExpense$ = [
1181
1181
  9,
1182
1182
  n0,
1183
1183
  _AE,
1184
1184
  0,
1185
- () => AnalyzeExpenseRequest,
1186
- () => AnalyzeExpenseResponse,
1185
+ () => AnalyzeExpenseRequest$,
1186
+ () => AnalyzeExpenseResponse$,
1187
1187
  ];
1188
- var AnalyzeID = [9, n0, _AID, 0, () => AnalyzeIDRequest, () => AnalyzeIDResponse];
1189
- var CreateAdapter = [
1188
+ var AnalyzeID$ = [9, n0, _AID, 0, () => AnalyzeIDRequest$, () => AnalyzeIDResponse$];
1189
+ var CreateAdapter$ = [
1190
1190
  9,
1191
1191
  n0,
1192
1192
  _CA,
1193
1193
  2,
1194
- () => CreateAdapterRequest,
1195
- () => CreateAdapterResponse,
1194
+ () => CreateAdapterRequest$,
1195
+ () => CreateAdapterResponse$,
1196
1196
  ];
1197
- var CreateAdapterVersion = [
1197
+ var CreateAdapterVersion$ = [
1198
1198
  9,
1199
1199
  n0,
1200
1200
  _CAV,
1201
1201
  2,
1202
- () => CreateAdapterVersionRequest,
1203
- () => CreateAdapterVersionResponse,
1202
+ () => CreateAdapterVersionRequest$,
1203
+ () => CreateAdapterVersionResponse$,
1204
1204
  ];
1205
- var DeleteAdapter = [
1205
+ var DeleteAdapter$ = [
1206
1206
  9,
1207
1207
  n0,
1208
1208
  _DAe,
1209
1209
  2,
1210
- () => DeleteAdapterRequest,
1211
- () => DeleteAdapterResponse,
1210
+ () => DeleteAdapterRequest$,
1211
+ () => DeleteAdapterResponse$,
1212
1212
  ];
1213
- var DeleteAdapterVersion = [
1213
+ var DeleteAdapterVersion$ = [
1214
1214
  9,
1215
1215
  n0,
1216
1216
  _DAV,
1217
1217
  2,
1218
- () => DeleteAdapterVersionRequest,
1219
- () => DeleteAdapterVersionResponse,
1218
+ () => DeleteAdapterVersionRequest$,
1219
+ () => DeleteAdapterVersionResponse$,
1220
1220
  ];
1221
- var DetectDocumentText = [
1221
+ var DetectDocumentText$ = [
1222
1222
  9,
1223
1223
  n0,
1224
1224
  _DDT,
1225
1225
  0,
1226
- () => DetectDocumentTextRequest,
1227
- () => DetectDocumentTextResponse,
1226
+ () => DetectDocumentTextRequest$,
1227
+ () => DetectDocumentTextResponse$,
1228
1228
  ];
1229
- var GetAdapter = [9, n0, _GA, 0, () => GetAdapterRequest, () => GetAdapterResponse];
1230
- var GetAdapterVersion = [
1229
+ var GetAdapter$ = [9, n0, _GA, 0, () => GetAdapterRequest$, () => GetAdapterResponse$];
1230
+ var GetAdapterVersion$ = [
1231
1231
  9,
1232
1232
  n0,
1233
1233
  _GAV,
1234
1234
  0,
1235
- () => GetAdapterVersionRequest,
1236
- () => GetAdapterVersionResponse,
1235
+ () => GetAdapterVersionRequest$,
1236
+ () => GetAdapterVersionResponse$,
1237
1237
  ];
1238
- var GetDocumentAnalysis = [
1238
+ var GetDocumentAnalysis$ = [
1239
1239
  9,
1240
1240
  n0,
1241
1241
  _GDA,
1242
1242
  0,
1243
- () => GetDocumentAnalysisRequest,
1244
- () => GetDocumentAnalysisResponse,
1243
+ () => GetDocumentAnalysisRequest$,
1244
+ () => GetDocumentAnalysisResponse$,
1245
1245
  ];
1246
- var GetDocumentTextDetection = [
1246
+ var GetDocumentTextDetection$ = [
1247
1247
  9,
1248
1248
  n0,
1249
1249
  _GDTD,
1250
1250
  0,
1251
- () => GetDocumentTextDetectionRequest,
1252
- () => GetDocumentTextDetectionResponse,
1251
+ () => GetDocumentTextDetectionRequest$,
1252
+ () => GetDocumentTextDetectionResponse$,
1253
1253
  ];
1254
- var GetExpenseAnalysis = [
1254
+ var GetExpenseAnalysis$ = [
1255
1255
  9,
1256
1256
  n0,
1257
1257
  _GEA,
1258
1258
  0,
1259
- () => GetExpenseAnalysisRequest,
1260
- () => GetExpenseAnalysisResponse,
1259
+ () => GetExpenseAnalysisRequest$,
1260
+ () => GetExpenseAnalysisResponse$,
1261
1261
  ];
1262
- var GetLendingAnalysis = [
1262
+ var GetLendingAnalysis$ = [
1263
1263
  9,
1264
1264
  n0,
1265
1265
  _GLA,
1266
1266
  0,
1267
- () => GetLendingAnalysisRequest,
1268
- () => GetLendingAnalysisResponse,
1267
+ () => GetLendingAnalysisRequest$,
1268
+ () => GetLendingAnalysisResponse$,
1269
1269
  ];
1270
- var GetLendingAnalysisSummary = [
1270
+ var GetLendingAnalysisSummary$ = [
1271
1271
  9,
1272
1272
  n0,
1273
1273
  _GLAS,
1274
1274
  0,
1275
- () => GetLendingAnalysisSummaryRequest,
1276
- () => GetLendingAnalysisSummaryResponse,
1275
+ () => GetLendingAnalysisSummaryRequest$,
1276
+ () => GetLendingAnalysisSummaryResponse$,
1277
+ ];
1278
+ var ListAdapters$ = [
1279
+ 9,
1280
+ n0,
1281
+ _LA,
1282
+ 0,
1283
+ () => ListAdaptersRequest$,
1284
+ () => ListAdaptersResponse$,
1277
1285
  ];
1278
- var ListAdapters = [9, n0, _LA, 0, () => ListAdaptersRequest, () => ListAdaptersResponse];
1279
- var ListAdapterVersions = [
1286
+ var ListAdapterVersions$ = [
1280
1287
  9,
1281
1288
  n0,
1282
1289
  _LAV,
1283
1290
  0,
1284
- () => ListAdapterVersionsRequest,
1285
- () => ListAdapterVersionsResponse,
1291
+ () => ListAdapterVersionsRequest$,
1292
+ () => ListAdapterVersionsResponse$,
1286
1293
  ];
1287
- var ListTagsForResource = [
1294
+ var ListTagsForResource$ = [
1288
1295
  9,
1289
1296
  n0,
1290
1297
  _LTFR,
1291
1298
  0,
1292
- () => ListTagsForResourceRequest,
1293
- () => ListTagsForResourceResponse,
1299
+ () => ListTagsForResourceRequest$,
1300
+ () => ListTagsForResourceResponse$,
1294
1301
  ];
1295
- var StartDocumentAnalysis = [
1302
+ var StartDocumentAnalysis$ = [
1296
1303
  9,
1297
1304
  n0,
1298
1305
  _SDA,
1299
1306
  0,
1300
- () => StartDocumentAnalysisRequest,
1301
- () => StartDocumentAnalysisResponse,
1307
+ () => StartDocumentAnalysisRequest$,
1308
+ () => StartDocumentAnalysisResponse$,
1302
1309
  ];
1303
- var StartDocumentTextDetection = [
1310
+ var StartDocumentTextDetection$ = [
1304
1311
  9,
1305
1312
  n0,
1306
1313
  _SDTD,
1307
1314
  0,
1308
- () => StartDocumentTextDetectionRequest,
1309
- () => StartDocumentTextDetectionResponse,
1315
+ () => StartDocumentTextDetectionRequest$,
1316
+ () => StartDocumentTextDetectionResponse$,
1310
1317
  ];
1311
- var StartExpenseAnalysis = [
1318
+ var StartExpenseAnalysis$ = [
1312
1319
  9,
1313
1320
  n0,
1314
1321
  _SEA,
1315
1322
  0,
1316
- () => StartExpenseAnalysisRequest,
1317
- () => StartExpenseAnalysisResponse,
1323
+ () => StartExpenseAnalysisRequest$,
1324
+ () => StartExpenseAnalysisResponse$,
1318
1325
  ];
1319
- var StartLendingAnalysis = [
1326
+ var StartLendingAnalysis$ = [
1320
1327
  9,
1321
1328
  n0,
1322
1329
  _SLA,
1323
1330
  0,
1324
- () => StartLendingAnalysisRequest,
1325
- () => StartLendingAnalysisResponse,
1331
+ () => StartLendingAnalysisRequest$,
1332
+ () => StartLendingAnalysisResponse$,
1326
1333
  ];
1327
- var TagResource = [9, n0, _TR, 0, () => TagResourceRequest, () => TagResourceResponse];
1328
- var UntagResource = [
1334
+ var TagResource$ = [9, n0, _TR, 0, () => TagResourceRequest$, () => TagResourceResponse$];
1335
+ var UntagResource$ = [
1329
1336
  9,
1330
1337
  n0,
1331
1338
  _UR,
1332
1339
  0,
1333
- () => UntagResourceRequest,
1334
- () => UntagResourceResponse,
1340
+ () => UntagResourceRequest$,
1341
+ () => UntagResourceResponse$,
1335
1342
  ];
1336
- var UpdateAdapter = [
1343
+ var UpdateAdapter$ = [
1337
1344
  9,
1338
1345
  n0,
1339
1346
  _UA,
1340
1347
  0,
1341
- () => UpdateAdapterRequest,
1342
- () => UpdateAdapterResponse,
1348
+ () => UpdateAdapterRequest$,
1349
+ () => UpdateAdapterResponse$,
1343
1350
  ];
1344
1351
 
1345
1352
  class AnalyzeDocumentCommand extends smithyClient.Command
@@ -1350,7 +1357,7 @@ class AnalyzeDocumentCommand extends smithyClient.Command
1350
1357
  })
1351
1358
  .s("Textract", "AnalyzeDocument", {})
1352
1359
  .n("TextractClient", "AnalyzeDocumentCommand")
1353
- .sc(AnalyzeDocument)
1360
+ .sc(AnalyzeDocument$)
1354
1361
  .build() {
1355
1362
  }
1356
1363
 
@@ -1362,7 +1369,7 @@ class AnalyzeExpenseCommand extends smithyClient.Command
1362
1369
  })
1363
1370
  .s("Textract", "AnalyzeExpense", {})
1364
1371
  .n("TextractClient", "AnalyzeExpenseCommand")
1365
- .sc(AnalyzeExpense)
1372
+ .sc(AnalyzeExpense$)
1366
1373
  .build() {
1367
1374
  }
1368
1375
 
@@ -1374,7 +1381,7 @@ class AnalyzeIDCommand extends smithyClient.Command
1374
1381
  })
1375
1382
  .s("Textract", "AnalyzeID", {})
1376
1383
  .n("TextractClient", "AnalyzeIDCommand")
1377
- .sc(AnalyzeID)
1384
+ .sc(AnalyzeID$)
1378
1385
  .build() {
1379
1386
  }
1380
1387
 
@@ -1386,7 +1393,7 @@ class CreateAdapterCommand extends smithyClient.Command
1386
1393
  })
1387
1394
  .s("Textract", "CreateAdapter", {})
1388
1395
  .n("TextractClient", "CreateAdapterCommand")
1389
- .sc(CreateAdapter)
1396
+ .sc(CreateAdapter$)
1390
1397
  .build() {
1391
1398
  }
1392
1399
 
@@ -1398,7 +1405,7 @@ class CreateAdapterVersionCommand extends smithyClient.Command
1398
1405
  })
1399
1406
  .s("Textract", "CreateAdapterVersion", {})
1400
1407
  .n("TextractClient", "CreateAdapterVersionCommand")
1401
- .sc(CreateAdapterVersion)
1408
+ .sc(CreateAdapterVersion$)
1402
1409
  .build() {
1403
1410
  }
1404
1411
 
@@ -1410,7 +1417,7 @@ class DeleteAdapterCommand extends smithyClient.Command
1410
1417
  })
1411
1418
  .s("Textract", "DeleteAdapter", {})
1412
1419
  .n("TextractClient", "DeleteAdapterCommand")
1413
- .sc(DeleteAdapter)
1420
+ .sc(DeleteAdapter$)
1414
1421
  .build() {
1415
1422
  }
1416
1423
 
@@ -1422,7 +1429,7 @@ class DeleteAdapterVersionCommand extends smithyClient.Command
1422
1429
  })
1423
1430
  .s("Textract", "DeleteAdapterVersion", {})
1424
1431
  .n("TextractClient", "DeleteAdapterVersionCommand")
1425
- .sc(DeleteAdapterVersion)
1432
+ .sc(DeleteAdapterVersion$)
1426
1433
  .build() {
1427
1434
  }
1428
1435
 
@@ -1434,7 +1441,7 @@ class DetectDocumentTextCommand extends smithyClient.Command
1434
1441
  })
1435
1442
  .s("Textract", "DetectDocumentText", {})
1436
1443
  .n("TextractClient", "DetectDocumentTextCommand")
1437
- .sc(DetectDocumentText)
1444
+ .sc(DetectDocumentText$)
1438
1445
  .build() {
1439
1446
  }
1440
1447
 
@@ -1446,7 +1453,7 @@ class GetAdapterCommand extends smithyClient.Command
1446
1453
  })
1447
1454
  .s("Textract", "GetAdapter", {})
1448
1455
  .n("TextractClient", "GetAdapterCommand")
1449
- .sc(GetAdapter)
1456
+ .sc(GetAdapter$)
1450
1457
  .build() {
1451
1458
  }
1452
1459
 
@@ -1458,7 +1465,7 @@ class GetAdapterVersionCommand extends smithyClient.Command
1458
1465
  })
1459
1466
  .s("Textract", "GetAdapterVersion", {})
1460
1467
  .n("TextractClient", "GetAdapterVersionCommand")
1461
- .sc(GetAdapterVersion)
1468
+ .sc(GetAdapterVersion$)
1462
1469
  .build() {
1463
1470
  }
1464
1471
 
@@ -1470,7 +1477,7 @@ class GetDocumentAnalysisCommand extends smithyClient.Command
1470
1477
  })
1471
1478
  .s("Textract", "GetDocumentAnalysis", {})
1472
1479
  .n("TextractClient", "GetDocumentAnalysisCommand")
1473
- .sc(GetDocumentAnalysis)
1480
+ .sc(GetDocumentAnalysis$)
1474
1481
  .build() {
1475
1482
  }
1476
1483
 
@@ -1482,7 +1489,7 @@ class GetDocumentTextDetectionCommand extends smithyClient.Command
1482
1489
  })
1483
1490
  .s("Textract", "GetDocumentTextDetection", {})
1484
1491
  .n("TextractClient", "GetDocumentTextDetectionCommand")
1485
- .sc(GetDocumentTextDetection)
1492
+ .sc(GetDocumentTextDetection$)
1486
1493
  .build() {
1487
1494
  }
1488
1495
 
@@ -1494,7 +1501,7 @@ class GetExpenseAnalysisCommand extends smithyClient.Command
1494
1501
  })
1495
1502
  .s("Textract", "GetExpenseAnalysis", {})
1496
1503
  .n("TextractClient", "GetExpenseAnalysisCommand")
1497
- .sc(GetExpenseAnalysis)
1504
+ .sc(GetExpenseAnalysis$)
1498
1505
  .build() {
1499
1506
  }
1500
1507
 
@@ -1506,7 +1513,7 @@ class GetLendingAnalysisCommand extends smithyClient.Command
1506
1513
  })
1507
1514
  .s("Textract", "GetLendingAnalysis", {})
1508
1515
  .n("TextractClient", "GetLendingAnalysisCommand")
1509
- .sc(GetLendingAnalysis)
1516
+ .sc(GetLendingAnalysis$)
1510
1517
  .build() {
1511
1518
  }
1512
1519
 
@@ -1518,7 +1525,7 @@ class GetLendingAnalysisSummaryCommand extends smithyClient.Command
1518
1525
  })
1519
1526
  .s("Textract", "GetLendingAnalysisSummary", {})
1520
1527
  .n("TextractClient", "GetLendingAnalysisSummaryCommand")
1521
- .sc(GetLendingAnalysisSummary)
1528
+ .sc(GetLendingAnalysisSummary$)
1522
1529
  .build() {
1523
1530
  }
1524
1531
 
@@ -1530,7 +1537,7 @@ class ListAdaptersCommand extends smithyClient.Command
1530
1537
  })
1531
1538
  .s("Textract", "ListAdapters", {})
1532
1539
  .n("TextractClient", "ListAdaptersCommand")
1533
- .sc(ListAdapters)
1540
+ .sc(ListAdapters$)
1534
1541
  .build() {
1535
1542
  }
1536
1543
 
@@ -1542,7 +1549,7 @@ class ListAdapterVersionsCommand extends smithyClient.Command
1542
1549
  })
1543
1550
  .s("Textract", "ListAdapterVersions", {})
1544
1551
  .n("TextractClient", "ListAdapterVersionsCommand")
1545
- .sc(ListAdapterVersions)
1552
+ .sc(ListAdapterVersions$)
1546
1553
  .build() {
1547
1554
  }
1548
1555
 
@@ -1554,7 +1561,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1554
1561
  })
1555
1562
  .s("Textract", "ListTagsForResource", {})
1556
1563
  .n("TextractClient", "ListTagsForResourceCommand")
1557
- .sc(ListTagsForResource)
1564
+ .sc(ListTagsForResource$)
1558
1565
  .build() {
1559
1566
  }
1560
1567
 
@@ -1566,7 +1573,7 @@ class StartDocumentAnalysisCommand extends smithyClient.Command
1566
1573
  })
1567
1574
  .s("Textract", "StartDocumentAnalysis", {})
1568
1575
  .n("TextractClient", "StartDocumentAnalysisCommand")
1569
- .sc(StartDocumentAnalysis)
1576
+ .sc(StartDocumentAnalysis$)
1570
1577
  .build() {
1571
1578
  }
1572
1579
 
@@ -1578,7 +1585,7 @@ class StartDocumentTextDetectionCommand extends smithyClient.Command
1578
1585
  })
1579
1586
  .s("Textract", "StartDocumentTextDetection", {})
1580
1587
  .n("TextractClient", "StartDocumentTextDetectionCommand")
1581
- .sc(StartDocumentTextDetection)
1588
+ .sc(StartDocumentTextDetection$)
1582
1589
  .build() {
1583
1590
  }
1584
1591
 
@@ -1590,7 +1597,7 @@ class StartExpenseAnalysisCommand extends smithyClient.Command
1590
1597
  })
1591
1598
  .s("Textract", "StartExpenseAnalysis", {})
1592
1599
  .n("TextractClient", "StartExpenseAnalysisCommand")
1593
- .sc(StartExpenseAnalysis)
1600
+ .sc(StartExpenseAnalysis$)
1594
1601
  .build() {
1595
1602
  }
1596
1603
 
@@ -1602,7 +1609,7 @@ class StartLendingAnalysisCommand extends smithyClient.Command
1602
1609
  })
1603
1610
  .s("Textract", "StartLendingAnalysis", {})
1604
1611
  .n("TextractClient", "StartLendingAnalysisCommand")
1605
- .sc(StartLendingAnalysis)
1612
+ .sc(StartLendingAnalysis$)
1606
1613
  .build() {
1607
1614
  }
1608
1615
 
@@ -1614,7 +1621,7 @@ class TagResourceCommand extends smithyClient.Command
1614
1621
  })
1615
1622
  .s("Textract", "TagResource", {})
1616
1623
  .n("TextractClient", "TagResourceCommand")
1617
- .sc(TagResource)
1624
+ .sc(TagResource$)
1618
1625
  .build() {
1619
1626
  }
1620
1627
 
@@ -1626,7 +1633,7 @@ class UntagResourceCommand extends smithyClient.Command
1626
1633
  })
1627
1634
  .s("Textract", "UntagResource", {})
1628
1635
  .n("TextractClient", "UntagResourceCommand")
1629
- .sc(UntagResource)
1636
+ .sc(UntagResource$)
1630
1637
  .build() {
1631
1638
  }
1632
1639
 
@@ -1638,7 +1645,7 @@ class UpdateAdapterCommand extends smithyClient.Command
1638
1645
  })
1639
1646
  .s("Textract", "UpdateAdapter", {})
1640
1647
  .n("TextractClient", "UpdateAdapterCommand")
1641
- .sc(UpdateAdapter)
1648
+ .sc(UpdateAdapter$)
1642
1649
  .build() {
1643
1650
  }
1644
1651
 
@@ -1773,62 +1780,205 @@ Object.defineProperty(exports, "__Client", {
1773
1780
  enumerable: true,
1774
1781
  get: function () { return smithyClient.Client; }
1775
1782
  });
1776
- exports.AccessDeniedException = AccessDeniedException$1;
1783
+ exports.AccessDeniedException = AccessDeniedException;
1784
+ exports.AccessDeniedException$ = AccessDeniedException$;
1785
+ exports.Adapter$ = Adapter$;
1786
+ exports.AdapterOverview$ = AdapterOverview$;
1787
+ exports.AdapterVersionDatasetConfig$ = AdapterVersionDatasetConfig$;
1788
+ exports.AdapterVersionEvaluationMetric$ = AdapterVersionEvaluationMetric$;
1789
+ exports.AdapterVersionOverview$ = AdapterVersionOverview$;
1777
1790
  exports.AdapterVersionStatus = AdapterVersionStatus;
1791
+ exports.AdaptersConfig$ = AdaptersConfig$;
1792
+ exports.AnalyzeDocument$ = AnalyzeDocument$;
1778
1793
  exports.AnalyzeDocumentCommand = AnalyzeDocumentCommand;
1794
+ exports.AnalyzeDocumentRequest$ = AnalyzeDocumentRequest$;
1795
+ exports.AnalyzeDocumentResponse$ = AnalyzeDocumentResponse$;
1796
+ exports.AnalyzeExpense$ = AnalyzeExpense$;
1779
1797
  exports.AnalyzeExpenseCommand = AnalyzeExpenseCommand;
1798
+ exports.AnalyzeExpenseRequest$ = AnalyzeExpenseRequest$;
1799
+ exports.AnalyzeExpenseResponse$ = AnalyzeExpenseResponse$;
1800
+ exports.AnalyzeID$ = AnalyzeID$;
1780
1801
  exports.AnalyzeIDCommand = AnalyzeIDCommand;
1802
+ exports.AnalyzeIDDetections$ = AnalyzeIDDetections$;
1803
+ exports.AnalyzeIDRequest$ = AnalyzeIDRequest$;
1804
+ exports.AnalyzeIDResponse$ = AnalyzeIDResponse$;
1781
1805
  exports.AutoUpdate = AutoUpdate;
1782
- exports.BadDocumentException = BadDocumentException$1;
1806
+ exports.BadDocumentException = BadDocumentException;
1807
+ exports.BadDocumentException$ = BadDocumentException$;
1808
+ exports.Block$ = Block$;
1783
1809
  exports.BlockType = BlockType;
1784
- exports.ConflictException = ConflictException$1;
1810
+ exports.BoundingBox$ = BoundingBox$;
1811
+ exports.ConflictException = ConflictException;
1812
+ exports.ConflictException$ = ConflictException$;
1785
1813
  exports.ContentClassifier = ContentClassifier;
1814
+ exports.CreateAdapter$ = CreateAdapter$;
1786
1815
  exports.CreateAdapterCommand = CreateAdapterCommand;
1816
+ exports.CreateAdapterRequest$ = CreateAdapterRequest$;
1817
+ exports.CreateAdapterResponse$ = CreateAdapterResponse$;
1818
+ exports.CreateAdapterVersion$ = CreateAdapterVersion$;
1787
1819
  exports.CreateAdapterVersionCommand = CreateAdapterVersionCommand;
1820
+ exports.CreateAdapterVersionRequest$ = CreateAdapterVersionRequest$;
1821
+ exports.CreateAdapterVersionResponse$ = CreateAdapterVersionResponse$;
1822
+ exports.DeleteAdapter$ = DeleteAdapter$;
1788
1823
  exports.DeleteAdapterCommand = DeleteAdapterCommand;
1824
+ exports.DeleteAdapterRequest$ = DeleteAdapterRequest$;
1825
+ exports.DeleteAdapterResponse$ = DeleteAdapterResponse$;
1826
+ exports.DeleteAdapterVersion$ = DeleteAdapterVersion$;
1789
1827
  exports.DeleteAdapterVersionCommand = DeleteAdapterVersionCommand;
1828
+ exports.DeleteAdapterVersionRequest$ = DeleteAdapterVersionRequest$;
1829
+ exports.DeleteAdapterVersionResponse$ = DeleteAdapterVersionResponse$;
1830
+ exports.DetectDocumentText$ = DetectDocumentText$;
1790
1831
  exports.DetectDocumentTextCommand = DetectDocumentTextCommand;
1791
- exports.DocumentTooLargeException = DocumentTooLargeException$1;
1832
+ exports.DetectDocumentTextRequest$ = DetectDocumentTextRequest$;
1833
+ exports.DetectDocumentTextResponse$ = DetectDocumentTextResponse$;
1834
+ exports.DetectedSignature$ = DetectedSignature$;
1835
+ exports.Document$ = Document$;
1836
+ exports.DocumentGroup$ = DocumentGroup$;
1837
+ exports.DocumentLocation$ = DocumentLocation$;
1838
+ exports.DocumentMetadata$ = DocumentMetadata$;
1839
+ exports.DocumentTooLargeException = DocumentTooLargeException;
1840
+ exports.DocumentTooLargeException$ = DocumentTooLargeException$;
1792
1841
  exports.EntityType = EntityType;
1842
+ exports.EvaluationMetric$ = EvaluationMetric$;
1843
+ exports.ExpenseCurrency$ = ExpenseCurrency$;
1844
+ exports.ExpenseDetection$ = ExpenseDetection$;
1845
+ exports.ExpenseDocument$ = ExpenseDocument$;
1846
+ exports.ExpenseField$ = ExpenseField$;
1847
+ exports.ExpenseGroupProperty$ = ExpenseGroupProperty$;
1848
+ exports.ExpenseType$ = ExpenseType$;
1849
+ exports.Extraction$ = Extraction$;
1793
1850
  exports.FeatureType = FeatureType;
1851
+ exports.Geometry$ = Geometry$;
1852
+ exports.GetAdapter$ = GetAdapter$;
1794
1853
  exports.GetAdapterCommand = GetAdapterCommand;
1854
+ exports.GetAdapterRequest$ = GetAdapterRequest$;
1855
+ exports.GetAdapterResponse$ = GetAdapterResponse$;
1856
+ exports.GetAdapterVersion$ = GetAdapterVersion$;
1795
1857
  exports.GetAdapterVersionCommand = GetAdapterVersionCommand;
1858
+ exports.GetAdapterVersionRequest$ = GetAdapterVersionRequest$;
1859
+ exports.GetAdapterVersionResponse$ = GetAdapterVersionResponse$;
1860
+ exports.GetDocumentAnalysis$ = GetDocumentAnalysis$;
1796
1861
  exports.GetDocumentAnalysisCommand = GetDocumentAnalysisCommand;
1862
+ exports.GetDocumentAnalysisRequest$ = GetDocumentAnalysisRequest$;
1863
+ exports.GetDocumentAnalysisResponse$ = GetDocumentAnalysisResponse$;
1864
+ exports.GetDocumentTextDetection$ = GetDocumentTextDetection$;
1797
1865
  exports.GetDocumentTextDetectionCommand = GetDocumentTextDetectionCommand;
1866
+ exports.GetDocumentTextDetectionRequest$ = GetDocumentTextDetectionRequest$;
1867
+ exports.GetDocumentTextDetectionResponse$ = GetDocumentTextDetectionResponse$;
1868
+ exports.GetExpenseAnalysis$ = GetExpenseAnalysis$;
1798
1869
  exports.GetExpenseAnalysisCommand = GetExpenseAnalysisCommand;
1870
+ exports.GetExpenseAnalysisRequest$ = GetExpenseAnalysisRequest$;
1871
+ exports.GetExpenseAnalysisResponse$ = GetExpenseAnalysisResponse$;
1872
+ exports.GetLendingAnalysis$ = GetLendingAnalysis$;
1799
1873
  exports.GetLendingAnalysisCommand = GetLendingAnalysisCommand;
1874
+ exports.GetLendingAnalysisRequest$ = GetLendingAnalysisRequest$;
1875
+ exports.GetLendingAnalysisResponse$ = GetLendingAnalysisResponse$;
1876
+ exports.GetLendingAnalysisSummary$ = GetLendingAnalysisSummary$;
1800
1877
  exports.GetLendingAnalysisSummaryCommand = GetLendingAnalysisSummaryCommand;
1801
- exports.HumanLoopQuotaExceededException = HumanLoopQuotaExceededException$1;
1802
- exports.IdempotentParameterMismatchException = IdempotentParameterMismatchException$1;
1803
- exports.InternalServerError = InternalServerError$1;
1804
- exports.InvalidJobIdException = InvalidJobIdException$1;
1805
- exports.InvalidKMSKeyException = InvalidKMSKeyException$1;
1806
- exports.InvalidParameterException = InvalidParameterException$1;
1807
- exports.InvalidS3ObjectException = InvalidS3ObjectException$1;
1878
+ exports.GetLendingAnalysisSummaryRequest$ = GetLendingAnalysisSummaryRequest$;
1879
+ exports.GetLendingAnalysisSummaryResponse$ = GetLendingAnalysisSummaryResponse$;
1880
+ exports.HumanLoopActivationOutput$ = HumanLoopActivationOutput$;
1881
+ exports.HumanLoopConfig$ = HumanLoopConfig$;
1882
+ exports.HumanLoopDataAttributes$ = HumanLoopDataAttributes$;
1883
+ exports.HumanLoopQuotaExceededException = HumanLoopQuotaExceededException;
1884
+ exports.HumanLoopQuotaExceededException$ = HumanLoopQuotaExceededException$;
1885
+ exports.IdempotentParameterMismatchException = IdempotentParameterMismatchException;
1886
+ exports.IdempotentParameterMismatchException$ = IdempotentParameterMismatchException$;
1887
+ exports.IdentityDocument$ = IdentityDocument$;
1888
+ exports.IdentityDocumentField$ = IdentityDocumentField$;
1889
+ exports.InternalServerError = InternalServerError;
1890
+ exports.InternalServerError$ = InternalServerError$;
1891
+ exports.InvalidJobIdException = InvalidJobIdException;
1892
+ exports.InvalidJobIdException$ = InvalidJobIdException$;
1893
+ exports.InvalidKMSKeyException = InvalidKMSKeyException;
1894
+ exports.InvalidKMSKeyException$ = InvalidKMSKeyException$;
1895
+ exports.InvalidParameterException = InvalidParameterException;
1896
+ exports.InvalidParameterException$ = InvalidParameterException$;
1897
+ exports.InvalidS3ObjectException = InvalidS3ObjectException;
1898
+ exports.InvalidS3ObjectException$ = InvalidS3ObjectException$;
1808
1899
  exports.JobStatus = JobStatus;
1809
- exports.LimitExceededException = LimitExceededException$1;
1900
+ exports.LendingDetection$ = LendingDetection$;
1901
+ exports.LendingDocument$ = LendingDocument$;
1902
+ exports.LendingField$ = LendingField$;
1903
+ exports.LendingResult$ = LendingResult$;
1904
+ exports.LendingSummary$ = LendingSummary$;
1905
+ exports.LimitExceededException = LimitExceededException;
1906
+ exports.LimitExceededException$ = LimitExceededException$;
1907
+ exports.LineItemFields$ = LineItemFields$;
1908
+ exports.LineItemGroup$ = LineItemGroup$;
1909
+ exports.ListAdapterVersions$ = ListAdapterVersions$;
1810
1910
  exports.ListAdapterVersionsCommand = ListAdapterVersionsCommand;
1911
+ exports.ListAdapterVersionsRequest$ = ListAdapterVersionsRequest$;
1912
+ exports.ListAdapterVersionsResponse$ = ListAdapterVersionsResponse$;
1913
+ exports.ListAdapters$ = ListAdapters$;
1811
1914
  exports.ListAdaptersCommand = ListAdaptersCommand;
1915
+ exports.ListAdaptersRequest$ = ListAdaptersRequest$;
1916
+ exports.ListAdaptersResponse$ = ListAdaptersResponse$;
1917
+ exports.ListTagsForResource$ = ListTagsForResource$;
1812
1918
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1813
- exports.ProvisionedThroughputExceededException = ProvisionedThroughputExceededException$1;
1919
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1920
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1921
+ exports.NormalizedValue$ = NormalizedValue$;
1922
+ exports.NotificationChannel$ = NotificationChannel$;
1923
+ exports.OutputConfig$ = OutputConfig$;
1924
+ exports.PageClassification$ = PageClassification$;
1925
+ exports.Point$ = Point$;
1926
+ exports.Prediction$ = Prediction$;
1927
+ exports.ProvisionedThroughputExceededException = ProvisionedThroughputExceededException;
1928
+ exports.ProvisionedThroughputExceededException$ = ProvisionedThroughputExceededException$;
1929
+ exports.QueriesConfig$ = QueriesConfig$;
1930
+ exports.Query$ = Query$;
1931
+ exports.Relationship$ = Relationship$;
1814
1932
  exports.RelationshipType = RelationshipType;
1815
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1933
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1934
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1935
+ exports.S3Object$ = S3Object$;
1816
1936
  exports.SelectionStatus = SelectionStatus;
1817
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1937
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1938
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1939
+ exports.SignatureDetection$ = SignatureDetection$;
1940
+ exports.SplitDocument$ = SplitDocument$;
1941
+ exports.StartDocumentAnalysis$ = StartDocumentAnalysis$;
1818
1942
  exports.StartDocumentAnalysisCommand = StartDocumentAnalysisCommand;
1943
+ exports.StartDocumentAnalysisRequest$ = StartDocumentAnalysisRequest$;
1944
+ exports.StartDocumentAnalysisResponse$ = StartDocumentAnalysisResponse$;
1945
+ exports.StartDocumentTextDetection$ = StartDocumentTextDetection$;
1819
1946
  exports.StartDocumentTextDetectionCommand = StartDocumentTextDetectionCommand;
1947
+ exports.StartDocumentTextDetectionRequest$ = StartDocumentTextDetectionRequest$;
1948
+ exports.StartDocumentTextDetectionResponse$ = StartDocumentTextDetectionResponse$;
1949
+ exports.StartExpenseAnalysis$ = StartExpenseAnalysis$;
1820
1950
  exports.StartExpenseAnalysisCommand = StartExpenseAnalysisCommand;
1951
+ exports.StartExpenseAnalysisRequest$ = StartExpenseAnalysisRequest$;
1952
+ exports.StartExpenseAnalysisResponse$ = StartExpenseAnalysisResponse$;
1953
+ exports.StartLendingAnalysis$ = StartLendingAnalysis$;
1821
1954
  exports.StartLendingAnalysisCommand = StartLendingAnalysisCommand;
1955
+ exports.StartLendingAnalysisRequest$ = StartLendingAnalysisRequest$;
1956
+ exports.StartLendingAnalysisResponse$ = StartLendingAnalysisResponse$;
1957
+ exports.TagResource$ = TagResource$;
1822
1958
  exports.TagResourceCommand = TagResourceCommand;
1959
+ exports.TagResourceRequest$ = TagResourceRequest$;
1960
+ exports.TagResourceResponse$ = TagResourceResponse$;
1823
1961
  exports.TextType = TextType;
1824
1962
  exports.Textract = Textract;
1825
1963
  exports.TextractClient = TextractClient;
1826
- exports.TextractServiceException = TextractServiceException$1;
1827
- exports.ThrottlingException = ThrottlingException$1;
1828
- exports.UnsupportedDocumentException = UnsupportedDocumentException$1;
1964
+ exports.TextractServiceException = TextractServiceException;
1965
+ exports.TextractServiceException$ = TextractServiceException$;
1966
+ exports.ThrottlingException = ThrottlingException;
1967
+ exports.ThrottlingException$ = ThrottlingException$;
1968
+ exports.UndetectedSignature$ = UndetectedSignature$;
1969
+ exports.UnsupportedDocumentException = UnsupportedDocumentException;
1970
+ exports.UnsupportedDocumentException$ = UnsupportedDocumentException$;
1971
+ exports.UntagResource$ = UntagResource$;
1829
1972
  exports.UntagResourceCommand = UntagResourceCommand;
1973
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1974
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1975
+ exports.UpdateAdapter$ = UpdateAdapter$;
1830
1976
  exports.UpdateAdapterCommand = UpdateAdapterCommand;
1831
- exports.ValidationException = ValidationException$1;
1977
+ exports.UpdateAdapterRequest$ = UpdateAdapterRequest$;
1978
+ exports.UpdateAdapterResponse$ = UpdateAdapterResponse$;
1979
+ exports.ValidationException = ValidationException;
1980
+ exports.ValidationException$ = ValidationException$;
1832
1981
  exports.ValueType = ValueType;
1982
+ exports.Warning$ = Warning$;
1833
1983
  exports.paginateListAdapterVersions = paginateListAdapterVersions;
1834
1984
  exports.paginateListAdapters = paginateListAdapters;