@aws-sdk/client-b2bi 3.952.0 → 3.954.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 +450 -316
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/CreateCapabilityCommand.js +2 -2
- package/dist-es/commands/CreatePartnershipCommand.js +2 -2
- package/dist-es/commands/CreateProfileCommand.js +2 -2
- package/dist-es/commands/CreateStarterMappingTemplateCommand.js +2 -2
- package/dist-es/commands/CreateTransformerCommand.js +2 -2
- package/dist-es/commands/DeleteCapabilityCommand.js +2 -2
- package/dist-es/commands/DeletePartnershipCommand.js +2 -2
- package/dist-es/commands/DeleteProfileCommand.js +2 -2
- package/dist-es/commands/DeleteTransformerCommand.js +2 -2
- package/dist-es/commands/GenerateMappingCommand.js +2 -2
- package/dist-es/commands/GetCapabilityCommand.js +2 -2
- package/dist-es/commands/GetPartnershipCommand.js +2 -2
- package/dist-es/commands/GetProfileCommand.js +2 -2
- package/dist-es/commands/GetTransformerCommand.js +2 -2
- package/dist-es/commands/GetTransformerJobCommand.js +2 -2
- package/dist-es/commands/ListCapabilitiesCommand.js +2 -2
- package/dist-es/commands/ListPartnershipsCommand.js +2 -2
- package/dist-es/commands/ListProfilesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListTransformersCommand.js +2 -2
- package/dist-es/commands/StartTransformerJobCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/TestConversionCommand.js +2 -2
- package/dist-es/commands/TestMappingCommand.js +2 -2
- package/dist-es/commands/TestParsingCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateCapabilityCommand.js +2 -2
- package/dist-es/commands/UpdatePartnershipCommand.js +2 -2
- package/dist-es/commands/UpdateProfileCommand.js +2 -2
- package/dist-es/commands/UpdateTransformerCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +272 -272
- package/dist-types/B2biClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +135 -152
- package/dist-types/ts3.4/B2biClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +134 -153
- package/package.json +35 -35
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.b2bi",
|
|
32
|
+
version: "2022-06-23",
|
|
33
|
+
serviceTarget: "B2BI",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "b2bi",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateCapability } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateCapability$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateCapabilityCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateCapabilityCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "CreateCapability", {})
|
|
13
13
|
.n("B2biClient", "CreateCapabilityCommand")
|
|
14
|
-
.sc(CreateCapability)
|
|
14
|
+
.sc(CreateCapability$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreatePartnership } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePartnership$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePartnershipCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreatePartnershipCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "CreatePartnership", {})
|
|
13
13
|
.n("B2biClient", "CreatePartnershipCommand")
|
|
14
|
-
.sc(CreatePartnership)
|
|
14
|
+
.sc(CreatePartnership$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateProfile } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateProfile$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateProfileCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateProfileCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "CreateProfile", {})
|
|
13
13
|
.n("B2biClient", "CreateProfileCommand")
|
|
14
|
-
.sc(CreateProfile)
|
|
14
|
+
.sc(CreateProfile$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateStarterMappingTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateStarterMappingTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateStarterMappingTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateStarterMappingTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "CreateStarterMappingTemplate", {})
|
|
13
13
|
.n("B2biClient", "CreateStarterMappingTemplateCommand")
|
|
14
|
-
.sc(CreateStarterMappingTemplate)
|
|
14
|
+
.sc(CreateStarterMappingTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateTransformer } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateTransformer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateTransformerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateTransformerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "CreateTransformer", {})
|
|
13
13
|
.n("B2biClient", "CreateTransformerCommand")
|
|
14
|
-
.sc(CreateTransformer)
|
|
14
|
+
.sc(CreateTransformer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteCapability } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteCapability$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCapabilityCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteCapabilityCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "DeleteCapability", {})
|
|
13
13
|
.n("B2biClient", "DeleteCapabilityCommand")
|
|
14
|
-
.sc(DeleteCapability)
|
|
14
|
+
.sc(DeleteCapability$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeletePartnership } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePartnership$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePartnershipCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePartnershipCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "DeletePartnership", {})
|
|
13
13
|
.n("B2biClient", "DeletePartnershipCommand")
|
|
14
|
-
.sc(DeletePartnership)
|
|
14
|
+
.sc(DeletePartnership$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteProfile } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteProfile$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteProfileCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteProfileCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "DeleteProfile", {})
|
|
13
13
|
.n("B2biClient", "DeleteProfileCommand")
|
|
14
|
-
.sc(DeleteProfile)
|
|
14
|
+
.sc(DeleteProfile$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTransformer } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTransformer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTransformerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteTransformerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "DeleteTransformer", {})
|
|
13
13
|
.n("B2biClient", "DeleteTransformerCommand")
|
|
14
|
-
.sc(DeleteTransformer)
|
|
14
|
+
.sc(DeleteTransformer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GenerateMapping } from "../schemas/schemas_0";
|
|
4
|
+
import { GenerateMapping$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GenerateMappingCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GenerateMappingCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "GenerateMapping", {})
|
|
13
13
|
.n("B2biClient", "GenerateMappingCommand")
|
|
14
|
-
.sc(GenerateMapping)
|
|
14
|
+
.sc(GenerateMapping$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCapability } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCapability$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCapabilityCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCapabilityCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "GetCapability", {})
|
|
13
13
|
.n("B2biClient", "GetCapabilityCommand")
|
|
14
|
-
.sc(GetCapability)
|
|
14
|
+
.sc(GetCapability$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetPartnership } from "../schemas/schemas_0";
|
|
4
|
+
import { GetPartnership$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetPartnershipCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetPartnershipCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "GetPartnership", {})
|
|
13
13
|
.n("B2biClient", "GetPartnershipCommand")
|
|
14
|
-
.sc(GetPartnership)
|
|
14
|
+
.sc(GetPartnership$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetProfile } from "../schemas/schemas_0";
|
|
4
|
+
import { GetProfile$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetProfileCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetProfileCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "GetProfile", {})
|
|
13
13
|
.n("B2biClient", "GetProfileCommand")
|
|
14
|
-
.sc(GetProfile)
|
|
14
|
+
.sc(GetProfile$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTransformer } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTransformer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTransformerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTransformerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "GetTransformer", {})
|
|
13
13
|
.n("B2biClient", "GetTransformerCommand")
|
|
14
|
-
.sc(GetTransformer)
|
|
14
|
+
.sc(GetTransformer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTransformerJob } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTransformerJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTransformerJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTransformerJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "GetTransformerJob", {})
|
|
13
13
|
.n("B2biClient", "GetTransformerJobCommand")
|
|
14
|
-
.sc(GetTransformerJob)
|
|
14
|
+
.sc(GetTransformerJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListCapabilities } from "../schemas/schemas_0";
|
|
4
|
+
import { ListCapabilities$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCapabilitiesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListCapabilitiesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "ListCapabilities", {})
|
|
13
13
|
.n("B2biClient", "ListCapabilitiesCommand")
|
|
14
|
-
.sc(ListCapabilities)
|
|
14
|
+
.sc(ListCapabilities$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPartnerships } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPartnerships$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPartnershipsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPartnershipsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "ListPartnerships", {})
|
|
13
13
|
.n("B2biClient", "ListPartnershipsCommand")
|
|
14
|
-
.sc(ListPartnerships)
|
|
14
|
+
.sc(ListPartnerships$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListProfiles } from "../schemas/schemas_0";
|
|
4
|
+
import { ListProfiles$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListProfilesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListProfilesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "ListProfiles", {})
|
|
13
13
|
.n("B2biClient", "ListProfilesCommand")
|
|
14
|
-
.sc(ListProfiles)
|
|
14
|
+
.sc(ListProfiles$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "ListTagsForResource", {})
|
|
13
13
|
.n("B2biClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTransformers } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTransformers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTransformersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTransformersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "ListTransformers", {})
|
|
13
13
|
.n("B2biClient", "ListTransformersCommand")
|
|
14
|
-
.sc(ListTransformers)
|
|
14
|
+
.sc(ListTransformers$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartTransformerJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StartTransformerJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartTransformerJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartTransformerJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "StartTransformerJob", {})
|
|
13
13
|
.n("B2biClient", "StartTransformerJobCommand")
|
|
14
|
-
.sc(StartTransformerJob)
|
|
14
|
+
.sc(StartTransformerJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "TagResource", {})
|
|
13
13
|
.n("B2biClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TestConversion } from "../schemas/schemas_0";
|
|
4
|
+
import { TestConversion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TestConversionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TestConversionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "TestConversion", {})
|
|
13
13
|
.n("B2biClient", "TestConversionCommand")
|
|
14
|
-
.sc(TestConversion)
|
|
14
|
+
.sc(TestConversion$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TestMapping } from "../schemas/schemas_0";
|
|
4
|
+
import { TestMapping$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TestMappingCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TestMappingCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "TestMapping", {})
|
|
13
13
|
.n("B2biClient", "TestMappingCommand")
|
|
14
|
-
.sc(TestMapping)
|
|
14
|
+
.sc(TestMapping$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TestParsing } from "../schemas/schemas_0";
|
|
4
|
+
import { TestParsing$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TestParsingCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TestParsingCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "TestParsing", {})
|
|
13
13
|
.n("B2biClient", "TestParsingCommand")
|
|
14
|
-
.sc(TestParsing)
|
|
14
|
+
.sc(TestParsing$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "UntagResource", {})
|
|
13
13
|
.n("B2biClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateCapability } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateCapability$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateCapabilityCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateCapabilityCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "UpdateCapability", {})
|
|
13
13
|
.n("B2biClient", "UpdateCapabilityCommand")
|
|
14
|
-
.sc(UpdateCapability)
|
|
14
|
+
.sc(UpdateCapability$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdatePartnership } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdatePartnership$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdatePartnershipCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdatePartnershipCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "UpdatePartnership", {})
|
|
13
13
|
.n("B2biClient", "UpdatePartnershipCommand")
|
|
14
|
-
.sc(UpdatePartnership)
|
|
14
|
+
.sc(UpdatePartnership$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateProfile } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateProfile$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateProfileCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateProfileCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "UpdateProfile", {})
|
|
13
13
|
.n("B2biClient", "UpdateProfileCommand")
|
|
14
|
-
.sc(UpdateProfile)
|
|
14
|
+
.sc(UpdateProfile$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateTransformer } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateTransformer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateTransformerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateTransformerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("B2BI", "UpdateTransformer", {})
|
|
13
13
|
.n("B2biClient", "UpdateTransformerCommand")
|
|
14
|
-
.sc(UpdateTransformer)
|
|
14
|
+
.sc(UpdateTransformer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.b2bi",
|
|
29
|
+
version: "2022-06-23",
|
|
30
|
+
serviceTarget: "B2BI",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "b2bi",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|