@aws-sdk/client-textract 3.1074.0 → 3.1076.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 +1704 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/TextractServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -295
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1193
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultTextractHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "textract",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultTextractHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1496 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://textract-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://textract-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://textract.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://textract.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class TextractServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, TextractServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends TextractServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
Message;
|
|
143
|
+
Code;
|
|
144
|
+
constructor(opts) {
|
|
145
|
+
super({
|
|
146
|
+
name: "AccessDeniedException",
|
|
147
|
+
$fault: "client",
|
|
148
|
+
...opts,
|
|
149
|
+
});
|
|
150
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
151
|
+
this.Message = opts.Message;
|
|
152
|
+
this.Code = opts.Code;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
class BadDocumentException extends TextractServiceException {
|
|
156
|
+
name = "BadDocumentException";
|
|
157
|
+
$fault = "client";
|
|
158
|
+
Message;
|
|
159
|
+
Code;
|
|
160
|
+
constructor(opts) {
|
|
161
|
+
super({
|
|
162
|
+
name: "BadDocumentException",
|
|
163
|
+
$fault: "client",
|
|
164
|
+
...opts,
|
|
165
|
+
});
|
|
166
|
+
Object.setPrototypeOf(this, BadDocumentException.prototype);
|
|
167
|
+
this.Message = opts.Message;
|
|
168
|
+
this.Code = opts.Code;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
class DocumentTooLargeException extends TextractServiceException {
|
|
172
|
+
name = "DocumentTooLargeException";
|
|
173
|
+
$fault = "client";
|
|
174
|
+
Message;
|
|
175
|
+
Code;
|
|
176
|
+
constructor(opts) {
|
|
177
|
+
super({
|
|
178
|
+
name: "DocumentTooLargeException",
|
|
179
|
+
$fault: "client",
|
|
180
|
+
...opts,
|
|
181
|
+
});
|
|
182
|
+
Object.setPrototypeOf(this, DocumentTooLargeException.prototype);
|
|
183
|
+
this.Message = opts.Message;
|
|
184
|
+
this.Code = opts.Code;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
class HumanLoopQuotaExceededException extends TextractServiceException {
|
|
188
|
+
name = "HumanLoopQuotaExceededException";
|
|
189
|
+
$fault = "client";
|
|
190
|
+
ResourceType;
|
|
191
|
+
QuotaCode;
|
|
192
|
+
ServiceCode;
|
|
193
|
+
Message;
|
|
194
|
+
Code;
|
|
195
|
+
constructor(opts) {
|
|
196
|
+
super({
|
|
197
|
+
name: "HumanLoopQuotaExceededException",
|
|
198
|
+
$fault: "client",
|
|
199
|
+
...opts,
|
|
200
|
+
});
|
|
201
|
+
Object.setPrototypeOf(this, HumanLoopQuotaExceededException.prototype);
|
|
202
|
+
this.ResourceType = opts.ResourceType;
|
|
203
|
+
this.QuotaCode = opts.QuotaCode;
|
|
204
|
+
this.ServiceCode = opts.ServiceCode;
|
|
205
|
+
this.Message = opts.Message;
|
|
206
|
+
this.Code = opts.Code;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
class InternalServerError extends TextractServiceException {
|
|
210
|
+
name = "InternalServerError";
|
|
211
|
+
$fault = "server";
|
|
212
|
+
Message;
|
|
213
|
+
Code;
|
|
214
|
+
constructor(opts) {
|
|
215
|
+
super({
|
|
216
|
+
name: "InternalServerError",
|
|
217
|
+
$fault: "server",
|
|
218
|
+
...opts,
|
|
219
|
+
});
|
|
220
|
+
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
221
|
+
this.Message = opts.Message;
|
|
222
|
+
this.Code = opts.Code;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
class InvalidParameterException extends TextractServiceException {
|
|
226
|
+
name = "InvalidParameterException";
|
|
227
|
+
$fault = "client";
|
|
228
|
+
Message;
|
|
229
|
+
Code;
|
|
230
|
+
constructor(opts) {
|
|
231
|
+
super({
|
|
232
|
+
name: "InvalidParameterException",
|
|
233
|
+
$fault: "client",
|
|
234
|
+
...opts,
|
|
235
|
+
});
|
|
236
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
237
|
+
this.Message = opts.Message;
|
|
238
|
+
this.Code = opts.Code;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
class InvalidS3ObjectException extends TextractServiceException {
|
|
242
|
+
name = "InvalidS3ObjectException";
|
|
243
|
+
$fault = "client";
|
|
244
|
+
Message;
|
|
245
|
+
Code;
|
|
246
|
+
constructor(opts) {
|
|
247
|
+
super({
|
|
248
|
+
name: "InvalidS3ObjectException",
|
|
249
|
+
$fault: "client",
|
|
250
|
+
...opts,
|
|
251
|
+
});
|
|
252
|
+
Object.setPrototypeOf(this, InvalidS3ObjectException.prototype);
|
|
253
|
+
this.Message = opts.Message;
|
|
254
|
+
this.Code = opts.Code;
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
class ProvisionedThroughputExceededException extends TextractServiceException {
|
|
258
|
+
name = "ProvisionedThroughputExceededException";
|
|
259
|
+
$fault = "client";
|
|
260
|
+
Message;
|
|
261
|
+
Code;
|
|
262
|
+
constructor(opts) {
|
|
263
|
+
super({
|
|
264
|
+
name: "ProvisionedThroughputExceededException",
|
|
265
|
+
$fault: "client",
|
|
266
|
+
...opts,
|
|
267
|
+
});
|
|
268
|
+
Object.setPrototypeOf(this, ProvisionedThroughputExceededException.prototype);
|
|
269
|
+
this.Message = opts.Message;
|
|
270
|
+
this.Code = opts.Code;
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
class ThrottlingException extends TextractServiceException {
|
|
274
|
+
name = "ThrottlingException";
|
|
275
|
+
$fault = "server";
|
|
276
|
+
Message;
|
|
277
|
+
Code;
|
|
278
|
+
constructor(opts) {
|
|
279
|
+
super({
|
|
280
|
+
name: "ThrottlingException",
|
|
281
|
+
$fault: "server",
|
|
282
|
+
...opts,
|
|
283
|
+
});
|
|
284
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
285
|
+
this.Message = opts.Message;
|
|
286
|
+
this.Code = opts.Code;
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
class UnsupportedDocumentException extends TextractServiceException {
|
|
290
|
+
name = "UnsupportedDocumentException";
|
|
291
|
+
$fault = "client";
|
|
292
|
+
Message;
|
|
293
|
+
Code;
|
|
294
|
+
constructor(opts) {
|
|
295
|
+
super({
|
|
296
|
+
name: "UnsupportedDocumentException",
|
|
297
|
+
$fault: "client",
|
|
298
|
+
...opts,
|
|
299
|
+
});
|
|
300
|
+
Object.setPrototypeOf(this, UnsupportedDocumentException.prototype);
|
|
301
|
+
this.Message = opts.Message;
|
|
302
|
+
this.Code = opts.Code;
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
class ConflictException extends TextractServiceException {
|
|
306
|
+
name = "ConflictException";
|
|
307
|
+
$fault = "client";
|
|
308
|
+
Message;
|
|
309
|
+
Code;
|
|
310
|
+
constructor(opts) {
|
|
311
|
+
super({
|
|
312
|
+
name: "ConflictException",
|
|
313
|
+
$fault: "client",
|
|
314
|
+
...opts,
|
|
315
|
+
});
|
|
316
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
317
|
+
this.Message = opts.Message;
|
|
318
|
+
this.Code = opts.Code;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
class IdempotentParameterMismatchException extends TextractServiceException {
|
|
322
|
+
name = "IdempotentParameterMismatchException";
|
|
323
|
+
$fault = "client";
|
|
324
|
+
Message;
|
|
325
|
+
Code;
|
|
326
|
+
constructor(opts) {
|
|
327
|
+
super({
|
|
328
|
+
name: "IdempotentParameterMismatchException",
|
|
329
|
+
$fault: "client",
|
|
330
|
+
...opts,
|
|
331
|
+
});
|
|
332
|
+
Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
|
|
333
|
+
this.Message = opts.Message;
|
|
334
|
+
this.Code = opts.Code;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
class LimitExceededException extends TextractServiceException {
|
|
338
|
+
name = "LimitExceededException";
|
|
339
|
+
$fault = "client";
|
|
340
|
+
Message;
|
|
341
|
+
Code;
|
|
342
|
+
constructor(opts) {
|
|
343
|
+
super({
|
|
344
|
+
name: "LimitExceededException",
|
|
345
|
+
$fault: "client",
|
|
346
|
+
...opts,
|
|
347
|
+
});
|
|
348
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
349
|
+
this.Message = opts.Message;
|
|
350
|
+
this.Code = opts.Code;
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
class ServiceQuotaExceededException extends TextractServiceException {
|
|
354
|
+
name = "ServiceQuotaExceededException";
|
|
355
|
+
$fault = "client";
|
|
356
|
+
Message;
|
|
357
|
+
Code;
|
|
358
|
+
constructor(opts) {
|
|
359
|
+
super({
|
|
360
|
+
name: "ServiceQuotaExceededException",
|
|
361
|
+
$fault: "client",
|
|
362
|
+
...opts,
|
|
363
|
+
});
|
|
364
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
365
|
+
this.Message = opts.Message;
|
|
366
|
+
this.Code = opts.Code;
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
class ValidationException extends TextractServiceException {
|
|
370
|
+
name = "ValidationException";
|
|
371
|
+
$fault = "client";
|
|
372
|
+
Message;
|
|
373
|
+
Code;
|
|
374
|
+
constructor(opts) {
|
|
375
|
+
super({
|
|
376
|
+
name: "ValidationException",
|
|
377
|
+
$fault: "client",
|
|
378
|
+
...opts,
|
|
379
|
+
});
|
|
380
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
381
|
+
this.Message = opts.Message;
|
|
382
|
+
this.Code = opts.Code;
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
class InvalidKMSKeyException extends TextractServiceException {
|
|
386
|
+
name = "InvalidKMSKeyException";
|
|
387
|
+
$fault = "client";
|
|
388
|
+
Message;
|
|
389
|
+
Code;
|
|
390
|
+
constructor(opts) {
|
|
391
|
+
super({
|
|
392
|
+
name: "InvalidKMSKeyException",
|
|
393
|
+
$fault: "client",
|
|
394
|
+
...opts,
|
|
395
|
+
});
|
|
396
|
+
Object.setPrototypeOf(this, InvalidKMSKeyException.prototype);
|
|
397
|
+
this.Message = opts.Message;
|
|
398
|
+
this.Code = opts.Code;
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
class ResourceNotFoundException extends TextractServiceException {
|
|
402
|
+
name = "ResourceNotFoundException";
|
|
403
|
+
$fault = "client";
|
|
404
|
+
Message;
|
|
405
|
+
Code;
|
|
406
|
+
constructor(opts) {
|
|
407
|
+
super({
|
|
408
|
+
name: "ResourceNotFoundException",
|
|
409
|
+
$fault: "client",
|
|
410
|
+
...opts,
|
|
411
|
+
});
|
|
412
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
413
|
+
this.Message = opts.Message;
|
|
414
|
+
this.Code = opts.Code;
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
class InvalidJobIdException extends TextractServiceException {
|
|
418
|
+
name = "InvalidJobIdException";
|
|
419
|
+
$fault = "client";
|
|
420
|
+
Message;
|
|
421
|
+
Code;
|
|
422
|
+
constructor(opts) {
|
|
423
|
+
super({
|
|
424
|
+
name: "InvalidJobIdException",
|
|
425
|
+
$fault: "client",
|
|
426
|
+
...opts,
|
|
427
|
+
});
|
|
428
|
+
Object.setPrototypeOf(this, InvalidJobIdException.prototype);
|
|
429
|
+
this.Message = opts.Message;
|
|
430
|
+
this.Code = opts.Code;
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
const _A = "Adapter";
|
|
435
|
+
const _AC = "AdaptersConfig";
|
|
436
|
+
const _ACT = "AfterCreationTime";
|
|
437
|
+
const _AD = "AnalyzeDocument";
|
|
438
|
+
const _ADE = "AccessDeniedException";
|
|
439
|
+
const _ADMV = "AnalyzeDocumentModelVersion";
|
|
440
|
+
const _ADR = "AnalyzeDocumentRequest";
|
|
441
|
+
const _ADRn = "AnalyzeDocumentResponse";
|
|
442
|
+
const _AE = "AnalyzeExpense";
|
|
443
|
+
const _AEMV = "AnalyzeExpenseModelVersion";
|
|
444
|
+
const _AER = "AnalyzeExpenseRequest";
|
|
445
|
+
const _AERn = "AnalyzeExpenseResponse";
|
|
446
|
+
const _AI = "AdapterId";
|
|
447
|
+
const _AID = "AnalyzeID";
|
|
448
|
+
const _AIDD = "AnalyzeIDDetections";
|
|
449
|
+
const _AIDMV = "AnalyzeIDModelVersion";
|
|
450
|
+
const _AIDR = "AnalyzeIDRequest";
|
|
451
|
+
const _AIDRn = "AnalyzeIDResponse";
|
|
452
|
+
const _AL = "AdapterList";
|
|
453
|
+
const _ALMV = "AnalyzeLendingModelVersion";
|
|
454
|
+
const _AN = "AdapterName";
|
|
455
|
+
const _AO = "AdapterOverview";
|
|
456
|
+
const _AU = "AutoUpdate";
|
|
457
|
+
const _AV = "AdapterVersion";
|
|
458
|
+
const _AVDC = "AdapterVersionDatasetConfig";
|
|
459
|
+
const _AVEM = "AdapterVersionEvaluationMetric";
|
|
460
|
+
const _AVEMd = "AdapterVersionEvaluationMetrics";
|
|
461
|
+
const _AVL = "AdapterVersionList";
|
|
462
|
+
const _AVO = "AdapterVersionOverview";
|
|
463
|
+
const _AVd = "AdapterVersions";
|
|
464
|
+
const _Ad = "Adapters";
|
|
465
|
+
const _Al = "Alias";
|
|
466
|
+
const _B = "Baseline";
|
|
467
|
+
const _BB = "BoundingBox";
|
|
468
|
+
const _BCT = "BeforeCreationTime";
|
|
469
|
+
const _BDE = "BadDocumentException";
|
|
470
|
+
const _BL = "BlockList";
|
|
471
|
+
const _BT = "BlockType";
|
|
472
|
+
const _Bl = "Blocks";
|
|
473
|
+
const _Blo = "Block";
|
|
474
|
+
const _Bu = "Bucket";
|
|
475
|
+
const _By = "Bytes";
|
|
476
|
+
const _C = "Code";
|
|
477
|
+
const _CA = "CreateAdapter";
|
|
478
|
+
const _CAR = "CreateAdapterRequest";
|
|
479
|
+
const _CARr = "CreateAdapterResponse";
|
|
480
|
+
const _CAV = "CreateAdapterVersion";
|
|
481
|
+
const _CAVR = "CreateAdapterVersionRequest";
|
|
482
|
+
const _CAVRr = "CreateAdapterVersionResponse";
|
|
483
|
+
const _CC = "ContentClassifiers";
|
|
484
|
+
const _CE = "ConflictException";
|
|
485
|
+
const _CI = "ColumnIndex";
|
|
486
|
+
const _CRT = "ClientRequestToken";
|
|
487
|
+
const _CS = "ColumnSpan";
|
|
488
|
+
const _CT = "CreationTime";
|
|
489
|
+
const _Co = "Confidence";
|
|
490
|
+
const _Cu = "Currency";
|
|
491
|
+
const _D = "Document";
|
|
492
|
+
const _DA = "DataAttributes";
|
|
493
|
+
const _DAR = "DeleteAdapterRequest";
|
|
494
|
+
const _DARe = "DeleteAdapterResponse";
|
|
495
|
+
const _DAV = "DeleteAdapterVersion";
|
|
496
|
+
const _DAVR = "DeleteAdapterVersionRequest";
|
|
497
|
+
const _DAVRe = "DeleteAdapterVersionResponse";
|
|
498
|
+
const _DAe = "DeleteAdapter";
|
|
499
|
+
const _DC = "DatasetConfig";
|
|
500
|
+
const _DDT = "DetectDocumentText";
|
|
501
|
+
const _DDTMV = "DetectDocumentTextModelVersion";
|
|
502
|
+
const _DDTR = "DetectDocumentTextRequest";
|
|
503
|
+
const _DDTRe = "DetectDocumentTextResponse";
|
|
504
|
+
const _DG = "DocumentGroup";
|
|
505
|
+
const _DGL = "DocumentGroupList";
|
|
506
|
+
const _DGo = "DocumentGroups";
|
|
507
|
+
const _DI = "DocumentIndex";
|
|
508
|
+
const _DL = "DocumentLocation";
|
|
509
|
+
const _DM = "DocumentMetadata";
|
|
510
|
+
const _DP = "DocumentPages";
|
|
511
|
+
const _DS = "DetectedSignature";
|
|
512
|
+
const _DSL = "DetectedSignatureList";
|
|
513
|
+
const _DSe = "DetectedSignatures";
|
|
514
|
+
const _DTLE = "DocumentTooLargeException";
|
|
515
|
+
const _De = "Description";
|
|
516
|
+
const _E = "Extraction";
|
|
517
|
+
const _EC = "ExpenseCurrency";
|
|
518
|
+
const _ECr = "ErrorCode";
|
|
519
|
+
const _ED = "ExpenseDocuments";
|
|
520
|
+
const _EDL = "ExpenseDocumentList";
|
|
521
|
+
const _EDx = "ExpenseDetection";
|
|
522
|
+
const _EDxp = "ExpenseDocument";
|
|
523
|
+
const _EF = "ExpenseField";
|
|
524
|
+
const _EFL = "ExpenseFieldList";
|
|
525
|
+
const _EGP = "ExpenseGroupProperty";
|
|
526
|
+
const _EGPL = "ExpenseGroupPropertyList";
|
|
527
|
+
const _EI = "ExpenseIndex";
|
|
528
|
+
const _EL = "ExtractionList";
|
|
529
|
+
const _EM = "EvaluationMetric";
|
|
530
|
+
const _EMv = "EvaluationMetrics";
|
|
531
|
+
const _ET = "EntityTypes";
|
|
532
|
+
const _ETx = "ExpenseType";
|
|
533
|
+
const _Ex = "Extractions";
|
|
534
|
+
const _FDA = "FlowDefinitionArn";
|
|
535
|
+
const _FS = "F1Score";
|
|
536
|
+
const _FT = "FeatureTypes";
|
|
537
|
+
const _FTe = "FeatureType";
|
|
538
|
+
const _G = "Geometry";
|
|
539
|
+
const _GA = "GetAdapter";
|
|
540
|
+
const _GAR = "GetAdapterRequest";
|
|
541
|
+
const _GARe = "GetAdapterResponse";
|
|
542
|
+
const _GAV = "GetAdapterVersion";
|
|
543
|
+
const _GAVR = "GetAdapterVersionRequest";
|
|
544
|
+
const _GAVRe = "GetAdapterVersionResponse";
|
|
545
|
+
const _GDA = "GetDocumentAnalysis";
|
|
546
|
+
const _GDAR = "GetDocumentAnalysisRequest";
|
|
547
|
+
const _GDARe = "GetDocumentAnalysisResponse";
|
|
548
|
+
const _GDTD = "GetDocumentTextDetection";
|
|
549
|
+
const _GDTDR = "GetDocumentTextDetectionRequest";
|
|
550
|
+
const _GDTDRe = "GetDocumentTextDetectionResponse";
|
|
551
|
+
const _GEA = "GetExpenseAnalysis";
|
|
552
|
+
const _GEAR = "GetExpenseAnalysisRequest";
|
|
553
|
+
const _GEARe = "GetExpenseAnalysisResponse";
|
|
554
|
+
const _GLA = "GetLendingAnalysis";
|
|
555
|
+
const _GLAR = "GetLendingAnalysisRequest";
|
|
556
|
+
const _GLARe = "GetLendingAnalysisResponse";
|
|
557
|
+
const _GLAS = "GetLendingAnalysisSummary";
|
|
558
|
+
const _GLASR = "GetLendingAnalysisSummaryRequest";
|
|
559
|
+
const _GLASRe = "GetLendingAnalysisSummaryResponse";
|
|
560
|
+
const _GP = "GroupProperties";
|
|
561
|
+
const _H = "Height";
|
|
562
|
+
const _HLA = "HumanLoopArn";
|
|
563
|
+
const _HLACER = "HumanLoopActivationConditionsEvaluationResults";
|
|
564
|
+
const _HLAO = "HumanLoopActivationOutput";
|
|
565
|
+
const _HLAR = "HumanLoopActivationReasons";
|
|
566
|
+
const _HLC = "HumanLoopConfig";
|
|
567
|
+
const _HLDA = "HumanLoopDataAttributes";
|
|
568
|
+
const _HLN = "HumanLoopName";
|
|
569
|
+
const _HLQEE = "HumanLoopQuotaExceededException";
|
|
570
|
+
const _I = "Id";
|
|
571
|
+
const _ID = "IdentityDocuments";
|
|
572
|
+
const _IDF = "IdentityDocumentFields";
|
|
573
|
+
const _IDFL = "IdentityDocumentFieldList";
|
|
574
|
+
const _IDFd = "IdentityDocumentField";
|
|
575
|
+
const _IDL = "IdentityDocumentList";
|
|
576
|
+
const _IDd = "IdentityDocument";
|
|
577
|
+
const _IJIE = "InvalidJobIdException";
|
|
578
|
+
const _IKMSKE = "InvalidKMSKeyException";
|
|
579
|
+
const _IPE = "InvalidParameterException";
|
|
580
|
+
const _IPME = "IdempotentParameterMismatchException";
|
|
581
|
+
const _ISE = "InternalServerError";
|
|
582
|
+
const _ISOE = "InvalidS3ObjectException";
|
|
583
|
+
const _Id = "Ids";
|
|
584
|
+
const _In = "Index";
|
|
585
|
+
const _JI = "JobId";
|
|
586
|
+
const _JS = "JobStatus";
|
|
587
|
+
const _JT = "JobTag";
|
|
588
|
+
const _KD = "KeyDetection";
|
|
589
|
+
const _KMSKI = "KMSKeyId";
|
|
590
|
+
const _L = "Left";
|
|
591
|
+
const _LA = "ListAdapters";
|
|
592
|
+
const _LAR = "ListAdaptersRequest";
|
|
593
|
+
const _LARi = "ListAdaptersResponse";
|
|
594
|
+
const _LAV = "ListAdapterVersions";
|
|
595
|
+
const _LAVR = "ListAdapterVersionsRequest";
|
|
596
|
+
const _LAVRi = "ListAdapterVersionsResponse";
|
|
597
|
+
const _LD = "LabelDetection";
|
|
598
|
+
const _LDL = "LendingDetectionList";
|
|
599
|
+
const _LDe = "LendingDocument";
|
|
600
|
+
const _LDen = "LendingDetection";
|
|
601
|
+
const _LEE = "LimitExceededException";
|
|
602
|
+
const _LF = "LendingFields";
|
|
603
|
+
const _LFL = "LendingFieldList";
|
|
604
|
+
const _LFe = "LendingField";
|
|
605
|
+
const _LI = "LineItems";
|
|
606
|
+
const _LIEF = "LineItemExpenseFields";
|
|
607
|
+
const _LIF = "LineItemFields";
|
|
608
|
+
const _LIG = "LineItemGroups";
|
|
609
|
+
const _LIGI = "LineItemGroupIndex";
|
|
610
|
+
const _LIGL = "LineItemGroupList";
|
|
611
|
+
const _LIGi = "LineItemGroup";
|
|
612
|
+
const _LIL = "LineItemList";
|
|
613
|
+
const _LR = "LendingResult";
|
|
614
|
+
const _LRL = "LendingResultList";
|
|
615
|
+
const _LS = "LendingSummary";
|
|
616
|
+
const _LTFR = "ListTagsForResource";
|
|
617
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
618
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
619
|
+
const _M = "Message";
|
|
620
|
+
const _MR = "MaxResults";
|
|
621
|
+
const _MSO = "ManifestS3Object";
|
|
622
|
+
const _N = "Name";
|
|
623
|
+
const _NC = "NotificationChannel";
|
|
624
|
+
const _NT = "NextToken";
|
|
625
|
+
const _NV = "NormalizedValue";
|
|
626
|
+
const _OC = "OutputConfig";
|
|
627
|
+
const _P = "Pages";
|
|
628
|
+
const _PC = "PageClassification";
|
|
629
|
+
const _PL = "PredictionList";
|
|
630
|
+
const _PN = "PageNumber";
|
|
631
|
+
const _PT = "PageType";
|
|
632
|
+
const _PTEE = "ProvisionedThroughputExceededException";
|
|
633
|
+
const _Pa = "Page";
|
|
634
|
+
const _Po = "Polygon";
|
|
635
|
+
const _Poi = "Point";
|
|
636
|
+
const _Pr = "Precision";
|
|
637
|
+
const _Pre = "Prediction";
|
|
638
|
+
const _Q = "Query";
|
|
639
|
+
const _QC = "QuotaCode";
|
|
640
|
+
const _QCu = "QueriesConfig";
|
|
641
|
+
const _Qu = "Queries";
|
|
642
|
+
const _R = "Relationships";
|
|
643
|
+
const _RA = "RotationAngle";
|
|
644
|
+
const _RARN = "ResourceARN";
|
|
645
|
+
const _RAo = "RoleArn";
|
|
646
|
+
const _RI = "RowIndex";
|
|
647
|
+
const _RL = "RelationshipList";
|
|
648
|
+
const _RNFE = "ResourceNotFoundException";
|
|
649
|
+
const _RS = "RowSpan";
|
|
650
|
+
const _RT = "ResourceType";
|
|
651
|
+
const _Re = "Recall";
|
|
652
|
+
const _Rel = "Relationship";
|
|
653
|
+
const _Res = "Results";
|
|
654
|
+
const _S = "Status";
|
|
655
|
+
const _SB = "S3Bucket";
|
|
656
|
+
const _SC = "ServiceCode";
|
|
657
|
+
const _SD = "SplitDocuments";
|
|
658
|
+
const _SDA = "StartDocumentAnalysis";
|
|
659
|
+
const _SDAR = "StartDocumentAnalysisRequest";
|
|
660
|
+
const _SDARt = "StartDocumentAnalysisResponse";
|
|
661
|
+
const _SDL = "SignatureDetectionList";
|
|
662
|
+
const _SDLp = "SplitDocumentList";
|
|
663
|
+
const _SDTD = "StartDocumentTextDetection";
|
|
664
|
+
const _SDTDR = "StartDocumentTextDetectionRequest";
|
|
665
|
+
const _SDTDRt = "StartDocumentTextDetectionResponse";
|
|
666
|
+
const _SDi = "SignatureDetections";
|
|
667
|
+
const _SDig = "SignatureDetection";
|
|
668
|
+
const _SDp = "SplitDocument";
|
|
669
|
+
const _SEA = "StartExpenseAnalysis";
|
|
670
|
+
const _SEAR = "StartExpenseAnalysisRequest";
|
|
671
|
+
const _SEARt = "StartExpenseAnalysisResponse";
|
|
672
|
+
const _SF = "SummaryFields";
|
|
673
|
+
const _SJHLACER = "SynthesizedJsonHumanLoopActivationConditionsEvaluationResults";
|
|
674
|
+
const _SLA = "StartLendingAnalysis";
|
|
675
|
+
const _SLAR = "StartLendingAnalysisRequest";
|
|
676
|
+
const _SLARt = "StartLendingAnalysisResponse";
|
|
677
|
+
const _SM = "StatusMessage";
|
|
678
|
+
const _SNSTA = "SNSTopicArn";
|
|
679
|
+
const _SO = "S3Object";
|
|
680
|
+
const _SP = "S3Prefix";
|
|
681
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
682
|
+
const _SS = "SelectionStatus";
|
|
683
|
+
const _Su = "Summary";
|
|
684
|
+
const _T = "Text";
|
|
685
|
+
const _TE = "ThrottlingException";
|
|
686
|
+
const _TK = "TagKeys";
|
|
687
|
+
const _TR = "TagResource";
|
|
688
|
+
const _TRR = "TagResourceRequest";
|
|
689
|
+
const _TRRa = "TagResourceResponse";
|
|
690
|
+
const _TT = "TextType";
|
|
691
|
+
const _Ta = "Tags";
|
|
692
|
+
const _To = "Top";
|
|
693
|
+
const _Ty = "Type";
|
|
694
|
+
const _Typ = "Types";
|
|
695
|
+
const _UA = "UpdateAdapter";
|
|
696
|
+
const _UAR = "UpdateAdapterRequest";
|
|
697
|
+
const _UARp = "UpdateAdapterResponse";
|
|
698
|
+
const _UDE = "UnsupportedDocumentException";
|
|
699
|
+
const _UDT = "UndetectedDocumentTypes";
|
|
700
|
+
const _UR = "UntagResource";
|
|
701
|
+
const _URR = "UntagResourceRequest";
|
|
702
|
+
const _URRn = "UntagResourceResponse";
|
|
703
|
+
const _US = "UndetectedSignatures";
|
|
704
|
+
const _USL = "UndetectedSignatureList";
|
|
705
|
+
const _USn = "UndetectedSignature";
|
|
706
|
+
const _V = "Version";
|
|
707
|
+
const _VD = "ValueDetection";
|
|
708
|
+
const _VDa = "ValueDetections";
|
|
709
|
+
const _VE = "ValidationException";
|
|
710
|
+
const _VT = "ValueType";
|
|
711
|
+
const _Va = "Value";
|
|
712
|
+
const _W = "Width";
|
|
713
|
+
const _Wa = "Warnings";
|
|
714
|
+
const _War = "Warning";
|
|
715
|
+
const _X = "X";
|
|
716
|
+
const _Y = "Y";
|
|
717
|
+
const _a = "application/json";
|
|
718
|
+
const _c = "client";
|
|
719
|
+
const _e = "error";
|
|
720
|
+
const _hE = "httpError";
|
|
721
|
+
const _mT = "mediaType";
|
|
722
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.textract";
|
|
723
|
+
const _se = "server";
|
|
724
|
+
const n0 = "com.amazonaws.textract";
|
|
725
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
726
|
+
var TextractServiceException$ = [-3, _s, "TextractServiceException", 0, [], []];
|
|
727
|
+
_s_registry.registerError(TextractServiceException$, TextractServiceException);
|
|
728
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
729
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
730
|
+
{ [_e]: _c },
|
|
731
|
+
[_M, _C],
|
|
732
|
+
[0, 0]
|
|
733
|
+
];
|
|
734
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
735
|
+
var BadDocumentException$ = [-3, n0, _BDE,
|
|
736
|
+
{ [_e]: _c },
|
|
737
|
+
[_M, _C],
|
|
738
|
+
[0, 0]
|
|
739
|
+
];
|
|
740
|
+
n0_registry.registerError(BadDocumentException$, BadDocumentException);
|
|
741
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
742
|
+
{ [_e]: _c },
|
|
743
|
+
[_M, _C],
|
|
744
|
+
[0, 0]
|
|
745
|
+
];
|
|
746
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
747
|
+
var DocumentTooLargeException$ = [-3, n0, _DTLE,
|
|
748
|
+
{ [_e]: _c },
|
|
749
|
+
[_M, _C],
|
|
750
|
+
[0, 0]
|
|
751
|
+
];
|
|
752
|
+
n0_registry.registerError(DocumentTooLargeException$, DocumentTooLargeException);
|
|
753
|
+
var HumanLoopQuotaExceededException$ = [-3, n0, _HLQEE,
|
|
754
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
755
|
+
[_RT, _QC, _SC, _M, _C],
|
|
756
|
+
[0, 0, 0, 0, 0]
|
|
757
|
+
];
|
|
758
|
+
n0_registry.registerError(HumanLoopQuotaExceededException$, HumanLoopQuotaExceededException);
|
|
759
|
+
var IdempotentParameterMismatchException$ = [-3, n0, _IPME,
|
|
760
|
+
{ [_e]: _c },
|
|
761
|
+
[_M, _C],
|
|
762
|
+
[0, 0]
|
|
763
|
+
];
|
|
764
|
+
n0_registry.registerError(IdempotentParameterMismatchException$, IdempotentParameterMismatchException);
|
|
765
|
+
var InternalServerError$ = [-3, n0, _ISE,
|
|
766
|
+
{ [_e]: _se },
|
|
767
|
+
[_M, _C],
|
|
768
|
+
[0, 0]
|
|
769
|
+
];
|
|
770
|
+
n0_registry.registerError(InternalServerError$, InternalServerError);
|
|
771
|
+
var InvalidJobIdException$ = [-3, n0, _IJIE,
|
|
772
|
+
{ [_e]: _c },
|
|
773
|
+
[_M, _C],
|
|
774
|
+
[0, 0]
|
|
775
|
+
];
|
|
776
|
+
n0_registry.registerError(InvalidJobIdException$, InvalidJobIdException);
|
|
777
|
+
var InvalidKMSKeyException$ = [-3, n0, _IKMSKE,
|
|
778
|
+
{ [_e]: _c },
|
|
779
|
+
[_M, _C],
|
|
780
|
+
[0, 0]
|
|
781
|
+
];
|
|
782
|
+
n0_registry.registerError(InvalidKMSKeyException$, InvalidKMSKeyException);
|
|
783
|
+
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
784
|
+
{ [_e]: _c },
|
|
785
|
+
[_M, _C],
|
|
786
|
+
[0, 0]
|
|
787
|
+
];
|
|
788
|
+
n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
|
|
789
|
+
var InvalidS3ObjectException$ = [-3, n0, _ISOE,
|
|
790
|
+
{ [_e]: _c },
|
|
791
|
+
[_M, _C],
|
|
792
|
+
[0, 0]
|
|
793
|
+
];
|
|
794
|
+
n0_registry.registerError(InvalidS3ObjectException$, InvalidS3ObjectException);
|
|
795
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
796
|
+
{ [_e]: _c },
|
|
797
|
+
[_M, _C],
|
|
798
|
+
[0, 0]
|
|
799
|
+
];
|
|
800
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
801
|
+
var ProvisionedThroughputExceededException$ = [-3, n0, _PTEE,
|
|
802
|
+
{ [_e]: _c },
|
|
803
|
+
[_M, _C],
|
|
804
|
+
[0, 0]
|
|
805
|
+
];
|
|
806
|
+
n0_registry.registerError(ProvisionedThroughputExceededException$, ProvisionedThroughputExceededException);
|
|
807
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
808
|
+
{ [_e]: _c },
|
|
809
|
+
[_M, _C],
|
|
810
|
+
[0, 0]
|
|
811
|
+
];
|
|
812
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
813
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
814
|
+
{ [_e]: _c },
|
|
815
|
+
[_M, _C],
|
|
816
|
+
[0, 0]
|
|
817
|
+
];
|
|
818
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
819
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
820
|
+
{ [_e]: _se },
|
|
821
|
+
[_M, _C],
|
|
822
|
+
[0, 0]
|
|
823
|
+
];
|
|
824
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
825
|
+
var UnsupportedDocumentException$ = [-3, n0, _UDE,
|
|
826
|
+
{ [_e]: _c },
|
|
827
|
+
[_M, _C],
|
|
828
|
+
[0, 0]
|
|
829
|
+
];
|
|
830
|
+
n0_registry.registerError(UnsupportedDocumentException$, UnsupportedDocumentException);
|
|
831
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
832
|
+
{ [_e]: _c },
|
|
833
|
+
[_M, _C],
|
|
834
|
+
[0, 0]
|
|
835
|
+
];
|
|
836
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
837
|
+
const errorTypeRegistries = [
|
|
838
|
+
_s_registry,
|
|
839
|
+
n0_registry,
|
|
840
|
+
];
|
|
841
|
+
var SynthesizedJsonHumanLoopActivationConditionsEvaluationResults = [0, n0, _SJHLACER, { [_mT]: _a }, 0];
|
|
842
|
+
var Adapter$ = [3, n0, _A,
|
|
843
|
+
0,
|
|
844
|
+
[_AI, _V, _P],
|
|
845
|
+
[0, 0, 64 | 0], 2
|
|
846
|
+
];
|
|
847
|
+
var AdapterOverview$ = [3, n0, _AO,
|
|
848
|
+
0,
|
|
849
|
+
[_AI, _AN, _CT, _FT],
|
|
850
|
+
[0, 0, 4, 64 | 0]
|
|
851
|
+
];
|
|
852
|
+
var AdaptersConfig$ = [3, n0, _AC,
|
|
853
|
+
0,
|
|
854
|
+
[_Ad],
|
|
855
|
+
[() => Adapters], 1
|
|
856
|
+
];
|
|
857
|
+
var AdapterVersionDatasetConfig$ = [3, n0, _AVDC,
|
|
858
|
+
0,
|
|
859
|
+
[_MSO],
|
|
860
|
+
[() => S3Object$]
|
|
861
|
+
];
|
|
862
|
+
var AdapterVersionEvaluationMetric$ = [3, n0, _AVEM,
|
|
863
|
+
0,
|
|
864
|
+
[_B, _AV, _FTe],
|
|
865
|
+
[() => EvaluationMetric$, () => EvaluationMetric$, 0]
|
|
866
|
+
];
|
|
867
|
+
var AdapterVersionOverview$ = [3, n0, _AVO,
|
|
868
|
+
0,
|
|
869
|
+
[_AI, _AV, _CT, _FT, _S, _SM],
|
|
870
|
+
[0, 0, 4, 64 | 0, 0, 0]
|
|
871
|
+
];
|
|
872
|
+
var AnalyzeDocumentRequest$ = [3, n0, _ADR,
|
|
873
|
+
0,
|
|
874
|
+
[_D, _FT, _HLC, _QCu, _AC],
|
|
875
|
+
[() => Document$, 64 | 0, () => HumanLoopConfig$, () => QueriesConfig$, () => AdaptersConfig$], 2
|
|
876
|
+
];
|
|
877
|
+
var AnalyzeDocumentResponse$ = [3, n0, _ADRn,
|
|
878
|
+
0,
|
|
879
|
+
[_DM, _Bl, _HLAO, _ADMV],
|
|
880
|
+
[() => DocumentMetadata$, () => BlockList, [() => HumanLoopActivationOutput$, 0], 0]
|
|
881
|
+
];
|
|
882
|
+
var AnalyzeExpenseRequest$ = [3, n0, _AER,
|
|
883
|
+
0,
|
|
884
|
+
[_D],
|
|
885
|
+
[() => Document$], 1
|
|
886
|
+
];
|
|
887
|
+
var AnalyzeExpenseResponse$ = [3, n0, _AERn,
|
|
888
|
+
0,
|
|
889
|
+
[_DM, _ED],
|
|
890
|
+
[() => DocumentMetadata$, () => ExpenseDocumentList]
|
|
891
|
+
];
|
|
892
|
+
var AnalyzeIDDetections$ = [3, n0, _AIDD,
|
|
893
|
+
0,
|
|
894
|
+
[_T, _NV, _Co],
|
|
895
|
+
[0, () => NormalizedValue$, 1], 1
|
|
896
|
+
];
|
|
897
|
+
var AnalyzeIDRequest$ = [3, n0, _AIDR,
|
|
898
|
+
0,
|
|
899
|
+
[_DP],
|
|
900
|
+
[() => DocumentPages], 1
|
|
901
|
+
];
|
|
902
|
+
var AnalyzeIDResponse$ = [3, n0, _AIDRn,
|
|
903
|
+
0,
|
|
904
|
+
[_ID, _DM, _AIDMV],
|
|
905
|
+
[() => IdentityDocumentList, () => DocumentMetadata$, 0]
|
|
906
|
+
];
|
|
907
|
+
var Block$ = [3, n0, _Blo,
|
|
908
|
+
0,
|
|
909
|
+
[_BT, _Co, _T, _TT, _RI, _CI, _RS, _CS, _G, _I, _R, _ET, _SS, _Pa, _Q],
|
|
910
|
+
[0, 1, 0, 0, 1, 1, 1, 1, () => Geometry$, 0, () => RelationshipList, 64 | 0, 0, 1, () => Query$]
|
|
911
|
+
];
|
|
912
|
+
var BoundingBox$ = [3, n0, _BB,
|
|
913
|
+
0,
|
|
914
|
+
[_W, _H, _L, _To],
|
|
915
|
+
[1, 1, 1, 1]
|
|
916
|
+
];
|
|
917
|
+
var CreateAdapterRequest$ = [3, n0, _CAR,
|
|
918
|
+
0,
|
|
919
|
+
[_AN, _FT, _CRT, _De, _AU, _Ta],
|
|
920
|
+
[0, 64 | 0, [0, 4], 0, 0, 128 | 0], 2
|
|
921
|
+
];
|
|
922
|
+
var CreateAdapterResponse$ = [3, n0, _CARr,
|
|
923
|
+
0,
|
|
924
|
+
[_AI],
|
|
925
|
+
[0]
|
|
926
|
+
];
|
|
927
|
+
var CreateAdapterVersionRequest$ = [3, n0, _CAVR,
|
|
928
|
+
0,
|
|
929
|
+
[_AI, _DC, _OC, _CRT, _KMSKI, _Ta],
|
|
930
|
+
[0, () => AdapterVersionDatasetConfig$, () => OutputConfig$, [0, 4], 0, 128 | 0], 3
|
|
931
|
+
];
|
|
932
|
+
var CreateAdapterVersionResponse$ = [3, n0, _CAVRr,
|
|
933
|
+
0,
|
|
934
|
+
[_AI, _AV],
|
|
935
|
+
[0, 0]
|
|
936
|
+
];
|
|
937
|
+
var DeleteAdapterRequest$ = [3, n0, _DAR,
|
|
938
|
+
0,
|
|
939
|
+
[_AI],
|
|
940
|
+
[0], 1
|
|
941
|
+
];
|
|
942
|
+
var DeleteAdapterResponse$ = [3, n0, _DARe,
|
|
943
|
+
0,
|
|
944
|
+
[],
|
|
945
|
+
[]
|
|
946
|
+
];
|
|
947
|
+
var DeleteAdapterVersionRequest$ = [3, n0, _DAVR,
|
|
948
|
+
0,
|
|
949
|
+
[_AI, _AV],
|
|
950
|
+
[0, 0], 2
|
|
951
|
+
];
|
|
952
|
+
var DeleteAdapterVersionResponse$ = [3, n0, _DAVRe,
|
|
953
|
+
0,
|
|
954
|
+
[],
|
|
955
|
+
[]
|
|
956
|
+
];
|
|
957
|
+
var DetectDocumentTextRequest$ = [3, n0, _DDTR,
|
|
958
|
+
0,
|
|
959
|
+
[_D],
|
|
960
|
+
[() => Document$], 1
|
|
961
|
+
];
|
|
962
|
+
var DetectDocumentTextResponse$ = [3, n0, _DDTRe,
|
|
963
|
+
0,
|
|
964
|
+
[_DM, _Bl, _DDTMV],
|
|
965
|
+
[() => DocumentMetadata$, () => BlockList, 0]
|
|
966
|
+
];
|
|
967
|
+
var DetectedSignature$ = [3, n0, _DS,
|
|
968
|
+
0,
|
|
969
|
+
[_Pa],
|
|
970
|
+
[1]
|
|
971
|
+
];
|
|
972
|
+
var Document$ = [3, n0, _D,
|
|
973
|
+
0,
|
|
974
|
+
[_By, _SO],
|
|
975
|
+
[21, () => S3Object$]
|
|
976
|
+
];
|
|
977
|
+
var DocumentGroup$ = [3, n0, _DG,
|
|
978
|
+
0,
|
|
979
|
+
[_Ty, _SD, _DSe, _US],
|
|
980
|
+
[0, () => SplitDocumentList, () => DetectedSignatureList, () => UndetectedSignatureList]
|
|
981
|
+
];
|
|
982
|
+
var DocumentLocation$ = [3, n0, _DL,
|
|
983
|
+
0,
|
|
984
|
+
[_SO],
|
|
985
|
+
[() => S3Object$]
|
|
986
|
+
];
|
|
987
|
+
var DocumentMetadata$ = [3, n0, _DM,
|
|
988
|
+
0,
|
|
989
|
+
[_P],
|
|
990
|
+
[1]
|
|
991
|
+
];
|
|
992
|
+
var EvaluationMetric$ = [3, n0, _EM,
|
|
993
|
+
0,
|
|
994
|
+
[_FS, _Pr, _Re],
|
|
995
|
+
[1, 1, 1]
|
|
996
|
+
];
|
|
997
|
+
var ExpenseCurrency$ = [3, n0, _EC,
|
|
998
|
+
0,
|
|
999
|
+
[_C, _Co],
|
|
1000
|
+
[0, 1]
|
|
1001
|
+
];
|
|
1002
|
+
var ExpenseDetection$ = [3, n0, _EDx,
|
|
1003
|
+
0,
|
|
1004
|
+
[_T, _G, _Co],
|
|
1005
|
+
[0, () => Geometry$, 1]
|
|
1006
|
+
];
|
|
1007
|
+
var ExpenseDocument$ = [3, n0, _EDxp,
|
|
1008
|
+
0,
|
|
1009
|
+
[_EI, _SF, _LIG, _Bl],
|
|
1010
|
+
[1, () => ExpenseFieldList, () => LineItemGroupList, () => BlockList]
|
|
1011
|
+
];
|
|
1012
|
+
var ExpenseField$ = [3, n0, _EF,
|
|
1013
|
+
0,
|
|
1014
|
+
[_Ty, _LD, _VD, _PN, _Cu, _GP],
|
|
1015
|
+
[() => ExpenseType$, () => ExpenseDetection$, () => ExpenseDetection$, 1, () => ExpenseCurrency$, () => ExpenseGroupPropertyList]
|
|
1016
|
+
];
|
|
1017
|
+
var ExpenseGroupProperty$ = [3, n0, _EGP,
|
|
1018
|
+
0,
|
|
1019
|
+
[_Typ, _I],
|
|
1020
|
+
[64 | 0, 0]
|
|
1021
|
+
];
|
|
1022
|
+
var ExpenseType$ = [3, n0, _ETx,
|
|
1023
|
+
0,
|
|
1024
|
+
[_T, _Co],
|
|
1025
|
+
[0, 1]
|
|
1026
|
+
];
|
|
1027
|
+
var Extraction$ = [3, n0, _E,
|
|
1028
|
+
0,
|
|
1029
|
+
[_LDe, _EDxp, _IDd],
|
|
1030
|
+
[() => LendingDocument$, () => ExpenseDocument$, () => IdentityDocument$]
|
|
1031
|
+
];
|
|
1032
|
+
var Geometry$ = [3, n0, _G,
|
|
1033
|
+
0,
|
|
1034
|
+
[_BB, _Po, _RA],
|
|
1035
|
+
[() => BoundingBox$, () => Polygon, 1]
|
|
1036
|
+
];
|
|
1037
|
+
var GetAdapterRequest$ = [3, n0, _GAR,
|
|
1038
|
+
0,
|
|
1039
|
+
[_AI],
|
|
1040
|
+
[0], 1
|
|
1041
|
+
];
|
|
1042
|
+
var GetAdapterResponse$ = [3, n0, _GARe,
|
|
1043
|
+
0,
|
|
1044
|
+
[_AI, _AN, _CT, _De, _FT, _AU, _Ta],
|
|
1045
|
+
[0, 0, 4, 0, 64 | 0, 0, 128 | 0]
|
|
1046
|
+
];
|
|
1047
|
+
var GetAdapterVersionRequest$ = [3, n0, _GAVR,
|
|
1048
|
+
0,
|
|
1049
|
+
[_AI, _AV],
|
|
1050
|
+
[0, 0], 2
|
|
1051
|
+
];
|
|
1052
|
+
var GetAdapterVersionResponse$ = [3, n0, _GAVRe,
|
|
1053
|
+
0,
|
|
1054
|
+
[_AI, _AV, _CT, _FT, _S, _SM, _DC, _KMSKI, _OC, _EMv, _Ta],
|
|
1055
|
+
[0, 0, 4, 64 | 0, 0, 0, () => AdapterVersionDatasetConfig$, 0, () => OutputConfig$, () => AdapterVersionEvaluationMetrics, 128 | 0]
|
|
1056
|
+
];
|
|
1057
|
+
var GetDocumentAnalysisRequest$ = [3, n0, _GDAR,
|
|
1058
|
+
0,
|
|
1059
|
+
[_JI, _MR, _NT],
|
|
1060
|
+
[0, 1, 0], 1
|
|
1061
|
+
];
|
|
1062
|
+
var GetDocumentAnalysisResponse$ = [3, n0, _GDARe,
|
|
1063
|
+
0,
|
|
1064
|
+
[_DM, _JS, _NT, _Bl, _Wa, _SM, _ADMV],
|
|
1065
|
+
[() => DocumentMetadata$, 0, 0, () => BlockList, () => Warnings, 0, 0]
|
|
1066
|
+
];
|
|
1067
|
+
var GetDocumentTextDetectionRequest$ = [3, n0, _GDTDR,
|
|
1068
|
+
0,
|
|
1069
|
+
[_JI, _MR, _NT],
|
|
1070
|
+
[0, 1, 0], 1
|
|
1071
|
+
];
|
|
1072
|
+
var GetDocumentTextDetectionResponse$ = [3, n0, _GDTDRe,
|
|
1073
|
+
0,
|
|
1074
|
+
[_DM, _JS, _NT, _Bl, _Wa, _SM, _DDTMV],
|
|
1075
|
+
[() => DocumentMetadata$, 0, 0, () => BlockList, () => Warnings, 0, 0]
|
|
1076
|
+
];
|
|
1077
|
+
var GetExpenseAnalysisRequest$ = [3, n0, _GEAR,
|
|
1078
|
+
0,
|
|
1079
|
+
[_JI, _MR, _NT],
|
|
1080
|
+
[0, 1, 0], 1
|
|
1081
|
+
];
|
|
1082
|
+
var GetExpenseAnalysisResponse$ = [3, n0, _GEARe,
|
|
1083
|
+
0,
|
|
1084
|
+
[_DM, _JS, _NT, _ED, _Wa, _SM, _AEMV],
|
|
1085
|
+
[() => DocumentMetadata$, 0, 0, () => ExpenseDocumentList, () => Warnings, 0, 0]
|
|
1086
|
+
];
|
|
1087
|
+
var GetLendingAnalysisRequest$ = [3, n0, _GLAR,
|
|
1088
|
+
0,
|
|
1089
|
+
[_JI, _MR, _NT],
|
|
1090
|
+
[0, 1, 0], 1
|
|
1091
|
+
];
|
|
1092
|
+
var GetLendingAnalysisResponse$ = [3, n0, _GLARe,
|
|
1093
|
+
0,
|
|
1094
|
+
[_DM, _JS, _NT, _Res, _Wa, _SM, _ALMV],
|
|
1095
|
+
[() => DocumentMetadata$, 0, 0, () => LendingResultList, () => Warnings, 0, 0]
|
|
1096
|
+
];
|
|
1097
|
+
var GetLendingAnalysisSummaryRequest$ = [3, n0, _GLASR,
|
|
1098
|
+
0,
|
|
1099
|
+
[_JI],
|
|
1100
|
+
[0], 1
|
|
1101
|
+
];
|
|
1102
|
+
var GetLendingAnalysisSummaryResponse$ = [3, n0, _GLASRe,
|
|
1103
|
+
0,
|
|
1104
|
+
[_DM, _JS, _Su, _Wa, _SM, _ALMV],
|
|
1105
|
+
[() => DocumentMetadata$, 0, () => LendingSummary$, () => Warnings, 0, 0]
|
|
1106
|
+
];
|
|
1107
|
+
var HumanLoopActivationOutput$ = [3, n0, _HLAO,
|
|
1108
|
+
0,
|
|
1109
|
+
[_HLA, _HLAR, _HLACER],
|
|
1110
|
+
[0, 64 | 0, [() => SynthesizedJsonHumanLoopActivationConditionsEvaluationResults, 0]]
|
|
1111
|
+
];
|
|
1112
|
+
var HumanLoopConfig$ = [3, n0, _HLC,
|
|
1113
|
+
0,
|
|
1114
|
+
[_HLN, _FDA, _DA],
|
|
1115
|
+
[0, 0, () => HumanLoopDataAttributes$], 2
|
|
1116
|
+
];
|
|
1117
|
+
var HumanLoopDataAttributes$ = [3, n0, _HLDA,
|
|
1118
|
+
0,
|
|
1119
|
+
[_CC],
|
|
1120
|
+
[64 | 0]
|
|
1121
|
+
];
|
|
1122
|
+
var IdentityDocument$ = [3, n0, _IDd,
|
|
1123
|
+
0,
|
|
1124
|
+
[_DI, _IDF, _Bl],
|
|
1125
|
+
[1, () => IdentityDocumentFieldList, () => BlockList]
|
|
1126
|
+
];
|
|
1127
|
+
var IdentityDocumentField$ = [3, n0, _IDFd,
|
|
1128
|
+
0,
|
|
1129
|
+
[_Ty, _VD],
|
|
1130
|
+
[() => AnalyzeIDDetections$, () => AnalyzeIDDetections$]
|
|
1131
|
+
];
|
|
1132
|
+
var LendingDetection$ = [3, n0, _LDen,
|
|
1133
|
+
0,
|
|
1134
|
+
[_T, _SS, _G, _Co],
|
|
1135
|
+
[0, 0, () => Geometry$, 1]
|
|
1136
|
+
];
|
|
1137
|
+
var LendingDocument$ = [3, n0, _LDe,
|
|
1138
|
+
0,
|
|
1139
|
+
[_LF, _SDi],
|
|
1140
|
+
[() => LendingFieldList, () => SignatureDetectionList]
|
|
1141
|
+
];
|
|
1142
|
+
var LendingField$ = [3, n0, _LFe,
|
|
1143
|
+
0,
|
|
1144
|
+
[_Ty, _KD, _VDa],
|
|
1145
|
+
[0, () => LendingDetection$, () => LendingDetectionList]
|
|
1146
|
+
];
|
|
1147
|
+
var LendingResult$ = [3, n0, _LR,
|
|
1148
|
+
0,
|
|
1149
|
+
[_Pa, _PC, _Ex],
|
|
1150
|
+
[1, () => PageClassification$, () => ExtractionList]
|
|
1151
|
+
];
|
|
1152
|
+
var LendingSummary$ = [3, n0, _LS,
|
|
1153
|
+
0,
|
|
1154
|
+
[_DGo, _UDT],
|
|
1155
|
+
[() => DocumentGroupList, 64 | 0]
|
|
1156
|
+
];
|
|
1157
|
+
var LineItemFields$ = [3, n0, _LIF,
|
|
1158
|
+
0,
|
|
1159
|
+
[_LIEF],
|
|
1160
|
+
[() => ExpenseFieldList]
|
|
1161
|
+
];
|
|
1162
|
+
var LineItemGroup$ = [3, n0, _LIGi,
|
|
1163
|
+
0,
|
|
1164
|
+
[_LIGI, _LI],
|
|
1165
|
+
[1, () => LineItemList]
|
|
1166
|
+
];
|
|
1167
|
+
var ListAdaptersRequest$ = [3, n0, _LAR,
|
|
1168
|
+
0,
|
|
1169
|
+
[_ACT, _BCT, _MR, _NT],
|
|
1170
|
+
[4, 4, 1, 0]
|
|
1171
|
+
];
|
|
1172
|
+
var ListAdaptersResponse$ = [3, n0, _LARi,
|
|
1173
|
+
0,
|
|
1174
|
+
[_Ad, _NT],
|
|
1175
|
+
[() => AdapterList, 0]
|
|
1176
|
+
];
|
|
1177
|
+
var ListAdapterVersionsRequest$ = [3, n0, _LAVR,
|
|
1178
|
+
0,
|
|
1179
|
+
[_AI, _ACT, _BCT, _MR, _NT],
|
|
1180
|
+
[0, 4, 4, 1, 0]
|
|
1181
|
+
];
|
|
1182
|
+
var ListAdapterVersionsResponse$ = [3, n0, _LAVRi,
|
|
1183
|
+
0,
|
|
1184
|
+
[_AVd, _NT],
|
|
1185
|
+
[() => AdapterVersionList, 0]
|
|
1186
|
+
];
|
|
1187
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1188
|
+
0,
|
|
1189
|
+
[_RARN],
|
|
1190
|
+
[0], 1
|
|
1191
|
+
];
|
|
1192
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1193
|
+
0,
|
|
1194
|
+
[_Ta],
|
|
1195
|
+
[128 | 0]
|
|
1196
|
+
];
|
|
1197
|
+
var NormalizedValue$ = [3, n0, _NV,
|
|
1198
|
+
0,
|
|
1199
|
+
[_Va, _VT],
|
|
1200
|
+
[0, 0]
|
|
1201
|
+
];
|
|
1202
|
+
var NotificationChannel$ = [3, n0, _NC,
|
|
1203
|
+
0,
|
|
1204
|
+
[_SNSTA, _RAo],
|
|
1205
|
+
[0, 0], 2
|
|
1206
|
+
];
|
|
1207
|
+
var OutputConfig$ = [3, n0, _OC,
|
|
1208
|
+
0,
|
|
1209
|
+
[_SB, _SP],
|
|
1210
|
+
[0, 0], 1
|
|
1211
|
+
];
|
|
1212
|
+
var PageClassification$ = [3, n0, _PC,
|
|
1213
|
+
0,
|
|
1214
|
+
[_PT, _PN],
|
|
1215
|
+
[() => PredictionList, () => PredictionList], 2
|
|
1216
|
+
];
|
|
1217
|
+
var Point$ = [3, n0, _Poi,
|
|
1218
|
+
0,
|
|
1219
|
+
[_X, _Y],
|
|
1220
|
+
[1, 1]
|
|
1221
|
+
];
|
|
1222
|
+
var Prediction$ = [3, n0, _Pre,
|
|
1223
|
+
0,
|
|
1224
|
+
[_Va, _Co],
|
|
1225
|
+
[0, 1]
|
|
1226
|
+
];
|
|
1227
|
+
var QueriesConfig$ = [3, n0, _QCu,
|
|
1228
|
+
0,
|
|
1229
|
+
[_Qu],
|
|
1230
|
+
[() => Queries], 1
|
|
1231
|
+
];
|
|
1232
|
+
var Query$ = [3, n0, _Q,
|
|
1233
|
+
0,
|
|
1234
|
+
[_T, _Al, _P],
|
|
1235
|
+
[0, 0, 64 | 0], 1
|
|
1236
|
+
];
|
|
1237
|
+
var Relationship$ = [3, n0, _Rel,
|
|
1238
|
+
0,
|
|
1239
|
+
[_Ty, _Id],
|
|
1240
|
+
[0, 64 | 0]
|
|
1241
|
+
];
|
|
1242
|
+
var S3Object$ = [3, n0, _SO,
|
|
1243
|
+
0,
|
|
1244
|
+
[_Bu, _N, _V],
|
|
1245
|
+
[0, 0, 0]
|
|
1246
|
+
];
|
|
1247
|
+
var SignatureDetection$ = [3, n0, _SDig,
|
|
1248
|
+
0,
|
|
1249
|
+
[_Co, _G],
|
|
1250
|
+
[1, () => Geometry$]
|
|
1251
|
+
];
|
|
1252
|
+
var SplitDocument$ = [3, n0, _SDp,
|
|
1253
|
+
0,
|
|
1254
|
+
[_In, _P],
|
|
1255
|
+
[1, 64 | 1]
|
|
1256
|
+
];
|
|
1257
|
+
var StartDocumentAnalysisRequest$ = [3, n0, _SDAR,
|
|
1258
|
+
0,
|
|
1259
|
+
[_DL, _FT, _CRT, _JT, _NC, _OC, _KMSKI, _QCu, _AC],
|
|
1260
|
+
[() => DocumentLocation$, 64 | 0, 0, 0, () => NotificationChannel$, () => OutputConfig$, 0, () => QueriesConfig$, () => AdaptersConfig$], 2
|
|
1261
|
+
];
|
|
1262
|
+
var StartDocumentAnalysisResponse$ = [3, n0, _SDARt,
|
|
1263
|
+
0,
|
|
1264
|
+
[_JI],
|
|
1265
|
+
[0]
|
|
1266
|
+
];
|
|
1267
|
+
var StartDocumentTextDetectionRequest$ = [3, n0, _SDTDR,
|
|
1268
|
+
0,
|
|
1269
|
+
[_DL, _CRT, _JT, _NC, _OC, _KMSKI],
|
|
1270
|
+
[() => DocumentLocation$, 0, 0, () => NotificationChannel$, () => OutputConfig$, 0], 1
|
|
1271
|
+
];
|
|
1272
|
+
var StartDocumentTextDetectionResponse$ = [3, n0, _SDTDRt,
|
|
1273
|
+
0,
|
|
1274
|
+
[_JI],
|
|
1275
|
+
[0]
|
|
1276
|
+
];
|
|
1277
|
+
var StartExpenseAnalysisRequest$ = [3, n0, _SEAR,
|
|
1278
|
+
0,
|
|
1279
|
+
[_DL, _CRT, _JT, _NC, _OC, _KMSKI],
|
|
1280
|
+
[() => DocumentLocation$, 0, 0, () => NotificationChannel$, () => OutputConfig$, 0], 1
|
|
1281
|
+
];
|
|
1282
|
+
var StartExpenseAnalysisResponse$ = [3, n0, _SEARt,
|
|
1283
|
+
0,
|
|
1284
|
+
[_JI],
|
|
1285
|
+
[0]
|
|
1286
|
+
];
|
|
1287
|
+
var StartLendingAnalysisRequest$ = [3, n0, _SLAR,
|
|
1288
|
+
0,
|
|
1289
|
+
[_DL, _CRT, _JT, _NC, _OC, _KMSKI],
|
|
1290
|
+
[() => DocumentLocation$, 0, 0, () => NotificationChannel$, () => OutputConfig$, 0], 1
|
|
1291
|
+
];
|
|
1292
|
+
var StartLendingAnalysisResponse$ = [3, n0, _SLARt,
|
|
1293
|
+
0,
|
|
1294
|
+
[_JI],
|
|
1295
|
+
[0]
|
|
1296
|
+
];
|
|
1297
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1298
|
+
0,
|
|
1299
|
+
[_RARN, _Ta],
|
|
1300
|
+
[0, 128 | 0], 2
|
|
1301
|
+
];
|
|
1302
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1303
|
+
0,
|
|
1304
|
+
[],
|
|
1305
|
+
[]
|
|
1306
|
+
];
|
|
1307
|
+
var UndetectedSignature$ = [3, n0, _USn,
|
|
1308
|
+
0,
|
|
1309
|
+
[_Pa],
|
|
1310
|
+
[1]
|
|
1311
|
+
];
|
|
1312
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1313
|
+
0,
|
|
1314
|
+
[_RARN, _TK],
|
|
1315
|
+
[0, 64 | 0], 2
|
|
1316
|
+
];
|
|
1317
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1318
|
+
0,
|
|
1319
|
+
[],
|
|
1320
|
+
[]
|
|
1321
|
+
];
|
|
1322
|
+
var UpdateAdapterRequest$ = [3, n0, _UAR,
|
|
1323
|
+
0,
|
|
1324
|
+
[_AI, _De, _AN, _AU],
|
|
1325
|
+
[0, 0, 0, 0], 1
|
|
1326
|
+
];
|
|
1327
|
+
var UpdateAdapterResponse$ = [3, n0, _UARp,
|
|
1328
|
+
0,
|
|
1329
|
+
[_AI, _AN, _CT, _De, _FT, _AU],
|
|
1330
|
+
[0, 0, 4, 0, 64 | 0, 0]
|
|
1331
|
+
];
|
|
1332
|
+
var Warning$ = [3, n0, _War,
|
|
1333
|
+
0,
|
|
1334
|
+
[_ECr, _P],
|
|
1335
|
+
[0, 64 | 1]
|
|
1336
|
+
];
|
|
1337
|
+
var AdapterList = [1, n0, _AL,
|
|
1338
|
+
0, () => AdapterOverview$
|
|
1339
|
+
];
|
|
1340
|
+
var Adapters = [1, n0, _Ad,
|
|
1341
|
+
0, () => Adapter$
|
|
1342
|
+
];
|
|
1343
|
+
var AdapterVersionEvaluationMetrics = [1, n0, _AVEMd,
|
|
1344
|
+
0, () => AdapterVersionEvaluationMetric$
|
|
1345
|
+
];
|
|
1346
|
+
var AdapterVersionList = [1, n0, _AVL,
|
|
1347
|
+
0, () => AdapterVersionOverview$
|
|
1348
|
+
];
|
|
1349
|
+
var BlockList = [1, n0, _BL,
|
|
1350
|
+
0, () => Block$
|
|
1351
|
+
];
|
|
1352
|
+
var DetectedSignatureList = [1, n0, _DSL,
|
|
1353
|
+
0, () => DetectedSignature$
|
|
1354
|
+
];
|
|
1355
|
+
var DocumentGroupList = [1, n0, _DGL,
|
|
1356
|
+
0, () => DocumentGroup$
|
|
1357
|
+
];
|
|
1358
|
+
var DocumentPages = [1, n0, _DP,
|
|
1359
|
+
0, () => Document$
|
|
1360
|
+
];
|
|
1361
|
+
var ExpenseDocumentList = [1, n0, _EDL,
|
|
1362
|
+
0, () => ExpenseDocument$
|
|
1363
|
+
];
|
|
1364
|
+
var ExpenseFieldList = [1, n0, _EFL,
|
|
1365
|
+
0, () => ExpenseField$
|
|
1366
|
+
];
|
|
1367
|
+
var ExpenseGroupPropertyList = [1, n0, _EGPL,
|
|
1368
|
+
0, () => ExpenseGroupProperty$
|
|
1369
|
+
];
|
|
1370
|
+
var ExtractionList = [1, n0, _EL,
|
|
1371
|
+
0, () => Extraction$
|
|
1372
|
+
];
|
|
1373
|
+
var IdentityDocumentFieldList = [1, n0, _IDFL,
|
|
1374
|
+
0, () => IdentityDocumentField$
|
|
1375
|
+
];
|
|
1376
|
+
var IdentityDocumentList = [1, n0, _IDL,
|
|
1377
|
+
0, () => IdentityDocument$
|
|
1378
|
+
];
|
|
1379
|
+
var LendingDetectionList = [1, n0, _LDL,
|
|
1380
|
+
0, () => LendingDetection$
|
|
1381
|
+
];
|
|
1382
|
+
var LendingFieldList = [1, n0, _LFL,
|
|
1383
|
+
0, () => LendingField$
|
|
1384
|
+
];
|
|
1385
|
+
var LendingResultList = [1, n0, _LRL,
|
|
1386
|
+
0, () => LendingResult$
|
|
1387
|
+
];
|
|
1388
|
+
var LineItemGroupList = [1, n0, _LIGL,
|
|
1389
|
+
0, () => LineItemGroup$
|
|
1390
|
+
];
|
|
1391
|
+
var LineItemList = [1, n0, _LIL,
|
|
1392
|
+
0, () => LineItemFields$
|
|
1393
|
+
];
|
|
1394
|
+
var Polygon = [1, n0, _Po,
|
|
1395
|
+
0, () => Point$
|
|
1396
|
+
];
|
|
1397
|
+
var PredictionList = [1, n0, _PL,
|
|
1398
|
+
0, () => Prediction$
|
|
1399
|
+
];
|
|
1400
|
+
var Queries = [1, n0, _Qu,
|
|
1401
|
+
0, () => Query$
|
|
1402
|
+
];
|
|
1403
|
+
var RelationshipList = [1, n0, _RL,
|
|
1404
|
+
0, () => Relationship$
|
|
1405
|
+
];
|
|
1406
|
+
var SignatureDetectionList = [1, n0, _SDL,
|
|
1407
|
+
0, () => SignatureDetection$
|
|
1408
|
+
];
|
|
1409
|
+
var SplitDocumentList = [1, n0, _SDLp,
|
|
1410
|
+
0, () => SplitDocument$
|
|
1411
|
+
];
|
|
1412
|
+
var UndetectedSignatureList = [1, n0, _USL,
|
|
1413
|
+
0, () => UndetectedSignature$
|
|
1414
|
+
];
|
|
1415
|
+
var Warnings = [1, n0, _Wa,
|
|
1416
|
+
0, () => Warning$
|
|
1417
|
+
];
|
|
1418
|
+
var AnalyzeDocument$ = [9, n0, _AD,
|
|
1419
|
+
0, () => AnalyzeDocumentRequest$, () => AnalyzeDocumentResponse$
|
|
1420
|
+
];
|
|
1421
|
+
var AnalyzeExpense$ = [9, n0, _AE,
|
|
1422
|
+
0, () => AnalyzeExpenseRequest$, () => AnalyzeExpenseResponse$
|
|
1423
|
+
];
|
|
1424
|
+
var AnalyzeID$ = [9, n0, _AID,
|
|
1425
|
+
0, () => AnalyzeIDRequest$, () => AnalyzeIDResponse$
|
|
1426
|
+
];
|
|
1427
|
+
var CreateAdapter$ = [9, n0, _CA,
|
|
1428
|
+
2, () => CreateAdapterRequest$, () => CreateAdapterResponse$
|
|
1429
|
+
];
|
|
1430
|
+
var CreateAdapterVersion$ = [9, n0, _CAV,
|
|
1431
|
+
2, () => CreateAdapterVersionRequest$, () => CreateAdapterVersionResponse$
|
|
1432
|
+
];
|
|
1433
|
+
var DeleteAdapter$ = [9, n0, _DAe,
|
|
1434
|
+
2, () => DeleteAdapterRequest$, () => DeleteAdapterResponse$
|
|
1435
|
+
];
|
|
1436
|
+
var DeleteAdapterVersion$ = [9, n0, _DAV,
|
|
1437
|
+
2, () => DeleteAdapterVersionRequest$, () => DeleteAdapterVersionResponse$
|
|
1438
|
+
];
|
|
1439
|
+
var DetectDocumentText$ = [9, n0, _DDT,
|
|
1440
|
+
0, () => DetectDocumentTextRequest$, () => DetectDocumentTextResponse$
|
|
1441
|
+
];
|
|
1442
|
+
var GetAdapter$ = [9, n0, _GA,
|
|
1443
|
+
0, () => GetAdapterRequest$, () => GetAdapterResponse$
|
|
1444
|
+
];
|
|
1445
|
+
var GetAdapterVersion$ = [9, n0, _GAV,
|
|
1446
|
+
0, () => GetAdapterVersionRequest$, () => GetAdapterVersionResponse$
|
|
1447
|
+
];
|
|
1448
|
+
var GetDocumentAnalysis$ = [9, n0, _GDA,
|
|
1449
|
+
0, () => GetDocumentAnalysisRequest$, () => GetDocumentAnalysisResponse$
|
|
1450
|
+
];
|
|
1451
|
+
var GetDocumentTextDetection$ = [9, n0, _GDTD,
|
|
1452
|
+
0, () => GetDocumentTextDetectionRequest$, () => GetDocumentTextDetectionResponse$
|
|
1453
|
+
];
|
|
1454
|
+
var GetExpenseAnalysis$ = [9, n0, _GEA,
|
|
1455
|
+
0, () => GetExpenseAnalysisRequest$, () => GetExpenseAnalysisResponse$
|
|
1456
|
+
];
|
|
1457
|
+
var GetLendingAnalysis$ = [9, n0, _GLA,
|
|
1458
|
+
0, () => GetLendingAnalysisRequest$, () => GetLendingAnalysisResponse$
|
|
1459
|
+
];
|
|
1460
|
+
var GetLendingAnalysisSummary$ = [9, n0, _GLAS,
|
|
1461
|
+
0, () => GetLendingAnalysisSummaryRequest$, () => GetLendingAnalysisSummaryResponse$
|
|
1462
|
+
];
|
|
1463
|
+
var ListAdapters$ = [9, n0, _LA,
|
|
1464
|
+
0, () => ListAdaptersRequest$, () => ListAdaptersResponse$
|
|
1465
|
+
];
|
|
1466
|
+
var ListAdapterVersions$ = [9, n0, _LAV,
|
|
1467
|
+
0, () => ListAdapterVersionsRequest$, () => ListAdapterVersionsResponse$
|
|
1468
|
+
];
|
|
1469
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1470
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1471
|
+
];
|
|
1472
|
+
var StartDocumentAnalysis$ = [9, n0, _SDA,
|
|
1473
|
+
0, () => StartDocumentAnalysisRequest$, () => StartDocumentAnalysisResponse$
|
|
1474
|
+
];
|
|
1475
|
+
var StartDocumentTextDetection$ = [9, n0, _SDTD,
|
|
1476
|
+
0, () => StartDocumentTextDetectionRequest$, () => StartDocumentTextDetectionResponse$
|
|
1477
|
+
];
|
|
1478
|
+
var StartExpenseAnalysis$ = [9, n0, _SEA,
|
|
1479
|
+
0, () => StartExpenseAnalysisRequest$, () => StartExpenseAnalysisResponse$
|
|
1480
|
+
];
|
|
1481
|
+
var StartLendingAnalysis$ = [9, n0, _SLA,
|
|
1482
|
+
0, () => StartLendingAnalysisRequest$, () => StartLendingAnalysisResponse$
|
|
1483
|
+
];
|
|
1484
|
+
var TagResource$ = [9, n0, _TR,
|
|
1485
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1486
|
+
];
|
|
1487
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1488
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1489
|
+
];
|
|
1490
|
+
var UpdateAdapter$ = [9, n0, _UA,
|
|
1491
|
+
0, () => UpdateAdapterRequest$, () => UpdateAdapterResponse$
|
|
1492
|
+
];
|
|
1493
|
+
|
|
1494
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1495
|
+
return {
|
|
1496
|
+
apiVersion: "2018-06-27",
|
|
1497
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1498
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1499
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1500
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1501
|
+
extensions: config?.extensions ?? [],
|
|
1502
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultTextractHttpAuthSchemeProvider,
|
|
1503
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1504
|
+
{
|
|
1505
|
+
schemeId: "aws.auth#sigv4",
|
|
1506
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1507
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1508
|
+
},
|
|
1509
|
+
],
|
|
1510
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1511
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
1512
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1513
|
+
defaultNamespace: "com.amazonaws.textract",
|
|
1514
|
+
errorTypeRegistries,
|
|
1515
|
+
version: "2018-06-27",
|
|
1516
|
+
serviceTarget: "Textract",
|
|
1517
|
+
},
|
|
1518
|
+
serviceId: config?.serviceId ?? "Textract",
|
|
1519
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1520
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1521
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1522
|
+
};
|
|
1523
|
+
};
|
|
1524
|
+
|
|
1525
|
+
const getRuntimeConfig = (config) => {
|
|
1526
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1527
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1528
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1529
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1530
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1531
|
+
const loaderConfig = {
|
|
1532
|
+
profile: config?.profile,
|
|
1533
|
+
logger: clientSharedValues.logger,
|
|
1534
|
+
};
|
|
1535
|
+
return {
|
|
1536
|
+
...clientSharedValues,
|
|
1537
|
+
...config,
|
|
1538
|
+
runtime: "node",
|
|
1539
|
+
defaultsMode,
|
|
1540
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1541
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1542
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1543
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1544
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1545
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1546
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1547
|
+
retryMode: config?.retryMode ??
|
|
1548
|
+
loadConfig({
|
|
1549
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1550
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1551
|
+
}, config),
|
|
1552
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1553
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1554
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1555
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1556
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1557
|
+
};
|
|
1558
|
+
};
|
|
1559
|
+
|
|
34
1560
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1561
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1562
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -538,43 +2064,206 @@ const JobStatus = {
|
|
|
538
2064
|
SUCCEEDED: "SUCCEEDED",
|
|
539
2065
|
};
|
|
540
2066
|
|
|
2067
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2068
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2069
|
+
exports.Adapter$ = Adapter$;
|
|
2070
|
+
exports.AdapterOverview$ = AdapterOverview$;
|
|
2071
|
+
exports.AdapterVersionDatasetConfig$ = AdapterVersionDatasetConfig$;
|
|
2072
|
+
exports.AdapterVersionEvaluationMetric$ = AdapterVersionEvaluationMetric$;
|
|
2073
|
+
exports.AdapterVersionOverview$ = AdapterVersionOverview$;
|
|
541
2074
|
exports.AdapterVersionStatus = AdapterVersionStatus;
|
|
2075
|
+
exports.AdaptersConfig$ = AdaptersConfig$;
|
|
2076
|
+
exports.AnalyzeDocument$ = AnalyzeDocument$;
|
|
542
2077
|
exports.AnalyzeDocumentCommand = AnalyzeDocumentCommand;
|
|
2078
|
+
exports.AnalyzeDocumentRequest$ = AnalyzeDocumentRequest$;
|
|
2079
|
+
exports.AnalyzeDocumentResponse$ = AnalyzeDocumentResponse$;
|
|
2080
|
+
exports.AnalyzeExpense$ = AnalyzeExpense$;
|
|
543
2081
|
exports.AnalyzeExpenseCommand = AnalyzeExpenseCommand;
|
|
2082
|
+
exports.AnalyzeExpenseRequest$ = AnalyzeExpenseRequest$;
|
|
2083
|
+
exports.AnalyzeExpenseResponse$ = AnalyzeExpenseResponse$;
|
|
2084
|
+
exports.AnalyzeID$ = AnalyzeID$;
|
|
544
2085
|
exports.AnalyzeIDCommand = AnalyzeIDCommand;
|
|
2086
|
+
exports.AnalyzeIDDetections$ = AnalyzeIDDetections$;
|
|
2087
|
+
exports.AnalyzeIDRequest$ = AnalyzeIDRequest$;
|
|
2088
|
+
exports.AnalyzeIDResponse$ = AnalyzeIDResponse$;
|
|
545
2089
|
exports.AutoUpdate = AutoUpdate;
|
|
2090
|
+
exports.BadDocumentException = BadDocumentException;
|
|
2091
|
+
exports.BadDocumentException$ = BadDocumentException$;
|
|
2092
|
+
exports.Block$ = Block$;
|
|
546
2093
|
exports.BlockType = BlockType;
|
|
2094
|
+
exports.BoundingBox$ = BoundingBox$;
|
|
2095
|
+
exports.ConflictException = ConflictException;
|
|
2096
|
+
exports.ConflictException$ = ConflictException$;
|
|
547
2097
|
exports.ContentClassifier = ContentClassifier;
|
|
2098
|
+
exports.CreateAdapter$ = CreateAdapter$;
|
|
548
2099
|
exports.CreateAdapterCommand = CreateAdapterCommand;
|
|
2100
|
+
exports.CreateAdapterRequest$ = CreateAdapterRequest$;
|
|
2101
|
+
exports.CreateAdapterResponse$ = CreateAdapterResponse$;
|
|
2102
|
+
exports.CreateAdapterVersion$ = CreateAdapterVersion$;
|
|
549
2103
|
exports.CreateAdapterVersionCommand = CreateAdapterVersionCommand;
|
|
2104
|
+
exports.CreateAdapterVersionRequest$ = CreateAdapterVersionRequest$;
|
|
2105
|
+
exports.CreateAdapterVersionResponse$ = CreateAdapterVersionResponse$;
|
|
2106
|
+
exports.DeleteAdapter$ = DeleteAdapter$;
|
|
550
2107
|
exports.DeleteAdapterCommand = DeleteAdapterCommand;
|
|
2108
|
+
exports.DeleteAdapterRequest$ = DeleteAdapterRequest$;
|
|
2109
|
+
exports.DeleteAdapterResponse$ = DeleteAdapterResponse$;
|
|
2110
|
+
exports.DeleteAdapterVersion$ = DeleteAdapterVersion$;
|
|
551
2111
|
exports.DeleteAdapterVersionCommand = DeleteAdapterVersionCommand;
|
|
2112
|
+
exports.DeleteAdapterVersionRequest$ = DeleteAdapterVersionRequest$;
|
|
2113
|
+
exports.DeleteAdapterVersionResponse$ = DeleteAdapterVersionResponse$;
|
|
2114
|
+
exports.DetectDocumentText$ = DetectDocumentText$;
|
|
552
2115
|
exports.DetectDocumentTextCommand = DetectDocumentTextCommand;
|
|
2116
|
+
exports.DetectDocumentTextRequest$ = DetectDocumentTextRequest$;
|
|
2117
|
+
exports.DetectDocumentTextResponse$ = DetectDocumentTextResponse$;
|
|
2118
|
+
exports.DetectedSignature$ = DetectedSignature$;
|
|
2119
|
+
exports.Document$ = Document$;
|
|
2120
|
+
exports.DocumentGroup$ = DocumentGroup$;
|
|
2121
|
+
exports.DocumentLocation$ = DocumentLocation$;
|
|
2122
|
+
exports.DocumentMetadata$ = DocumentMetadata$;
|
|
2123
|
+
exports.DocumentTooLargeException = DocumentTooLargeException;
|
|
2124
|
+
exports.DocumentTooLargeException$ = DocumentTooLargeException$;
|
|
553
2125
|
exports.EntityType = EntityType;
|
|
2126
|
+
exports.EvaluationMetric$ = EvaluationMetric$;
|
|
2127
|
+
exports.ExpenseCurrency$ = ExpenseCurrency$;
|
|
2128
|
+
exports.ExpenseDetection$ = ExpenseDetection$;
|
|
2129
|
+
exports.ExpenseDocument$ = ExpenseDocument$;
|
|
2130
|
+
exports.ExpenseField$ = ExpenseField$;
|
|
2131
|
+
exports.ExpenseGroupProperty$ = ExpenseGroupProperty$;
|
|
2132
|
+
exports.ExpenseType$ = ExpenseType$;
|
|
2133
|
+
exports.Extraction$ = Extraction$;
|
|
554
2134
|
exports.FeatureType = FeatureType;
|
|
2135
|
+
exports.Geometry$ = Geometry$;
|
|
2136
|
+
exports.GetAdapter$ = GetAdapter$;
|
|
555
2137
|
exports.GetAdapterCommand = GetAdapterCommand;
|
|
2138
|
+
exports.GetAdapterRequest$ = GetAdapterRequest$;
|
|
2139
|
+
exports.GetAdapterResponse$ = GetAdapterResponse$;
|
|
2140
|
+
exports.GetAdapterVersion$ = GetAdapterVersion$;
|
|
556
2141
|
exports.GetAdapterVersionCommand = GetAdapterVersionCommand;
|
|
2142
|
+
exports.GetAdapterVersionRequest$ = GetAdapterVersionRequest$;
|
|
2143
|
+
exports.GetAdapterVersionResponse$ = GetAdapterVersionResponse$;
|
|
2144
|
+
exports.GetDocumentAnalysis$ = GetDocumentAnalysis$;
|
|
557
2145
|
exports.GetDocumentAnalysisCommand = GetDocumentAnalysisCommand;
|
|
2146
|
+
exports.GetDocumentAnalysisRequest$ = GetDocumentAnalysisRequest$;
|
|
2147
|
+
exports.GetDocumentAnalysisResponse$ = GetDocumentAnalysisResponse$;
|
|
2148
|
+
exports.GetDocumentTextDetection$ = GetDocumentTextDetection$;
|
|
558
2149
|
exports.GetDocumentTextDetectionCommand = GetDocumentTextDetectionCommand;
|
|
2150
|
+
exports.GetDocumentTextDetectionRequest$ = GetDocumentTextDetectionRequest$;
|
|
2151
|
+
exports.GetDocumentTextDetectionResponse$ = GetDocumentTextDetectionResponse$;
|
|
2152
|
+
exports.GetExpenseAnalysis$ = GetExpenseAnalysis$;
|
|
559
2153
|
exports.GetExpenseAnalysisCommand = GetExpenseAnalysisCommand;
|
|
2154
|
+
exports.GetExpenseAnalysisRequest$ = GetExpenseAnalysisRequest$;
|
|
2155
|
+
exports.GetExpenseAnalysisResponse$ = GetExpenseAnalysisResponse$;
|
|
2156
|
+
exports.GetLendingAnalysis$ = GetLendingAnalysis$;
|
|
560
2157
|
exports.GetLendingAnalysisCommand = GetLendingAnalysisCommand;
|
|
2158
|
+
exports.GetLendingAnalysisRequest$ = GetLendingAnalysisRequest$;
|
|
2159
|
+
exports.GetLendingAnalysisResponse$ = GetLendingAnalysisResponse$;
|
|
2160
|
+
exports.GetLendingAnalysisSummary$ = GetLendingAnalysisSummary$;
|
|
561
2161
|
exports.GetLendingAnalysisSummaryCommand = GetLendingAnalysisSummaryCommand;
|
|
2162
|
+
exports.GetLendingAnalysisSummaryRequest$ = GetLendingAnalysisSummaryRequest$;
|
|
2163
|
+
exports.GetLendingAnalysisSummaryResponse$ = GetLendingAnalysisSummaryResponse$;
|
|
2164
|
+
exports.HumanLoopActivationOutput$ = HumanLoopActivationOutput$;
|
|
2165
|
+
exports.HumanLoopConfig$ = HumanLoopConfig$;
|
|
2166
|
+
exports.HumanLoopDataAttributes$ = HumanLoopDataAttributes$;
|
|
2167
|
+
exports.HumanLoopQuotaExceededException = HumanLoopQuotaExceededException;
|
|
2168
|
+
exports.HumanLoopQuotaExceededException$ = HumanLoopQuotaExceededException$;
|
|
2169
|
+
exports.IdempotentParameterMismatchException = IdempotentParameterMismatchException;
|
|
2170
|
+
exports.IdempotentParameterMismatchException$ = IdempotentParameterMismatchException$;
|
|
2171
|
+
exports.IdentityDocument$ = IdentityDocument$;
|
|
2172
|
+
exports.IdentityDocumentField$ = IdentityDocumentField$;
|
|
2173
|
+
exports.InternalServerError = InternalServerError;
|
|
2174
|
+
exports.InternalServerError$ = InternalServerError$;
|
|
2175
|
+
exports.InvalidJobIdException = InvalidJobIdException;
|
|
2176
|
+
exports.InvalidJobIdException$ = InvalidJobIdException$;
|
|
2177
|
+
exports.InvalidKMSKeyException = InvalidKMSKeyException;
|
|
2178
|
+
exports.InvalidKMSKeyException$ = InvalidKMSKeyException$;
|
|
2179
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
2180
|
+
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
2181
|
+
exports.InvalidS3ObjectException = InvalidS3ObjectException;
|
|
2182
|
+
exports.InvalidS3ObjectException$ = InvalidS3ObjectException$;
|
|
562
2183
|
exports.JobStatus = JobStatus;
|
|
2184
|
+
exports.LendingDetection$ = LendingDetection$;
|
|
2185
|
+
exports.LendingDocument$ = LendingDocument$;
|
|
2186
|
+
exports.LendingField$ = LendingField$;
|
|
2187
|
+
exports.LendingResult$ = LendingResult$;
|
|
2188
|
+
exports.LendingSummary$ = LendingSummary$;
|
|
2189
|
+
exports.LimitExceededException = LimitExceededException;
|
|
2190
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
2191
|
+
exports.LineItemFields$ = LineItemFields$;
|
|
2192
|
+
exports.LineItemGroup$ = LineItemGroup$;
|
|
2193
|
+
exports.ListAdapterVersions$ = ListAdapterVersions$;
|
|
563
2194
|
exports.ListAdapterVersionsCommand = ListAdapterVersionsCommand;
|
|
2195
|
+
exports.ListAdapterVersionsRequest$ = ListAdapterVersionsRequest$;
|
|
2196
|
+
exports.ListAdapterVersionsResponse$ = ListAdapterVersionsResponse$;
|
|
2197
|
+
exports.ListAdapters$ = ListAdapters$;
|
|
564
2198
|
exports.ListAdaptersCommand = ListAdaptersCommand;
|
|
2199
|
+
exports.ListAdaptersRequest$ = ListAdaptersRequest$;
|
|
2200
|
+
exports.ListAdaptersResponse$ = ListAdaptersResponse$;
|
|
2201
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
565
2202
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2203
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2204
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2205
|
+
exports.NormalizedValue$ = NormalizedValue$;
|
|
2206
|
+
exports.NotificationChannel$ = NotificationChannel$;
|
|
2207
|
+
exports.OutputConfig$ = OutputConfig$;
|
|
2208
|
+
exports.PageClassification$ = PageClassification$;
|
|
2209
|
+
exports.Point$ = Point$;
|
|
2210
|
+
exports.Prediction$ = Prediction$;
|
|
2211
|
+
exports.ProvisionedThroughputExceededException = ProvisionedThroughputExceededException;
|
|
2212
|
+
exports.ProvisionedThroughputExceededException$ = ProvisionedThroughputExceededException$;
|
|
2213
|
+
exports.QueriesConfig$ = QueriesConfig$;
|
|
2214
|
+
exports.Query$ = Query$;
|
|
2215
|
+
exports.Relationship$ = Relationship$;
|
|
566
2216
|
exports.RelationshipType = RelationshipType;
|
|
2217
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2218
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2219
|
+
exports.S3Object$ = S3Object$;
|
|
567
2220
|
exports.SelectionStatus = SelectionStatus;
|
|
2221
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2222
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2223
|
+
exports.SignatureDetection$ = SignatureDetection$;
|
|
2224
|
+
exports.SplitDocument$ = SplitDocument$;
|
|
2225
|
+
exports.StartDocumentAnalysis$ = StartDocumentAnalysis$;
|
|
568
2226
|
exports.StartDocumentAnalysisCommand = StartDocumentAnalysisCommand;
|
|
2227
|
+
exports.StartDocumentAnalysisRequest$ = StartDocumentAnalysisRequest$;
|
|
2228
|
+
exports.StartDocumentAnalysisResponse$ = StartDocumentAnalysisResponse$;
|
|
2229
|
+
exports.StartDocumentTextDetection$ = StartDocumentTextDetection$;
|
|
569
2230
|
exports.StartDocumentTextDetectionCommand = StartDocumentTextDetectionCommand;
|
|
2231
|
+
exports.StartDocumentTextDetectionRequest$ = StartDocumentTextDetectionRequest$;
|
|
2232
|
+
exports.StartDocumentTextDetectionResponse$ = StartDocumentTextDetectionResponse$;
|
|
2233
|
+
exports.StartExpenseAnalysis$ = StartExpenseAnalysis$;
|
|
570
2234
|
exports.StartExpenseAnalysisCommand = StartExpenseAnalysisCommand;
|
|
2235
|
+
exports.StartExpenseAnalysisRequest$ = StartExpenseAnalysisRequest$;
|
|
2236
|
+
exports.StartExpenseAnalysisResponse$ = StartExpenseAnalysisResponse$;
|
|
2237
|
+
exports.StartLendingAnalysis$ = StartLendingAnalysis$;
|
|
571
2238
|
exports.StartLendingAnalysisCommand = StartLendingAnalysisCommand;
|
|
2239
|
+
exports.StartLendingAnalysisRequest$ = StartLendingAnalysisRequest$;
|
|
2240
|
+
exports.StartLendingAnalysisResponse$ = StartLendingAnalysisResponse$;
|
|
2241
|
+
exports.TagResource$ = TagResource$;
|
|
572
2242
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2243
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2244
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
573
2245
|
exports.TextType = TextType;
|
|
574
2246
|
exports.Textract = Textract;
|
|
575
2247
|
exports.TextractClient = TextractClient;
|
|
2248
|
+
exports.TextractServiceException = TextractServiceException;
|
|
2249
|
+
exports.TextractServiceException$ = TextractServiceException$;
|
|
2250
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2251
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
2252
|
+
exports.UndetectedSignature$ = UndetectedSignature$;
|
|
2253
|
+
exports.UnsupportedDocumentException = UnsupportedDocumentException;
|
|
2254
|
+
exports.UnsupportedDocumentException$ = UnsupportedDocumentException$;
|
|
2255
|
+
exports.UntagResource$ = UntagResource$;
|
|
576
2256
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2257
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2258
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2259
|
+
exports.UpdateAdapter$ = UpdateAdapter$;
|
|
577
2260
|
exports.UpdateAdapterCommand = UpdateAdapterCommand;
|
|
2261
|
+
exports.UpdateAdapterRequest$ = UpdateAdapterRequest$;
|
|
2262
|
+
exports.UpdateAdapterResponse$ = UpdateAdapterResponse$;
|
|
2263
|
+
exports.ValidationException = ValidationException;
|
|
2264
|
+
exports.ValidationException$ = ValidationException$;
|
|
578
2265
|
exports.ValueType = ValueType;
|
|
2266
|
+
exports.Warning$ = Warning$;
|
|
2267
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
579
2268
|
exports.paginateListAdapterVersions = paginateListAdapterVersions;
|
|
580
2269
|
exports.paginateListAdapters = paginateListAdapters;
|