@aws-sdk/client-textract 3.38.0 → 3.39.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 +11 -0
- package/dist-cjs/Textract.js +30 -0
- package/dist-cjs/commands/GetExpenseAnalysisCommand.js +36 -0
- package/dist-cjs/commands/StartExpenseAnalysisCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/endpoints.js +5 -0
- package/dist-cjs/models/models_0.js +26 -2
- package/dist-cjs/protocols/Aws_json1_1.js +306 -1
- package/dist-es/Textract.js +30 -0
- package/dist-es/commands/GetExpenseAnalysisCommand.js +39 -0
- package/dist-es/commands/StartExpenseAnalysisCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoints.js +5 -0
- package/dist-es/models/models_0.js +16 -0
- package/dist-es/protocols/Aws_json1_1.js +314 -0
- package/dist-types/Textract.d.ts +47 -2
- package/dist-types/TextractClient.d.ts +4 -2
- package/dist-types/commands/GetExpenseAnalysisCommand.d.ts +51 -0
- package/dist-types/commands/StartDocumentAnalysisCommand.d.ts +1 -1
- package/dist-types/commands/StartDocumentTextDetectionCommand.d.ts +1 -1
- package/dist-types/commands/StartExpenseAnalysisCommand.d.ts +50 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +123 -2
- package/dist-types/protocols/Aws_json1_1.d.ts +6 -0
- package/dist-types/ts3.4/Textract.d.ts +10 -0
- package/dist-types/ts3.4/TextractClient.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetExpenseAnalysisCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartExpenseAnalysisCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +58 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +6 -0
- package/package.json +10 -10
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GetExpenseAnalysisRequest, GetExpenseAnalysisResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient";
|
|
5
|
+
export interface GetExpenseAnalysisCommandInput extends GetExpenseAnalysisRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetExpenseAnalysisCommandOutput extends GetExpenseAnalysisResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Gets the results for an Amazon Textract asynchronous operation that analyzes invoices and
|
|
11
|
+
* receipts. Amazon Textract finds contact information, items purchased, and vendor name, from input
|
|
12
|
+
* invoices and receipts.</p>
|
|
13
|
+
* <p>You start asynchronous invoice/receipt analysis by calling <a>StartExpenseAnalysis</a>, which returns a job identifier (<code>JobId</code>). Upon
|
|
14
|
+
* completion of the invoice/receipt analysis, Amazon Textract publishes the completion status to the
|
|
15
|
+
* Amazon Simple Notification Service (Amazon SNS) topic. This topic must be registered in the initial call to
|
|
16
|
+
* <code>StartExpenseAnalysis</code>. To get the results of the invoice/receipt analysis operation,
|
|
17
|
+
* first ensure that the status value published to the Amazon SNS topic is <code>SUCCEEDED</code>. If so,
|
|
18
|
+
* call <code>GetExpenseAnalysis</code>, and pass the job identifier (<code>JobId</code>) from the
|
|
19
|
+
* initial call to <code>StartExpenseAnalysis</code>.</p>
|
|
20
|
+
* <p>Use the MaxResults parameter to limit the number of blocks that are returned. If there are
|
|
21
|
+
* more results than specified in <code>MaxResults</code>, the value of <code>NextToken</code> in
|
|
22
|
+
* the operation response contains a pagination token for getting the next set of results. To get
|
|
23
|
+
* the next page of results, call <code>GetExpenseAnalysis</code>, and populate the
|
|
24
|
+
* <code>NextToken</code> request parameter with the token value that's returned from the previous
|
|
25
|
+
* call to <code>GetExpenseAnalysis</code>.</p>
|
|
26
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/textract/latest/dg/invoices-receipts.html">Analyzing Invoices and Receipts</a>.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { TextractClient, GetExpenseAnalysisCommand } from "@aws-sdk/client-textract"; // ES Modules import
|
|
31
|
+
* // const { TextractClient, GetExpenseAnalysisCommand } = require("@aws-sdk/client-textract"); // CommonJS import
|
|
32
|
+
* const client = new TextractClient(config);
|
|
33
|
+
* const command = new GetExpenseAnalysisCommand(input);
|
|
34
|
+
* const response = await client.send(command);
|
|
35
|
+
* ```
|
|
36
|
+
*
|
|
37
|
+
* @see {@link GetExpenseAnalysisCommandInput} for command's `input` shape.
|
|
38
|
+
* @see {@link GetExpenseAnalysisCommandOutput} for command's `response` shape.
|
|
39
|
+
* @see {@link TextractClientResolvedConfig | config} for command's `input` shape.
|
|
40
|
+
*
|
|
41
|
+
*/
|
|
42
|
+
export declare class GetExpenseAnalysisCommand extends $Command<GetExpenseAnalysisCommandInput, GetExpenseAnalysisCommandOutput, TextractClientResolvedConfig> {
|
|
43
|
+
readonly input: GetExpenseAnalysisCommandInput;
|
|
44
|
+
constructor(input: GetExpenseAnalysisCommandInput);
|
|
45
|
+
/**
|
|
46
|
+
* @internal
|
|
47
|
+
*/
|
|
48
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TextractClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetExpenseAnalysisCommandInput, GetExpenseAnalysisCommandOutput>;
|
|
49
|
+
private serialize;
|
|
50
|
+
private deserialize;
|
|
51
|
+
}
|
|
@@ -11,7 +11,7 @@ export interface StartDocumentAnalysisCommandOutput extends StartDocumentAnalysi
|
|
|
11
11
|
* items such as key-value pairs, tables, and selection elements.</p>
|
|
12
12
|
*
|
|
13
13
|
* <p>
|
|
14
|
-
* <code>StartDocumentAnalysis</code> can analyze text in documents that are in JPEG, PNG, and PDF format. The
|
|
14
|
+
* <code>StartDocumentAnalysis</code> can analyze text in documents that are in JPEG, PNG, TIFF, and PDF format. The
|
|
15
15
|
* documents are stored in an Amazon S3 bucket. Use <a>DocumentLocation</a> to specify the bucket name and file name
|
|
16
16
|
* of the document.
|
|
17
17
|
* </p>
|
|
@@ -10,7 +10,7 @@ export interface StartDocumentTextDetectionCommandOutput extends StartDocumentTe
|
|
|
10
10
|
* <p>Starts the asynchronous detection of text in a document. Amazon Textract can detect lines of
|
|
11
11
|
* text and the words that make up a line of text.</p>
|
|
12
12
|
* <p>
|
|
13
|
-
* <code>StartDocumentTextDetection</code> can analyze text in documents that are in JPEG, PNG, and PDF format. The
|
|
13
|
+
* <code>StartDocumentTextDetection</code> can analyze text in documents that are in JPEG, PNG, TIFF, and PDF format. The
|
|
14
14
|
* documents are stored in an Amazon S3 bucket. Use <a>DocumentLocation</a> to specify the bucket name and file name
|
|
15
15
|
* of the document.
|
|
16
16
|
* </p>
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { StartExpenseAnalysisRequest, StartExpenseAnalysisResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient";
|
|
5
|
+
export interface StartExpenseAnalysisCommandInput extends StartExpenseAnalysisRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface StartExpenseAnalysisCommandOutput extends StartExpenseAnalysisResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Starts the asynchronous analysis of invoices or receipts for data like contact information,
|
|
11
|
+
* items purchased, and vendor names.</p>
|
|
12
|
+
*
|
|
13
|
+
* <p>
|
|
14
|
+
* <code>StartExpenseAnalysis</code> can analyze text in documents that are in JPEG, PNG, and
|
|
15
|
+
* PDF format. The documents must be stored in an Amazon S3 bucket. Use the <a>DocumentLocation</a> parameter to specify the name of your S3 bucket and the name of the
|
|
16
|
+
* document in that bucket. </p>
|
|
17
|
+
* <p>
|
|
18
|
+
* <code>StartExpenseAnalysis</code> returns a job identifier (<code>JobId</code>) that you
|
|
19
|
+
* will provide to <code>GetExpenseAnalysis</code> to retrieve the results of the operation. When
|
|
20
|
+
* the analysis of the input invoices/receipts is finished, Amazon Textract publishes a completion
|
|
21
|
+
* status to the Amazon Simple Notification Service (Amazon SNS) topic that you provide to the <code>NotificationChannel</code>.
|
|
22
|
+
* To obtain the results of the invoice and receipt analysis operation, ensure that the status value
|
|
23
|
+
* published to the Amazon SNS topic is <code>SUCCEEDED</code>. If so, call <a>GetExpenseAnalysis</a>, and pass the job identifier (<code>JobId</code>) that was
|
|
24
|
+
* returned by your call to <code>StartExpenseAnalysis</code>.</p>
|
|
25
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/textract/latest/dg/invoice-receipts.html">Analyzing Invoices and Receipts</a>.</p>
|
|
26
|
+
* @example
|
|
27
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
28
|
+
* ```javascript
|
|
29
|
+
* import { TextractClient, StartExpenseAnalysisCommand } from "@aws-sdk/client-textract"; // ES Modules import
|
|
30
|
+
* // const { TextractClient, StartExpenseAnalysisCommand } = require("@aws-sdk/client-textract"); // CommonJS import
|
|
31
|
+
* const client = new TextractClient(config);
|
|
32
|
+
* const command = new StartExpenseAnalysisCommand(input);
|
|
33
|
+
* const response = await client.send(command);
|
|
34
|
+
* ```
|
|
35
|
+
*
|
|
36
|
+
* @see {@link StartExpenseAnalysisCommandInput} for command's `input` shape.
|
|
37
|
+
* @see {@link StartExpenseAnalysisCommandOutput} for command's `response` shape.
|
|
38
|
+
* @see {@link TextractClientResolvedConfig | config} for command's `input` shape.
|
|
39
|
+
*
|
|
40
|
+
*/
|
|
41
|
+
export declare class StartExpenseAnalysisCommand extends $Command<StartExpenseAnalysisCommandInput, StartExpenseAnalysisCommandOutput, TextractClientResolvedConfig> {
|
|
42
|
+
readonly input: StartExpenseAnalysisCommandInput;
|
|
43
|
+
constructor(input: StartExpenseAnalysisCommandInput);
|
|
44
|
+
/**
|
|
45
|
+
* @internal
|
|
46
|
+
*/
|
|
47
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TextractClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartExpenseAnalysisCommandInput, StartExpenseAnalysisCommandOutput>;
|
|
48
|
+
private serialize;
|
|
49
|
+
private deserialize;
|
|
50
|
+
}
|
|
@@ -3,5 +3,7 @@ export * from "./AnalyzeExpenseCommand";
|
|
|
3
3
|
export * from "./DetectDocumentTextCommand";
|
|
4
4
|
export * from "./GetDocumentAnalysisCommand";
|
|
5
5
|
export * from "./GetDocumentTextDetectionCommand";
|
|
6
|
+
export * from "./GetExpenseAnalysisCommand";
|
|
6
7
|
export * from "./StartDocumentAnalysisCommand";
|
|
7
8
|
export * from "./StartDocumentTextDetectionCommand";
|
|
9
|
+
export * from "./StartExpenseAnalysisCommand";
|
|
@@ -34,7 +34,7 @@ export interface S3Object {
|
|
|
34
34
|
Bucket?: string;
|
|
35
35
|
/**
|
|
36
36
|
* <p>The file name of the input document. Synchronous operations can use image files that are
|
|
37
|
-
* in JPEG or PNG format. Asynchronous operations also support PDF format files.</p>
|
|
37
|
+
* in JPEG or PNG format. Asynchronous operations also support PDF and TIFF format files.</p>
|
|
38
38
|
*/
|
|
39
39
|
Name?: string;
|
|
40
40
|
/**
|
|
@@ -480,7 +480,7 @@ export interface Block {
|
|
|
480
480
|
/**
|
|
481
481
|
* <p>The page on which a block was detected. <code>Page</code> is returned by asynchronous
|
|
482
482
|
* operations. Page values greater than 1 are only returned for multipage documents that are
|
|
483
|
-
* in PDF format. A scanned image (JPEG/PNG), even if it contains multiple document pages, is
|
|
483
|
+
* in PDF or TIFF format. A scanned image (JPEG/PNG), even if it contains multiple document pages, is
|
|
484
484
|
* considered to be a single-page document. The value of <code>Page</code> is always 1.
|
|
485
485
|
* Synchronous operations don't return <code>Page</code> because every input document is
|
|
486
486
|
* considered to be a single-page document.</p>
|
|
@@ -1127,6 +1127,69 @@ export declare namespace GetDocumentTextDetectionResponse {
|
|
|
1127
1127
|
*/
|
|
1128
1128
|
const filterSensitiveLog: (obj: GetDocumentTextDetectionResponse) => any;
|
|
1129
1129
|
}
|
|
1130
|
+
export interface GetExpenseAnalysisRequest {
|
|
1131
|
+
/**
|
|
1132
|
+
* <p>A unique identifier for the text detection job. The <code>JobId</code> is returned from
|
|
1133
|
+
* <code>StartExpenseAnalysis</code>. A <code>JobId</code> value is only valid for 7 days.</p>
|
|
1134
|
+
*/
|
|
1135
|
+
JobId: string | undefined;
|
|
1136
|
+
/**
|
|
1137
|
+
* <p>The maximum number of results to return per paginated call. The largest value you can
|
|
1138
|
+
* specify is 20. If you specify a value greater than 20, a maximum of 20 results is
|
|
1139
|
+
* returned. The default value is 20.</p>
|
|
1140
|
+
*/
|
|
1141
|
+
MaxResults?: number;
|
|
1142
|
+
/**
|
|
1143
|
+
* <p>If the previous response was incomplete (because there are more blocks to retrieve), Amazon Textract returns a pagination
|
|
1144
|
+
* token in the response. You can use this pagination token to retrieve the next set of blocks.</p>
|
|
1145
|
+
*/
|
|
1146
|
+
NextToken?: string;
|
|
1147
|
+
}
|
|
1148
|
+
export declare namespace GetExpenseAnalysisRequest {
|
|
1149
|
+
/**
|
|
1150
|
+
* @internal
|
|
1151
|
+
*/
|
|
1152
|
+
const filterSensitiveLog: (obj: GetExpenseAnalysisRequest) => any;
|
|
1153
|
+
}
|
|
1154
|
+
export interface GetExpenseAnalysisResponse {
|
|
1155
|
+
/**
|
|
1156
|
+
* <p>Information about a document that Amazon Textract processed. <code>DocumentMetadata</code> is
|
|
1157
|
+
* returned in every page of paginated responses from an Amazon Textract operation.</p>
|
|
1158
|
+
*/
|
|
1159
|
+
DocumentMetadata?: DocumentMetadata;
|
|
1160
|
+
/**
|
|
1161
|
+
* <p>The current status of the text detection job.</p>
|
|
1162
|
+
*/
|
|
1163
|
+
JobStatus?: JobStatus | string;
|
|
1164
|
+
/**
|
|
1165
|
+
* <p>If the response is truncated, Amazon Textract returns this token. You can use this token in
|
|
1166
|
+
* the subsequent request to retrieve the next set of text-detection results.</p>
|
|
1167
|
+
*/
|
|
1168
|
+
NextToken?: string;
|
|
1169
|
+
/**
|
|
1170
|
+
* <p>The expenses detected by Amazon Textract.</p>
|
|
1171
|
+
*/
|
|
1172
|
+
ExpenseDocuments?: ExpenseDocument[];
|
|
1173
|
+
/**
|
|
1174
|
+
* <p>A list of warnings that occurred during the text-detection operation for the
|
|
1175
|
+
* document.</p>
|
|
1176
|
+
*/
|
|
1177
|
+
Warnings?: Warning[];
|
|
1178
|
+
/**
|
|
1179
|
+
* <p>Returns if the detection job could not be completed. Contains explanation for what error occured. </p>
|
|
1180
|
+
*/
|
|
1181
|
+
StatusMessage?: string;
|
|
1182
|
+
/**
|
|
1183
|
+
* <p>The current model version of AnalyzeExpense.</p>
|
|
1184
|
+
*/
|
|
1185
|
+
AnalyzeExpenseModelVersion?: string;
|
|
1186
|
+
}
|
|
1187
|
+
export declare namespace GetExpenseAnalysisResponse {
|
|
1188
|
+
/**
|
|
1189
|
+
* @internal
|
|
1190
|
+
*/
|
|
1191
|
+
const filterSensitiveLog: (obj: GetExpenseAnalysisResponse) => any;
|
|
1192
|
+
}
|
|
1130
1193
|
/**
|
|
1131
1194
|
* <p>A <code>ClientRequestToken</code> input parameter was reused with an operation, but at
|
|
1132
1195
|
* least one of the other input parameters is different from the previous call to the
|
|
@@ -1345,3 +1408,61 @@ export declare namespace StartDocumentTextDetectionResponse {
|
|
|
1345
1408
|
*/
|
|
1346
1409
|
const filterSensitiveLog: (obj: StartDocumentTextDetectionResponse) => any;
|
|
1347
1410
|
}
|
|
1411
|
+
export interface StartExpenseAnalysisRequest {
|
|
1412
|
+
/**
|
|
1413
|
+
* <p>The location of the document to be processed.</p>
|
|
1414
|
+
*/
|
|
1415
|
+
DocumentLocation: DocumentLocation | undefined;
|
|
1416
|
+
/**
|
|
1417
|
+
* <p>The idempotent token that's used to identify the start request. If you use the same token with multiple <code>StartDocumentTextDetection</code> requests, the same <code>JobId</code> is returned.
|
|
1418
|
+
* Use <code>ClientRequestToken</code> to prevent the same job from being accidentally started more than once.
|
|
1419
|
+
* For more information, see <a href="https://docs.aws.amazon.com/textract/latest/dg/api-async.html">Calling Amazon Textract Asynchronous Operations</a>
|
|
1420
|
+
* </p>
|
|
1421
|
+
*/
|
|
1422
|
+
ClientRequestToken?: string;
|
|
1423
|
+
/**
|
|
1424
|
+
* <p>An identifier you specify that's included in the completion notification published
|
|
1425
|
+
* to the Amazon SNS topic. For example, you can use <code>JobTag</code> to identify the type of
|
|
1426
|
+
* document that the completion notification corresponds to (such as a tax form or a
|
|
1427
|
+
* receipt).</p>
|
|
1428
|
+
*/
|
|
1429
|
+
JobTag?: string;
|
|
1430
|
+
/**
|
|
1431
|
+
* <p>The Amazon SNS topic ARN that you want Amazon Textract to publish the completion status of the
|
|
1432
|
+
* operation to. </p>
|
|
1433
|
+
*/
|
|
1434
|
+
NotificationChannel?: NotificationChannel;
|
|
1435
|
+
/**
|
|
1436
|
+
* <p>Sets if the output will go to a customer defined bucket. By default, Amazon Textract will
|
|
1437
|
+
* save the results internally to be accessed by the <code>GetExpenseAnalysis</code>
|
|
1438
|
+
* operation.</p>
|
|
1439
|
+
*/
|
|
1440
|
+
OutputConfig?: OutputConfig;
|
|
1441
|
+
/**
|
|
1442
|
+
* <p>The KMS key used to encrypt the inference results. This can be
|
|
1443
|
+
* in either Key ID or Key Alias format. When a KMS key is provided, the
|
|
1444
|
+
* KMS key will be used for server-side encryption of the objects in the
|
|
1445
|
+
* customer bucket. When this parameter is not enabled, the result will
|
|
1446
|
+
* be encrypted server side,using SSE-S3.</p>
|
|
1447
|
+
*/
|
|
1448
|
+
KMSKeyId?: string;
|
|
1449
|
+
}
|
|
1450
|
+
export declare namespace StartExpenseAnalysisRequest {
|
|
1451
|
+
/**
|
|
1452
|
+
* @internal
|
|
1453
|
+
*/
|
|
1454
|
+
const filterSensitiveLog: (obj: StartExpenseAnalysisRequest) => any;
|
|
1455
|
+
}
|
|
1456
|
+
export interface StartExpenseAnalysisResponse {
|
|
1457
|
+
/**
|
|
1458
|
+
* <p>A unique identifier for the text detection job. The <code>JobId</code> is returned from
|
|
1459
|
+
* <code>StartExpenseAnalysis</code>. A <code>JobId</code> value is only valid for 7 days.</p>
|
|
1460
|
+
*/
|
|
1461
|
+
JobId?: string;
|
|
1462
|
+
}
|
|
1463
|
+
export declare namespace StartExpenseAnalysisResponse {
|
|
1464
|
+
/**
|
|
1465
|
+
* @internal
|
|
1466
|
+
*/
|
|
1467
|
+
const filterSensitiveLog: (obj: StartExpenseAnalysisResponse) => any;
|
|
1468
|
+
}
|
|
@@ -5,19 +5,25 @@ import { AnalyzeExpenseCommandInput, AnalyzeExpenseCommandOutput } from "../comm
|
|
|
5
5
|
import { DetectDocumentTextCommandInput, DetectDocumentTextCommandOutput } from "../commands/DetectDocumentTextCommand";
|
|
6
6
|
import { GetDocumentAnalysisCommandInput, GetDocumentAnalysisCommandOutput } from "../commands/GetDocumentAnalysisCommand";
|
|
7
7
|
import { GetDocumentTextDetectionCommandInput, GetDocumentTextDetectionCommandOutput } from "../commands/GetDocumentTextDetectionCommand";
|
|
8
|
+
import { GetExpenseAnalysisCommandInput, GetExpenseAnalysisCommandOutput } from "../commands/GetExpenseAnalysisCommand";
|
|
8
9
|
import { StartDocumentAnalysisCommandInput, StartDocumentAnalysisCommandOutput } from "../commands/StartDocumentAnalysisCommand";
|
|
9
10
|
import { StartDocumentTextDetectionCommandInput, StartDocumentTextDetectionCommandOutput } from "../commands/StartDocumentTextDetectionCommand";
|
|
11
|
+
import { StartExpenseAnalysisCommandInput, StartExpenseAnalysisCommandOutput } from "../commands/StartExpenseAnalysisCommand";
|
|
10
12
|
export declare const serializeAws_json1_1AnalyzeDocumentCommand: (input: AnalyzeDocumentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
11
13
|
export declare const serializeAws_json1_1AnalyzeExpenseCommand: (input: AnalyzeExpenseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
12
14
|
export declare const serializeAws_json1_1DetectDocumentTextCommand: (input: DetectDocumentTextCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
13
15
|
export declare const serializeAws_json1_1GetDocumentAnalysisCommand: (input: GetDocumentAnalysisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
14
16
|
export declare const serializeAws_json1_1GetDocumentTextDetectionCommand: (input: GetDocumentTextDetectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
|
+
export declare const serializeAws_json1_1GetExpenseAnalysisCommand: (input: GetExpenseAnalysisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
15
18
|
export declare const serializeAws_json1_1StartDocumentAnalysisCommand: (input: StartDocumentAnalysisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
16
19
|
export declare const serializeAws_json1_1StartDocumentTextDetectionCommand: (input: StartDocumentTextDetectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
|
+
export declare const serializeAws_json1_1StartExpenseAnalysisCommand: (input: StartExpenseAnalysisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
21
|
export declare const deserializeAws_json1_1AnalyzeDocumentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AnalyzeDocumentCommandOutput>;
|
|
18
22
|
export declare const deserializeAws_json1_1AnalyzeExpenseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AnalyzeExpenseCommandOutput>;
|
|
19
23
|
export declare const deserializeAws_json1_1DetectDocumentTextCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DetectDocumentTextCommandOutput>;
|
|
20
24
|
export declare const deserializeAws_json1_1GetDocumentAnalysisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDocumentAnalysisCommandOutput>;
|
|
21
25
|
export declare const deserializeAws_json1_1GetDocumentTextDetectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDocumentTextDetectionCommandOutput>;
|
|
26
|
+
export declare const deserializeAws_json1_1GetExpenseAnalysisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExpenseAnalysisCommandOutput>;
|
|
22
27
|
export declare const deserializeAws_json1_1StartDocumentAnalysisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartDocumentAnalysisCommandOutput>;
|
|
23
28
|
export declare const deserializeAws_json1_1StartDocumentTextDetectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartDocumentTextDetectionCommandOutput>;
|
|
29
|
+
export declare const deserializeAws_json1_1StartExpenseAnalysisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartExpenseAnalysisCommandOutput>;
|
|
@@ -4,8 +4,10 @@ import { AnalyzeExpenseCommandInput, AnalyzeExpenseCommandOutput } from "./comma
|
|
|
4
4
|
import { DetectDocumentTextCommandInput, DetectDocumentTextCommandOutput } from "./commands/DetectDocumentTextCommand";
|
|
5
5
|
import { GetDocumentAnalysisCommandInput, GetDocumentAnalysisCommandOutput } from "./commands/GetDocumentAnalysisCommand";
|
|
6
6
|
import { GetDocumentTextDetectionCommandInput, GetDocumentTextDetectionCommandOutput } from "./commands/GetDocumentTextDetectionCommand";
|
|
7
|
+
import { GetExpenseAnalysisCommandInput, GetExpenseAnalysisCommandOutput } from "./commands/GetExpenseAnalysisCommand";
|
|
7
8
|
import { StartDocumentAnalysisCommandInput, StartDocumentAnalysisCommandOutput } from "./commands/StartDocumentAnalysisCommand";
|
|
8
9
|
import { StartDocumentTextDetectionCommandInput, StartDocumentTextDetectionCommandOutput } from "./commands/StartDocumentTextDetectionCommand";
|
|
10
|
+
import { StartExpenseAnalysisCommandInput, StartExpenseAnalysisCommandOutput } from "./commands/StartExpenseAnalysisCommand";
|
|
9
11
|
import { TextractClient } from "./TextractClient";
|
|
10
12
|
|
|
11
13
|
export declare class Textract extends TextractClient {
|
|
@@ -30,6 +32,10 @@ export declare class Textract extends TextractClient {
|
|
|
30
32
|
getDocumentTextDetection(args: GetDocumentTextDetectionCommandInput, cb: (err: any, data?: GetDocumentTextDetectionCommandOutput) => void): void;
|
|
31
33
|
getDocumentTextDetection(args: GetDocumentTextDetectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDocumentTextDetectionCommandOutput) => void): void;
|
|
32
34
|
|
|
35
|
+
getExpenseAnalysis(args: GetExpenseAnalysisCommandInput, options?: __HttpHandlerOptions): Promise<GetExpenseAnalysisCommandOutput>;
|
|
36
|
+
getExpenseAnalysis(args: GetExpenseAnalysisCommandInput, cb: (err: any, data?: GetExpenseAnalysisCommandOutput) => void): void;
|
|
37
|
+
getExpenseAnalysis(args: GetExpenseAnalysisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetExpenseAnalysisCommandOutput) => void): void;
|
|
38
|
+
|
|
33
39
|
startDocumentAnalysis(args: StartDocumentAnalysisCommandInput, options?: __HttpHandlerOptions): Promise<StartDocumentAnalysisCommandOutput>;
|
|
34
40
|
startDocumentAnalysis(args: StartDocumentAnalysisCommandInput, cb: (err: any, data?: StartDocumentAnalysisCommandOutput) => void): void;
|
|
35
41
|
startDocumentAnalysis(args: StartDocumentAnalysisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDocumentAnalysisCommandOutput) => void): void;
|
|
@@ -37,4 +43,8 @@ export declare class Textract extends TextractClient {
|
|
|
37
43
|
startDocumentTextDetection(args: StartDocumentTextDetectionCommandInput, options?: __HttpHandlerOptions): Promise<StartDocumentTextDetectionCommandOutput>;
|
|
38
44
|
startDocumentTextDetection(args: StartDocumentTextDetectionCommandInput, cb: (err: any, data?: StartDocumentTextDetectionCommandOutput) => void): void;
|
|
39
45
|
startDocumentTextDetection(args: StartDocumentTextDetectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDocumentTextDetectionCommandOutput) => void): void;
|
|
46
|
+
|
|
47
|
+
startExpenseAnalysis(args: StartExpenseAnalysisCommandInput, options?: __HttpHandlerOptions): Promise<StartExpenseAnalysisCommandOutput>;
|
|
48
|
+
startExpenseAnalysis(args: StartExpenseAnalysisCommandInput, cb: (err: any, data?: StartExpenseAnalysisCommandOutput) => void): void;
|
|
49
|
+
startExpenseAnalysis(args: StartExpenseAnalysisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartExpenseAnalysisCommandOutput) => void): void;
|
|
40
50
|
}
|
|
@@ -11,10 +11,12 @@ import { AnalyzeExpenseCommandInput, AnalyzeExpenseCommandOutput } from "./comma
|
|
|
11
11
|
import { DetectDocumentTextCommandInput, DetectDocumentTextCommandOutput } from "./commands/DetectDocumentTextCommand";
|
|
12
12
|
import { GetDocumentAnalysisCommandInput, GetDocumentAnalysisCommandOutput } from "./commands/GetDocumentAnalysisCommand";
|
|
13
13
|
import { GetDocumentTextDetectionCommandInput, GetDocumentTextDetectionCommandOutput } from "./commands/GetDocumentTextDetectionCommand";
|
|
14
|
+
import { GetExpenseAnalysisCommandInput, GetExpenseAnalysisCommandOutput } from "./commands/GetExpenseAnalysisCommand";
|
|
14
15
|
import { StartDocumentAnalysisCommandInput, StartDocumentAnalysisCommandOutput } from "./commands/StartDocumentAnalysisCommand";
|
|
15
16
|
import { StartDocumentTextDetectionCommandInput, StartDocumentTextDetectionCommandOutput } from "./commands/StartDocumentTextDetectionCommand";
|
|
16
|
-
|
|
17
|
-
export declare type
|
|
17
|
+
import { StartExpenseAnalysisCommandInput, StartExpenseAnalysisCommandOutput } from "./commands/StartExpenseAnalysisCommand";
|
|
18
|
+
export declare type ServiceInputTypes = AnalyzeDocumentCommandInput | AnalyzeExpenseCommandInput | DetectDocumentTextCommandInput | GetDocumentAnalysisCommandInput | GetDocumentTextDetectionCommandInput | GetExpenseAnalysisCommandInput | StartDocumentAnalysisCommandInput | StartDocumentTextDetectionCommandInput | StartExpenseAnalysisCommandInput;
|
|
19
|
+
export declare type ServiceOutputTypes = AnalyzeDocumentCommandOutput | AnalyzeExpenseCommandOutput | DetectDocumentTextCommandOutput | GetDocumentAnalysisCommandOutput | GetDocumentTextDetectionCommandOutput | GetExpenseAnalysisCommandOutput | StartDocumentAnalysisCommandOutput | StartDocumentTextDetectionCommandOutput | StartExpenseAnalysisCommandOutput;
|
|
18
20
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
19
21
|
|
|
20
22
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GetExpenseAnalysisRequest, GetExpenseAnalysisResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient";
|
|
5
|
+
export interface GetExpenseAnalysisCommandInput extends GetExpenseAnalysisRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetExpenseAnalysisCommandOutput extends GetExpenseAnalysisResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetExpenseAnalysisCommand extends $Command<GetExpenseAnalysisCommandInput, GetExpenseAnalysisCommandOutput, TextractClientResolvedConfig> {
|
|
11
|
+
readonly input: GetExpenseAnalysisCommandInput;
|
|
12
|
+
constructor(input: GetExpenseAnalysisCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TextractClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetExpenseAnalysisCommandInput, GetExpenseAnalysisCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { StartExpenseAnalysisRequest, StartExpenseAnalysisResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient";
|
|
5
|
+
export interface StartExpenseAnalysisCommandInput extends StartExpenseAnalysisRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface StartExpenseAnalysisCommandOutput extends StartExpenseAnalysisResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class StartExpenseAnalysisCommand extends $Command<StartExpenseAnalysisCommandInput, StartExpenseAnalysisCommandOutput, TextractClientResolvedConfig> {
|
|
11
|
+
readonly input: StartExpenseAnalysisCommandInput;
|
|
12
|
+
constructor(input: StartExpenseAnalysisCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TextractClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartExpenseAnalysisCommandInput, StartExpenseAnalysisCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -3,5 +3,7 @@ export * from "./AnalyzeExpenseCommand";
|
|
|
3
3
|
export * from "./DetectDocumentTextCommand";
|
|
4
4
|
export * from "./GetDocumentAnalysisCommand";
|
|
5
5
|
export * from "./GetDocumentTextDetectionCommand";
|
|
6
|
+
export * from "./GetExpenseAnalysisCommand";
|
|
6
7
|
export * from "./StartDocumentAnalysisCommand";
|
|
7
8
|
export * from "./StartDocumentTextDetectionCommand";
|
|
9
|
+
export * from "./StartExpenseAnalysisCommand";
|
|
@@ -549,6 +549,38 @@ export declare namespace GetDocumentTextDetectionResponse {
|
|
|
549
549
|
|
|
550
550
|
const filterSensitiveLog: (obj: GetDocumentTextDetectionResponse) => any;
|
|
551
551
|
}
|
|
552
|
+
export interface GetExpenseAnalysisRequest {
|
|
553
|
+
|
|
554
|
+
JobId: string | undefined;
|
|
555
|
+
|
|
556
|
+
MaxResults?: number;
|
|
557
|
+
|
|
558
|
+
NextToken?: string;
|
|
559
|
+
}
|
|
560
|
+
export declare namespace GetExpenseAnalysisRequest {
|
|
561
|
+
|
|
562
|
+
const filterSensitiveLog: (obj: GetExpenseAnalysisRequest) => any;
|
|
563
|
+
}
|
|
564
|
+
export interface GetExpenseAnalysisResponse {
|
|
565
|
+
|
|
566
|
+
DocumentMetadata?: DocumentMetadata;
|
|
567
|
+
|
|
568
|
+
JobStatus?: JobStatus | string;
|
|
569
|
+
|
|
570
|
+
NextToken?: string;
|
|
571
|
+
|
|
572
|
+
ExpenseDocuments?: ExpenseDocument[];
|
|
573
|
+
|
|
574
|
+
Warnings?: Warning[];
|
|
575
|
+
|
|
576
|
+
StatusMessage?: string;
|
|
577
|
+
|
|
578
|
+
AnalyzeExpenseModelVersion?: string;
|
|
579
|
+
}
|
|
580
|
+
export declare namespace GetExpenseAnalysisResponse {
|
|
581
|
+
|
|
582
|
+
const filterSensitiveLog: (obj: GetExpenseAnalysisResponse) => any;
|
|
583
|
+
}
|
|
552
584
|
|
|
553
585
|
export interface IdempotentParameterMismatchException extends __SmithyException, $MetadataBearer {
|
|
554
586
|
name: "IdempotentParameterMismatchException";
|
|
@@ -647,3 +679,29 @@ export declare namespace StartDocumentTextDetectionResponse {
|
|
|
647
679
|
|
|
648
680
|
const filterSensitiveLog: (obj: StartDocumentTextDetectionResponse) => any;
|
|
649
681
|
}
|
|
682
|
+
export interface StartExpenseAnalysisRequest {
|
|
683
|
+
|
|
684
|
+
DocumentLocation: DocumentLocation | undefined;
|
|
685
|
+
|
|
686
|
+
ClientRequestToken?: string;
|
|
687
|
+
|
|
688
|
+
JobTag?: string;
|
|
689
|
+
|
|
690
|
+
NotificationChannel?: NotificationChannel;
|
|
691
|
+
|
|
692
|
+
OutputConfig?: OutputConfig;
|
|
693
|
+
|
|
694
|
+
KMSKeyId?: string;
|
|
695
|
+
}
|
|
696
|
+
export declare namespace StartExpenseAnalysisRequest {
|
|
697
|
+
|
|
698
|
+
const filterSensitiveLog: (obj: StartExpenseAnalysisRequest) => any;
|
|
699
|
+
}
|
|
700
|
+
export interface StartExpenseAnalysisResponse {
|
|
701
|
+
|
|
702
|
+
JobId?: string;
|
|
703
|
+
}
|
|
704
|
+
export declare namespace StartExpenseAnalysisResponse {
|
|
705
|
+
|
|
706
|
+
const filterSensitiveLog: (obj: StartExpenseAnalysisResponse) => any;
|
|
707
|
+
}
|
|
@@ -5,19 +5,25 @@ import { AnalyzeExpenseCommandInput, AnalyzeExpenseCommandOutput } from "../comm
|
|
|
5
5
|
import { DetectDocumentTextCommandInput, DetectDocumentTextCommandOutput } from "../commands/DetectDocumentTextCommand";
|
|
6
6
|
import { GetDocumentAnalysisCommandInput, GetDocumentAnalysisCommandOutput } from "../commands/GetDocumentAnalysisCommand";
|
|
7
7
|
import { GetDocumentTextDetectionCommandInput, GetDocumentTextDetectionCommandOutput } from "../commands/GetDocumentTextDetectionCommand";
|
|
8
|
+
import { GetExpenseAnalysisCommandInput, GetExpenseAnalysisCommandOutput } from "../commands/GetExpenseAnalysisCommand";
|
|
8
9
|
import { StartDocumentAnalysisCommandInput, StartDocumentAnalysisCommandOutput } from "../commands/StartDocumentAnalysisCommand";
|
|
9
10
|
import { StartDocumentTextDetectionCommandInput, StartDocumentTextDetectionCommandOutput } from "../commands/StartDocumentTextDetectionCommand";
|
|
11
|
+
import { StartExpenseAnalysisCommandInput, StartExpenseAnalysisCommandOutput } from "../commands/StartExpenseAnalysisCommand";
|
|
10
12
|
export declare const serializeAws_json1_1AnalyzeDocumentCommand: (input: AnalyzeDocumentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
11
13
|
export declare const serializeAws_json1_1AnalyzeExpenseCommand: (input: AnalyzeExpenseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
12
14
|
export declare const serializeAws_json1_1DetectDocumentTextCommand: (input: DetectDocumentTextCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
13
15
|
export declare const serializeAws_json1_1GetDocumentAnalysisCommand: (input: GetDocumentAnalysisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
14
16
|
export declare const serializeAws_json1_1GetDocumentTextDetectionCommand: (input: GetDocumentTextDetectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
|
+
export declare const serializeAws_json1_1GetExpenseAnalysisCommand: (input: GetExpenseAnalysisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
15
18
|
export declare const serializeAws_json1_1StartDocumentAnalysisCommand: (input: StartDocumentAnalysisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
16
19
|
export declare const serializeAws_json1_1StartDocumentTextDetectionCommand: (input: StartDocumentTextDetectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
|
+
export declare const serializeAws_json1_1StartExpenseAnalysisCommand: (input: StartExpenseAnalysisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
21
|
export declare const deserializeAws_json1_1AnalyzeDocumentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AnalyzeDocumentCommandOutput>;
|
|
18
22
|
export declare const deserializeAws_json1_1AnalyzeExpenseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AnalyzeExpenseCommandOutput>;
|
|
19
23
|
export declare const deserializeAws_json1_1DetectDocumentTextCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DetectDocumentTextCommandOutput>;
|
|
20
24
|
export declare const deserializeAws_json1_1GetDocumentAnalysisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDocumentAnalysisCommandOutput>;
|
|
21
25
|
export declare const deserializeAws_json1_1GetDocumentTextDetectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDocumentTextDetectionCommandOutput>;
|
|
26
|
+
export declare const deserializeAws_json1_1GetExpenseAnalysisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExpenseAnalysisCommandOutput>;
|
|
22
27
|
export declare const deserializeAws_json1_1StartDocumentAnalysisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartDocumentAnalysisCommandOutput>;
|
|
23
28
|
export declare const deserializeAws_json1_1StartDocumentTextDetectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartDocumentTextDetectionCommandOutput>;
|
|
29
|
+
export declare const deserializeAws_json1_1StartExpenseAnalysisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartExpenseAnalysisCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-textract",
|
|
3
3
|
"description": "AWS SDK for JavaScript Textract Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.39.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -19,23 +19,23 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-crypto/sha256-browser": "
|
|
23
|
-
"@aws-crypto/sha256-js": "
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
22
|
+
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
|
+
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.39.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.39.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.39.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.38.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.38.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.38.0",
|
|
30
30
|
"@aws-sdk/middleware-content-length": "3.38.0",
|
|
31
31
|
"@aws-sdk/middleware-host-header": "3.38.0",
|
|
32
32
|
"@aws-sdk/middleware-logger": "3.38.0",
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.39.0",
|
|
34
34
|
"@aws-sdk/middleware-serde": "3.38.0",
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.39.0",
|
|
36
36
|
"@aws-sdk/middleware-stack": "3.38.0",
|
|
37
37
|
"@aws-sdk/middleware-user-agent": "3.38.0",
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.39.0",
|
|
39
39
|
"@aws-sdk/node-http-handler": "3.38.0",
|
|
40
40
|
"@aws-sdk/protocol-http": "3.38.0",
|
|
41
41
|
"@aws-sdk/smithy-client": "3.38.0",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.37.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.37.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.38.0",
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.39.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.37.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.37.0",
|
|
52
52
|
"tslib": "^2.3.0"
|