@aws-sdk/client-connectcampaigns 3.948.0 → 3.953.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.
Files changed (42) hide show
  1. package/dist-cjs/index.js +282 -199
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateCampaignCommand.js +2 -2
  4. package/dist-es/commands/DeleteCampaignCommand.js +2 -2
  5. package/dist-es/commands/DeleteConnectInstanceConfigCommand.js +2 -2
  6. package/dist-es/commands/DeleteInstanceOnboardingJobCommand.js +2 -2
  7. package/dist-es/commands/DescribeCampaignCommand.js +2 -2
  8. package/dist-es/commands/GetCampaignStateBatchCommand.js +2 -2
  9. package/dist-es/commands/GetCampaignStateCommand.js +2 -2
  10. package/dist-es/commands/GetConnectInstanceConfigCommand.js +2 -2
  11. package/dist-es/commands/GetInstanceOnboardingJobStatusCommand.js +2 -2
  12. package/dist-es/commands/ListCampaignsCommand.js +2 -2
  13. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  14. package/dist-es/commands/PauseCampaignCommand.js +2 -2
  15. package/dist-es/commands/PutDialRequestBatchCommand.js +2 -2
  16. package/dist-es/commands/ResumeCampaignCommand.js +2 -2
  17. package/dist-es/commands/StartCampaignCommand.js +2 -2
  18. package/dist-es/commands/StartInstanceOnboardingJobCommand.js +2 -2
  19. package/dist-es/commands/StopCampaignCommand.js +2 -2
  20. package/dist-es/commands/TagResourceCommand.js +2 -2
  21. package/dist-es/commands/UntagResourceCommand.js +2 -2
  22. package/dist-es/commands/UpdateCampaignDialerConfigCommand.js +2 -2
  23. package/dist-es/commands/UpdateCampaignNameCommand.js +2 -2
  24. package/dist-es/commands/UpdateCampaignOutboundCallConfigCommand.js +2 -2
  25. package/dist-es/index.js +1 -0
  26. package/dist-es/runtimeConfig.shared.js +6 -1
  27. package/dist-es/schemas/schemas_0.js +157 -156
  28. package/dist-types/ConnectCampaignsClient.d.ts +1 -10
  29. package/dist-types/index.d.ts +1 -0
  30. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  31. package/dist-types/runtimeConfig.d.ts +6 -2
  32. package/dist-types/runtimeConfig.native.d.ts +6 -2
  33. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  34. package/dist-types/schemas/schemas_0.d.ts +83 -95
  35. package/dist-types/ts3.4/ConnectCampaignsClient.d.ts +0 -4
  36. package/dist-types/ts3.4/index.d.ts +1 -0
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  41. package/dist-types/ts3.4/schemas/schemas_0.d.ts +82 -97
  42. package/package.json +34 -34
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.connectcampaigns" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.connectcampaigns",
32
+ version: "2021-01-30",
33
+ serviceTarget: "AmazonConnectCampaignService",
34
+ },
30
35
  serviceId: config?.serviceId ?? "ConnectCampaigns",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
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 { CreateCampaign } from "../schemas/schemas_0";
4
+ import { CreateCampaign$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateCampaignCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateCampaignCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "CreateCampaign", {})
13
13
  .n("ConnectCampaignsClient", "CreateCampaignCommand")
14
- .sc(CreateCampaign)
14
+ .sc(CreateCampaign$)
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 { DeleteCampaign } from "../schemas/schemas_0";
4
+ import { DeleteCampaign$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteCampaignCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteCampaignCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "DeleteCampaign", {})
13
13
  .n("ConnectCampaignsClient", "DeleteCampaignCommand")
14
- .sc(DeleteCampaign)
14
+ .sc(DeleteCampaign$)
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 { DeleteConnectInstanceConfig } from "../schemas/schemas_0";
4
+ import { DeleteConnectInstanceConfig$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteConnectInstanceConfigCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteConnectInstanceConfigCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "DeleteConnectInstanceConfig", {})
13
13
  .n("ConnectCampaignsClient", "DeleteConnectInstanceConfigCommand")
14
- .sc(DeleteConnectInstanceConfig)
14
+ .sc(DeleteConnectInstanceConfig$)
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 { DeleteInstanceOnboardingJob } from "../schemas/schemas_0";
4
+ import { DeleteInstanceOnboardingJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteInstanceOnboardingJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteInstanceOnboardingJobCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "DeleteInstanceOnboardingJob", {})
13
13
  .n("ConnectCampaignsClient", "DeleteInstanceOnboardingJobCommand")
14
- .sc(DeleteInstanceOnboardingJob)
14
+ .sc(DeleteInstanceOnboardingJob$)
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 { DescribeCampaign } from "../schemas/schemas_0";
4
+ import { DescribeCampaign$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeCampaignCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeCampaignCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "DescribeCampaign", {})
13
13
  .n("ConnectCampaignsClient", "DescribeCampaignCommand")
14
- .sc(DescribeCampaign)
14
+ .sc(DescribeCampaign$)
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 { GetCampaignStateBatch } from "../schemas/schemas_0";
4
+ import { GetCampaignStateBatch$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetCampaignStateBatchCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetCampaignStateBatchCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "GetCampaignStateBatch", {})
13
13
  .n("ConnectCampaignsClient", "GetCampaignStateBatchCommand")
14
- .sc(GetCampaignStateBatch)
14
+ .sc(GetCampaignStateBatch$)
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 { GetCampaignState } from "../schemas/schemas_0";
4
+ import { GetCampaignState$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetCampaignStateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetCampaignStateCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "GetCampaignState", {})
13
13
  .n("ConnectCampaignsClient", "GetCampaignStateCommand")
