@aws-sdk/client-connectcampaignsv2 3.828.0 → 3.830.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 (37) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/ConnectCampaignsV2.js +4 -0
  3. package/dist-cjs/commands/GetInstanceCommunicationLimitsCommand.js +26 -0
  4. package/dist-cjs/commands/PutInstanceCommunicationLimitsCommand.js +26 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/models/models_0.js +5 -1
  7. package/dist-cjs/protocols/Aws_restJson1.js +53 -2
  8. package/dist-es/ConnectCampaignsV2.js +4 -0
  9. package/dist-es/commands/GetInstanceCommunicationLimitsCommand.js +22 -0
  10. package/dist-es/commands/PutInstanceCommunicationLimitsCommand.js +22 -0
  11. package/dist-es/commands/index.js +2 -0
  12. package/dist-es/models/models_0.js +4 -0
  13. package/dist-es/protocols/Aws_restJson1.js +47 -0
  14. package/dist-types/ConnectCampaignsV2.d.ts +14 -0
  15. package/dist-types/ConnectCampaignsV2Client.d.ts +4 -2
  16. package/dist-types/commands/CreateCampaignCommand.d.ts +1 -0
  17. package/dist-types/commands/DescribeCampaignCommand.d.ts +1 -0
  18. package/dist-types/commands/GetInstanceCommunicationLimitsCommand.d.ts +94 -0
  19. package/dist-types/commands/PutInstanceCommunicationLimitsCommand.d.ts +96 -0
  20. package/dist-types/commands/UpdateCampaignCommunicationLimitsCommand.d.ts +1 -0
  21. package/dist-types/commands/index.d.ts +2 -0
  22. package/dist-types/endpoint/EndpointParameters.d.ts +7 -7
  23. package/dist-types/models/models_0.d.ts +66 -0
  24. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  25. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  26. package/dist-types/runtimeConfig.native.d.ts +2 -2
  27. package/dist-types/ts3.4/ConnectCampaignsV2.d.ts +34 -0
  28. package/dist-types/ts3.4/ConnectCampaignsV2Client.d.ts +12 -0
  29. package/dist-types/ts3.4/commands/GetInstanceCommunicationLimitsCommand.d.ts +51 -0
  30. package/dist-types/ts3.4/commands/PutInstanceCommunicationLimitsCommand.d.ts +47 -0
  31. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  32. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +7 -7
  33. package/dist-types/ts3.4/models/models_0.d.ts +20 -0
  34. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  35. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -2
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -2
  37. package/package.json +2 -2
@@ -51,6 +51,10 @@ import {
51
51
  GetConnectInstanceConfigCommandInput,
52
52
  GetConnectInstanceConfigCommandOutput,
53
53
  } from "../commands/GetConnectInstanceConfigCommand";
