@aws-sdk/client-textract 3.986.0 → 3.988.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +44 -1543
- package/dist-cjs/models/TextractServiceException.js +12 -0
- package/dist-cjs/models/errors.js +316 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1080 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +119 -113
- package/dist-types/schemas/schemas_0.d.ts +25 -18
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +20 -18
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var TextractServiceException = require('./models/TextractServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1362 +113,6 @@ class TextractClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class TextractServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, TextractServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends TextractServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
Code;
|
|
125
|
-
constructor(opts) {
|
|
126
|
-
super({
|
|
127
|
-
name: "AccessDeniedException",
|
|
128
|
-
$fault: "client",
|
|
129
|
-
...opts,
|
|
130
|
-
});
|
|
131
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
132
|
-
this.Message = opts.Message;
|
|
133
|
-
this.Code = opts.Code;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
class BadDocumentException extends TextractServiceException {
|
|
137
|
-
name = "BadDocumentException";
|
|
138
|
-
$fault = "client";
|
|
139
|
-
Message;
|
|
140
|
-
Code;
|
|
141
|
-
constructor(opts) {
|
|
142
|
-
super({
|
|
143
|
-
name: "BadDocumentException",
|
|
144
|
-
$fault: "client",
|
|
145
|
-
...opts,
|
|
146
|
-
});
|
|
147
|
-
Object.setPrototypeOf(this, BadDocumentException.prototype);
|
|
148
|
-
this.Message = opts.Message;
|
|
149
|
-
this.Code = opts.Code;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
class DocumentTooLargeException extends TextractServiceException {
|
|
153
|
-
name = "DocumentTooLargeException";
|
|
154
|
-
$fault = "client";
|
|
155
|
-
Message;
|
|
156
|
-
Code;
|
|
157
|
-
constructor(opts) {
|
|
158
|
-
super({
|
|
159
|
-
name: "DocumentTooLargeException",
|
|
160
|
-
$fault: "client",
|
|
161
|
-
...opts,
|
|
162
|
-
});
|
|
163
|
-
Object.setPrototypeOf(this, DocumentTooLargeException.prototype);
|
|
164
|
-
this.Message = opts.Message;
|
|
165
|
-
this.Code = opts.Code;
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class HumanLoopQuotaExceededException extends TextractServiceException {
|
|
169
|
-
name = "HumanLoopQuotaExceededException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
ResourceType;
|
|
172
|
-
QuotaCode;
|
|
173
|
-
ServiceCode;
|
|
174
|
-
Message;
|
|
175
|
-
Code;
|
|
176
|
-
constructor(opts) {
|
|
177
|
-
super({
|
|
178
|
-
name: "HumanLoopQuotaExceededException",
|
|
179
|
-
$fault: "client",
|
|
180
|
-
...opts,
|
|
181
|
-
});
|
|
182
|
-
Object.setPrototypeOf(this, HumanLoopQuotaExceededException.prototype);
|
|
183
|
-
this.ResourceType = opts.ResourceType;
|
|
184
|
-
this.QuotaCode = opts.QuotaCode;
|
|
185
|
-
this.ServiceCode = opts.ServiceCode;
|
|
186
|
-
this.Message = opts.Message;
|
|
187
|
-
this.Code = opts.Code;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
class InternalServerError extends TextractServiceException {
|
|
191
|
-
name = "InternalServerError";
|
|
192
|
-
$fault = "server";
|
|
193
|
-
Message;
|
|
194
|
-
Code;
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "InternalServerError",
|
|
198
|
-
$fault: "server",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
202
|
-
this.Message = opts.Message;
|
|
203
|
-
this.Code = opts.Code;
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
class InvalidParameterException extends TextractServiceException {
|
|
207
|
-
name = "InvalidParameterException";
|
|
208
|
-
$fault = "client";
|
|
209
|
-
Message;
|
|
210
|
-
Code;
|
|
211
|
-
constructor(opts) {
|
|
212
|
-
super({
|
|
213
|
-
name: "InvalidParameterException",
|
|
214
|
-
$fault: "client",
|
|
215
|
-
...opts,
|
|
216
|
-
});
|
|
217
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
218
|
-
this.Message = opts.Message;
|
|
219
|
-
this.Code = opts.Code;
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
class InvalidS3ObjectException extends TextractServiceException {
|
|
223
|
-
name = "InvalidS3ObjectException";
|
|
224
|
-
$fault = "client";
|
|
225
|
-
Message;
|
|
226
|
-
Code;
|
|
227
|
-
constructor(opts) {
|
|
228
|
-
super({
|
|
229
|
-
name: "InvalidS3ObjectException",
|
|
230
|
-
$fault: "client",
|
|
231
|
-
...opts,
|
|
232
|
-
});
|
|
233
|
-
Object.setPrototypeOf(this, InvalidS3ObjectException.prototype);
|
|
234
|
-
this.Message = opts.Message;
|
|
235
|
-
this.Code = opts.Code;
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
class ProvisionedThroughputExceededException extends TextractServiceException {
|
|
239
|
-
name = "ProvisionedThroughputExceededException";
|
|
240
|
-
$fault = "client";
|
|
241
|
-
Message;
|
|
242
|
-
Code;
|
|
243
|
-
constructor(opts) {
|
|
244
|
-
super({
|
|
245
|
-
name: "ProvisionedThroughputExceededException",
|
|
246
|
-
$fault: "client",
|
|
247
|
-
...opts,
|
|
248
|
-
});
|
|
249
|
-
Object.setPrototypeOf(this, ProvisionedThroughputExceededException.prototype);
|
|
250
|
-
this.Message = opts.Message;
|
|
251
|
-
this.Code = opts.Code;
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
class ThrottlingException extends TextractServiceException {
|
|
255
|
-
name = "ThrottlingException";
|
|
256
|
-
$fault = "server";
|
|
257
|
-
Message;
|
|
258
|
-
Code;
|
|
259
|
-
constructor(opts) {
|
|
260
|
-
super({
|
|
261
|
-
name: "ThrottlingException",
|
|
262
|
-
$fault: "server",
|
|
263
|
-
...opts,
|
|
264
|
-
});
|
|
265
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
266
|
-
this.Message = opts.Message;
|
|
267
|
-
this.Code = opts.Code;
|
|
268
|
-
}
|
|
269
|
-
}
|
|
270
|
-
class UnsupportedDocumentException extends TextractServiceException {
|
|
271
|
-
name = "UnsupportedDocumentException";
|
|
272
|
-
$fault = "client";
|
|
273
|
-
Message;
|
|
274
|
-
Code;
|
|
275
|
-
constructor(opts) {
|
|
276
|
-
super({
|
|
277
|
-
name: "UnsupportedDocumentException",
|
|
278
|
-
$fault: "client",
|
|
279
|
-
...opts,
|
|
280
|
-
});
|
|
281
|
-
Object.setPrototypeOf(this, UnsupportedDocumentException.prototype);
|
|
282
|
-
this.Message = opts.Message;
|
|
283
|
-
this.Code = opts.Code;
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
class ConflictException extends TextractServiceException {
|
|
287
|
-
name = "ConflictException";
|
|
288
|
-
$fault = "client";
|
|
289
|
-
Message;
|
|
290
|
-
Code;
|
|
291
|
-
constructor(opts) {
|
|
292
|
-
super({
|
|
293
|
-
name: "ConflictException",
|
|
294
|
-
$fault: "client",
|
|
295
|
-
...opts,
|
|
296
|
-
});
|
|
297
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
298
|
-
this.Message = opts.Message;
|
|
299
|
-
this.Code = opts.Code;
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
class IdempotentParameterMismatchException extends TextractServiceException {
|
|
303
|
-
name = "IdempotentParameterMismatchException";
|
|
304
|
-
$fault = "client";
|
|
305
|
-
Message;
|
|
306
|
-
Code;
|
|
307
|
-
constructor(opts) {
|
|
308
|
-
super({
|
|
309
|
-
name: "IdempotentParameterMismatchException",
|
|
310
|
-
$fault: "client",
|
|
311
|
-
...opts,
|
|
312
|
-
});
|
|
313
|
-
Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
|
|
314
|
-
this.Message = opts.Message;
|
|
315
|
-
this.Code = opts.Code;
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
|
-
class LimitExceededException extends TextractServiceException {
|
|
319
|
-
name = "LimitExceededException";
|
|
320
|
-
$fault = "client";
|
|
321
|
-
Message;
|
|
322
|
-
Code;
|
|
323
|
-
constructor(opts) {
|
|
324
|
-
super({
|
|
325
|
-
name: "LimitExceededException",
|
|
326
|
-
$fault: "client",
|
|
327
|
-
...opts,
|
|
328
|
-
});
|
|
329
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
330
|
-
this.Message = opts.Message;
|
|
331
|
-
this.Code = opts.Code;
|
|
332
|
-
}
|
|
333
|
-
}
|
|
334
|
-
class ServiceQuotaExceededException extends TextractServiceException {
|
|
335
|
-
name = "ServiceQuotaExceededException";
|
|
336
|
-
$fault = "client";
|
|
337
|
-
Message;
|
|
338
|
-
Code;
|
|
339
|
-
constructor(opts) {
|
|
340
|
-
super({
|
|
341
|
-
name: "ServiceQuotaExceededException",
|
|
342
|
-
$fault: "client",
|
|
343
|
-
...opts,
|
|
344
|
-
});
|
|
345
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
346
|
-
this.Message = opts.Message;
|
|
347
|
-
this.Code = opts.Code;
|
|
348
|
-
}
|
|
349
|
-
}
|
|
350
|
-
class ValidationException extends TextractServiceException {
|
|
351
|
-
name = "ValidationException";
|
|
352
|
-
$fault = "client";
|
|
353
|
-
Message;
|
|
354
|
-
Code;
|
|
355
|
-
constructor(opts) {
|
|
356
|
-
super({
|
|
357
|
-
name: "ValidationException",
|
|
358
|
-
$fault: "client",
|
|
359
|
-
...opts,
|
|
360
|
-
});
|
|
361
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
362
|
-
this.Message = opts.Message;
|
|
363
|
-
this.Code = opts.Code;
|
|
364
|
-
}
|
|
365
|
-
}
|
|
366
|
-
class InvalidKMSKeyException extends TextractServiceException {
|
|
367
|
-
name = "InvalidKMSKeyException";
|
|
368
|
-
$fault = "client";
|
|
369
|
-
Message;
|
|
370
|
-
Code;
|
|
371
|
-
constructor(opts) {
|
|
372
|
-
super({
|
|
373
|
-
name: "InvalidKMSKeyException",
|
|
374
|
-
$fault: "client",
|
|
375
|
-
...opts,
|
|
376
|
-
});
|
|
377
|
-
Object.setPrototypeOf(this, InvalidKMSKeyException.prototype);
|
|
378
|
-
this.Message = opts.Message;
|
|
379
|
-
this.Code = opts.Code;
|
|
380
|
-
}
|
|
381
|
-
}
|
|
382
|
-
class ResourceNotFoundException extends TextractServiceException {
|
|
383
|
-
name = "ResourceNotFoundException";
|
|
384
|
-
$fault = "client";
|
|
385
|
-
Message;
|
|
386
|
-
Code;
|
|
387
|
-
constructor(opts) {
|
|
388
|
-
super({
|
|
389
|
-
name: "ResourceNotFoundException",
|
|
390
|
-
$fault: "client",
|
|
391
|
-
...opts,
|
|
392
|
-
});
|
|
393
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
394
|
-
this.Message = opts.Message;
|
|
395
|
-
this.Code = opts.Code;
|
|
396
|
-
}
|
|
397
|
-
}
|
|
398
|
-
class InvalidJobIdException extends TextractServiceException {
|
|
399
|
-
name = "InvalidJobIdException";
|
|
400
|
-
$fault = "client";
|
|
401
|
-
Message;
|
|
402
|
-
Code;
|
|
403
|
-
constructor(opts) {
|
|
404
|
-
super({
|
|
405
|
-
name: "InvalidJobIdException",
|
|
406
|
-
$fault: "client",
|
|
407
|
-
...opts,
|
|
408
|
-
});
|
|
409
|
-
Object.setPrototypeOf(this, InvalidJobIdException.prototype);
|
|
410
|
-
this.Message = opts.Message;
|
|
411
|
-
this.Code = opts.Code;
|
|
412
|
-
}
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
const _A = "Adapter";
|
|
416
|
-
const _AC = "AdaptersConfig";
|
|
417
|
-
const _ACT = "AfterCreationTime";
|
|
418
|
-
const _AD = "AnalyzeDocument";
|
|
419
|
-
const _ADE = "AccessDeniedException";
|
|
420
|
-
const _ADMV = "AnalyzeDocumentModelVersion";
|
|
421
|
-
const _ADR = "AnalyzeDocumentRequest";
|
|
422
|
-
const _ADRn = "AnalyzeDocumentResponse";
|
|
423
|
-
const _AE = "AnalyzeExpense";
|
|
424
|
-
const _AEMV = "AnalyzeExpenseModelVersion";
|
|
425
|
-
const _AER = "AnalyzeExpenseRequest";
|
|
426
|
-
const _AERn = "AnalyzeExpenseResponse";
|
|
427
|
-
const _AI = "AdapterId";
|
|
428
|
-
const _AID = "AnalyzeID";
|
|
429
|
-
const _AIDD = "AnalyzeIDDetections";
|
|
430
|
-
const _AIDMV = "AnalyzeIDModelVersion";
|
|
431
|
-
const _AIDR = "AnalyzeIDRequest";
|
|
432
|
-
const _AIDRn = "AnalyzeIDResponse";
|
|
433
|
-
const _AL = "AdapterList";
|
|
434
|
-
const _ALMV = "AnalyzeLendingModelVersion";
|
|
435
|
-
const _AN = "AdapterName";
|
|
436
|
-
const _AO = "AdapterOverview";
|
|
437
|
-
const _AU = "AutoUpdate";
|
|
438
|
-
const _AV = "AdapterVersion";
|
|
439
|
-
const _AVDC = "AdapterVersionDatasetConfig";
|
|
440
|
-
const _AVEM = "AdapterVersionEvaluationMetric";
|
|
441
|
-
const _AVEMd = "AdapterVersionEvaluationMetrics";
|
|
442
|
-
const _AVL = "AdapterVersionList";
|
|
443
|
-
const _AVO = "AdapterVersionOverview";
|
|
444
|
-
const _AVd = "AdapterVersions";
|
|
445
|
-
const _Ad = "Adapters";
|
|
446
|
-
const _Al = "Alias";
|
|
447
|
-
const _B = "Baseline";
|
|
448
|
-
const _BB = "BoundingBox";
|
|
449
|
-
const _BCT = "BeforeCreationTime";
|
|
450
|
-
const _BDE = "BadDocumentException";
|
|
451
|
-
const _BL = "BlockList";
|
|
452
|
-
const _BT = "BlockType";
|
|
453
|
-
const _Bl = "Blocks";
|
|
454
|
-
const _Blo = "Block";
|
|
455
|
-
const _Bu = "Bucket";
|
|
456
|
-
const _By = "Bytes";
|
|
457
|
-
const _C = "Code";
|
|
458
|
-
const _CA = "CreateAdapter";
|
|
459
|
-
const _CAR = "CreateAdapterRequest";
|
|
460
|
-
const _CARr = "CreateAdapterResponse";
|
|
461
|
-
const _CAV = "CreateAdapterVersion";
|
|
462
|
-
const _CAVR = "CreateAdapterVersionRequest";
|
|
463
|
-
const _CAVRr = "CreateAdapterVersionResponse";
|
|
464
|
-
const _CC = "ContentClassifiers";
|
|
465
|
-
const _CE = "ConflictException";
|
|
466
|
-
const _CI = "ColumnIndex";
|
|
467
|
-
const _CRT = "ClientRequestToken";
|
|
468
|
-
const _CS = "ColumnSpan";
|
|
469
|
-
const _CT = "CreationTime";
|
|
470
|
-
const _Co = "Confidence";
|
|
471
|
-
const _Cu = "Currency";
|
|
472
|
-
const _D = "Document";
|
|
473
|
-
const _DA = "DataAttributes";
|
|
474
|
-
const _DAR = "DeleteAdapterRequest";
|
|
475
|
-
const _DARe = "DeleteAdapterResponse";
|
|
476
|
-
const _DAV = "DeleteAdapterVersion";
|
|
477
|
-
const _DAVR = "DeleteAdapterVersionRequest";
|
|
478
|
-
const _DAVRe = "DeleteAdapterVersionResponse";
|
|
479
|
-
const _DAe = "DeleteAdapter";
|
|
480
|
-
const _DC = "DatasetConfig";
|
|
481
|
-
const _DDT = "DetectDocumentText";
|
|
482
|
-
const _DDTMV = "DetectDocumentTextModelVersion";
|
|
483
|
-
const _DDTR = "DetectDocumentTextRequest";
|
|
484
|
-
const _DDTRe = "DetectDocumentTextResponse";
|
|
485
|
-
const _DG = "DocumentGroup";
|
|
486
|
-
const _DGL = "DocumentGroupList";
|
|
487
|
-
const _DGo = "DocumentGroups";
|
|
488
|
-
const _DI = "DocumentIndex";
|
|
489
|
-
const _DL = "DocumentLocation";
|
|
490
|
-
const _DM = "DocumentMetadata";
|
|
491
|
-
const _DP = "DocumentPages";
|
|
492
|
-
const _DS = "DetectedSignature";
|
|
493
|
-
const _DSL = "DetectedSignatureList";
|
|
494
|
-
const _DSe = "DetectedSignatures";
|
|
495
|
-
const _DTLE = "DocumentTooLargeException";
|
|
496
|
-
const _De = "Description";
|
|
497
|
-
const _E = "Extraction";
|
|
498
|
-
const _EC = "ExpenseCurrency";
|
|
499
|
-
const _ECr = "ErrorCode";
|
|
500
|
-
const _ED = "ExpenseDocuments";
|
|
501
|
-
const _EDL = "ExpenseDocumentList";
|
|
502
|
-
const _EDx = "ExpenseDetection";
|
|
503
|
-
const _EDxp = "ExpenseDocument";
|
|
504
|
-
const _EF = "ExpenseField";
|
|
505
|
-
const _EFL = "ExpenseFieldList";
|
|
506
|
-
const _EGP = "ExpenseGroupProperty";
|
|
507
|
-
const _EGPL = "ExpenseGroupPropertyList";
|
|
508
|
-
const _EI = "ExpenseIndex";
|
|
509
|
-
const _EL = "ExtractionList";
|
|
510
|
-
const _EM = "EvaluationMetric";
|
|
511
|
-
const _EMv = "EvaluationMetrics";
|
|
512
|
-
const _ET = "EntityTypes";
|
|
513
|
-
const _ETx = "ExpenseType";
|
|
514
|
-
const _Ex = "Extractions";
|
|
515
|
-
const _FDA = "FlowDefinitionArn";
|
|
516
|
-
const _FS = "F1Score";
|
|
517
|
-
const _FT = "FeatureTypes";
|
|
518
|
-
const _FTe = "FeatureType";
|
|
519
|
-
const _G = "Geometry";
|
|
520
|
-
const _GA = "GetAdapter";
|
|
521
|
-
const _GAR = "GetAdapterRequest";
|
|
522
|
-
const _GARe = "GetAdapterResponse";
|
|
523
|
-
const _GAV = "GetAdapterVersion";
|
|
524
|
-
const _GAVR = "GetAdapterVersionRequest";
|
|
525
|
-
const _GAVRe = "GetAdapterVersionResponse";
|
|
526
|
-
const _GDA = "GetDocumentAnalysis";
|
|
527
|
-
const _GDAR = "GetDocumentAnalysisRequest";
|
|
528
|
-
const _GDARe = "GetDocumentAnalysisResponse";
|
|
529
|
-
const _GDTD = "GetDocumentTextDetection";
|
|
530
|
-
const _GDTDR = "GetDocumentTextDetectionRequest";
|
|
531
|
-
const _GDTDRe = "GetDocumentTextDetectionResponse";
|
|
532
|
-
const _GEA = "GetExpenseAnalysis";
|
|
533
|
-
const _GEAR = "GetExpenseAnalysisRequest";
|
|
534
|
-
const _GEARe = "GetExpenseAnalysisResponse";
|
|
535
|
-
const _GLA = "GetLendingAnalysis";
|
|
536
|
-
const _GLAR = "GetLendingAnalysisRequest";
|
|
537
|
-
const _GLARe = "GetLendingAnalysisResponse";
|
|
538
|
-
const _GLAS = "GetLendingAnalysisSummary";
|
|
539
|
-
const _GLASR = "GetLendingAnalysisSummaryRequest";
|
|
540
|
-
const _GLASRe = "GetLendingAnalysisSummaryResponse";
|
|
541
|
-
const _GP = "GroupProperties";
|
|
542
|
-
const _H = "Height";
|
|
543
|
-
const _HLA = "HumanLoopArn";
|
|
544
|
-
const _HLACER = "HumanLoopActivationConditionsEvaluationResults";
|
|
545
|
-
const _HLAO = "HumanLoopActivationOutput";
|
|
546
|
-
const _HLAR = "HumanLoopActivationReasons";
|
|
547
|
-
const _HLC = "HumanLoopConfig";
|
|
548
|
-
const _HLDA = "HumanLoopDataAttributes";
|
|
549
|
-
const _HLN = "HumanLoopName";
|
|
550
|
-
const _HLQEE = "HumanLoopQuotaExceededException";
|
|
551
|
-
const _I = "Id";
|
|
552
|
-
const _ID = "IdentityDocuments";
|
|
553
|
-
const _IDF = "IdentityDocumentFields";
|
|
554
|
-
const _IDFL = "IdentityDocumentFieldList";
|
|
555
|
-
const _IDFd = "IdentityDocumentField";
|
|
556
|
-
const _IDL = "IdentityDocumentList";
|
|
557
|
-
const _IDd = "IdentityDocument";
|
|
558
|
-
const _IJIE = "InvalidJobIdException";
|
|
559
|
-
const _IKMSKE = "InvalidKMSKeyException";
|
|
560
|
-
const _IPE = "InvalidParameterException";
|
|
561
|
-
const _IPME = "IdempotentParameterMismatchException";
|
|
562
|
-
const _ISE = "InternalServerError";
|
|
563
|
-
const _ISOE = "InvalidS3ObjectException";
|
|
564
|
-
const _Id = "Ids";
|
|
565
|
-
const _In = "Index";
|
|
566
|
-
const _JI = "JobId";
|
|
567
|
-
const _JS = "JobStatus";
|
|
568
|
-
const _JT = "JobTag";
|
|
569
|
-
const _KD = "KeyDetection";
|
|
570
|
-
const _KMSKI = "KMSKeyId";
|
|
571
|
-
const _L = "Left";
|
|
572
|
-
const _LA = "ListAdapters";
|
|
573
|
-
const _LAR = "ListAdaptersRequest";
|
|
574
|
-
const _LARi = "ListAdaptersResponse";
|
|
575
|
-
const _LAV = "ListAdapterVersions";
|
|
576
|
-
const _LAVR = "ListAdapterVersionsRequest";
|
|
577
|
-
const _LAVRi = "ListAdapterVersionsResponse";
|
|
578
|
-
const _LD = "LabelDetection";
|
|
579
|
-
const _LDL = "LendingDetectionList";
|
|
580
|
-
const _LDe = "LendingDocument";
|
|
581
|
-
const _LDen = "LendingDetection";
|
|
582
|
-
const _LEE = "LimitExceededException";
|
|
583
|
-
const _LF = "LendingFields";
|
|
584
|
-
const _LFL = "LendingFieldList";
|
|
585
|
-
const _LFe = "LendingField";
|
|
586
|
-
const _LI = "LineItems";
|
|
587
|
-
const _LIEF = "LineItemExpenseFields";
|
|
588
|
-
const _LIF = "LineItemFields";
|
|
589
|
-
const _LIG = "LineItemGroups";
|
|
590
|
-
const _LIGI = "LineItemGroupIndex";
|
|
591
|
-
const _LIGL = "LineItemGroupList";
|
|
592
|
-
const _LIGi = "LineItemGroup";
|
|
593
|
-
const _LIL = "LineItemList";
|
|
594
|
-
const _LR = "LendingResult";
|
|
595
|
-
const _LRL = "LendingResultList";
|
|
596
|
-
const _LS = "LendingSummary";
|
|
597
|
-
const _LTFR = "ListTagsForResource";
|
|
598
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
599
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
600
|
-
const _M = "Message";
|
|
601
|
-
const _MR = "MaxResults";
|
|
602
|
-
const _MSO = "ManifestS3Object";
|
|
603
|
-
const _N = "Name";
|
|
604
|
-
const _NC = "NotificationChannel";
|
|
605
|
-
const _NT = "NextToken";
|
|
606
|
-
const _NV = "NormalizedValue";
|
|
607
|
-
const _OC = "OutputConfig";
|
|
608
|
-
const _P = "Pages";
|
|
609
|
-
const _PC = "PageClassification";
|
|
610
|
-
const _PL = "PredictionList";
|
|
611
|
-
const _PN = "PageNumber";
|
|
612
|
-
const _PT = "PageType";
|
|
613
|
-
const _PTEE = "ProvisionedThroughputExceededException";
|
|
614
|
-
const _Pa = "Page";
|
|
615
|
-
const _Po = "Polygon";
|
|
616
|
-
const _Poi = "Point";
|
|
617
|
-
const _Pr = "Precision";
|
|
618
|
-
const _Pre = "Prediction";
|
|
619
|
-
const _Q = "Query";
|
|
620
|
-
const _QC = "QueriesConfig";
|
|
621
|
-
const _QCu = "QuotaCode";
|
|
622
|
-
const _Qu = "Queries";
|
|
623
|
-
const _R = "Relationships";
|
|
624
|
-
const _RA = "RotationAngle";
|
|
625
|
-
const _RARN = "ResourceARN";
|
|
626
|
-
const _RAo = "RoleArn";
|
|
627
|
-
const _RI = "RowIndex";
|
|
628
|
-
const _RL = "RelationshipList";
|
|
629
|
-
const _RNFE = "ResourceNotFoundException";
|
|
630
|
-
const _RS = "RowSpan";
|
|
631
|
-
const _RT = "ResourceType";
|
|
632
|
-
const _Re = "Recall";
|
|
633
|
-
const _Rel = "Relationship";
|
|
634
|
-
const _Res = "Results";
|
|
635
|
-
const _S = "Status";
|
|
636
|
-
const _SB = "S3Bucket";
|
|
637
|
-
const _SC = "ServiceCode";
|
|
638
|
-
const _SD = "SplitDocuments";
|
|
639
|
-
const _SDA = "StartDocumentAnalysis";
|
|
640
|
-
const _SDAR = "StartDocumentAnalysisRequest";
|
|
641
|
-
const _SDARt = "StartDocumentAnalysisResponse";
|
|
642
|
-
const _SDL = "SignatureDetectionList";
|
|
643
|
-
const _SDLp = "SplitDocumentList";
|
|
644
|
-
const _SDTD = "StartDocumentTextDetection";
|
|
645
|
-
const _SDTDR = "StartDocumentTextDetectionRequest";
|
|
646
|
-
const _SDTDRt = "StartDocumentTextDetectionResponse";
|
|
647
|
-
const _SDi = "SignatureDetections";
|
|
648
|
-
const _SDig = "SignatureDetection";
|
|
649
|
-
const _SDp = "SplitDocument";
|
|
650
|
-
const _SEA = "StartExpenseAnalysis";
|
|
651
|
-
const _SEAR = "StartExpenseAnalysisRequest";
|
|
652
|
-
const _SEARt = "StartExpenseAnalysisResponse";
|
|
653
|
-
const _SF = "SummaryFields";
|
|
654
|
-
const _SJHLACER = "SynthesizedJsonHumanLoopActivationConditionsEvaluationResults";
|
|
655
|
-
const _SLA = "StartLendingAnalysis";
|
|
656
|
-
const _SLAR = "StartLendingAnalysisRequest";
|
|
657
|
-
const _SLARt = "StartLendingAnalysisResponse";
|
|
658
|
-
const _SM = "StatusMessage";
|
|
659
|
-
const _SNSTA = "SNSTopicArn";
|
|
660
|
-
const _SO = "S3Object";
|
|
661
|
-
const _SP = "S3Prefix";
|
|
662
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
663
|
-
const _SS = "SelectionStatus";
|
|
664
|
-
const _Su = "Summary";
|
|
665
|
-
const _T = "Text";
|
|
666
|
-
const _TE = "ThrottlingException";
|
|
667
|
-
const _TK = "TagKeys";
|
|
668
|
-
const _TR = "TagResource";
|
|
669
|
-
const _TRR = "TagResourceRequest";
|
|
670
|
-
const _TRRa = "TagResourceResponse";
|
|
671
|
-
const _TT = "TextType";
|
|
672
|
-
const _Ta = "Tags";
|
|
673
|
-
const _To = "Top";
|
|
674
|
-
const _Ty = "Type";
|
|
675
|
-
const _Typ = "Types";
|
|
676
|
-
const _UA = "UpdateAdapter";
|
|
677
|
-
const _UAR = "UpdateAdapterRequest";
|
|
678
|
-
const _UARp = "UpdateAdapterResponse";
|
|
679
|
-
const _UDE = "UnsupportedDocumentException";
|
|
680
|
-
const _UDT = "UndetectedDocumentTypes";
|
|
681
|
-
const _UR = "UntagResource";
|
|
682
|
-
const _URR = "UntagResourceRequest";
|
|
683
|
-
const _URRn = "UntagResourceResponse";
|
|
684
|
-
const _US = "UndetectedSignatures";
|
|
685
|
-
const _USL = "UndetectedSignatureList";
|
|
686
|
-
const _USn = "UndetectedSignature";
|
|
687
|
-
const _V = "Version";
|
|
688
|
-
const _VD = "ValueDetection";
|
|
689
|
-
const _VDa = "ValueDetections";
|
|
690
|
-
const _VE = "ValidationException";
|
|
691
|
-
const _VT = "ValueType";
|
|
692
|
-
const _Va = "Value";
|
|
693
|
-
const _W = "Width";
|
|
694
|
-
const _Wa = "Warnings";
|
|
695
|
-
const _War = "Warning";
|
|
696
|
-
const _X = "X";
|
|
697
|
-
const _Y = "Y";
|
|
698
|
-
const _a = "application/json";
|
|
699
|
-
const _c = "client";
|
|
700
|
-
const _e = "error";
|
|
701
|
-
const _hE = "httpError";
|
|
702
|
-
const _mT = "mediaType";
|
|
703
|
-
const _s = "server";
|
|
704
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.textract";
|
|
705
|
-
const n0 = "com.amazonaws.textract";
|
|
706
|
-
var SynthesizedJsonHumanLoopActivationConditionsEvaluationResults = [0, n0, _SJHLACER, { [_mT]: _a }, 0];
|
|
707
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
708
|
-
{ [_e]: _c },
|
|
709
|
-
[_M, _C],
|
|
710
|
-
[0, 0]
|
|
711
|
-
];
|
|
712
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
713
|
-
var Adapter$ = [3, n0, _A,
|
|
714
|
-
0,
|
|
715
|
-
[_AI, _V, _P],
|
|
716
|
-
[0, 0, 64 | 0], 2
|
|
717
|
-
];
|
|
718
|
-
var AdapterOverview$ = [3, n0, _AO,
|
|
719
|
-
0,
|
|
720
|
-
[_AI, _AN, _CT, _FT],
|
|
721
|
-
[0, 0, 4, 64 | 0]
|
|
722
|
-
];
|
|
723
|
-
var AdaptersConfig$ = [3, n0, _AC,
|
|
724
|
-
0,
|
|
725
|
-
[_Ad],
|
|
726
|
-
[() => Adapters], 1
|
|
727
|
-
];
|
|
728
|
-
var AdapterVersionDatasetConfig$ = [3, n0, _AVDC,
|
|
729
|
-
0,
|
|
730
|
-
[_MSO],
|
|
731
|
-
[() => S3Object$]
|
|
732
|
-
];
|
|
733
|
-
var AdapterVersionEvaluationMetric$ = [3, n0, _AVEM,
|
|
734
|
-
0,
|
|
735
|
-
[_B, _AV, _FTe],
|
|
736
|
-
[() => EvaluationMetric$, () => EvaluationMetric$, 0]
|
|
737
|
-
];
|
|
738
|
-
var AdapterVersionOverview$ = [3, n0, _AVO,
|
|
739
|
-
0,
|
|
740
|
-
[_AI, _AV, _CT, _FT, _S, _SM],
|
|
741
|
-
[0, 0, 4, 64 | 0, 0, 0]
|
|
742
|
-
];
|
|
743
|
-
var AnalyzeDocumentRequest$ = [3, n0, _ADR,
|
|
744
|
-
0,
|
|
745
|
-
[_D, _FT, _HLC, _QC, _AC],
|
|
746
|
-
[() => Document$, 64 | 0, () => HumanLoopConfig$, () => QueriesConfig$, () => AdaptersConfig$], 2
|
|
747
|
-
];
|
|
748
|
-
var AnalyzeDocumentResponse$ = [3, n0, _ADRn,
|
|
749
|
-
0,
|
|
750
|
-
[_DM, _Bl, _HLAO, _ADMV],
|
|
751
|
-
[() => DocumentMetadata$, () => BlockList, [() => HumanLoopActivationOutput$, 0], 0]
|
|
752
|
-
];
|
|
753
|
-
var AnalyzeExpenseRequest$ = [3, n0, _AER,
|
|
754
|
-
0,
|
|
755
|
-
[_D],
|
|
756
|
-
[() => Document$], 1
|
|
757
|
-
];
|
|
758
|
-
var AnalyzeExpenseResponse$ = [3, n0, _AERn,
|
|
759
|
-
0,
|
|
760
|
-
[_DM, _ED],
|
|
761
|
-
[() => DocumentMetadata$, () => ExpenseDocumentList]
|
|
762
|
-
];
|
|
763
|
-
var AnalyzeIDDetections$ = [3, n0, _AIDD,
|
|
764
|
-
0,
|
|
765
|
-
[_T, _NV, _Co],
|
|
766
|
-
[0, () => NormalizedValue$, 1], 1
|
|
767
|
-
];
|
|
768
|
-
var AnalyzeIDRequest$ = [3, n0, _AIDR,
|
|
769
|
-
0,
|
|
770
|
-
[_DP],
|
|
771
|
-
[() => DocumentPages], 1
|
|
772
|
-
];
|
|
773
|
-
var AnalyzeIDResponse$ = [3, n0, _AIDRn,
|
|
774
|
-
0,
|
|
775
|
-
[_ID, _DM, _AIDMV],
|
|
776
|
-
[() => IdentityDocumentList, () => DocumentMetadata$, 0]
|
|
777
|
-
];
|
|
778
|
-
var BadDocumentException$ = [-3, n0, _BDE,
|
|
779
|
-
{ [_e]: _c },
|
|
780
|
-
[_M, _C],
|
|
781
|
-
[0, 0]
|
|
782
|
-
];
|
|
783
|
-
schema.TypeRegistry.for(n0).registerError(BadDocumentException$, BadDocumentException);
|
|
784
|
-
var Block$ = [3, n0, _Blo,
|
|
785
|
-
0,
|
|
786
|
-
[_BT, _Co, _T, _TT, _RI, _CI, _RS, _CS, _G, _I, _R, _ET, _SS, _Pa, _Q],
|
|
787
|
-
[0, 1, 0, 0, 1, 1, 1, 1, () => Geometry$, 0, () => RelationshipList, 64 | 0, 0, 1, () => Query$]
|
|
788
|
-
];
|
|
789
|
-
var BoundingBox$ = [3, n0, _BB,
|
|
790
|
-
0,
|
|
791
|
-
[_W, _H, _L, _To],
|
|
792
|
-
[1, 1, 1, 1]
|
|
793
|
-
];
|
|
794
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
795
|
-
{ [_e]: _c },
|
|
796
|
-
[_M, _C],
|
|
797
|
-
[0, 0]
|
|
798
|
-
];
|
|
799
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
800
|
-
var CreateAdapterRequest$ = [3, n0, _CAR,
|
|
801
|
-
0,
|
|
802
|
-
[_AN, _FT, _CRT, _De, _AU, _Ta],
|
|
803
|
-
[0, 64 | 0, [0, 4], 0, 0, 128 | 0], 2
|
|
804
|
-
];
|
|
805
|
-
var CreateAdapterResponse$ = [3, n0, _CARr,
|
|
806
|
-
0,
|
|
807
|
-
[_AI],
|
|
808
|
-
[0]
|
|
809
|
-
];
|
|
810
|
-
var CreateAdapterVersionRequest$ = [3, n0, _CAVR,
|
|
811
|
-
0,
|
|
812
|
-
[_AI, _DC, _OC, _CRT, _KMSKI, _Ta],
|
|
813
|
-
[0, () => AdapterVersionDatasetConfig$, () => OutputConfig$, [0, 4], 0, 128 | 0], 3
|
|
814
|
-
];
|
|
815
|
-
var CreateAdapterVersionResponse$ = [3, n0, _CAVRr,
|
|
816
|
-
0,
|
|
817
|
-
[_AI, _AV],
|
|
818
|
-
[0, 0]
|
|
819
|
-
];
|
|
820
|
-
var DeleteAdapterRequest$ = [3, n0, _DAR,
|
|
821
|
-
0,
|
|
822
|
-
[_AI],
|
|
823
|
-
[0], 1
|
|
824
|
-
];
|
|
825
|
-
var DeleteAdapterResponse$ = [3, n0, _DARe,
|
|
826
|
-
0,
|
|
827
|
-
[],
|
|
828
|
-
[]
|
|
829
|
-
];
|
|
830
|
-
var DeleteAdapterVersionRequest$ = [3, n0, _DAVR,
|
|
831
|
-
0,
|
|
832
|
-
[_AI, _AV],
|
|
833
|
-
[0, 0], 2
|
|
834
|
-
];
|
|
835
|
-
var DeleteAdapterVersionResponse$ = [3, n0, _DAVRe,
|
|
836
|
-
0,
|
|
837
|
-
[],
|
|
838
|
-
[]
|
|
839
|
-
];
|
|
840
|
-
var DetectDocumentTextRequest$ = [3, n0, _DDTR,
|
|
841
|
-
0,
|
|
842
|
-
[_D],
|
|
843
|
-
[() => Document$], 1
|
|
844
|
-
];
|
|
845
|
-
var DetectDocumentTextResponse$ = [3, n0, _DDTRe,
|
|
846
|
-
0,
|
|
847
|
-
[_DM, _Bl, _DDTMV],
|
|
848
|
-
[() => DocumentMetadata$, () => BlockList, 0]
|
|
849
|
-
];
|
|
850
|
-
var DetectedSignature$ = [3, n0, _DS,
|
|
851
|
-
0,
|
|
852
|
-
[_Pa],
|
|
853
|
-
[1]
|
|
854
|
-
];
|
|
855
|
-
var Document$ = [3, n0, _D,
|
|
856
|
-
0,
|
|
857
|
-
[_By, _SO],
|
|
858
|
-
[21, () => S3Object$]
|
|
859
|
-
];
|
|
860
|
-
var DocumentGroup$ = [3, n0, _DG,
|
|
861
|
-
0,
|
|
862
|
-
[_Ty, _SD, _DSe, _US],
|
|
863
|
-
[0, () => SplitDocumentList, () => DetectedSignatureList, () => UndetectedSignatureList]
|
|
864
|
-
];
|
|
865
|
-
var DocumentLocation$ = [3, n0, _DL,
|
|
866
|
-
0,
|
|
867
|
-
[_SO],
|
|
868
|
-
[() => S3Object$]
|
|
869
|
-
];
|
|
870
|
-
var DocumentMetadata$ = [3, n0, _DM,
|
|
871
|
-
0,
|
|
872
|
-
[_P],
|
|
873
|
-
[1]
|
|
874
|
-
];
|
|
875
|
-
var DocumentTooLargeException$ = [-3, n0, _DTLE,
|
|
876
|
-
{ [_e]: _c },
|
|
877
|
-
[_M, _C],
|
|
878
|
-
[0, 0]
|
|
879
|
-
];
|
|
880
|
-
schema.TypeRegistry.for(n0).registerError(DocumentTooLargeException$, DocumentTooLargeException);
|
|
881
|
-
var EvaluationMetric$ = [3, n0, _EM,
|
|
882
|
-
0,
|
|
883
|
-
[_FS, _Pr, _Re],
|
|
884
|
-
[1, 1, 1]
|
|
885
|
-
];
|
|
886
|
-
var ExpenseCurrency$ = [3, n0, _EC,
|
|
887
|
-
0,
|
|
888
|
-
[_C, _Co],
|
|
889
|
-
[0, 1]
|
|
890
|
-
];
|
|
891
|
-
var ExpenseDetection$ = [3, n0, _EDx,
|
|
892
|
-
0,
|
|
893
|
-
[_T, _G, _Co],
|
|
894
|
-
[0, () => Geometry$, 1]
|
|
895
|
-
];
|
|
896
|
-
var ExpenseDocument$ = [3, n0, _EDxp,
|
|
897
|
-
0,
|
|
898
|
-
[_EI, _SF, _LIG, _Bl],
|
|
899
|
-
[1, () => ExpenseFieldList, () => LineItemGroupList, () => BlockList]
|
|
900
|
-
];
|
|
901
|
-
var ExpenseField$ = [3, n0, _EF,
|
|
902
|
-
0,
|
|
903
|
-
[_Ty, _LD, _VD, _PN, _Cu, _GP],
|
|
904
|
-
[() => ExpenseType$, () => ExpenseDetection$, () => ExpenseDetection$, 1, () => ExpenseCurrency$, () => ExpenseGroupPropertyList]
|
|
905
|
-
];
|
|
906
|
-
var ExpenseGroupProperty$ = [3, n0, _EGP,
|
|
907
|
-
0,
|
|
908
|
-
[_Typ, _I],
|
|
909
|
-
[64 | 0, 0]
|
|
910
|
-
];
|
|
911
|
-
var ExpenseType$ = [3, n0, _ETx,
|
|
912
|
-
0,
|
|
913
|
-
[_T, _Co],
|
|
914
|
-
[0, 1]
|
|
915
|
-
];
|
|
916
|
-
var Extraction$ = [3, n0, _E,
|
|
917
|
-
0,
|
|
918
|
-
[_LDe, _EDxp, _IDd],
|
|
919
|
-
[() => LendingDocument$, () => ExpenseDocument$, () => IdentityDocument$]
|
|
920
|
-
];
|
|
921
|
-
var Geometry$ = [3, n0, _G,
|
|
922
|
-
0,
|
|
923
|
-
[_BB, _Po, _RA],
|
|
924
|
-
[() => BoundingBox$, () => Polygon, 1]
|
|
925
|
-
];
|
|
926
|
-
var GetAdapterRequest$ = [3, n0, _GAR,
|
|
927
|
-
0,
|
|
928
|
-
[_AI],
|
|
929
|
-
[0], 1
|
|
930
|
-
];
|
|
931
|
-
var GetAdapterResponse$ = [3, n0, _GARe,
|
|
932
|
-
0,
|
|
933
|
-
[_AI, _AN, _CT, _De, _FT, _AU, _Ta],
|
|
934
|
-
[0, 0, 4, 0, 64 | 0, 0, 128 | 0]
|
|
935
|
-
];
|
|
936
|
-
var GetAdapterVersionRequest$ = [3, n0, _GAVR,
|
|
937
|
-
0,
|
|
938
|
-
[_AI, _AV],
|
|
939
|
-
[0, 0], 2
|
|
940
|
-
];
|
|
941
|
-
var GetAdapterVersionResponse$ = [3, n0, _GAVRe,
|
|
942
|
-
0,
|
|
943
|
-
[_AI, _AV, _CT, _FT, _S, _SM, _DC, _KMSKI, _OC, _EMv, _Ta],
|
|
944
|
-
[0, 0, 4, 64 | 0, 0, 0, () => AdapterVersionDatasetConfig$, 0, () => OutputConfig$, () => AdapterVersionEvaluationMetrics, 128 | 0]
|
|
945
|
-
];
|
|
946
|
-
var GetDocumentAnalysisRequest$ = [3, n0, _GDAR,
|
|
947
|
-
0,
|
|
948
|
-
[_JI, _MR, _NT],
|
|
949
|
-
[0, 1, 0], 1
|
|
950
|
-
];
|
|
951
|
-
var GetDocumentAnalysisResponse$ = [3, n0, _GDARe,
|
|
952
|
-
0,
|
|
953
|
-
[_DM, _JS, _NT, _Bl, _Wa, _SM, _ADMV],
|
|
954
|
-
[() => DocumentMetadata$, 0, 0, () => BlockList, () => Warnings, 0, 0]
|
|
955
|
-
];
|
|
956
|
-
var GetDocumentTextDetectionRequest$ = [3, n0, _GDTDR,
|
|
957
|
-
0,
|
|
958
|
-
[_JI, _MR, _NT],
|
|
959
|
-
[0, 1, 0], 1
|
|
960
|
-
];
|
|
961
|
-
var GetDocumentTextDetectionResponse$ = [3, n0, _GDTDRe,
|
|
962
|
-
0,
|
|
963
|
-
[_DM, _JS, _NT, _Bl, _Wa, _SM, _DDTMV],
|
|
964
|
-
[() => DocumentMetadata$, 0, 0, () => BlockList, () => Warnings, 0, 0]
|
|
965
|
-
];
|
|
966
|
-
var GetExpenseAnalysisRequest$ = [3, n0, _GEAR,
|
|
967
|
-
0,
|
|
968
|
-
[_JI, _MR, _NT],
|
|
969
|
-
[0, 1, 0], 1
|
|
970
|
-
];
|
|
971
|
-
var GetExpenseAnalysisResponse$ = [3, n0, _GEARe,
|
|
972
|
-
0,
|
|
973
|
-
[_DM, _JS, _NT, _ED, _Wa, _SM, _AEMV],
|
|
974
|
-
[() => DocumentMetadata$, 0, 0, () => ExpenseDocumentList, () => Warnings, 0, 0]
|
|
975
|
-
];
|
|
976
|
-
var GetLendingAnalysisRequest$ = [3, n0, _GLAR,
|
|
977
|
-
0,
|
|
978
|
-
[_JI, _MR, _NT],
|
|
979
|
-
[0, 1, 0], 1
|
|
980
|
-
];
|
|
981
|
-
var GetLendingAnalysisResponse$ = [3, n0, _GLARe,
|
|
982
|
-
0,
|
|
983
|
-
[_DM, _JS, _NT, _Res, _Wa, _SM, _ALMV],
|
|
984
|
-
[() => DocumentMetadata$, 0, 0, () => LendingResultList, () => Warnings, 0, 0]
|
|
985
|
-
];
|
|
986
|
-
var GetLendingAnalysisSummaryRequest$ = [3, n0, _GLASR,
|
|
987
|
-
0,
|
|
988
|
-
[_JI],
|
|
989
|
-
[0], 1
|
|
990
|
-
];
|
|
991
|
-
var GetLendingAnalysisSummaryResponse$ = [3, n0, _GLASRe,
|
|
992
|
-
0,
|
|
993
|
-
[_DM, _JS, _Su, _Wa, _SM, _ALMV],
|
|
994
|
-
[() => DocumentMetadata$, 0, () => LendingSummary$, () => Warnings, 0, 0]
|
|
995
|
-
];
|
|
996
|
-
var HumanLoopActivationOutput$ = [3, n0, _HLAO,
|
|
997
|
-
0,
|
|
998
|
-
[_HLA, _HLAR, _HLACER],
|
|
999
|
-
[0, 64 | 0, [() => SynthesizedJsonHumanLoopActivationConditionsEvaluationResults, 0]]
|
|
1000
|
-
];
|
|
1001
|
-
var HumanLoopConfig$ = [3, n0, _HLC,
|
|
1002
|
-
0,
|
|
1003
|
-
[_HLN, _FDA, _DA],
|
|
1004
|
-
[0, 0, () => HumanLoopDataAttributes$], 2
|
|
1005
|
-
];
|
|
1006
|
-
var HumanLoopDataAttributes$ = [3, n0, _HLDA,
|
|
1007
|
-
0,
|
|
1008
|
-
[_CC],
|
|
1009
|
-
[64 | 0]
|
|
1010
|
-
];
|
|
1011
|
-
var HumanLoopQuotaExceededException$ = [-3, n0, _HLQEE,
|
|
1012
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1013
|
-
[_RT, _QCu, _SC, _M, _C],
|
|
1014
|
-
[0, 0, 0, 0, 0]
|
|
1015
|
-
];
|
|
1016
|
-
schema.TypeRegistry.for(n0).registerError(HumanLoopQuotaExceededException$, HumanLoopQuotaExceededException);
|
|
1017
|
-
var IdempotentParameterMismatchException$ = [-3, n0, _IPME,
|
|
1018
|
-
{ [_e]: _c },
|
|
1019
|
-
[_M, _C],
|
|
1020
|
-
[0, 0]
|
|
1021
|
-
];
|
|
1022
|
-
schema.TypeRegistry.for(n0).registerError(IdempotentParameterMismatchException$, IdempotentParameterMismatchException);
|
|
1023
|
-
var IdentityDocument$ = [3, n0, _IDd,
|
|
1024
|
-
0,
|
|
1025
|
-
[_DI, _IDF, _Bl],
|
|
1026
|
-
[1, () => IdentityDocumentFieldList, () => BlockList]
|
|
1027
|
-
];
|
|
1028
|
-
var IdentityDocumentField$ = [3, n0, _IDFd,
|
|
1029
|
-
0,
|
|
1030
|
-
[_Ty, _VD],
|
|
1031
|
-
[() => AnalyzeIDDetections$, () => AnalyzeIDDetections$]
|
|
1032
|
-
];
|
|
1033
|
-
var InternalServerError$ = [-3, n0, _ISE,
|
|
1034
|
-
{ [_e]: _s },
|
|
1035
|
-
[_M, _C],
|
|
1036
|
-
[0, 0]
|
|
1037
|
-
];
|
|
1038
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerError$, InternalServerError);
|
|
1039
|
-
var InvalidJobIdException$ = [-3, n0, _IJIE,
|
|
1040
|
-
{ [_e]: _c },
|
|
1041
|
-
[_M, _C],
|
|
1042
|
-
[0, 0]
|
|
1043
|
-
];
|
|
1044
|
-
schema.TypeRegistry.for(n0).registerError(InvalidJobIdException$, InvalidJobIdException);
|
|
1045
|
-
var InvalidKMSKeyException$ = [-3, n0, _IKMSKE,
|
|
1046
|
-
{ [_e]: _c },
|
|
1047
|
-
[_M, _C],
|
|
1048
|
-
[0, 0]
|
|
1049
|
-
];
|
|
1050
|
-
schema.TypeRegistry.for(n0).registerError(InvalidKMSKeyException$, InvalidKMSKeyException);
|
|
1051
|
-
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
1052
|
-
{ [_e]: _c },
|
|
1053
|
-
[_M, _C],
|
|
1054
|
-
[0, 0]
|
|
1055
|
-
];
|
|
1056
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
1057
|
-
var InvalidS3ObjectException$ = [-3, n0, _ISOE,
|
|
1058
|
-
{ [_e]: _c },
|
|
1059
|
-
[_M, _C],
|
|
1060
|
-
[0, 0]
|
|
1061
|
-
];
|
|
1062
|
-
schema.TypeRegistry.for(n0).registerError(InvalidS3ObjectException$, InvalidS3ObjectException);
|
|
1063
|
-
var LendingDetection$ = [3, n0, _LDen,
|
|
1064
|
-
0,
|
|
1065
|
-
[_T, _SS, _G, _Co],
|
|
1066
|
-
[0, 0, () => Geometry$, 1]
|
|
1067
|
-
];
|
|
1068
|
-
var LendingDocument$ = [3, n0, _LDe,
|
|
1069
|
-
0,
|
|
1070
|
-
[_LF, _SDi],
|
|
1071
|
-
[() => LendingFieldList, () => SignatureDetectionList]
|
|
1072
|
-
];
|
|
1073
|
-
var LendingField$ = [3, n0, _LFe,
|
|
1074
|
-
0,
|
|
1075
|
-
[_Ty, _KD, _VDa],
|
|
1076
|
-
[0, () => LendingDetection$, () => LendingDetectionList]
|
|
1077
|
-
];
|
|
1078
|
-
var LendingResult$ = [3, n0, _LR,
|
|
1079
|
-
0,
|
|
1080
|
-
[_Pa, _PC, _Ex],
|
|
1081
|
-
[1, () => PageClassification$, () => ExtractionList]
|
|
1082
|
-
];
|
|
1083
|
-
var LendingSummary$ = [3, n0, _LS,
|
|
1084
|
-
0,
|
|
1085
|
-
[_DGo, _UDT],
|
|
1086
|
-
[() => DocumentGroupList, 64 | 0]
|
|
1087
|
-
];
|
|
1088
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1089
|
-
{ [_e]: _c },
|
|
1090
|
-
[_M, _C],
|
|
1091
|
-
[0, 0]
|
|
1092
|
-
];
|
|
1093
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
1094
|
-
var LineItemFields$ = [3, n0, _LIF,
|
|
1095
|
-
0,
|
|
1096
|
-
[_LIEF],
|
|
1097
|
-
[() => ExpenseFieldList]
|
|
1098
|
-
];
|
|
1099
|
-
var LineItemGroup$ = [3, n0, _LIGi,
|
|
1100
|
-
0,
|
|
1101
|
-
[_LIGI, _LI],
|
|
1102
|
-
[1, () => LineItemList]
|
|
1103
|
-
];
|
|
1104
|
-
var ListAdaptersRequest$ = [3, n0, _LAR,
|
|
1105
|
-
0,
|
|
1106
|
-
[_ACT, _BCT, _MR, _NT],
|
|
1107
|
-
[4, 4, 1, 0]
|
|
1108
|
-
];
|
|
1109
|
-
var ListAdaptersResponse$ = [3, n0, _LARi,
|
|
1110
|
-
0,
|
|
1111
|
-
[_Ad, _NT],
|
|
1112
|
-
[() => AdapterList, 0]
|
|
1113
|
-
];
|
|
1114
|
-
var ListAdapterVersionsRequest$ = [3, n0, _LAVR,
|
|
1115
|
-
0,
|
|
1116
|
-
[_AI, _ACT, _BCT, _MR, _NT],
|
|
1117
|
-
[0, 4, 4, 1, 0]
|
|
1118
|
-
];
|
|
1119
|
-
var ListAdapterVersionsResponse$ = [3, n0, _LAVRi,
|
|
1120
|
-
0,
|
|
1121
|
-
[_AVd, _NT],
|
|
1122
|
-
[() => AdapterVersionList, 0]
|
|
1123
|
-
];
|
|
1124
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1125
|
-
0,
|
|
1126
|
-
[_RARN],
|
|
1127
|
-
[0], 1
|
|
1128
|
-
];
|
|
1129
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1130
|
-
0,
|
|
1131
|
-
[_Ta],
|
|
1132
|
-
[128 | 0]
|
|
1133
|
-
];
|
|
1134
|
-
var NormalizedValue$ = [3, n0, _NV,
|
|
1135
|
-
0,
|
|
1136
|
-
[_Va, _VT],
|
|
1137
|
-
[0, 0]
|
|
1138
|
-
];
|
|
1139
|
-
var NotificationChannel$ = [3, n0, _NC,
|
|
1140
|
-
0,
|
|
1141
|
-
[_SNSTA, _RAo],
|
|
1142
|
-
[0, 0], 2
|
|
1143
|
-
];
|
|
1144
|
-
var OutputConfig$ = [3, n0, _OC,
|
|
1145
|
-
0,
|
|
1146
|
-
[_SB, _SP],
|
|
1147
|
-
[0, 0], 1
|
|
1148
|
-
];
|
|
1149
|
-
var PageClassification$ = [3, n0, _PC,
|
|
1150
|
-
0,
|
|
1151
|
-
[_PT, _PN],
|
|
1152
|
-
[() => PredictionList, () => PredictionList], 2
|
|
1153
|
-
];
|
|
1154
|
-
var Point$ = [3, n0, _Poi,
|
|
1155
|
-
0,
|
|
1156
|
-
[_X, _Y],
|
|
1157
|
-
[1, 1]
|
|
1158
|
-
];
|
|
1159
|
-
var Prediction$ = [3, n0, _Pre,
|
|
1160
|
-
0,
|
|
1161
|
-
[_Va, _Co],
|
|
1162
|
-
[0, 1]
|
|
1163
|
-
];
|
|
1164
|
-
var ProvisionedThroughputExceededException$ = [-3, n0, _PTEE,
|
|
1165
|
-
{ [_e]: _c },
|
|
1166
|
-
[_M, _C],
|
|
1167
|
-
[0, 0]
|
|
1168
|
-
];
|
|
1169
|
-
schema.TypeRegistry.for(n0).registerError(ProvisionedThroughputExceededException$, ProvisionedThroughputExceededException);
|
|
1170
|
-
var QueriesConfig$ = [3, n0, _QC,
|
|
1171
|
-
0,
|
|
1172
|
-
[_Qu],
|
|
1173
|
-
[() => Queries], 1
|
|
1174
|
-
];
|
|
1175
|
-
var Query$ = [3, n0, _Q,
|
|
1176
|
-
0,
|
|
1177
|
-
[_T, _Al, _P],
|
|
1178
|
-
[0, 0, 64 | 0], 1
|
|
1179
|
-
];
|
|
1180
|
-
var Relationship$ = [3, n0, _Rel,
|
|
1181
|
-
0,
|
|
1182
|
-
[_Ty, _Id],
|
|
1183
|
-
[0, 64 | 0]
|
|
1184
|
-
];
|
|
1185
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1186
|
-
{ [_e]: _c },
|
|
1187
|
-
[_M, _C],
|
|
1188
|
-
[0, 0]
|
|
1189
|
-
];
|
|
1190
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1191
|
-
var S3Object$ = [3, n0, _SO,
|
|
1192
|
-
0,
|
|
1193
|
-
[_Bu, _N, _V],
|
|
1194
|
-
[0, 0, 0]
|
|
1195
|
-
];
|
|
1196
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1197
|
-
{ [_e]: _c },
|
|
1198
|
-
[_M, _C],
|
|
1199
|
-
[0, 0]
|
|
1200
|
-
];
|
|
1201
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1202
|
-
var SignatureDetection$ = [3, n0, _SDig,
|
|
1203
|
-
0,
|
|
1204
|
-
[_Co, _G],
|
|
1205
|
-
[1, () => Geometry$]
|
|
1206
|
-
];
|
|
1207
|
-
var SplitDocument$ = [3, n0, _SDp,
|
|
1208
|
-
0,
|
|
1209
|
-
[_In, _P],
|
|
1210
|
-
[1, 64 | 1]
|
|
1211
|
-
];
|
|
1212
|
-
var StartDocumentAnalysisRequest$ = [3, n0, _SDAR,
|
|
1213
|
-
0,
|
|
1214
|
-
[_DL, _FT, _CRT, _JT, _NC, _OC, _KMSKI, _QC, _AC],
|
|
1215
|
-
[() => DocumentLocation$, 64 | 0, 0, 0, () => NotificationChannel$, () => OutputConfig$, 0, () => QueriesConfig$, () => AdaptersConfig$], 2
|
|
1216
|
-
];
|
|
1217
|
-
var StartDocumentAnalysisResponse$ = [3, n0, _SDARt,
|
|
1218
|
-
0,
|
|
1219
|
-
[_JI],
|
|
1220
|
-
[0]
|
|
1221
|
-
];
|
|
1222
|
-
var StartDocumentTextDetectionRequest$ = [3, n0, _SDTDR,
|
|
1223
|
-
0,
|
|
1224
|
-
[_DL, _CRT, _JT, _NC, _OC, _KMSKI],
|
|
1225
|
-
[() => DocumentLocation$, 0, 0, () => NotificationChannel$, () => OutputConfig$, 0], 1
|
|
1226
|
-
];
|
|
1227
|
-
var StartDocumentTextDetectionResponse$ = [3, n0, _SDTDRt,
|
|
1228
|
-
0,
|
|
1229
|
-
[_JI],
|
|
1230
|
-
[0]
|
|
1231
|
-
];
|
|
1232
|
-
var StartExpenseAnalysisRequest$ = [3, n0, _SEAR,
|
|
1233
|
-
0,
|
|
1234
|
-
[_DL, _CRT, _JT, _NC, _OC, _KMSKI],
|
|
1235
|
-
[() => DocumentLocation$, 0, 0, () => NotificationChannel$, () => OutputConfig$, 0], 1
|
|
1236
|
-
];
|
|
1237
|
-
var StartExpenseAnalysisResponse$ = [3, n0, _SEARt,
|
|
1238
|
-
0,
|
|
1239
|
-
[_JI],
|
|
1240
|
-
[0]
|
|
1241
|
-
];
|
|
1242
|
-
var StartLendingAnalysisRequest$ = [3, n0, _SLAR,
|
|
1243
|
-
0,
|
|
1244
|
-
[_DL, _CRT, _JT, _NC, _OC, _KMSKI],
|
|
1245
|
-
[() => DocumentLocation$, 0, 0, () => NotificationChannel$, () => OutputConfig$, 0], 1
|
|
1246
|
-
];
|
|
1247
|
-
var StartLendingAnalysisResponse$ = [3, n0, _SLARt,
|
|
1248
|
-
0,
|
|
1249
|
-
[_JI],
|
|
1250
|
-
[0]
|
|
1251
|
-
];
|
|
1252
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1253
|
-
0,
|
|
1254
|
-
[_RARN, _Ta],
|
|
1255
|
-
[0, 128 | 0], 2
|
|
1256
|
-
];
|
|
1257
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1258
|
-
0,
|
|
1259
|
-
[],
|
|
1260
|
-
[]
|
|
1261
|
-
];
|
|
1262
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1263
|
-
{ [_e]: _s },
|
|
1264
|
-
[_M, _C],
|
|
1265
|
-
[0, 0]
|
|
1266
|
-
];
|
|
1267
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1268
|
-
var UndetectedSignature$ = [3, n0, _USn,
|
|
1269
|
-
0,
|
|
1270
|
-
[_Pa],
|
|
1271
|
-
[1]
|
|
1272
|
-
];
|
|
1273
|
-
var UnsupportedDocumentException$ = [-3, n0, _UDE,
|
|
1274
|
-
{ [_e]: _c },
|
|
1275
|
-
[_M, _C],
|
|
1276
|
-
[0, 0]
|
|
1277
|
-
];
|
|
1278
|
-
schema.TypeRegistry.for(n0).registerError(UnsupportedDocumentException$, UnsupportedDocumentException);
|
|
1279
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1280
|
-
0,
|
|
1281
|
-
[_RARN, _TK],
|
|
1282
|
-
[0, 64 | 0], 2
|
|
1283
|
-
];
|
|
1284
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1285
|
-
0,
|
|
1286
|
-
[],
|
|
1287
|
-
[]
|
|
1288
|
-
];
|
|
1289
|
-
var UpdateAdapterRequest$ = [3, n0, _UAR,
|
|
1290
|
-
0,
|
|
1291
|
-
[_AI, _De, _AN, _AU],
|
|
1292
|
-
[0, 0, 0, 0], 1
|
|
1293
|
-
];
|
|
1294
|
-
var UpdateAdapterResponse$ = [3, n0, _UARp,
|
|
1295
|
-
0,
|
|
1296
|
-
[_AI, _AN, _CT, _De, _FT, _AU],
|
|
1297
|
-
[0, 0, 4, 0, 64 | 0, 0]
|
|
1298
|
-
];
|
|
1299
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1300
|
-
{ [_e]: _c },
|
|
1301
|
-
[_M, _C],
|
|
1302
|
-
[0, 0]
|
|
1303
|
-
];
|
|
1304
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1305
|
-
var Warning$ = [3, n0, _War,
|
|
1306
|
-
0,
|
|
1307
|
-
[_ECr, _P],
|
|
1308
|
-
[0, 64 | 1]
|
|
1309
|
-
];
|
|
1310
|
-
var TextractServiceException$ = [-3, _sm, "TextractServiceException", 0, [], []];
|
|
1311
|
-
schema.TypeRegistry.for(_sm).registerError(TextractServiceException$, TextractServiceException);
|
|
1312
|
-
var AdapterList = [1, n0, _AL,
|
|
1313
|
-
0, () => AdapterOverview$
|
|
1314
|
-
];
|
|
1315
|
-
var Adapters = [1, n0, _Ad,
|
|
1316
|
-
0, () => Adapter$
|
|
1317
|
-
];
|
|
1318
|
-
var AdapterVersionEvaluationMetrics = [1, n0, _AVEMd,
|
|
1319
|
-
0, () => AdapterVersionEvaluationMetric$
|
|
1320
|
-
];
|
|
1321
|
-
var AdapterVersionList = [1, n0, _AVL,
|
|
1322
|
-
0, () => AdapterVersionOverview$
|
|
1323
|
-
];
|
|
1324
|
-
var BlockList = [1, n0, _BL,
|
|
1325
|
-
0, () => Block$
|
|
1326
|
-
];
|
|
1327
|
-
var DetectedSignatureList = [1, n0, _DSL,
|
|
1328
|
-
0, () => DetectedSignature$
|
|
1329
|
-
];
|
|
1330
|
-
var DocumentGroupList = [1, n0, _DGL,
|
|
1331
|
-
0, () => DocumentGroup$
|
|
1332
|
-
];
|
|
1333
|
-
var DocumentPages = [1, n0, _DP,
|
|
1334
|
-
0, () => Document$
|
|
1335
|
-
];
|
|
1336
|
-
var ExpenseDocumentList = [1, n0, _EDL,
|
|
1337
|
-
0, () => ExpenseDocument$
|
|
1338
|
-
];
|
|
1339
|
-
var ExpenseFieldList = [1, n0, _EFL,
|
|
1340
|
-
0, () => ExpenseField$
|
|
1341
|
-
];
|
|
1342
|
-
var ExpenseGroupPropertyList = [1, n0, _EGPL,
|
|
1343
|
-
0, () => ExpenseGroupProperty$
|
|
1344
|
-
];
|
|
1345
|
-
var ExtractionList = [1, n0, _EL,
|
|
1346
|
-
0, () => Extraction$
|
|
1347
|
-
];
|
|
1348
|
-
var IdentityDocumentFieldList = [1, n0, _IDFL,
|
|
1349
|
-
0, () => IdentityDocumentField$
|
|
1350
|
-
];
|
|
1351
|
-
var IdentityDocumentList = [1, n0, _IDL,
|
|
1352
|
-
0, () => IdentityDocument$
|
|
1353
|
-
];
|
|
1354
|
-
var LendingDetectionList = [1, n0, _LDL,
|
|
1355
|
-
0, () => LendingDetection$
|
|
1356
|
-
];
|
|
1357
|
-
var LendingFieldList = [1, n0, _LFL,
|
|
1358
|
-
0, () => LendingField$
|
|
1359
|
-
];
|
|
1360
|
-
var LendingResultList = [1, n0, _LRL,
|
|
1361
|
-
0, () => LendingResult$
|
|
1362
|
-
];
|
|
1363
|
-
var LineItemGroupList = [1, n0, _LIGL,
|
|
1364
|
-
0, () => LineItemGroup$
|
|
1365
|
-
];
|
|
1366
|
-
var LineItemList = [1, n0, _LIL,
|
|
1367
|
-
0, () => LineItemFields$
|
|
1368
|
-
];
|
|
1369
|
-
var Polygon = [1, n0, _Po,
|
|
1370
|
-
0, () => Point$
|
|
1371
|
-
];
|
|
1372
|
-
var PredictionList = [1, n0, _PL,
|
|
1373
|
-
0, () => Prediction$
|
|
1374
|
-
];
|
|
1375
|
-
var Queries = [1, n0, _Qu,
|
|
1376
|
-
0, () => Query$
|
|
1377
|
-
];
|
|
1378
|
-
var RelationshipList = [1, n0, _RL,
|
|
1379
|
-
0, () => Relationship$
|
|
1380
|
-
];
|
|
1381
|
-
var SignatureDetectionList = [1, n0, _SDL,
|
|
1382
|
-
0, () => SignatureDetection$
|
|
1383
|
-
];
|
|
1384
|
-
var SplitDocumentList = [1, n0, _SDLp,
|
|
1385
|
-
0, () => SplitDocument$
|
|
1386
|
-
];
|
|
1387
|
-
var UndetectedSignatureList = [1, n0, _USL,
|
|
1388
|
-
0, () => UndetectedSignature$
|
|
1389
|
-
];
|
|
1390
|
-
var Warnings = [1, n0, _Wa,
|
|
1391
|
-
0, () => Warning$
|
|
1392
|
-
];
|
|
1393
|
-
var AnalyzeDocument$ = [9, n0, _AD,
|
|
1394
|
-
0, () => AnalyzeDocumentRequest$, () => AnalyzeDocumentResponse$
|
|
1395
|
-
];
|
|
1396
|
-
var AnalyzeExpense$ = [9, n0, _AE,
|
|
1397
|
-
0, () => AnalyzeExpenseRequest$, () => AnalyzeExpenseResponse$
|
|
1398
|
-
];
|
|
1399
|
-
var AnalyzeID$ = [9, n0, _AID,
|
|
1400
|
-
0, () => AnalyzeIDRequest$, () => AnalyzeIDResponse$
|
|
1401
|
-
];
|
|
1402
|
-
var CreateAdapter$ = [9, n0, _CA,
|
|
1403
|
-
2, () => CreateAdapterRequest$, () => CreateAdapterResponse$
|
|
1404
|
-
];
|
|
1405
|
-
var CreateAdapterVersion$ = [9, n0, _CAV,
|
|
1406
|
-
2, () => CreateAdapterVersionRequest$, () => CreateAdapterVersionResponse$
|
|
1407
|
-
];
|
|
1408
|
-
var DeleteAdapter$ = [9, n0, _DAe,
|
|
1409
|
-
2, () => DeleteAdapterRequest$, () => DeleteAdapterResponse$
|
|
1410
|
-
];
|
|
1411
|
-
var DeleteAdapterVersion$ = [9, n0, _DAV,
|
|
1412
|
-
2, () => DeleteAdapterVersionRequest$, () => DeleteAdapterVersionResponse$
|
|
1413
|
-
];
|
|
1414
|
-
var DetectDocumentText$ = [9, n0, _DDT,
|
|
1415
|
-
0, () => DetectDocumentTextRequest$, () => DetectDocumentTextResponse$
|
|
1416
|
-
];
|
|
1417
|
-
var GetAdapter$ = [9, n0, _GA,
|
|
1418
|
-
0, () => GetAdapterRequest$, () => GetAdapterResponse$
|
|
1419
|
-
];
|
|
1420
|
-
var GetAdapterVersion$ = [9, n0, _GAV,
|
|
1421
|
-
0, () => GetAdapterVersionRequest$, () => GetAdapterVersionResponse$
|
|
1422
|
-
];
|
|
1423
|
-
var GetDocumentAnalysis$ = [9, n0, _GDA,
|
|
1424
|
-
0, () => GetDocumentAnalysisRequest$, () => GetDocumentAnalysisResponse$
|
|
1425
|
-
];
|
|
1426
|
-
var GetDocumentTextDetection$ = [9, n0, _GDTD,
|
|
1427
|
-
0, () => GetDocumentTextDetectionRequest$, () => GetDocumentTextDetectionResponse$
|
|
1428
|
-
];
|
|
1429
|
-
var GetExpenseAnalysis$ = [9, n0, _GEA,
|
|
1430
|
-
0, () => GetExpenseAnalysisRequest$, () => GetExpenseAnalysisResponse$
|
|
1431
|
-
];
|
|
1432
|
-
var GetLendingAnalysis$ = [9, n0, _GLA,
|
|
1433
|
-
0, () => GetLendingAnalysisRequest$, () => GetLendingAnalysisResponse$
|
|
1434
|
-
];
|
|
1435
|
-
var GetLendingAnalysisSummary$ = [9, n0, _GLAS,
|
|
1436
|
-
0, () => GetLendingAnalysisSummaryRequest$, () => GetLendingAnalysisSummaryResponse$
|
|
1437
|
-
];
|
|
1438
|
-
var ListAdapters$ = [9, n0, _LA,
|
|
1439
|
-
0, () => ListAdaptersRequest$, () => ListAdaptersResponse$
|
|
1440
|
-
];
|
|
1441
|
-
var ListAdapterVersions$ = [9, n0, _LAV,
|
|
1442
|
-
0, () => ListAdapterVersionsRequest$, () => ListAdapterVersionsResponse$
|
|
1443
|
-
];
|
|
1444
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1445
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1446
|
-
];
|
|
1447
|
-
var StartDocumentAnalysis$ = [9, n0, _SDA,
|
|
1448
|
-
0, () => StartDocumentAnalysisRequest$, () => StartDocumentAnalysisResponse$
|
|
1449
|
-
];
|
|
1450
|
-
var StartDocumentTextDetection$ = [9, n0, _SDTD,
|
|
1451
|
-
0, () => StartDocumentTextDetectionRequest$, () => StartDocumentTextDetectionResponse$
|
|
1452
|
-
];
|
|
1453
|
-
var StartExpenseAnalysis$ = [9, n0, _SEA,
|
|
1454
|
-
0, () => StartExpenseAnalysisRequest$, () => StartExpenseAnalysisResponse$
|
|
1455
|
-
];
|
|
1456
|
-
var StartLendingAnalysis$ = [9, n0, _SLA,
|
|
1457
|
-
0, () => StartLendingAnalysisRequest$, () => StartLendingAnalysisResponse$
|
|
1458
|
-
];
|
|
1459
|
-
var TagResource$ = [9, n0, _TR,
|
|
1460
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1461
|
-
];
|
|
1462
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1463
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1464
|
-
];
|
|
1465
|
-
var UpdateAdapter$ = [9, n0, _UA,
|
|
1466
|
-
0, () => UpdateAdapterRequest$, () => UpdateAdapterResponse$
|
|
1467
|
-
];
|
|
1468
|
-
|
|
1469
116
|
class AnalyzeDocumentCommand extends smithyClient.Command
|
|
1470
117
|
.classBuilder()
|
|
1471
118
|
.ep(commonParams)
|
|
@@ -1474,7 +121,7 @@ class AnalyzeDocumentCommand extends smithyClient.Command
|
|
|
1474
121
|
})
|
|
1475
122
|
.s("Textract", "AnalyzeDocument", {})
|
|
1476
123
|
.n("TextractClient", "AnalyzeDocumentCommand")
|
|
1477
|
-
.sc(AnalyzeDocument$)
|
|
124
|
+
.sc(schemas_0.AnalyzeDocument$)
|
|
1478
125
|
.build() {
|
|
1479
126
|
}
|
|
1480
127
|
|
|
@@ -1486,7 +133,7 @@ class AnalyzeExpenseCommand extends smithyClient.Command
|
|
|
1486
133
|
})
|
|
1487
134
|
.s("Textract", "AnalyzeExpense", {})
|
|
1488
135
|
.n("TextractClient", "AnalyzeExpenseCommand")
|
|
1489
|
-
.sc(AnalyzeExpense$)
|
|
136
|
+
.sc(schemas_0.AnalyzeExpense$)
|
|
1490
137
|
.build() {
|
|
1491
138
|
}
|
|
1492
139
|
|
|
@@ -1498,7 +145,7 @@ class AnalyzeIDCommand extends smithyClient.Command
|
|
|
1498
145
|
})
|
|
1499
146
|
.s("Textract", "AnalyzeID", {})
|
|
1500
147
|
.n("TextractClient", "AnalyzeIDCommand")
|
|
1501
|
-
.sc(AnalyzeID$)
|
|
148
|
+
.sc(schemas_0.AnalyzeID$)
|
|
1502
149
|
.build() {
|
|
1503
150
|
}
|
|
1504
151
|
|
|
@@ -1510,7 +157,7 @@ class CreateAdapterCommand extends smithyClient.Command
|
|
|
1510
157
|
})
|
|
1511
158
|
.s("Textract", "CreateAdapter", {})
|
|
1512
159
|
.n("TextractClient", "CreateAdapterCommand")
|
|
1513
|
-
.sc(CreateAdapter$)
|
|
160
|
+
.sc(schemas_0.CreateAdapter$)
|
|
1514
161
|
.build() {
|
|
1515
162
|
}
|
|
1516
163
|
|
|
@@ -1522,7 +169,7 @@ class CreateAdapterVersionCommand extends smithyClient.Command
|
|
|
1522
169
|
})
|
|
1523
170
|
.s("Textract", "CreateAdapterVersion", {})
|
|
1524
171
|
.n("TextractClient", "CreateAdapterVersionCommand")
|
|
1525
|
-
.sc(CreateAdapterVersion$)
|
|
172
|
+
.sc(schemas_0.CreateAdapterVersion$)
|
|
1526
173
|
.build() {
|
|
1527
174
|
}
|
|
1528
175
|
|
|
@@ -1534,7 +181,7 @@ class DeleteAdapterCommand extends smithyClient.Command
|
|
|
1534
181
|
})
|
|
1535
182
|
.s("Textract", "DeleteAdapter", {})
|
|
1536
183
|
.n("TextractClient", "DeleteAdapterCommand")
|
|
1537
|
-
.sc(DeleteAdapter$)
|
|
184
|
+
.sc(schemas_0.DeleteAdapter$)
|
|
1538
185
|
.build() {
|
|
1539
186
|
}
|
|
1540
187
|
|
|
@@ -1546,7 +193,7 @@ class DeleteAdapterVersionCommand extends smithyClient.Command
|
|
|
1546
193
|
})
|
|
1547
194
|
.s("Textract", "DeleteAdapterVersion", {})
|
|
1548
195
|
.n("TextractClient", "DeleteAdapterVersionCommand")
|
|
1549
|
-
.sc(DeleteAdapterVersion$)
|
|
196
|
+
.sc(schemas_0.DeleteAdapterVersion$)
|
|
1550
197
|
.build() {
|
|
1551
198
|
}
|
|
1552
199
|
|
|
@@ -1558,7 +205,7 @@ class DetectDocumentTextCommand extends smithyClient.Command
|
|
|
1558
205
|
})
|
|
1559
206
|
.s("Textract", "DetectDocumentText", {})
|
|
1560
207
|
.n("TextractClient", "DetectDocumentTextCommand")
|
|
1561
|
-
.sc(DetectDocumentText$)
|
|
208
|
+
.sc(schemas_0.DetectDocumentText$)
|
|
1562
209
|
.build() {
|
|
1563
210
|
}
|
|
1564
211
|
|
|
@@ -1570,7 +217,7 @@ class GetAdapterCommand extends smithyClient.Command
|
|
|
1570
217
|
})
|
|
1571
218
|
.s("Textract", "GetAdapter", {})
|
|
1572
219
|
.n("TextractClient", "GetAdapterCommand")
|
|
1573
|
-
.sc(GetAdapter$)
|
|
220
|
+
.sc(schemas_0.GetAdapter$)
|
|
1574
221
|
.build() {
|
|
1575
222
|
}
|
|
1576
223
|
|
|
@@ -1582,7 +229,7 @@ class GetAdapterVersionCommand extends smithyClient.Command
|
|
|
1582
229
|
})
|
|
1583
230
|
.s("Textract", "GetAdapterVersion", {})
|
|
1584
231
|
.n("TextractClient", "GetAdapterVersionCommand")
|
|
1585
|
-
.sc(GetAdapterVersion$)
|
|
232
|
+
.sc(schemas_0.GetAdapterVersion$)
|
|
1586
233
|
.build() {
|
|
1587
234
|
}
|
|
1588
235
|
|
|
@@ -1594,7 +241,7 @@ class GetDocumentAnalysisCommand extends smithyClient.Command
|
|
|
1594
241
|
})
|
|
1595
242
|
.s("Textract", "GetDocumentAnalysis", {})
|
|
1596
243
|
.n("TextractClient", "GetDocumentAnalysisCommand")
|
|
1597
|
-
.sc(GetDocumentAnalysis$)
|
|
244
|
+
.sc(schemas_0.GetDocumentAnalysis$)
|
|
1598
245
|
.build() {
|
|
1599
246
|
}
|
|
1600
247
|
|
|
@@ -1606,7 +253,7 @@ class GetDocumentTextDetectionCommand extends smithyClient.Command
|
|
|
1606
253
|
})
|
|
1607
254
|
.s("Textract", "GetDocumentTextDetection", {})
|
|
1608
255
|
.n("TextractClient", "GetDocumentTextDetectionCommand")
|
|
1609
|
-
.sc(GetDocumentTextDetection$)
|
|
256
|
+
.sc(schemas_0.GetDocumentTextDetection$)
|
|
1610
257
|
.build() {
|
|
1611
258
|
}
|
|
1612
259
|
|
|
@@ -1618,7 +265,7 @@ class GetExpenseAnalysisCommand extends smithyClient.Command
|
|
|
1618
265
|
})
|
|
1619
266
|
.s("Textract", "GetExpenseAnalysis", {})
|
|
1620
267
|
.n("TextractClient", "GetExpenseAnalysisCommand")
|
|
1621
|
-
.sc(GetExpenseAnalysis$)
|
|
268
|
+
.sc(schemas_0.GetExpenseAnalysis$)
|
|
1622
269
|
.build() {
|
|
1623
270
|
}
|
|
1624
271
|
|
|
@@ -1630,7 +277,7 @@ class GetLendingAnalysisCommand extends smithyClient.Command
|
|
|
1630
277
|
})
|
|
1631
278
|
.s("Textract", "GetLendingAnalysis", {})
|
|
1632
279
|
.n("TextractClient", "GetLendingAnalysisCommand")
|
|
1633
|
-
.sc(GetLendingAnalysis$)
|
|
280
|
+
.sc(schemas_0.GetLendingAnalysis$)
|
|
1634
281
|
.build() {
|
|
1635
282
|
}
|
|
1636
283
|
|
|
@@ -1642,7 +289,7 @@ class GetLendingAnalysisSummaryCommand extends smithyClient.Command
|
|
|
1642
289
|
})
|
|
1643
290
|
.s("Textract", "GetLendingAnalysisSummary", {})
|
|
1644
291
|
.n("TextractClient", "GetLendingAnalysisSummaryCommand")
|
|
1645
|
-
.sc(GetLendingAnalysisSummary$)
|
|
292
|
+
.sc(schemas_0.GetLendingAnalysisSummary$)
|
|
1646
293
|
.build() {
|
|
1647
294
|
}
|
|
1648
295
|
|
|
@@ -1654,7 +301,7 @@ class ListAdaptersCommand extends smithyClient.Command
|
|
|
1654
301
|
})
|
|
1655
302
|
.s("Textract", "ListAdapters", {})
|
|
1656
303
|
.n("TextractClient", "ListAdaptersCommand")
|
|
1657
|
-
.sc(ListAdapters$)
|
|
304
|
+
.sc(schemas_0.ListAdapters$)
|
|
1658
305
|
.build() {
|
|
1659
306
|
}
|
|
1660
307
|
|
|
@@ -1666,7 +313,7 @@ class ListAdapterVersionsCommand extends smithyClient.Command
|
|
|
1666
313
|
})
|
|
1667
314
|
.s("Textract", "ListAdapterVersions", {})
|
|
1668
315
|
.n("TextractClient", "ListAdapterVersionsCommand")
|
|
1669
|
-
.sc(ListAdapterVersions$)
|
|
316
|
+
.sc(schemas_0.ListAdapterVersions$)
|
|
1670
317
|
.build() {
|
|
1671
318
|
}
|
|
1672
319
|
|
|
@@ -1678,7 +325,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1678
325
|
})
|
|
1679
326
|
.s("Textract", "ListTagsForResource", {})
|
|
1680
327
|
.n("TextractClient", "ListTagsForResourceCommand")
|
|
1681
|
-
.sc(ListTagsForResource$)
|
|
328
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1682
329
|
.build() {
|
|
1683
330
|
}
|
|
1684
331
|
|
|
@@ -1690,7 +337,7 @@ class StartDocumentAnalysisCommand extends smithyClient.Command
|
|
|
1690
337
|
})
|
|
1691
338
|
.s("Textract", "StartDocumentAnalysis", {})
|
|
1692
339
|
.n("TextractClient", "StartDocumentAnalysisCommand")
|
|
1693
|
-
.sc(StartDocumentAnalysis$)
|
|
340
|
+
.sc(schemas_0.StartDocumentAnalysis$)
|
|
1694
341
|
.build() {
|
|
1695
342
|
}
|
|
1696
343
|
|
|
@@ -1702,7 +349,7 @@ class StartDocumentTextDetectionCommand extends smithyClient.Command
|
|
|
1702
349
|
})
|
|
1703
350
|
.s("Textract", "StartDocumentTextDetection", {})
|
|
1704
351
|
.n("TextractClient", "StartDocumentTextDetectionCommand")
|
|
1705
|
-
.sc(StartDocumentTextDetection$)
|
|
352
|
+
.sc(schemas_0.StartDocumentTextDetection$)
|
|
1706
353
|
.build() {
|
|
1707
354
|
}
|
|
1708
355
|
|
|
@@ -1714,7 +361,7 @@ class StartExpenseAnalysisCommand extends smithyClient.Command
|
|
|
1714
361
|
})
|
|
1715
362
|
.s("Textract", "StartExpenseAnalysis", {})
|
|
1716
363
|
.n("TextractClient", "StartExpenseAnalysisCommand")
|
|
1717
|
-
.sc(StartExpenseAnalysis$)
|
|
364
|
+
.sc(schemas_0.StartExpenseAnalysis$)
|
|
1718
365
|
.build() {
|
|
1719
366
|
}
|
|
1720
367
|
|
|
@@ -1726,7 +373,7 @@ class StartLendingAnalysisCommand extends smithyClient.Command
|
|
|
1726
373
|
})
|
|
1727
374
|
.s("Textract", "StartLendingAnalysis", {})
|
|
1728
375
|
.n("TextractClient", "StartLendingAnalysisCommand")
|
|
1729
|
-
.sc(StartLendingAnalysis$)
|
|
376
|
+
.sc(schemas_0.StartLendingAnalysis$)
|
|
1730
377
|
.build() {
|
|
1731
378
|
}
|
|
1732
379
|
|
|
@@ -1738,7 +385,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1738
385
|
})
|
|
1739
386
|
.s("Textract", "TagResource", {})
|
|
1740
387
|
.n("TextractClient", "TagResourceCommand")
|
|
1741
|
-
.sc(TagResource$)
|
|
388
|
+
.sc(schemas_0.TagResource$)
|
|
1742
389
|
.build() {
|
|
1743
390
|
}
|
|
1744
391
|
|
|
@@ -1750,7 +397,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1750
397
|
})
|
|
1751
398
|
.s("Textract", "UntagResource", {})
|
|
1752
399
|
.n("TextractClient", "UntagResourceCommand")
|
|
1753
|
-
.sc(UntagResource$)
|
|
400
|
+
.sc(schemas_0.UntagResource$)
|
|
1754
401
|
.build() {
|
|
1755
402
|
}
|
|
1756
403
|
|
|
@@ -1762,7 +409,7 @@ class UpdateAdapterCommand extends smithyClient.Command
|
|
|
1762
409
|
})
|
|
1763
410
|
.s("Textract", "UpdateAdapter", {})
|
|
1764
411
|
.n("TextractClient", "UpdateAdapterCommand")
|
|
1765
|
-
.sc(UpdateAdapter$)
|
|
412
|
+
.sc(schemas_0.UpdateAdapter$)
|
|
1766
413
|
.build() {
|
|
1767
414
|
}
|
|
1768
415
|
|
|
@@ -1901,205 +548,59 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1901
548
|
enumerable: true,
|
|
1902
549
|
get: function () { return smithyClient.Client; }
|
|
1903
550
|
});
|
|
1904
|
-
exports
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
exports.AdapterVersionDatasetConfig$ = AdapterVersionDatasetConfig$;
|
|
1909
|
-
exports.AdapterVersionEvaluationMetric$ = AdapterVersionEvaluationMetric$;
|
|
1910
|
-
exports.AdapterVersionOverview$ = AdapterVersionOverview$;
|
|
551
|
+
Object.defineProperty(exports, "TextractServiceException", {
|
|
552
|
+
enumerable: true,
|
|
553
|
+
get: function () { return TextractServiceException.TextractServiceException; }
|
|
554
|
+
});
|
|
1911
555
|
exports.AdapterVersionStatus = AdapterVersionStatus;
|
|
1912
|
-
exports.AdaptersConfig$ = AdaptersConfig$;
|
|
1913
|
-
exports.AnalyzeDocument$ = AnalyzeDocument$;
|
|
1914
556
|
exports.AnalyzeDocumentCommand = AnalyzeDocumentCommand;
|
|
1915
|
-
exports.AnalyzeDocumentRequest$ = AnalyzeDocumentRequest$;
|
|
1916
|
-
exports.AnalyzeDocumentResponse$ = AnalyzeDocumentResponse$;
|
|
1917
|
-
exports.AnalyzeExpense$ = AnalyzeExpense$;
|
|
1918
557
|
exports.AnalyzeExpenseCommand = AnalyzeExpenseCommand;
|
|
1919
|
-
exports.AnalyzeExpenseRequest$ = AnalyzeExpenseRequest$;
|
|
1920
|
-
exports.AnalyzeExpenseResponse$ = AnalyzeExpenseResponse$;
|
|
1921
|
-
exports.AnalyzeID$ = AnalyzeID$;
|
|
1922
558
|
exports.AnalyzeIDCommand = AnalyzeIDCommand;
|
|
1923
|
-
exports.AnalyzeIDDetections$ = AnalyzeIDDetections$;
|
|
1924
|
-
exports.AnalyzeIDRequest$ = AnalyzeIDRequest$;
|
|
1925
|
-
exports.AnalyzeIDResponse$ = AnalyzeIDResponse$;
|
|
1926
559
|
exports.AutoUpdate = AutoUpdate;
|
|
1927
|
-
exports.BadDocumentException = BadDocumentException;
|
|
1928
|
-
exports.BadDocumentException$ = BadDocumentException$;
|
|
1929
|
-
exports.Block$ = Block$;
|
|
1930
560
|
exports.BlockType = BlockType;
|
|
1931
|
-
exports.BoundingBox$ = BoundingBox$;
|
|
1932
|
-
exports.ConflictException = ConflictException;
|
|
1933
|
-
exports.ConflictException$ = ConflictException$;
|
|
1934
561
|
exports.ContentClassifier = ContentClassifier;
|
|
1935
|
-
exports.CreateAdapter$ = CreateAdapter$;
|
|
1936
562
|
exports.CreateAdapterCommand = CreateAdapterCommand;
|
|
1937
|
-
exports.CreateAdapterRequest$ = CreateAdapterRequest$;
|
|
1938
|
-
exports.CreateAdapterResponse$ = CreateAdapterResponse$;
|
|
1939
|
-
exports.CreateAdapterVersion$ = CreateAdapterVersion$;
|
|
1940
563
|
exports.CreateAdapterVersionCommand = CreateAdapterVersionCommand;
|
|
1941
|
-
exports.CreateAdapterVersionRequest$ = CreateAdapterVersionRequest$;
|
|
1942
|
-
exports.CreateAdapterVersionResponse$ = CreateAdapterVersionResponse$;
|
|
1943
|
-
exports.DeleteAdapter$ = DeleteAdapter$;
|
|
1944
564
|
exports.DeleteAdapterCommand = DeleteAdapterCommand;
|
|
1945
|
-
exports.DeleteAdapterRequest$ = DeleteAdapterRequest$;
|
|
1946
|
-
exports.DeleteAdapterResponse$ = DeleteAdapterResponse$;
|
|
1947
|
-
exports.DeleteAdapterVersion$ = DeleteAdapterVersion$;
|
|
1948
565
|
exports.DeleteAdapterVersionCommand = DeleteAdapterVersionCommand;
|
|
1949
|
-
exports.DeleteAdapterVersionRequest$ = DeleteAdapterVersionRequest$;
|
|
1950
|
-
exports.DeleteAdapterVersionResponse$ = DeleteAdapterVersionResponse$;
|
|
1951
|
-
exports.DetectDocumentText$ = DetectDocumentText$;
|
|
1952
566
|
exports.DetectDocumentTextCommand = DetectDocumentTextCommand;
|
|
1953
|
-
exports.DetectDocumentTextRequest$ = DetectDocumentTextRequest$;
|
|
1954
|
-
exports.DetectDocumentTextResponse$ = DetectDocumentTextResponse$;
|
|
1955
|
-
exports.DetectedSignature$ = DetectedSignature$;
|
|
1956
|
-
exports.Document$ = Document$;
|
|
1957
|
-
exports.DocumentGroup$ = DocumentGroup$;
|
|
1958
|
-
exports.DocumentLocation$ = DocumentLocation$;
|
|
1959
|
-
exports.DocumentMetadata$ = DocumentMetadata$;
|
|
1960
|
-
exports.DocumentTooLargeException = DocumentTooLargeException;
|
|
1961
|
-
exports.DocumentTooLargeException$ = DocumentTooLargeException$;
|
|
1962
567
|
exports.EntityType = EntityType;
|
|
1963
|
-
exports.EvaluationMetric$ = EvaluationMetric$;
|
|
1964
|
-
exports.ExpenseCurrency$ = ExpenseCurrency$;
|
|
1965
|
-
exports.ExpenseDetection$ = ExpenseDetection$;
|
|
1966
|
-
exports.ExpenseDocument$ = ExpenseDocument$;
|
|
1967
|
-
exports.ExpenseField$ = ExpenseField$;
|
|
1968
|
-
exports.ExpenseGroupProperty$ = ExpenseGroupProperty$;
|
|
1969
|
-
exports.ExpenseType$ = ExpenseType$;
|
|
1970
|
-
exports.Extraction$ = Extraction$;
|
|
1971
568
|
exports.FeatureType = FeatureType;
|
|
1972
|
-
exports.Geometry$ = Geometry$;
|
|
1973
|
-
exports.GetAdapter$ = GetAdapter$;
|
|
1974
569
|
exports.GetAdapterCommand = GetAdapterCommand;
|
|
1975
|
-
exports.GetAdapterRequest$ = GetAdapterRequest$;
|
|
1976
|
-
exports.GetAdapterResponse$ = GetAdapterResponse$;
|
|
1977
|
-
exports.GetAdapterVersion$ = GetAdapterVersion$;
|
|
1978
570
|
exports.GetAdapterVersionCommand = GetAdapterVersionCommand;
|
|
1979
|
-
exports.GetAdapterVersionRequest$ = GetAdapterVersionRequest$;
|
|
1980
|
-
exports.GetAdapterVersionResponse$ = GetAdapterVersionResponse$;
|
|
1981
|
-
exports.GetDocumentAnalysis$ = GetDocumentAnalysis$;
|
|
1982
571
|
exports.GetDocumentAnalysisCommand = GetDocumentAnalysisCommand;
|
|
1983
|
-
exports.GetDocumentAnalysisRequest$ = GetDocumentAnalysisRequest$;
|
|
1984
|
-
exports.GetDocumentAnalysisResponse$ = GetDocumentAnalysisResponse$;
|
|
1985
|
-
exports.GetDocumentTextDetection$ = GetDocumentTextDetection$;
|
|
1986
572
|
exports.GetDocumentTextDetectionCommand = GetDocumentTextDetectionCommand;
|
|
1987
|
-
exports.GetDocumentTextDetectionRequest$ = GetDocumentTextDetectionRequest$;
|
|
1988
|
-
exports.GetDocumentTextDetectionResponse$ = GetDocumentTextDetectionResponse$;
|
|
1989
|
-
exports.GetExpenseAnalysis$ = GetExpenseAnalysis$;
|
|
1990
573
|
exports.GetExpenseAnalysisCommand = GetExpenseAnalysisCommand;
|
|
1991
|
-
exports.GetExpenseAnalysisRequest$ = GetExpenseAnalysisRequest$;
|
|
1992
|
-
exports.GetExpenseAnalysisResponse$ = GetExpenseAnalysisResponse$;
|
|
1993
|
-
exports.GetLendingAnalysis$ = GetLendingAnalysis$;
|
|
1994
574
|
exports.GetLendingAnalysisCommand = GetLendingAnalysisCommand;
|
|
1995
|
-
exports.GetLendingAnalysisRequest$ = GetLendingAnalysisRequest$;
|
|
1996
|
-
exports.GetLendingAnalysisResponse$ = GetLendingAnalysisResponse$;
|
|
1997
|
-
exports.GetLendingAnalysisSummary$ = GetLendingAnalysisSummary$;
|
|
1998
575
|
exports.GetLendingAnalysisSummaryCommand = GetLendingAnalysisSummaryCommand;
|
|
1999
|
-
exports.GetLendingAnalysisSummaryRequest$ = GetLendingAnalysisSummaryRequest$;
|
|
2000
|
-
exports.GetLendingAnalysisSummaryResponse$ = GetLendingAnalysisSummaryResponse$;
|
|
2001
|
-
exports.HumanLoopActivationOutput$ = HumanLoopActivationOutput$;
|
|
2002
|
-
exports.HumanLoopConfig$ = HumanLoopConfig$;
|
|
2003
|
-
exports.HumanLoopDataAttributes$ = HumanLoopDataAttributes$;
|
|
2004
|
-
exports.HumanLoopQuotaExceededException = HumanLoopQuotaExceededException;
|
|
2005
|
-
exports.HumanLoopQuotaExceededException$ = HumanLoopQuotaExceededException$;
|
|
2006
|
-
exports.IdempotentParameterMismatchException = IdempotentParameterMismatchException;
|
|
2007
|
-
exports.IdempotentParameterMismatchException$ = IdempotentParameterMismatchException$;
|
|
2008
|
-
exports.IdentityDocument$ = IdentityDocument$;
|
|
2009
|
-
exports.IdentityDocumentField$ = IdentityDocumentField$;
|
|
2010
|
-
exports.InternalServerError = InternalServerError;
|
|
2011
|
-
exports.InternalServerError$ = InternalServerError$;
|
|
2012
|
-
exports.InvalidJobIdException = InvalidJobIdException;
|
|
2013
|
-
exports.InvalidJobIdException$ = InvalidJobIdException$;
|
|
2014
|
-
exports.InvalidKMSKeyException = InvalidKMSKeyException;
|
|
2015
|
-
exports.InvalidKMSKeyException$ = InvalidKMSKeyException$;
|
|
2016
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
2017
|
-
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
2018
|
-
exports.InvalidS3ObjectException = InvalidS3ObjectException;
|
|
2019
|
-
exports.InvalidS3ObjectException$ = InvalidS3ObjectException$;
|
|
2020
576
|
exports.JobStatus = JobStatus;
|
|
2021
|
-
exports.LendingDetection$ = LendingDetection$;
|
|
2022
|
-
exports.LendingDocument$ = LendingDocument$;
|
|
2023
|
-
exports.LendingField$ = LendingField$;
|
|
2024
|
-
exports.LendingResult$ = LendingResult$;
|
|
2025
|
-
exports.LendingSummary$ = LendingSummary$;
|
|
2026
|
-
exports.LimitExceededException = LimitExceededException;
|
|
2027
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
2028
|
-
exports.LineItemFields$ = LineItemFields$;
|
|
2029
|
-
exports.LineItemGroup$ = LineItemGroup$;
|
|
2030
|
-
exports.ListAdapterVersions$ = ListAdapterVersions$;
|
|
2031
577
|
exports.ListAdapterVersionsCommand = ListAdapterVersionsCommand;
|
|
2032
|
-
exports.ListAdapterVersionsRequest$ = ListAdapterVersionsRequest$;
|
|
2033
|
-
exports.ListAdapterVersionsResponse$ = ListAdapterVersionsResponse$;
|
|
2034
|
-
exports.ListAdapters$ = ListAdapters$;
|
|
2035
578
|
exports.ListAdaptersCommand = ListAdaptersCommand;
|
|
2036
|
-
exports.ListAdaptersRequest$ = ListAdaptersRequest$;
|
|
2037
|
-
exports.ListAdaptersResponse$ = ListAdaptersResponse$;
|
|
2038
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2039
579
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2040
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2041
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2042
|
-
exports.NormalizedValue$ = NormalizedValue$;
|
|
2043
|
-
exports.NotificationChannel$ = NotificationChannel$;
|
|
2044
|
-
exports.OutputConfig$ = OutputConfig$;
|
|
2045
|
-
exports.PageClassification$ = PageClassification$;
|
|
2046
|
-
exports.Point$ = Point$;
|
|
2047
|
-
exports.Prediction$ = Prediction$;
|
|
2048
|
-
exports.ProvisionedThroughputExceededException = ProvisionedThroughputExceededException;
|
|
2049
|
-
exports.ProvisionedThroughputExceededException$ = ProvisionedThroughputExceededException$;
|
|
2050
|
-
exports.QueriesConfig$ = QueriesConfig$;
|
|
2051
|
-
exports.Query$ = Query$;
|
|
2052
|
-
exports.Relationship$ = Relationship$;
|
|
2053
580
|
exports.RelationshipType = RelationshipType;
|
|
2054
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2055
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2056
|
-
exports.S3Object$ = S3Object$;
|
|
2057
581
|
exports.SelectionStatus = SelectionStatus;
|
|
2058
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2059
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2060
|
-
exports.SignatureDetection$ = SignatureDetection$;
|
|
2061
|
-
exports.SplitDocument$ = SplitDocument$;
|
|
2062
|
-
exports.StartDocumentAnalysis$ = StartDocumentAnalysis$;
|
|
2063
582
|
exports.StartDocumentAnalysisCommand = StartDocumentAnalysisCommand;
|
|
2064
|
-
exports.StartDocumentAnalysisRequest$ = StartDocumentAnalysisRequest$;
|
|
2065
|
-
exports.StartDocumentAnalysisResponse$ = StartDocumentAnalysisResponse$;
|
|
2066
|
-
exports.StartDocumentTextDetection$ = StartDocumentTextDetection$;
|
|
2067
583
|
exports.StartDocumentTextDetectionCommand = StartDocumentTextDetectionCommand;
|
|
2068
|
-
exports.StartDocumentTextDetectionRequest$ = StartDocumentTextDetectionRequest$;
|
|
2069
|
-
exports.StartDocumentTextDetectionResponse$ = StartDocumentTextDetectionResponse$;
|
|
2070
|
-
exports.StartExpenseAnalysis$ = StartExpenseAnalysis$;
|
|
2071
584
|
exports.StartExpenseAnalysisCommand = StartExpenseAnalysisCommand;
|
|
2072
|
-
exports.StartExpenseAnalysisRequest$ = StartExpenseAnalysisRequest$;
|
|
2073
|
-
exports.StartExpenseAnalysisResponse$ = StartExpenseAnalysisResponse$;
|
|
2074
|
-
exports.StartLendingAnalysis$ = StartLendingAnalysis$;
|
|
2075
585
|
exports.StartLendingAnalysisCommand = StartLendingAnalysisCommand;
|
|
2076
|
-
exports.StartLendingAnalysisRequest$ = StartLendingAnalysisRequest$;
|
|
2077
|
-
exports.StartLendingAnalysisResponse$ = StartLendingAnalysisResponse$;
|
|
2078
|
-
exports.TagResource$ = TagResource$;
|
|
2079
586
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2080
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2081
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2082
587
|
exports.TextType = TextType;
|
|
2083
588
|
exports.Textract = Textract;
|
|
2084
589
|
exports.TextractClient = TextractClient;
|
|
2085
|
-
exports.TextractServiceException = TextractServiceException;
|
|
2086
|
-
exports.TextractServiceException$ = TextractServiceException$;
|
|
2087
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2088
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
2089
|
-
exports.UndetectedSignature$ = UndetectedSignature$;
|
|
2090
|
-
exports.UnsupportedDocumentException = UnsupportedDocumentException;
|
|
2091
|
-
exports.UnsupportedDocumentException$ = UnsupportedDocumentException$;
|
|
2092
|
-
exports.UntagResource$ = UntagResource$;
|
|
2093
590
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2094
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2095
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2096
|
-
exports.UpdateAdapter$ = UpdateAdapter$;
|
|
2097
591
|
exports.UpdateAdapterCommand = UpdateAdapterCommand;
|
|
2098
|
-
exports.UpdateAdapterRequest$ = UpdateAdapterRequest$;
|
|
2099
|
-
exports.UpdateAdapterResponse$ = UpdateAdapterResponse$;
|
|
2100
|
-
exports.ValidationException = ValidationException;
|
|
2101
|
-
exports.ValidationException$ = ValidationException$;
|
|
2102
592
|
exports.ValueType = ValueType;
|
|
2103
|
-
exports.Warning$ = Warning$;
|
|
2104
593
|
exports.paginateListAdapterVersions = paginateListAdapterVersions;
|
|
2105
594
|
exports.paginateListAdapters = paginateListAdapters;
|
|
595
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
596
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
597
|
+
enumerable: true,
|
|
598
|
+
get: function () { return schemas_0[k]; }
|
|
599
|
+
});
|
|
600
|
+
});
|
|
601
|
+
Object.keys(errors).forEach(function (k) {
|
|
602
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
603
|
+
enumerable: true,
|
|
604
|
+
get: function () { return errors[k]; }
|
|
605
|
+
});
|
|
606
|
+
});
|