14
- .sc(GetCampaignState)
14
+ .sc(GetCampaignState$)
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 { GetConnectInstanceConfig } from "../schemas/schemas_0";
4
+ import { GetConnectInstanceConfig$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetConnectInstanceConfigCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetConnectInstanceConfigCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "GetConnectInstanceConfig", {})
13
13
  .n("ConnectCampaignsClient", "GetConnectInstanceConfigCommand")
14
- .sc(GetConnectInstanceConfig)
14
+ .sc(GetConnectInstanceConfig$)
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 { GetInstanceOnboardingJobStatus } from "../schemas/schemas_0";
4
+ import { GetInstanceOnboardingJobStatus$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetInstanceOnboardingJobStatusCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetInstanceOnboardingJobStatusCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "GetInstanceOnboardingJobStatus", {})
13
13
  .n("ConnectCampaignsClient", "GetInstanceOnboardingJobStatusCommand")
14
- .sc(GetInstanceOnboardingJobStatus)
14
+ .sc(GetInstanceOnboardingJobStatus$)
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 { ListCampaigns } from "../schemas/schemas_0";
4
+ import { ListCampaigns$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListCampaignsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListCampaignsCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "ListCampaigns", {})
13
13
  .n("ConnectCampaignsClient", "ListCampaignsCommand")
14
- .sc(ListCampaigns)
14
+ .sc(ListCampaigns$)
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("AmazonConnectCampaignService", "ListTagsForResource", {})
13
13
  .n("ConnectCampaignsClient", "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 { PauseCampaign } from "../schemas/schemas_0";
4
+ import { PauseCampaign$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PauseCampaignCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PauseCampaignCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "PauseCampaign", {})
13
13
  .n("ConnectCampaignsClient", "PauseCampaignCommand")
14
- .sc(PauseCampaign)
14
+ .sc(PauseCampaign$)
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 { PutDialRequestBatch } from "../schemas/schemas_0";
4
+ import { PutDialRequestBatch$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutDialRequestBatchCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutDialRequestBatchCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "PutDialRequestBatch", {})
13
13
  .n("ConnectCampaignsClient", "PutDialRequestBatchCommand")
14
- .sc(PutDialRequestBatch)
14
+ .sc(PutDialRequestBatch$)
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 { ResumeCampaign } from "../schemas/schemas_0";
4
+ import { ResumeCampaign$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ResumeCampaignCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ResumeCampaignCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "ResumeCampaign", {})
13
13
  .n("ConnectCampaignsClient", "ResumeCampaignCommand")
14
- .sc(ResumeCampaign)
14
+ .sc(ResumeCampaign$)
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 { StartCampaign } from "../schemas/schemas_0";
4
+ import { StartCampaign$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartCampaignCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartCampaignCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "StartCampaign", {})
13
13
  .n("ConnectCampaignsClient", "StartCampaignCommand")
14
- .sc(StartCampaign)
14
+ .sc(StartCampaign$)
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 { StartInstanceOnboardingJob } from "../schemas/schemas_0";
4
+ import { StartInstanceOnboardingJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartInstanceOnboardingJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartInstanceOnboardingJobCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "StartInstanceOnboardingJob", {})
13
13
  .n("ConnectCampaignsClient", "StartInstanceOnboardingJobCommand")
14
- .sc(StartInstanceOnboardingJob)
14
+ .sc(StartInstanceOnboardingJob$)
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 { StopCampaign } from "../schemas/schemas_0";
4
+ import { StopCampaign$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StopCampaignCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StopCampaignCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "StopCampaign", {})
13
13
  .n("ConnectCampaignsClient", "StopCampaignCommand")
14
- .sc(StopCampaign)
14
+ .sc(StopCampaign$)
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("AmazonConnectCampaignService", "TagResource", {})
13
13
  .n("ConnectCampaignsClient", "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 { 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("AmazonConnectCampaignService", "UntagResource", {})
13
13
  .n("ConnectCampaignsClient", "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 { UpdateCampaignDialerConfig } from "../schemas/schemas_0";
4
+ import { UpdateCampaignDialerConfig$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateCampaignDialerConfigCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateCampaignDialerConfigCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "UpdateCampaignDialerConfig", {})
13
13
  .n("ConnectCampaignsClient", "UpdateCampaignDialerConfigCommand")
14
- .sc(UpdateCampaignDialerConfig)
14
+ .sc(UpdateCampaignDialerConfig$)
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 { UpdateCampaignName } from "../schemas/schemas_0";
4
+ import { UpdateCampaignName$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateCampaignNameCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateCampaignNameCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "UpdateCampaignName", {})
13
13
  .n("ConnectCampaignsClient", "UpdateCampaignNameCommand")
14
- .sc(UpdateCampaignName)
14
+ .sc(UpdateCampaignName$)
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 { UpdateCampaignOutboundCallConfig } from "../schemas/schemas_0";
4
+ import { UpdateCampaignOutboundCallConfig$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateCampaignOutboundCallConfigCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateCampaignOutboundCallConfigCommand extends $Command
11
11
  })
12
12
  .s("AmazonConnectCampaignService", "UpdateCampaignOutboundCallConfig", {})
13
13
  .n("ConnectCampaignsClient", "UpdateCampaignOutboundCallConfigCommand")
14
- .sc(UpdateCampaignOutboundCallConfig)
14
+ .sc(UpdateCampaignOutboundCallConfig$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./ConnectCampaignsClient";
2
2
  export * from "./ConnectCampaigns";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.connectcampaigns" }),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.connectcampaigns",
29
+ version: "2021-01-30",
30
+ serviceTarget: "AmazonConnectCampaignService",
31
+ },
27
32
  serviceId: config?.serviceId ?? "ConnectCampaigns",
28
33
  urlParser: config?.urlParser ?? parseUrl,
29
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,