54
+ import {
55
+ GetInstanceCommunicationLimitsCommandInput,
56
+ GetInstanceCommunicationLimitsCommandOutput,
57
+ } from "../commands/GetInstanceCommunicationLimitsCommand";
54
58
  import {
55
59
  GetInstanceOnboardingJobStatusCommandInput,
56
60
  GetInstanceOnboardingJobStatusCommandOutput,
@@ -75,6 +79,10 @@ import {
75
79
  PutConnectInstanceIntegrationCommandInput,
76
80
  PutConnectInstanceIntegrationCommandOutput,
77
81
  } from "../commands/PutConnectInstanceIntegrationCommand";
82
+ import {
83
+ PutInstanceCommunicationLimitsCommandInput,
84
+ PutInstanceCommunicationLimitsCommandOutput,
85
+ } from "../commands/PutInstanceCommunicationLimitsCommand";
78
86
  import {
79
87
  PutOutboundRequestBatchCommandInput,
80
88
  PutOutboundRequestBatchCommandOutput,
@@ -183,6 +191,10 @@ export declare const se_GetConnectInstanceConfigCommand: (
183
191
  input: GetConnectInstanceConfigCommandInput,
184
192
  context: __SerdeContext
185
193
  ) => Promise<__HttpRequest>;
194
+ export declare const se_GetInstanceCommunicationLimitsCommand: (
195
+ input: GetInstanceCommunicationLimitsCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
186
198
  export declare const se_GetInstanceOnboardingJobStatusCommand: (
187
199
  input: GetInstanceOnboardingJobStatusCommandInput,
188
200
  context: __SerdeContext
@@ -207,6 +219,10 @@ export declare const se_PutConnectInstanceIntegrationCommand: (
207
219
  input: PutConnectInstanceIntegrationCommandInput,
208
220
  context: __SerdeContext
209
221
  ) => Promise<__HttpRequest>;
222
+ export declare const se_PutInstanceCommunicationLimitsCommand: (
223
+ input: PutInstanceCommunicationLimitsCommandInput,
224
+ context: __SerdeContext
225
+ ) => Promise<__HttpRequest>;
210
226
  export declare const se_PutOutboundRequestBatchCommand: (
211
227
  input: PutOutboundRequestBatchCommandInput,
212
228
  context: __SerdeContext
@@ -315,6 +331,10 @@ export declare const de_GetConnectInstanceConfigCommand: (
315
331
  output: __HttpResponse,
316
332
  context: __SerdeContext
317
333
  ) => Promise<GetConnectInstanceConfigCommandOutput>;
334
+ export declare const de_GetInstanceCommunicationLimitsCommand: (
335
+ output: __HttpResponse,
336
+ context: __SerdeContext
337
+ ) => Promise<GetInstanceCommunicationLimitsCommandOutput>;
318
338
  export declare const de_GetInstanceOnboardingJobStatusCommand: (
319
339
  output: __HttpResponse,
320
340
  context: __SerdeContext
@@ -339,6 +359,10 @@ export declare const de_PutConnectInstanceIntegrationCommand: (
339
359
  output: __HttpResponse,
340
360
  context: __SerdeContext
341
361
  ) => Promise<PutConnectInstanceIntegrationCommandOutput>;
362
+ export declare const de_PutInstanceCommunicationLimitsCommand: (
363
+ output: __HttpResponse,
364
+ context: __SerdeContext
365
+ ) => Promise<PutInstanceCommunicationLimitsCommandOutput>;
342
366
  export declare const de_PutOutboundRequestBatchCommand: (
343
367
  output: __HttpResponse,
344
368
  context: __SerdeContext
@@ -24,8 +24,10 @@ export declare const getRuntimeConfig: (
24
24
  retryMode: string | import("@smithy/types").Provider<string>;
25
25
  sha256: import("@smithy/types").HashConstructor;
26
26
  streamCollector: import("@smithy/types").StreamCollector;
27
- useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
28
- useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
27
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
28
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
29
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
30
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
29
31
  apiVersion: string;
30
32
  cacheMiddleware?: boolean | undefined;
31
33
  urlParser: import("@smithy/types").UrlParser;
@@ -21,8 +21,10 @@ export declare const getRuntimeConfig: (
21
21
  utf8Encoder: (input: Uint8Array | string) => string;
22
22
  disableHostPrefix: boolean;
23
23
  serviceId: string;
24
- useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
25
- useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
25
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
26
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
27
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
26
28
  region: string | import("@smithy/types").Provider<any>;
27
29
  profile?: string;
28
30
  defaultUserAgentProvider: (
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-connectcampaignsv2",
3
3
  "description": "AWS SDK for JavaScript Connectcampaignsv2 Client for Node.js, Browser and React Native",
4
- "version": "3.828.0",
4
+ "version": "3.830.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,7 +21,7 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.826.0",
24
- "@aws-sdk/credential-provider-node": "3.828.0",
24
+ "@aws-sdk/credential-provider-node": "3.830.0",
25
25
  "@aws-sdk/middleware-host-header": "3.821.0",
26
26
  "@aws-sdk/middleware-logger": "3.821.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.821.0",