@aws-sdk/client-textract 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Textract.d.ts +184 -55
- package/dist-types/ts3.4/TextractClient.d.ts +189 -83
- package/dist-types/ts3.4/commands/AnalyzeDocumentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/AnalyzeExpenseCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/AnalyzeIDCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DetectDocumentTextCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetDocumentAnalysisCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetDocumentTextDetectionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetExpenseAnalysisCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StartDocumentAnalysisCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartDocumentTextDetectionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartExpenseAnalysisCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +10 -10
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/TextractServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +754 -691
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +125 -32
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { AnalyzeIDRequest, AnalyzeIDResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
TextractClientResolvedConfig,
|
|
13
|
+
} from "../TextractClient";
|
|
14
|
+
export interface AnalyzeIDCommandInput extends AnalyzeIDRequest {}
|
|
15
|
+
export interface AnalyzeIDCommandOutput
|
|
16
|
+
extends AnalyzeIDResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class AnalyzeIDCommand extends $Command<
|
|
20
|
+
AnalyzeIDCommandInput,
|
|
21
|
+
AnalyzeIDCommandOutput,
|
|
22
|
+
TextractClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: AnalyzeIDCommandInput;
|
|
25
|
+
constructor(input: AnalyzeIDCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: TextractClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<AnalyzeIDCommandInput, AnalyzeIDCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DetectDocumentTextRequest,
|
|
10
|
+
DetectDocumentTextResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TextractClientResolvedConfig,
|
|
16
|
+
} from "../TextractClient";
|
|
17
|
+
export interface DetectDocumentTextCommandInput
|
|
18
|
+
extends DetectDocumentTextRequest {}
|
|
19
|
+
export interface DetectDocumentTextCommandOutput
|
|
20
|
+
extends DetectDocumentTextResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DetectDocumentTextCommand extends $Command<
|
|
24
|
+
DetectDocumentTextCommandInput,
|
|
25
|
+
DetectDocumentTextCommandOutput,
|
|
26
|
+
TextractClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DetectDocumentTextCommandInput;
|
|
29
|
+
constructor(input: DetectDocumentTextCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TextractClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DetectDocumentTextCommandInput, DetectDocumentTextCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetDocumentAnalysisRequest,
|
|
10
|
+
GetDocumentAnalysisResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TextractClientResolvedConfig,
|
|
16
|
+
} from "../TextractClient";
|
|
17
|
+
export interface GetDocumentAnalysisCommandInput
|
|
18
|
+
extends GetDocumentAnalysisRequest {}
|
|
19
|
+
export interface GetDocumentAnalysisCommandOutput
|
|
20
|
+
extends GetDocumentAnalysisResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetDocumentAnalysisCommand extends $Command<
|
|
24
|
+
GetDocumentAnalysisCommandInput,
|
|
25
|
+
GetDocumentAnalysisCommandOutput,
|
|
26
|
+
TextractClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetDocumentAnalysisCommandInput;
|
|
29
|
+
constructor(input: GetDocumentAnalysisCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TextractClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetDocumentAnalysisCommandInput, GetDocumentAnalysisCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetDocumentTextDetectionRequest,
|
|
10
|
+
GetDocumentTextDetectionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TextractClientResolvedConfig,
|
|
16
|
+
} from "../TextractClient";
|
|
17
|
+
export interface GetDocumentTextDetectionCommandInput
|
|
18
|
+
extends GetDocumentTextDetectionRequest {}
|
|
19
|
+
export interface GetDocumentTextDetectionCommandOutput
|
|
20
|
+
extends GetDocumentTextDetectionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetDocumentTextDetectionCommand extends $Command<
|
|
24
|
+
GetDocumentTextDetectionCommandInput,
|
|
25
|
+
GetDocumentTextDetectionCommandOutput,
|
|
26
|
+
TextractClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetDocumentTextDetectionCommandInput;
|
|
29
|
+
constructor(input: GetDocumentTextDetectionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TextractClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetDocumentTextDetectionCommandInput,
|
|
37
|
+
GetDocumentTextDetectionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetExpenseAnalysisRequest,
|
|
10
|
+
GetExpenseAnalysisResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TextractClientResolvedConfig,
|
|
16
|
+
} from "../TextractClient";
|
|
17
|
+
export interface GetExpenseAnalysisCommandInput
|
|
18
|
+
extends GetExpenseAnalysisRequest {}
|
|
19
|
+
export interface GetExpenseAnalysisCommandOutput
|
|
20
|
+
extends GetExpenseAnalysisResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetExpenseAnalysisCommand extends $Command<
|
|
24
|
+
GetExpenseAnalysisCommandInput,
|
|
25
|
+
GetExpenseAnalysisCommandOutput,
|
|
26
|
+
TextractClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetExpenseAnalysisCommandInput;
|
|
29
|
+
constructor(input: GetExpenseAnalysisCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TextractClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetExpenseAnalysisCommandInput, GetExpenseAnalysisCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
StartDocumentAnalysisRequest,
|
|
10
|
+
StartDocumentAnalysisResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TextractClientResolvedConfig,
|
|
16
|
+
} from "../TextractClient";
|
|
17
|
+
export interface StartDocumentAnalysisCommandInput
|
|
18
|
+
extends StartDocumentAnalysisRequest {}
|
|
19
|
+
export interface StartDocumentAnalysisCommandOutput
|
|
20
|
+
extends StartDocumentAnalysisResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class StartDocumentAnalysisCommand extends $Command<
|
|
24
|
+
StartDocumentAnalysisCommandInput,
|
|
25
|
+
StartDocumentAnalysisCommandOutput,
|
|
26
|
+
TextractClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StartDocumentAnalysisCommandInput;
|
|
29
|
+
constructor(input: StartDocumentAnalysisCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TextractClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
StartDocumentAnalysisCommandInput,
|
|
37
|
+
StartDocumentAnalysisCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
StartDocumentTextDetectionRequest,
|
|
10
|
+
StartDocumentTextDetectionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TextractClientResolvedConfig,
|
|
16
|
+
} from "../TextractClient";
|
|
17
|
+
export interface StartDocumentTextDetectionCommandInput
|
|
18
|
+
extends StartDocumentTextDetectionRequest {}
|
|
19
|
+
export interface StartDocumentTextDetectionCommandOutput
|
|
20
|
+
extends StartDocumentTextDetectionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class StartDocumentTextDetectionCommand extends $Command<
|
|
24
|
+
StartDocumentTextDetectionCommandInput,
|
|
25
|
+
StartDocumentTextDetectionCommandOutput,
|
|
26
|
+
TextractClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StartDocumentTextDetectionCommandInput;
|
|
29
|
+
constructor(input: StartDocumentTextDetectionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TextractClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
StartDocumentTextDetectionCommandInput,
|
|
37
|
+
StartDocumentTextDetectionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
StartExpenseAnalysisRequest,
|
|
10
|
+
StartExpenseAnalysisResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TextractClientResolvedConfig,
|
|
16
|
+
} from "../TextractClient";
|
|
17
|
+
export interface StartExpenseAnalysisCommandInput
|
|
18
|
+
extends StartExpenseAnalysisRequest {}
|
|
19
|
+
export interface StartExpenseAnalysisCommandOutput
|
|
20
|
+
extends StartExpenseAnalysisResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class StartExpenseAnalysisCommand extends $Command<
|
|
24
|
+
StartExpenseAnalysisCommandInput,
|
|
25
|
+
StartExpenseAnalysisCommandOutput,
|
|
26
|
+
TextractClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StartExpenseAnalysisCommandInput;
|
|
29
|
+
constructor(input: StartExpenseAnalysisCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TextractClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
StartExpenseAnalysisCommandInput,
|
|
37
|
+
StartExpenseAnalysisCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export * from "./AnalyzeDocumentCommand";
|
|
2
|
-
export * from "./AnalyzeExpenseCommand";
|
|
3
|
-
export * from "./AnalyzeIDCommand";
|
|
4
|
-
export * from "./DetectDocumentTextCommand";
|
|
5
|
-
export * from "./GetDocumentAnalysisCommand";
|
|
6
|
-
export * from "./GetDocumentTextDetectionCommand";
|
|
7
|
-
export * from "./GetExpenseAnalysisCommand";
|
|
8
|
-
export * from "./StartDocumentAnalysisCommand";
|
|
9
|
-
export * from "./StartDocumentTextDetectionCommand";
|
|
10
|
-
export * from "./StartExpenseAnalysisCommand";
|
|
1
|
+
export * from "./AnalyzeDocumentCommand";
|
|
2
|
+
export * from "./AnalyzeExpenseCommand";
|
|
3
|
+
export * from "./AnalyzeIDCommand";
|
|
4
|
+
export * from "./DetectDocumentTextCommand";
|
|
5
|
+
export * from "./GetDocumentAnalysisCommand";
|
|
6
|
+
export * from "./GetDocumentTextDetectionCommand";
|
|
7
|
+
export * from "./GetExpenseAnalysisCommand";
|
|
8
|
+
export * from "./StartDocumentAnalysisCommand";
|
|
9
|
+
export * from "./StartDocumentTextDetectionCommand";
|
|
10
|
+
export * from "./StartExpenseAnalysisCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./Textract";
|
|
2
|
-
export * from "./TextractClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { TextractServiceException } from "./models/TextractServiceException";
|
|
1
|
+
export * from "./Textract";
|
|
2
|
+
export * from "./TextractClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { TextractServiceException } from "./models/TextractServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class TextractServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|