@aws-sdk/client-b2bi 3.687.0 → 3.691.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/README.md +8 -0
- package/dist-cjs/index.js +42 -0
- package/dist-es/B2bi.js +2 -0
- package/dist-es/commands/GenerateMappingCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/protocols/Aws_json1_0.js +26 -1
- package/dist-types/B2bi.d.ts +7 -0
- package/dist-types/B2biClient.d.ts +3 -2
- package/dist-types/commands/GenerateMappingCommand.d.ts +109 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +208 -172
- package/dist-types/protocols/Aws_json1_0.d.ts +9 -0
- package/dist-types/ts3.4/B2bi.d.ts +17 -0
- package/dist-types/ts3.4/B2biClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/GenerateMappingCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +180 -171
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +12 -0
- package/package.json +7 -7
|
@@ -9,6 +9,7 @@ import { DeleteCapabilityCommandInput, DeleteCapabilityCommandOutput } from "../
|
|
|
9
9
|
import { DeletePartnershipCommandInput, DeletePartnershipCommandOutput } from "../commands/DeletePartnershipCommand";
|
|
10
10
|
import { DeleteProfileCommandInput, DeleteProfileCommandOutput } from "../commands/DeleteProfileCommand";
|
|
11
11
|
import { DeleteTransformerCommandInput, DeleteTransformerCommandOutput } from "../commands/DeleteTransformerCommand";
|
|
12
|
+
import { GenerateMappingCommandInput, GenerateMappingCommandOutput } from "../commands/GenerateMappingCommand";
|
|
12
13
|
import { GetCapabilityCommandInput, GetCapabilityCommandOutput } from "../commands/GetCapabilityCommand";
|
|
13
14
|
import { GetPartnershipCommandInput, GetPartnershipCommandOutput } from "../commands/GetPartnershipCommand";
|
|
14
15
|
import { GetProfileCommandInput, GetProfileCommandOutput } from "../commands/GetProfileCommand";
|
|
@@ -65,6 +66,10 @@ export declare const se_DeleteProfileCommand: (input: DeleteProfileCommandInput,
|
|
|
65
66
|
* serializeAws_json1_0DeleteTransformerCommand
|
|
66
67
|
*/
|
|
67
68
|
export declare const se_DeleteTransformerCommand: (input: DeleteTransformerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
+
/**
|
|
70
|
+
* serializeAws_json1_0GenerateMappingCommand
|
|
71
|
+
*/
|
|
72
|
+
export declare const se_GenerateMappingCommand: (input: GenerateMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
73
|
/**
|
|
69
74
|
* serializeAws_json1_0GetCapabilityCommand
|
|
70
75
|
*/
|
|
@@ -181,6 +186,10 @@ export declare const de_DeleteProfileCommand: (output: __HttpResponse, context:
|
|
|
181
186
|
* deserializeAws_json1_0DeleteTransformerCommand
|
|
182
187
|
*/
|
|
183
188
|
export declare const de_DeleteTransformerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTransformerCommandOutput>;
|
|
189
|
+
/**
|
|
190
|
+
* deserializeAws_json1_0GenerateMappingCommand
|
|
191
|
+
*/
|
|
192
|
+
export declare const de_GenerateMappingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GenerateMappingCommandOutput>;
|
|
184
193
|
/**
|
|
185
194
|
* deserializeAws_json1_0GetCapabilityCommand
|
|
186
195
|
*/
|
|
@@ -36,6 +36,10 @@ import {
|
|
|
36
36
|
DeleteTransformerCommandInput,
|
|
37
37
|
DeleteTransformerCommandOutput,
|
|
38
38
|
} from "./commands/DeleteTransformerCommand";
|
|
39
|
+
import {
|
|
40
|
+
GenerateMappingCommandInput,
|
|
41
|
+
GenerateMappingCommandOutput,
|
|
42
|
+
} from "./commands/GenerateMappingCommand";
|
|
39
43
|
import {
|
|
40
44
|
GetCapabilityCommandInput,
|
|
41
45
|
GetCapabilityCommandOutput,
|
|
@@ -234,6 +238,19 @@ export interface B2bi {
|
|
|
234
238
|
options: __HttpHandlerOptions,
|
|
235
239
|
cb: (err: any, data?: DeleteTransformerCommandOutput) => void
|
|
236
240
|
): void;
|
|
241
|
+
generateMapping(
|
|
242
|
+
args: GenerateMappingCommandInput,
|
|
243
|
+
options?: __HttpHandlerOptions
|
|
244
|
+
): Promise<GenerateMappingCommandOutput>;
|
|
245
|
+
generateMapping(
|
|
246
|
+
args: GenerateMappingCommandInput,
|
|
247
|
+
cb: (err: any, data?: GenerateMappingCommandOutput) => void
|
|
248
|
+
): void;
|
|
249
|
+
generateMapping(
|
|
250
|
+
args: GenerateMappingCommandInput,
|
|
251
|
+
options: __HttpHandlerOptions,
|
|
252
|
+
cb: (err: any, data?: GenerateMappingCommandOutput) => void
|
|
253
|
+
): void;
|
|
237
254
|
getCapability(
|
|
238
255
|
args: GetCapabilityCommandInput,
|
|
239
256
|
options?: __HttpHandlerOptions
|
|
@@ -81,6 +81,10 @@ import {
|
|
|
81
81
|
DeleteTransformerCommandInput,
|
|
82
82
|
DeleteTransformerCommandOutput,
|
|
83
83
|
} from "./commands/DeleteTransformerCommand";
|
|
84
|
+
import {
|
|
85
|
+
GenerateMappingCommandInput,
|
|
86
|
+
GenerateMappingCommandOutput,
|
|
87
|
+
} from "./commands/GenerateMappingCommand";
|
|
84
88
|
import {
|
|
85
89
|
GetCapabilityCommandInput,
|
|
86
90
|
GetCapabilityCommandOutput,
|
|
@@ -178,6 +182,7 @@ export type ServiceInputTypes =
|
|
|
178
182
|
| DeletePartnershipCommandInput
|
|
179
183
|
| DeleteProfileCommandInput
|
|
180
184
|
| DeleteTransformerCommandInput
|
|
185
|
+
| GenerateMappingCommandInput
|
|
181
186
|
| GetCapabilityCommandInput
|
|
182
187
|
| GetPartnershipCommandInput
|
|
183
188
|
| GetProfileCommandInput
|
|
@@ -208,6 +213,7 @@ export type ServiceOutputTypes =
|
|
|
208
213
|
| DeletePartnershipCommandOutput
|
|
209
214
|
| DeleteProfileCommandOutput
|
|
210
215
|
| DeleteTransformerCommandOutput
|
|
216
|
+
| GenerateMappingCommandOutput
|
|
211
217
|
| GetCapabilityCommandOutput
|
|
212
218
|
| GetPartnershipCommandOutput
|
|
213
219
|
| GetProfileCommandOutput
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
B2biClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../B2biClient";
|
|
8
|
+
import {
|
|
9
|
+
GenerateMappingRequest,
|
|
10
|
+
GenerateMappingResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GenerateMappingCommandInput extends GenerateMappingRequest {}
|
|
15
|
+
export interface GenerateMappingCommandOutput
|
|
16
|
+
extends GenerateMappingResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GenerateMappingCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GenerateMappingCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GenerateMappingCommandInput,
|
|
23
|
+
GenerateMappingCommandOutput,
|
|
24
|
+
B2biClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GenerateMappingCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GenerateMappingCommandInput,
|
|
32
|
+
GenerateMappingCommandOutput,
|
|
33
|
+
B2biClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GenerateMappingCommand extends GenerateMappingCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GenerateMappingRequest;
|
|
43
|
+
output: GenerateMappingResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GenerateMappingCommandInput;
|
|
47
|
+
output: GenerateMappingCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -7,6 +7,7 @@ export * from "./DeleteCapabilityCommand";
|
|
|
7
7
|
export * from "./DeletePartnershipCommand";
|
|
8
8
|
export * from "./DeleteProfileCommand";
|
|
9
9
|
export * from "./DeleteTransformerCommand";
|
|
10
|
+
export * from "./GenerateMappingCommand";
|
|
10
11
|
export * from "./GetCapabilityCommand";
|
|
11
12
|
export * from "./GetPartnershipCommand";
|
|
12
13
|
export * from "./GetProfileCommand";
|