@aws-sdk/client-textract 3.1087.0 → 3.1089.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 +1 -1
- package/dist-types/ts3.4/Textract.d.ts +80 -89
- package/dist-types/ts3.4/TextractClient.d.ts +18 -37
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AnalyzeDocumentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/AnalyzeExpenseCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/AnalyzeIDCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/CreateAdapterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateAdapterVersionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteAdapterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteAdapterVersionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DetectDocumentTextCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetAdapterCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetAdapterVersionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetDocumentAnalysisCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetDocumentTextDetectionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetExpenseAnalysisCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetLendingAnalysisCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetLendingAnalysisSummaryCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAdapterVersionsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListAdaptersCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartDocumentAnalysisCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartDocumentTextDetectionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartExpenseAnalysisCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartLendingAnalysisCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateAdapterCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +4 -8
- package/dist-types/ts3.4/models/errors.d.ts +17 -60
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceOutputTypes,
|
|
5
5
|
TextractClientResolvedConfig,
|
|
6
6
|
} from "./TextractClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
TextractClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
AnalyzeDocumentRequest,
|
|
4
|
-
AnalyzeDocumentResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { AnalyzeDocumentRequest, AnalyzeDocumentResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface AnalyzeDocumentCommandInput extends AnalyzeDocumentRequest {}
|
|
8
|
-
export interface AnalyzeDocumentCommandOutput
|
|
9
|
-
extends AnalyzeDocumentResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface AnalyzeDocumentCommandOutput extends AnalyzeDocumentResponse, __MetadataBearer {}
|
|
11
6
|
declare const AnalyzeDocumentCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: AnalyzeDocumentCommandInput
|
|
8
|
+
input: AnalyzeDocumentCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
AnalyzeDocumentCommandInput,
|
|
16
11
|
AnalyzeDocumentCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const AnalyzeDocumentCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: AnalyzeDocumentCommandInput
|
|
17
|
+
input: AnalyzeDocumentCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
AnalyzeDocumentCommandInput,
|
|
25
20
|
AnalyzeDocumentCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
AnalyzeExpenseRequest,
|
|
4
|
-
AnalyzeExpenseResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { AnalyzeExpenseRequest, AnalyzeExpenseResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface AnalyzeExpenseCommandInput extends AnalyzeExpenseRequest {}
|
|
8
|
-
export interface AnalyzeExpenseCommandOutput
|
|
9
|
-
extends AnalyzeExpenseResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface AnalyzeExpenseCommandOutput extends AnalyzeExpenseResponse, __MetadataBearer {}
|
|
11
6
|
declare const AnalyzeExpenseCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: AnalyzeExpenseCommandInput
|
|
8
|
+
input: AnalyzeExpenseCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
AnalyzeExpenseCommandInput,
|
|
16
11
|
AnalyzeExpenseCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const AnalyzeExpenseCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: AnalyzeExpenseCommandInput
|
|
17
|
+
input: AnalyzeExpenseCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
AnalyzeExpenseCommandInput,
|
|
25
20
|
AnalyzeExpenseCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { AnalyzeIDRequest, AnalyzeIDResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface AnalyzeIDCommandInput extends AnalyzeIDRequest {}
|
|
5
|
-
export interface AnalyzeIDCommandOutput
|
|
6
|
-
extends AnalyzeIDResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface AnalyzeIDCommandOutput extends AnalyzeIDResponse, __MetadataBearer {}
|
|
8
6
|
declare const AnalyzeIDCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: AnalyzeIDCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
AnalyzeIDCommandInput,
|
|
11
11
|
AnalyzeIDCommandOutput,
|
|
12
12
|
import("..").TextractClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: AnalyzeIDCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
AnalyzeIDCommandInput,
|
|
18
20
|
AnalyzeIDCommandOutput,
|
|
19
21
|
import("..").TextractClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateAdapterRequest,
|
|
4
|
-
CreateAdapterResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateAdapterRequest, CreateAdapterResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateAdapterCommandInput extends CreateAdapterRequest {}
|
|
8
|
-
export interface CreateAdapterCommandOutput
|
|
9
|
-
extends CreateAdapterResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateAdapterCommandOutput extends CreateAdapterResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateAdapterCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateAdapterCommandInput
|
|
8
|
+
input: CreateAdapterCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateAdapterCommandInput,
|
|
16
11
|
CreateAdapterCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateAdapterCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateAdapterCommandInput
|
|
17
|
+
input: CreateAdapterCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateAdapterCommandInput,
|
|
25
20
|
CreateAdapterCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateAdapterVersionRequest,
|
|
4
|
-
CreateAdapterVersionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateAdapterVersionRequest, CreateAdapterVersionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateAdapterVersionCommandInput
|
|
8
|
-
extends CreateAdapterVersionRequest {}
|
|
4
|
+
export interface CreateAdapterVersionCommandInput extends CreateAdapterVersionRequest {}
|
|
9
5
|
export interface CreateAdapterVersionCommandOutput
|
|
10
|
-
extends CreateAdapterVersionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateAdapterVersionResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateAdapterVersionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateAdapterVersionCommandInput
|
|
9
|
+
input: CreateAdapterVersionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateAdapterVersionCommandInput,
|
|
17
12
|
CreateAdapterVersionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateAdapterVersionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateAdapterVersionCommandInput
|
|
18
|
+
input: CreateAdapterVersionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateAdapterVersionCommandInput,
|
|
26
21
|
CreateAdapterVersionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteAdapterRequest,
|
|
4
|
-
DeleteAdapterResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteAdapterRequest, DeleteAdapterResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteAdapterCommandInput extends DeleteAdapterRequest {}
|
|
8
|
-
export interface DeleteAdapterCommandOutput
|
|
9
|
-
extends DeleteAdapterResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteAdapterCommandOutput extends DeleteAdapterResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteAdapterCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteAdapterCommandInput
|
|
8
|
+
input: DeleteAdapterCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteAdapterCommandInput,
|
|
16
11
|
DeleteAdapterCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteAdapterCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteAdapterCommandInput
|
|
17
|
+
input: DeleteAdapterCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteAdapterCommandInput,
|
|
25
20
|
DeleteAdapterCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteAdapterVersionRequest,
|
|
4
|
-
DeleteAdapterVersionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteAdapterVersionRequest, DeleteAdapterVersionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteAdapterVersionCommandInput
|
|
8
|
-
extends DeleteAdapterVersionRequest {}
|
|
4
|
+
export interface DeleteAdapterVersionCommandInput extends DeleteAdapterVersionRequest {}
|
|
9
5
|
export interface DeleteAdapterVersionCommandOutput
|
|
10
|
-
extends DeleteAdapterVersionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteAdapterVersionResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteAdapterVersionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteAdapterVersionCommandInput
|
|
9
|
+
input: DeleteAdapterVersionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteAdapterVersionCommandInput,
|
|
17
12
|
DeleteAdapterVersionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteAdapterVersionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteAdapterVersionCommandInput
|
|
18
|
+
input: DeleteAdapterVersionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteAdapterVersionCommandInput,
|
|
26
21
|
DeleteAdapterVersionCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DetectDocumentTextRequest,
|
|
4
|
-
DetectDocumentTextResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DetectDocumentTextRequest, DetectDocumentTextResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DetectDocumentTextCommandInput
|
|
8
|
-
extends DetectDocumentTextRequest {}
|
|
4
|
+
export interface DetectDocumentTextCommandInput extends DetectDocumentTextRequest {}
|
|
9
5
|
export interface DetectDocumentTextCommandOutput
|
|
10
|
-
extends DetectDocumentTextResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DetectDocumentTextResponse, __MetadataBearer {}
|
|
12
7
|
declare const DetectDocumentTextCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DetectDocumentTextCommandInput
|
|
9
|
+
input: DetectDocumentTextCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DetectDocumentTextCommandInput,
|
|
17
12
|
DetectDocumentTextCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DetectDocumentTextCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DetectDocumentTextCommandInput
|
|
18
|
+
input: DetectDocumentTextCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DetectDocumentTextCommandInput,
|
|
26
21
|
DetectDocumentTextCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetAdapterRequest, GetAdapterResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetAdapterCommandInput extends GetAdapterRequest {}
|
|
5
|
-
export interface GetAdapterCommandOutput
|
|
6
|
-
extends GetAdapterResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetAdapterCommandOutput extends GetAdapterResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetAdapterCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetAdapterCommandInput
|
|
8
|
+
input: GetAdapterCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetAdapterCommandInput,
|
|
13
11
|
GetAdapterCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetAdapterCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetAdapterCommandInput
|
|
17
|
+
input: GetAdapterCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetAdapterCommandInput,
|
|
22
20
|
GetAdapterCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetAdapterVersionRequest,
|
|
4
|
-
GetAdapterVersionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetAdapterVersionRequest, GetAdapterVersionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetAdapterVersionCommandInput
|
|
8
|
-
extends GetAdapterVersionRequest {}
|
|
4
|
+
export interface GetAdapterVersionCommandInput extends GetAdapterVersionRequest {}
|
|
9
5
|
export interface GetAdapterVersionCommandOutput
|
|
10
|
-
extends GetAdapterVersionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetAdapterVersionResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetAdapterVersionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetAdapterVersionCommandInput
|
|
9
|
+
input: GetAdapterVersionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetAdapterVersionCommandInput,
|
|
17
12
|
GetAdapterVersionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetAdapterVersionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetAdapterVersionCommandInput
|
|
18
|
+
input: GetAdapterVersionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetAdapterVersionCommandInput,
|
|
26
21
|
GetAdapterVersionCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetDocumentAnalysisRequest,
|
|
4
|
-
GetDocumentAnalysisResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetDocumentAnalysisRequest, GetDocumentAnalysisResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetDocumentAnalysisCommandInput
|
|
8
|
-
extends GetDocumentAnalysisRequest {}
|
|
4
|
+
export interface GetDocumentAnalysisCommandInput extends GetDocumentAnalysisRequest {}
|
|
9
5
|
export interface GetDocumentAnalysisCommandOutput
|
|
10
|
-
extends GetDocumentAnalysisResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetDocumentAnalysisResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetDocumentAnalysisCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetDocumentAnalysisCommandInput
|
|
9
|
+
input: GetDocumentAnalysisCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetDocumentAnalysisCommandInput,
|
|
17
12
|
GetDocumentAnalysisCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetDocumentAnalysisCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetDocumentAnalysisCommandInput
|
|
18
|
+
input: GetDocumentAnalysisCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetDocumentAnalysisCommandInput,
|
|
26
21
|
GetDocumentAnalysisCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetDocumentTextDetectionResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetDocumentTextDetectionCommandInput
|
|
8
|
-
extends GetDocumentTextDetectionRequest {}
|
|
7
|
+
export interface GetDocumentTextDetectionCommandInput extends GetDocumentTextDetectionRequest {}
|
|
9
8
|
export interface GetDocumentTextDetectionCommandOutput
|
|
10
|
-
extends GetDocumentTextDetectionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetDocumentTextDetectionResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetDocumentTextDetectionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetDocumentTextDetectionCommandInput
|
|
12
|
+
input: GetDocumentTextDetectionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetDocumentTextDetectionCommandInput,
|
|
17
15
|
GetDocumentTextDetectionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetDocumentTextDetectionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetDocumentTextDetectionCommandInput
|
|
21
|
+
input: GetDocumentTextDetectionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetDocumentTextDetectionCommandInput,
|
|
26
24
|
GetDocumentTextDetectionCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetExpenseAnalysisRequest,
|
|
4
|
-
GetExpenseAnalysisResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetExpenseAnalysisRequest, GetExpenseAnalysisResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetExpenseAnalysisCommandInput
|
|
8
|
-
extends GetExpenseAnalysisRequest {}
|
|
4
|
+
export interface GetExpenseAnalysisCommandInput extends GetExpenseAnalysisRequest {}
|
|
9
5
|
export interface GetExpenseAnalysisCommandOutput
|
|
10
|
-
extends GetExpenseAnalysisResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetExpenseAnalysisResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetExpenseAnalysisCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetExpenseAnalysisCommandInput
|
|
9
|
+
input: GetExpenseAnalysisCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetExpenseAnalysisCommandInput,
|
|
17
12
|
GetExpenseAnalysisCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetExpenseAnalysisCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetExpenseAnalysisCommandInput
|
|
18
|
+
input: GetExpenseAnalysisCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetExpenseAnalysisCommandInput,
|
|
26
21
|
GetExpenseAnalysisCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetLendingAnalysisRequest,
|
|
4
|
-
GetLendingAnalysisResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetLendingAnalysisRequest, GetLendingAnalysisResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetLendingAnalysisCommandInput
|
|
8
|
-
extends GetLendingAnalysisRequest {}
|
|
4
|
+
export interface GetLendingAnalysisCommandInput extends GetLendingAnalysisRequest {}
|
|
9
5
|
export interface GetLendingAnalysisCommandOutput
|
|
10
|
-
extends GetLendingAnalysisResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetLendingAnalysisResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetLendingAnalysisCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetLendingAnalysisCommandInput
|
|
9
|
+
input: GetLendingAnalysisCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetLendingAnalysisCommandInput,
|
|
17
12
|
GetLendingAnalysisCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetLendingAnalysisCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetLendingAnalysisCommandInput
|
|
18
|
+
input: GetLendingAnalysisCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetLendingAnalysisCommandInput,
|
|
26
21
|
GetLendingAnalysisCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetLendingAnalysisSummaryResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetLendingAnalysisSummaryCommandInput
|
|
8
|
-
extends GetLendingAnalysisSummaryRequest {}
|
|
7
|
+
export interface GetLendingAnalysisSummaryCommandInput extends GetLendingAnalysisSummaryRequest {}
|
|
9
8
|
export interface GetLendingAnalysisSummaryCommandOutput
|
|
10
|
-
extends GetLendingAnalysisSummaryResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetLendingAnalysisSummaryResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetLendingAnalysisSummaryCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetLendingAnalysisSummaryCommandInput
|
|
12
|
+
input: GetLendingAnalysisSummaryCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetLendingAnalysisSummaryCommandInput,
|
|
17
15
|
GetLendingAnalysisSummaryCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetLendingAnalysisSummaryCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetLendingAnalysisSummaryCommandInput
|
|
21
|
+
input: GetLendingAnalysisSummaryCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetLendingAnalysisSummaryCommandInput,
|
|
26
24
|
GetLendingAnalysisSummaryCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAdapterVersionsRequest,
|
|
4
|
-
ListAdapterVersionsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAdapterVersionsRequest, ListAdapterVersionsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAdapterVersionsCommandInput
|
|
8
|
-
extends ListAdapterVersionsRequest {}
|
|
4
|
+
export interface ListAdapterVersionsCommandInput extends ListAdapterVersionsRequest {}
|
|
9
5
|
export interface ListAdapterVersionsCommandOutput
|
|
10
|
-
extends ListAdapterVersionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListAdapterVersionsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListAdapterVersionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListAdapterVersionsCommandInput
|
|
9
|
+
input: ListAdapterVersionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListAdapterVersionsCommandInput,
|
|
17
12
|
ListAdapterVersionsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListAdaptersRequest, ListAdaptersResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListAdaptersCommandInput extends ListAdaptersRequest {}
|
|
5
|
-
export interface ListAdaptersCommandOutput
|
|
6
|
-
extends ListAdaptersResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListAdaptersCommandOutput extends ListAdaptersResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListAdaptersCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListAdaptersCommandInput
|
|
8
|
+
input: ListAdaptersCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListAdaptersCommandInput,
|
|
13
11
|
ListAdaptersCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartDocumentAnalysisRequest,
|
|
4
|
-
StartDocumentAnalysisResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartDocumentAnalysisRequest, StartDocumentAnalysisResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartDocumentAnalysisCommandInput
|
|
8
|
-
extends StartDocumentAnalysisRequest {}
|
|
4
|
+
export interface StartDocumentAnalysisCommandInput extends StartDocumentAnalysisRequest {}
|
|
9
5
|
export interface StartDocumentAnalysisCommandOutput
|
|
10
|
-
extends StartDocumentAnalysisResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartDocumentAnalysisResponse, __MetadataBearer {}
|
|
12
7
|
declare const StartDocumentAnalysisCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartDocumentAnalysisCommandInput
|
|
9
|
+
input: StartDocumentAnalysisCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartDocumentAnalysisCommandInput,
|
|
17
12
|
StartDocumentAnalysisCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StartDocumentAnalysisCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StartDocumentAnalysisCommandInput
|
|
18
|
+
input: StartDocumentAnalysisCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StartDocumentAnalysisCommandInput,
|
|
26
21
|
StartDocumentAnalysisCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StartDocumentTextDetectionResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartDocumentTextDetectionCommandInput
|
|
8
|
-
extends StartDocumentTextDetectionRequest {}
|
|
7
|
+
export interface StartDocumentTextDetectionCommandInput extends StartDocumentTextDetectionRequest {}
|
|
9
8
|
export interface StartDocumentTextDetectionCommandOutput
|
|
10
|
-
extends StartDocumentTextDetectionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StartDocumentTextDetectionResponse, __MetadataBearer {}
|
|
12
10
|
declare const StartDocumentTextDetectionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StartDocumentTextDetectionCommandInput
|
|
12
|
+
input: StartDocumentTextDetectionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StartDocumentTextDetectionCommandInput,
|
|
17
15
|
StartDocumentTextDetectionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StartDocumentTextDetectionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StartDocumentTextDetectionCommandInput
|
|
21
|
+
input: StartDocumentTextDetectionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StartDocumentTextDetectionCommandInput,
|
|
26
24
|
StartDocumentTextDetectionCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartExpenseAnalysisRequest,
|
|
4
|
-
StartExpenseAnalysisResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartExpenseAnalysisRequest, StartExpenseAnalysisResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartExpenseAnalysisCommandInput
|
|
8
|
-
extends StartExpenseAnalysisRequest {}
|
|
4
|
+
export interface StartExpenseAnalysisCommandInput extends StartExpenseAnalysisRequest {}
|
|
9
5
|
export interface StartExpenseAnalysisCommandOutput
|
|
10
|
-
extends StartExpenseAnalysisResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartExpenseAnalysisResponse, __MetadataBearer {}
|
|
12
7
|
declare const StartExpenseAnalysisCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartExpenseAnalysisCommandInput
|
|
9
|
+
input: StartExpenseAnalysisCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartExpenseAnalysisCommandInput,
|
|
17
12
|
StartExpenseAnalysisCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StartExpenseAnalysisCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StartExpenseAnalysisCommandInput
|
|
18
|
+
input: StartExpenseAnalysisCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StartExpenseAnalysisCommandInput,
|
|
26
21
|
StartExpenseAnalysisCommandOutput,
|