@aws-sdk/client-textract 3.651.1 → 3.654.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-types/commands/AnalyzeDocumentCommand.d.ts +11 -0
- package/dist-types/commands/AnalyzeExpenseCommand.d.ts +11 -0
- package/dist-types/commands/AnalyzeIDCommand.d.ts +11 -0
- package/dist-types/commands/CreateAdapterCommand.d.ts +11 -0
- package/dist-types/commands/CreateAdapterVersionCommand.d.ts +11 -0
- package/dist-types/commands/DeleteAdapterCommand.d.ts +11 -0
- package/dist-types/commands/DeleteAdapterVersionCommand.d.ts +11 -0
- package/dist-types/commands/DetectDocumentTextCommand.d.ts +11 -0
- package/dist-types/commands/GetAdapterCommand.d.ts +11 -0
- package/dist-types/commands/GetAdapterVersionCommand.d.ts +11 -0
- package/dist-types/commands/GetDocumentAnalysisCommand.d.ts +11 -0
- package/dist-types/commands/GetDocumentTextDetectionCommand.d.ts +11 -0
- package/dist-types/commands/GetExpenseAnalysisCommand.d.ts +11 -0
- package/dist-types/commands/GetLendingAnalysisCommand.d.ts +11 -0
- package/dist-types/commands/GetLendingAnalysisSummaryCommand.d.ts +11 -0
- package/dist-types/commands/ListAdapterVersionsCommand.d.ts +11 -0
- package/dist-types/commands/ListAdaptersCommand.d.ts +11 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/StartDocumentAnalysisCommand.d.ts +11 -0
- package/dist-types/commands/StartDocumentTextDetectionCommand.d.ts +11 -0
- package/dist-types/commands/StartExpenseAnalysisCommand.d.ts +11 -0
- package/dist-types/commands/StartLendingAnalysisCommand.d.ts +11 -0
- package/dist-types/commands/TagResourceCommand.d.ts +11 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +11 -0
- package/dist-types/commands/UpdateAdapterCommand.d.ts +11 -0
- package/dist-types/ts3.4/commands/AnalyzeDocumentCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/AnalyzeExpenseCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/AnalyzeIDCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/CreateAdapterCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/CreateAdapterVersionCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/DeleteAdapterCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/DeleteAdapterVersionCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/DetectDocumentTextCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetAdapterCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetAdapterVersionCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetDocumentAnalysisCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetDocumentTextDetectionCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetExpenseAnalysisCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetLendingAnalysisCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/GetLendingAnalysisSummaryCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/ListAdapterVersionsCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/ListAdaptersCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/StartDocumentAnalysisCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/StartDocumentTextDetectionCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/StartExpenseAnalysisCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/StartLendingAnalysisCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/UpdateAdapterCommand.d.ts +12 -1
- package/package.json +35 -35
|
@@ -244,4 +244,15 @@ declare const AnalyzeDocumentCommand_base: {
|
|
|
244
244
|
* @public
|
|
245
245
|
*/
|
|
246
246
|
export declare class AnalyzeDocumentCommand extends AnalyzeDocumentCommand_base {
|
|
247
|
+
/** @internal type navigation helper, not in runtime. */
|
|
248
|
+
protected static __types: {
|
|
249
|
+
api: {
|
|
250
|
+
input: AnalyzeDocumentRequest;
|
|
251
|
+
output: AnalyzeDocumentResponse;
|
|
252
|
+
};
|
|
253
|
+
sdk: {
|
|
254
|
+
input: AnalyzeDocumentCommandInput;
|
|
255
|
+
output: AnalyzeDocumentCommandOutput;
|
|
256
|
+
};
|
|
257
|
+
};
|
|
247
258
|
}
|
|
@@ -285,4 +285,15 @@ declare const AnalyzeExpenseCommand_base: {
|
|
|
285
285
|
* @public
|
|
286
286
|
*/
|
|
287
287
|
export declare class AnalyzeExpenseCommand extends AnalyzeExpenseCommand_base {
|
|
288
|
+
/** @internal type navigation helper, not in runtime. */
|
|
289
|
+
protected static __types: {
|
|
290
|
+
api: {
|
|
291
|
+
input: AnalyzeExpenseRequest;
|
|
292
|
+
output: AnalyzeExpenseResponse;
|
|
293
|
+
};
|
|
294
|
+
sdk: {
|
|
295
|
+
input: AnalyzeExpenseCommandInput;
|
|
296
|
+
output: AnalyzeExpenseCommandOutput;
|
|
297
|
+
};
|
|
298
|
+
};
|
|
288
299
|
}
|
|
@@ -184,4 +184,15 @@ declare const AnalyzeIDCommand_base: {
|
|
|
184
184
|
* @public
|
|
185
185
|
*/
|
|
186
186
|
export declare class AnalyzeIDCommand extends AnalyzeIDCommand_base {
|
|
187
|
+
/** @internal type navigation helper, not in runtime. */
|
|
188
|
+
protected static __types: {
|
|
189
|
+
api: {
|
|
190
|
+
input: AnalyzeIDRequest;
|
|
191
|
+
output: AnalyzeIDResponse;
|
|
192
|
+
};
|
|
193
|
+
sdk: {
|
|
194
|
+
input: AnalyzeIDCommandInput;
|
|
195
|
+
output: AnalyzeIDCommandOutput;
|
|
196
|
+
};
|
|
197
|
+
};
|
|
187
198
|
}
|
|
@@ -112,4 +112,15 @@ declare const CreateAdapterCommand_base: {
|
|
|
112
112
|
* @public
|
|
113
113
|
*/
|
|
114
114
|
export declare class CreateAdapterCommand extends CreateAdapterCommand_base {
|
|
115
|
+
/** @internal type navigation helper, not in runtime. */
|
|
116
|
+
protected static __types: {
|
|
117
|
+
api: {
|
|
118
|
+
input: CreateAdapterRequest;
|
|
119
|
+
output: CreateAdapterResponse;
|
|
120
|
+
};
|
|
121
|
+
sdk: {
|
|
122
|
+
input: CreateAdapterCommandInput;
|
|
123
|
+
output: CreateAdapterCommandOutput;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
115
126
|
}
|
|
@@ -132,4 +132,15 @@ declare const CreateAdapterVersionCommand_base: {
|
|
|
132
132
|
* @public
|
|
133
133
|
*/
|
|
134
134
|
export declare class CreateAdapterVersionCommand extends CreateAdapterVersionCommand_base {
|
|
135
|
+
/** @internal type navigation helper, not in runtime. */
|
|
136
|
+
protected static __types: {
|
|
137
|
+
api: {
|
|
138
|
+
input: CreateAdapterVersionRequest;
|
|
139
|
+
output: CreateAdapterVersionResponse;
|
|
140
|
+
};
|
|
141
|
+
sdk: {
|
|
142
|
+
input: CreateAdapterVersionCommandInput;
|
|
143
|
+
output: CreateAdapterVersionCommandOutput;
|
|
144
|
+
};
|
|
145
|
+
};
|
|
135
146
|
}
|
|
@@ -85,4 +85,15 @@ declare const DeleteAdapterCommand_base: {
|
|
|
85
85
|
* @public
|
|
86
86
|
*/
|
|
87
87
|
export declare class DeleteAdapterCommand extends DeleteAdapterCommand_base {
|
|
88
|
+
/** @internal type navigation helper, not in runtime. */
|
|
89
|
+
protected static __types: {
|
|
90
|
+
api: {
|
|
91
|
+
input: DeleteAdapterRequest;
|
|
92
|
+
output: {};
|
|
93
|
+
};
|
|
94
|
+
sdk: {
|
|
95
|
+
input: DeleteAdapterCommandInput;
|
|
96
|
+
output: DeleteAdapterCommandOutput;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
88
99
|
}
|
|
@@ -87,4 +87,15 @@ declare const DeleteAdapterVersionCommand_base: {
|
|
|
87
87
|
* @public
|
|
88
88
|
*/
|
|
89
89
|
export declare class DeleteAdapterVersionCommand extends DeleteAdapterVersionCommand_base {
|
|
90
|
+
/** @internal type navigation helper, not in runtime. */
|
|
91
|
+
protected static __types: {
|
|
92
|
+
api: {
|
|
93
|
+
input: DeleteAdapterVersionRequest;
|
|
94
|
+
output: {};
|
|
95
|
+
};
|
|
96
|
+
sdk: {
|
|
97
|
+
input: DeleteAdapterVersionCommandInput;
|
|
98
|
+
output: DeleteAdapterVersionCommandOutput;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
90
101
|
}
|
|
@@ -164,4 +164,15 @@ declare const DetectDocumentTextCommand_base: {
|
|
|
164
164
|
* @public
|
|
165
165
|
*/
|
|
166
166
|
export declare class DetectDocumentTextCommand extends DetectDocumentTextCommand_base {
|
|
167
|
+
/** @internal type navigation helper, not in runtime. */
|
|
168
|
+
protected static __types: {
|
|
169
|
+
api: {
|
|
170
|
+
input: DetectDocumentTextRequest;
|
|
171
|
+
output: DetectDocumentTextResponse;
|
|
172
|
+
};
|
|
173
|
+
sdk: {
|
|
174
|
+
input: DetectDocumentTextCommandInput;
|
|
175
|
+
output: DetectDocumentTextCommandOutput;
|
|
176
|
+
};
|
|
177
|
+
};
|
|
167
178
|
}
|
|
@@ -95,4 +95,15 @@ declare const GetAdapterCommand_base: {
|
|
|
95
95
|
* @public
|
|
96
96
|
*/
|
|
97
97
|
export declare class GetAdapterCommand extends GetAdapterCommand_base {
|
|
98
|
+
/** @internal type navigation helper, not in runtime. */
|
|
99
|
+
protected static __types: {
|
|
100
|
+
api: {
|
|
101
|
+
input: GetAdapterRequest;
|
|
102
|
+
output: GetAdapterResponse;
|
|
103
|
+
};
|
|
104
|
+
sdk: {
|
|
105
|
+
input: GetAdapterCommandInput;
|
|
106
|
+
output: GetAdapterCommandOutput;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
98
109
|
}
|
|
@@ -124,4 +124,15 @@ declare const GetAdapterVersionCommand_base: {
|
|
|
124
124
|
* @public
|
|
125
125
|
*/
|
|
126
126
|
export declare class GetAdapterVersionCommand extends GetAdapterVersionCommand_base {
|
|
127
|
+
/** @internal type navigation helper, not in runtime. */
|
|
128
|
+
protected static __types: {
|
|
129
|
+
api: {
|
|
130
|
+
input: GetAdapterVersionRequest;
|
|
131
|
+
output: GetAdapterVersionResponse;
|
|
132
|
+
};
|
|
133
|
+
sdk: {
|
|
134
|
+
input: GetAdapterVersionCommandInput;
|
|
135
|
+
output: GetAdapterVersionCommandOutput;
|
|
136
|
+
};
|
|
137
|
+
};
|
|
127
138
|
}
|
|
@@ -214,4 +214,15 @@ declare const GetDocumentAnalysisCommand_base: {
|
|
|
214
214
|
* @public
|
|
215
215
|
*/
|
|
216
216
|
export declare class GetDocumentAnalysisCommand extends GetDocumentAnalysisCommand_base {
|
|
217
|
+
/** @internal type navigation helper, not in runtime. */
|
|
218
|
+
protected static __types: {
|
|
219
|
+
api: {
|
|
220
|
+
input: GetDocumentAnalysisRequest;
|
|
221
|
+
output: GetDocumentAnalysisResponse;
|
|
222
|
+
};
|
|
223
|
+
sdk: {
|
|
224
|
+
input: GetDocumentAnalysisCommandInput;
|
|
225
|
+
output: GetDocumentAnalysisCommandOutput;
|
|
226
|
+
};
|
|
227
|
+
};
|
|
217
228
|
}
|
|
@@ -177,4 +177,15 @@ declare const GetDocumentTextDetectionCommand_base: {
|
|
|
177
177
|
* @public
|
|
178
178
|
*/
|
|
179
179
|
export declare class GetDocumentTextDetectionCommand extends GetDocumentTextDetectionCommand_base {
|
|
180
|
+
/** @internal type navigation helper, not in runtime. */
|
|
181
|
+
protected static __types: {
|
|
182
|
+
api: {
|
|
183
|
+
input: GetDocumentTextDetectionRequest;
|
|
184
|
+
output: GetDocumentTextDetectionResponse;
|
|
185
|
+
};
|
|
186
|
+
sdk: {
|
|
187
|
+
input: GetDocumentTextDetectionCommandInput;
|
|
188
|
+
output: GetDocumentTextDetectionCommandOutput;
|
|
189
|
+
};
|
|
190
|
+
};
|
|
180
191
|
}
|
|
@@ -285,4 +285,15 @@ declare const GetExpenseAnalysisCommand_base: {
|
|
|
285
285
|
* @public
|
|
286
286
|
*/
|
|
287
287
|
export declare class GetExpenseAnalysisCommand extends GetExpenseAnalysisCommand_base {
|
|
288
|
+
/** @internal type navigation helper, not in runtime. */
|
|
289
|
+
protected static __types: {
|
|
290
|
+
api: {
|
|
291
|
+
input: GetExpenseAnalysisRequest;
|
|
292
|
+
output: GetExpenseAnalysisResponse;
|
|
293
|
+
};
|
|
294
|
+
sdk: {
|
|
295
|
+
input: GetExpenseAnalysisCommandInput;
|
|
296
|
+
output: GetExpenseAnalysisCommandOutput;
|
|
297
|
+
};
|
|
298
|
+
};
|
|
288
299
|
}
|
|
@@ -358,4 +358,15 @@ declare const GetLendingAnalysisCommand_base: {
|
|
|
358
358
|
* @public
|
|
359
359
|
*/
|
|
360
360
|
export declare class GetLendingAnalysisCommand extends GetLendingAnalysisCommand_base {
|
|
361
|
+
/** @internal type navigation helper, not in runtime. */
|
|
362
|
+
protected static __types: {
|
|
363
|
+
api: {
|
|
364
|
+
input: GetLendingAnalysisRequest;
|
|
365
|
+
output: GetLendingAnalysisResponse;
|
|
366
|
+
};
|
|
367
|
+
sdk: {
|
|
368
|
+
input: GetLendingAnalysisCommandInput;
|
|
369
|
+
output: GetLendingAnalysisCommandOutput;
|
|
370
|
+
};
|
|
371
|
+
};
|
|
361
372
|
}
|
|
@@ -143,4 +143,15 @@ declare const GetLendingAnalysisSummaryCommand_base: {
|
|
|
143
143
|
* @public
|
|
144
144
|
*/
|
|
145
145
|
export declare class GetLendingAnalysisSummaryCommand extends GetLendingAnalysisSummaryCommand_base {
|
|
146
|
+
/** @internal type navigation helper, not in runtime. */
|
|
147
|
+
protected static __types: {
|
|
148
|
+
api: {
|
|
149
|
+
input: GetLendingAnalysisSummaryRequest;
|
|
150
|
+
output: GetLendingAnalysisSummaryResponse;
|
|
151
|
+
};
|
|
152
|
+
sdk: {
|
|
153
|
+
input: GetLendingAnalysisSummaryCommandInput;
|
|
154
|
+
output: GetLendingAnalysisSummaryCommandOutput;
|
|
155
|
+
};
|
|
156
|
+
};
|
|
146
157
|
}
|
|
@@ -100,4 +100,15 @@ declare const ListAdapterVersionsCommand_base: {
|
|
|
100
100
|
* @public
|
|
101
101
|
*/
|
|
102
102
|
export declare class ListAdapterVersionsCommand extends ListAdapterVersionsCommand_base {
|
|
103
|
+
/** @internal type navigation helper, not in runtime. */
|
|
104
|
+
protected static __types: {
|
|
105
|
+
api: {
|
|
106
|
+
input: ListAdapterVersionsRequest;
|
|
107
|
+
output: ListAdapterVersionsResponse;
|
|
108
|
+
};
|
|
109
|
+
sdk: {
|
|
110
|
+
input: ListAdapterVersionsCommandInput;
|
|
111
|
+
output: ListAdapterVersionsCommandOutput;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
103
114
|
}
|
|
@@ -94,4 +94,15 @@ declare const ListAdaptersCommand_base: {
|
|
|
94
94
|
* @public
|
|
95
95
|
*/
|
|
96
96
|
export declare class ListAdaptersCommand extends ListAdaptersCommand_base {
|
|
97
|
+
/** @internal type navigation helper, not in runtime. */
|
|
98
|
+
protected static __types: {
|
|
99
|
+
api: {
|
|
100
|
+
input: ListAdaptersRequest;
|
|
101
|
+
output: ListAdaptersResponse;
|
|
102
|
+
};
|
|
103
|
+
sdk: {
|
|
104
|
+
input: ListAdaptersCommandInput;
|
|
105
|
+
output: ListAdaptersCommandOutput;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
97
108
|
}
|
|
@@ -86,4 +86,15 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
86
86
|
* @public
|
|
87
87
|
*/
|
|
88
88
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
89
|
+
/** @internal type navigation helper, not in runtime. */
|
|
90
|
+
protected static __types: {
|
|
91
|
+
api: {
|
|
92
|
+
input: ListTagsForResourceRequest;
|
|
93
|
+
output: ListTagsForResourceResponse;
|
|
94
|
+
};
|
|
95
|
+
sdk: {
|
|
96
|
+
input: ListTagsForResourceCommandInput;
|
|
97
|
+
output: ListTagsForResourceCommandOutput;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
89
100
|
}
|
|
@@ -171,4 +171,15 @@ declare const StartDocumentAnalysisCommand_base: {
|
|
|
171
171
|
* @public
|
|
172
172
|
*/
|
|
173
173
|
export declare class StartDocumentAnalysisCommand extends StartDocumentAnalysisCommand_base {
|
|
174
|
+
/** @internal type navigation helper, not in runtime. */
|
|
175
|
+
protected static __types: {
|
|
176
|
+
api: {
|
|
177
|
+
input: StartDocumentAnalysisRequest;
|
|
178
|
+
output: StartDocumentAnalysisResponse;
|
|
179
|
+
};
|
|
180
|
+
sdk: {
|
|
181
|
+
input: StartDocumentAnalysisCommandInput;
|
|
182
|
+
output: StartDocumentAnalysisCommandOutput;
|
|
183
|
+
};
|
|
184
|
+
};
|
|
174
185
|
}
|
|
@@ -146,4 +146,15 @@ declare const StartDocumentTextDetectionCommand_base: {
|
|
|
146
146
|
* @public
|
|
147
147
|
*/
|
|
148
148
|
export declare class StartDocumentTextDetectionCommand extends StartDocumentTextDetectionCommand_base {
|
|
149
|
+
/** @internal type navigation helper, not in runtime. */
|
|
150
|
+
protected static __types: {
|
|
151
|
+
api: {
|
|
152
|
+
input: StartDocumentTextDetectionRequest;
|
|
153
|
+
output: StartDocumentTextDetectionResponse;
|
|
154
|
+
};
|
|
155
|
+
sdk: {
|
|
156
|
+
input: StartDocumentTextDetectionCommandInput;
|
|
157
|
+
output: StartDocumentTextDetectionCommandOutput;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
149
160
|
}
|
|
@@ -144,4 +144,15 @@ declare const StartExpenseAnalysisCommand_base: {
|
|
|
144
144
|
* @public
|
|
145
145
|
*/
|
|
146
146
|
export declare class StartExpenseAnalysisCommand extends StartExpenseAnalysisCommand_base {
|
|
147
|
+
/** @internal type navigation helper, not in runtime. */
|
|
148
|
+
protected static __types: {
|
|
149
|
+
api: {
|
|
150
|
+
input: StartExpenseAnalysisRequest;
|
|
151
|
+
output: StartExpenseAnalysisResponse;
|
|
152
|
+
};
|
|
153
|
+
sdk: {
|
|
154
|
+
input: StartExpenseAnalysisCommandInput;
|
|
155
|
+
output: StartExpenseAnalysisCommandOutput;
|
|
156
|
+
};
|
|
157
|
+
};
|
|
147
158
|
}
|
|
@@ -160,4 +160,15 @@ declare const StartLendingAnalysisCommand_base: {
|
|
|
160
160
|
* @public
|
|
161
161
|
*/
|
|
162
162
|
export declare class StartLendingAnalysisCommand extends StartLendingAnalysisCommand_base {
|
|
163
|
+
/** @internal type navigation helper, not in runtime. */
|
|
164
|
+
protected static __types: {
|
|
165
|
+
api: {
|
|
166
|
+
input: StartLendingAnalysisRequest;
|
|
167
|
+
output: StartLendingAnalysisResponse;
|
|
168
|
+
};
|
|
169
|
+
sdk: {
|
|
170
|
+
input: StartLendingAnalysisCommandInput;
|
|
171
|
+
output: StartLendingAnalysisCommandOutput;
|
|
172
|
+
};
|
|
173
|
+
};
|
|
163
174
|
}
|
|
@@ -88,4 +88,15 @@ declare const TagResourceCommand_base: {
|
|
|
88
88
|
* @public
|
|
89
89
|
*/
|
|
90
90
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
91
|
+
/** @internal type navigation helper, not in runtime. */
|
|
92
|
+
protected static __types: {
|
|
93
|
+
api: {
|
|
94
|
+
input: TagResourceRequest;
|
|
95
|
+
output: {};
|
|
96
|
+
};
|
|
97
|
+
sdk: {
|
|
98
|
+
input: TagResourceCommandInput;
|
|
99
|
+
output: TagResourceCommandOutput;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
91
102
|
}
|
|
@@ -85,4 +85,15 @@ declare const UntagResourceCommand_base: {
|
|
|
85
85
|
* @public
|
|
86
86
|
*/
|
|
87
87
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
88
|
+
/** @internal type navigation helper, not in runtime. */
|
|
89
|
+
protected static __types: {
|
|
90
|
+
api: {
|
|
91
|
+
input: UntagResourceRequest;
|
|
92
|
+
output: {};
|
|
93
|
+
};
|
|
94
|
+
sdk: {
|
|
95
|
+
input: UntagResourceCommandInput;
|
|
96
|
+
output: UntagResourceCommandOutput;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
88
99
|
}
|
|
@@ -98,4 +98,15 @@ declare const UpdateAdapterCommand_base: {
|
|
|
98
98
|
* @public
|
|
99
99
|
*/
|
|
100
100
|
export declare class UpdateAdapterCommand extends UpdateAdapterCommand_base {
|
|
101
|
+
/** @internal type navigation helper, not in runtime. */
|
|
102
|
+
protected static __types: {
|
|
103
|
+
api: {
|
|
104
|
+
input: UpdateAdapterRequest;
|
|
105
|
+
output: UpdateAdapterResponse;
|
|
106
|
+
};
|
|
107
|
+
sdk: {
|
|
108
|
+
input: UpdateAdapterCommandInput;
|
|
109
|
+
output: UpdateAdapterCommandOutput;
|
|
110
|
+
};
|
|
111
|
+
};
|
|
101
112
|
}
|
|
@@ -36,4 +36,15 @@ declare const AnalyzeDocumentCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class AnalyzeDocumentCommand extends AnalyzeDocumentCommand_base {
|
|
39
|
+
export declare class AnalyzeDocumentCommand extends AnalyzeDocumentCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: AnalyzeDocumentRequest;
|
|
43
|
+
output: AnalyzeDocumentResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: AnalyzeDocumentCommandInput;
|
|
47
|
+
output: AnalyzeDocumentCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const AnalyzeExpenseCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class AnalyzeExpenseCommand extends AnalyzeExpenseCommand_base {
|
|
39
|
+
export declare class AnalyzeExpenseCommand extends AnalyzeExpenseCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: AnalyzeExpenseRequest;
|
|
43
|
+
output: AnalyzeExpenseResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: AnalyzeExpenseCommandInput;
|
|
47
|
+
output: AnalyzeExpenseCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const AnalyzeIDCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class AnalyzeIDCommand extends AnalyzeIDCommand_base {
|
|
36
|
+
export declare class AnalyzeIDCommand extends AnalyzeIDCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: AnalyzeIDRequest;
|
|
40
|
+
output: AnalyzeIDResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: AnalyzeIDCommandInput;
|
|
44
|
+
output: AnalyzeIDCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const CreateAdapterCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class CreateAdapterCommand extends CreateAdapterCommand_base {
|
|
39
|
+
export declare class CreateAdapterCommand extends CreateAdapterCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CreateAdapterRequest;
|
|
43
|
+
output: CreateAdapterResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CreateAdapterCommandInput;
|
|
47
|
+
output: CreateAdapterCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const CreateAdapterVersionCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class CreateAdapterVersionCommand extends CreateAdapterVersionCommand_base {
|
|
40
|
+
export declare class CreateAdapterVersionCommand extends CreateAdapterVersionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateAdapterVersionRequest;
|
|
44
|
+
output: CreateAdapterVersionResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateAdapterVersionCommandInput;
|
|
48
|
+
output: CreateAdapterVersionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const DeleteAdapterCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class DeleteAdapterCommand extends DeleteAdapterCommand_base {
|
|
39
|
+
export declare class DeleteAdapterCommand extends DeleteAdapterCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: DeleteAdapterRequest;
|
|
43
|
+
output: {};
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: DeleteAdapterCommandInput;
|
|
47
|
+
output: DeleteAdapterCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const DeleteAdapterVersionCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class DeleteAdapterVersionCommand extends DeleteAdapterVersionCommand_base {
|
|
40
|
+
export declare class DeleteAdapterVersionCommand extends DeleteAdapterVersionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteAdapterVersionRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteAdapterVersionCommandInput;
|
|
48
|
+
output: DeleteAdapterVersionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const DetectDocumentTextCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class DetectDocumentTextCommand extends DetectDocumentTextCommand_base {
|
|
40
|
+
export declare class DetectDocumentTextCommand extends DetectDocumentTextCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DetectDocumentTextRequest;
|
|
44
|
+
output: DetectDocumentTextResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DetectDocumentTextCommandInput;
|
|
48
|
+
output: DetectDocumentTextCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const GetAdapterCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class GetAdapterCommand extends GetAdapterCommand_base {
|
|
36
|
+
export declare class GetAdapterCommand extends GetAdapterCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetAdapterRequest;
|
|
40
|
+
output: GetAdapterResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetAdapterCommandInput;
|
|
44
|
+
output: GetAdapterCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const GetAdapterVersionCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class GetAdapterVersionCommand extends GetAdapterVersionCommand_base {
|
|
40
|
+
export declare class GetAdapterVersionCommand extends GetAdapterVersionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetAdapterVersionRequest;
|
|
44
|
+
output: GetAdapterVersionResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetAdapterVersionCommandInput;
|
|
48
|
+
output: GetAdapterVersionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const GetDocumentAnalysisCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class GetDocumentAnalysisCommand extends GetDocumentAnalysisCommand_base {
|
|
40
|
+
export declare class GetDocumentAnalysisCommand extends GetDocumentAnalysisCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetDocumentAnalysisRequest;
|
|
44
|
+
output: GetDocumentAnalysisResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDocumentAnalysisCommandInput;
|
|
48
|
+
output: GetDocumentAnalysisCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const GetDocumentTextDetectionCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class GetDocumentTextDetectionCommand extends GetDocumentTextDetectionCommand_base {
|
|
40
|
+
export declare class GetDocumentTextDetectionCommand extends GetDocumentTextDetectionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetDocumentTextDetectionRequest;
|
|
44
|
+
output: GetDocumentTextDetectionResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDocumentTextDetectionCommandInput;
|
|
48
|
+
output: GetDocumentTextDetectionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const GetExpenseAnalysisCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class GetExpenseAnalysisCommand extends GetExpenseAnalysisCommand_base {
|
|
40
|
+
export declare class GetExpenseAnalysisCommand extends GetExpenseAnalysisCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetExpenseAnalysisRequest;
|
|
44
|
+
output: GetExpenseAnalysisResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetExpenseAnalysisCommandInput;
|
|
48
|
+
output: GetExpenseAnalysisCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const GetLendingAnalysisCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class GetLendingAnalysisCommand extends GetLendingAnalysisCommand_base {
|
|
40
|
+
export declare class GetLendingAnalysisCommand extends GetLendingAnalysisCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetLendingAnalysisRequest;
|
|
44
|
+
output: GetLendingAnalysisResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetLendingAnalysisCommandInput;
|
|
48
|
+
output: GetLendingAnalysisCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const GetLendingAnalysisSummaryCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class GetLendingAnalysisSummaryCommand extends GetLendingAnalysisSummaryCommand_base {
|
|
40
|
+
export declare class GetLendingAnalysisSummaryCommand extends GetLendingAnalysisSummaryCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetLendingAnalysisSummaryRequest;
|
|
44
|
+
output: GetLendingAnalysisSummaryResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetLendingAnalysisSummaryCommandInput;
|
|
48
|
+
output: GetLendingAnalysisSummaryCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const ListAdapterVersionsCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class ListAdapterVersionsCommand extends ListAdapterVersionsCommand_base {
|
|
40
|
+
export declare class ListAdapterVersionsCommand extends ListAdapterVersionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListAdapterVersionsRequest;
|
|
44
|
+
output: ListAdapterVersionsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListAdapterVersionsCommandInput;
|
|
48
|
+
output: ListAdapterVersionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const ListAdaptersCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class ListAdaptersCommand extends ListAdaptersCommand_base {
|
|
36
|
+
export declare class ListAdaptersCommand extends ListAdaptersCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListAdaptersRequest;
|
|
40
|
+
output: ListAdaptersResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListAdaptersCommandInput;
|
|
44
|
+
output: ListAdaptersCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
40
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListTagsForResourceRequest;
|
|
44
|
+
output: ListTagsForResourceResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListTagsForResourceCommandInput;
|
|
48
|
+
output: ListTagsForResourceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const StartDocumentAnalysisCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class StartDocumentAnalysisCommand extends StartDocumentAnalysisCommand_base {
|
|
40
|
+
export declare class StartDocumentAnalysisCommand extends StartDocumentAnalysisCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartDocumentAnalysisRequest;
|
|
44
|
+
output: StartDocumentAnalysisResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartDocumentAnalysisCommandInput;
|
|
48
|
+
output: StartDocumentAnalysisCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const StartDocumentTextDetectionCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class StartDocumentTextDetectionCommand extends StartDocumentTextDetectionCommand_base {
|
|
40
|
+
export declare class StartDocumentTextDetectionCommand extends StartDocumentTextDetectionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartDocumentTextDetectionRequest;
|
|
44
|
+
output: StartDocumentTextDetectionResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartDocumentTextDetectionCommandInput;
|
|
48
|
+
output: StartDocumentTextDetectionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const StartExpenseAnalysisCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class StartExpenseAnalysisCommand extends StartExpenseAnalysisCommand_base {
|
|
40
|
+
export declare class StartExpenseAnalysisCommand extends StartExpenseAnalysisCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartExpenseAnalysisRequest;
|
|
44
|
+
output: StartExpenseAnalysisResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartExpenseAnalysisCommandInput;
|
|
48
|
+
output: StartExpenseAnalysisCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -37,4 +37,15 @@ declare const StartLendingAnalysisCommand_base: {
|
|
|
37
37
|
>;
|
|
38
38
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
39
|
};
|
|
40
|
-
export declare class StartLendingAnalysisCommand extends StartLendingAnalysisCommand_base {
|
|
40
|
+
export declare class StartLendingAnalysisCommand extends StartLendingAnalysisCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartLendingAnalysisRequest;
|
|
44
|
+
output: StartLendingAnalysisResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartLendingAnalysisCommandInput;
|
|
48
|
+
output: StartLendingAnalysisCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const TagResourceCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
36
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: TagResourceRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: TagResourceCommandInput;
|
|
44
|
+
output: TagResourceCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const UntagResourceCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
39
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UntagResourceRequest;
|
|
43
|
+
output: {};
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UntagResourceCommandInput;
|
|
47
|
+
output: UntagResourceCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const UpdateAdapterCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class UpdateAdapterCommand extends UpdateAdapterCommand_base {
|
|
39
|
+
export declare class UpdateAdapterCommand extends UpdateAdapterCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UpdateAdapterRequest;
|
|
43
|
+
output: UpdateAdapterResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UpdateAdapterCommandInput;
|
|
47
|
+
output: UpdateAdapterCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
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.654.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-textract",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.4.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.1.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.2.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.3.
|
|
50
|
-
"@smithy/types": "^3.4.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.654.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.654.0",
|
|
25
|
+
"@aws-sdk/core": "3.654.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.654.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.654.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.654.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.654.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.654.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.654.0",
|
|
32
|
+
"@aws-sdk/types": "3.654.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.654.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.654.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.654.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.8",
|
|
37
|
+
"@smithy/core": "^2.4.3",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.7",
|
|
39
|
+
"@smithy/hash-node": "^3.0.6",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.6",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.8",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.1.3",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.18",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.6",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.6",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.7",
|
|
47
|
+
"@smithy/node-http-handler": "^3.2.2",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.3",
|
|
49
|
+
"@smithy/smithy-client": "^3.3.2",
|
|
50
|
+
"@smithy/types": "^3.4.2",
|
|
51
|
+
"@smithy/url-parser": "^3.0.6",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.18",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.18",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.2",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.6",
|
|
59
|
+
"@smithy/util-retry": "^3.0.6",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2",
|
|
62
62
|
"uuid": "^9.0.1"
|