@aws-sdk/client-connectcampaigns 3.113.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 (156) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +201 -0
  3. package/README.md +205 -0
  4. package/dist-cjs/ConnectCampaigns.js +337 -0
  5. package/dist-cjs/ConnectCampaignsClient.js +37 -0
  6. package/dist-cjs/commands/CreateCampaignCommand.js +36 -0
  7. package/dist-cjs/commands/DeleteCampaignCommand.js +36 -0
  8. package/dist-cjs/commands/DeleteConnectInstanceConfigCommand.js +36 -0
  9. package/dist-cjs/commands/DeleteInstanceOnboardingJobCommand.js +36 -0
  10. package/dist-cjs/commands/DescribeCampaignCommand.js +36 -0
  11. package/dist-cjs/commands/GetCampaignStateBatchCommand.js +36 -0
  12. package/dist-cjs/commands/GetCampaignStateCommand.js +36 -0
  13. package/dist-cjs/commands/GetConnectInstanceConfigCommand.js +36 -0
  14. package/dist-cjs/commands/GetInstanceOnboardingJobStatusCommand.js +36 -0
  15. package/dist-cjs/commands/ListCampaignsCommand.js +36 -0
  16. package/dist-cjs/commands/ListTagsForResourceCommand.js +36 -0
  17. package/dist-cjs/commands/PauseCampaignCommand.js +36 -0
  18. package/dist-cjs/commands/PutDialRequestBatchCommand.js +36 -0
  19. package/dist-cjs/commands/ResumeCampaignCommand.js +36 -0
  20. package/dist-cjs/commands/StartCampaignCommand.js +36 -0
  21. package/dist-cjs/commands/StartInstanceOnboardingJobCommand.js +36 -0
  22. package/dist-cjs/commands/StopCampaignCommand.js +36 -0
  23. package/dist-cjs/commands/TagResourceCommand.js +36 -0
  24. package/dist-cjs/commands/UntagResourceCommand.js +36 -0
  25. package/dist-cjs/commands/UpdateCampaignDialerConfigCommand.js +36 -0
  26. package/dist-cjs/commands/UpdateCampaignNameCommand.js +36 -0
  27. package/dist-cjs/commands/UpdateCampaignOutboundCallConfigCommand.js +36 -0
  28. package/dist-cjs/commands/index.js +25 -0
  29. package/dist-cjs/endpoints.js +131 -0
  30. package/dist-cjs/index.js +11 -0
  31. package/dist-cjs/models/ConnectCampaignsServiceException.js +11 -0
  32. package/dist-cjs/models/index.js +4 -0
  33. package/dist-cjs/models/models_0.js +490 -0
  34. package/dist-cjs/pagination/Interfaces.js +2 -0
  35. package/dist-cjs/pagination/ListCampaignsPaginator.js +36 -0
  36. package/dist-cjs/pagination/index.js +5 -0
  37. package/dist-cjs/protocols/Aws_restJson1.js +2174 -0
  38. package/dist-cjs/runtimeConfig.browser.js +45 -0
  39. package/dist-cjs/runtimeConfig.js +52 -0
  40. package/dist-cjs/runtimeConfig.native.js +16 -0
  41. package/dist-cjs/runtimeConfig.shared.js +17 -0
  42. package/dist-es/ConnectCampaigns.js +340 -0
  43. package/dist-es/ConnectCampaignsClient.js +39 -0
  44. package/dist-es/commands/CreateCampaignCommand.js +39 -0
  45. package/dist-es/commands/DeleteCampaignCommand.js +39 -0
  46. package/dist-es/commands/DeleteConnectInstanceConfigCommand.js +39 -0
  47. package/dist-es/commands/DeleteInstanceOnboardingJobCommand.js +39 -0
  48. package/dist-es/commands/DescribeCampaignCommand.js +39 -0
  49. package/dist-es/commands/GetCampaignStateBatchCommand.js +39 -0
  50. package/dist-es/commands/GetCampaignStateCommand.js +39 -0
  51. package/dist-es/commands/GetConnectInstanceConfigCommand.js +39 -0
  52. package/dist-es/commands/GetInstanceOnboardingJobStatusCommand.js +39 -0
  53. package/dist-es/commands/ListCampaignsCommand.js +39 -0
  54. package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
  55. package/dist-es/commands/PauseCampaignCommand.js +39 -0
  56. package/dist-es/commands/PutDialRequestBatchCommand.js +39 -0
  57. package/dist-es/commands/ResumeCampaignCommand.js +39 -0
  58. package/dist-es/commands/StartCampaignCommand.js +39 -0
  59. package/dist-es/commands/StartInstanceOnboardingJobCommand.js +39 -0
  60. package/dist-es/commands/StopCampaignCommand.js +39 -0
  61. package/dist-es/commands/TagResourceCommand.js +39 -0
  62. package/dist-es/commands/UntagResourceCommand.js +39 -0
  63. package/dist-es/commands/UpdateCampaignDialerConfigCommand.js +39 -0
  64. package/dist-es/commands/UpdateCampaignNameCommand.js +39 -0
  65. package/dist-es/commands/UpdateCampaignOutboundCallConfigCommand.js +39 -0
  66. package/dist-es/commands/index.js +22 -0
  67. package/dist-es/endpoints.js +127 -0
  68. package/dist-es/index.js +6 -0
  69. package/dist-es/models/ConnectCampaignsServiceException.js +12 -0
  70. package/dist-es/models/index.js +1 -0
  71. package/dist-es/models/models_0.js +376 -0
  72. package/dist-es/pagination/Interfaces.js +1 -0
  73. package/dist-es/pagination/ListCampaignsPaginator.js +75 -0
  74. package/dist-es/pagination/index.js +2 -0
  75. package/dist-es/protocols/Aws_restJson1.js +2718 -0
  76. package/dist-es/runtimeConfig.browser.js +26 -0
  77. package/dist-es/runtimeConfig.js +30 -0
  78. package/dist-es/runtimeConfig.native.js +8 -0
  79. package/dist-es/runtimeConfig.shared.js +13 -0
  80. package/dist-types/ConnectCampaigns.d.ts +161 -0
  81. package/dist-types/ConnectCampaignsClient.d.ts +166 -0
  82. package/dist-types/commands/CreateCampaignCommand.d.ts +35 -0
  83. package/dist-types/commands/DeleteCampaignCommand.d.ts +35 -0
  84. package/dist-types/commands/DeleteConnectInstanceConfigCommand.d.ts +35 -0
  85. package/dist-types/commands/DeleteInstanceOnboardingJobCommand.d.ts +35 -0
  86. package/dist-types/commands/DescribeCampaignCommand.d.ts +35 -0
  87. package/dist-types/commands/GetCampaignStateBatchCommand.d.ts +35 -0
  88. package/dist-types/commands/GetCampaignStateCommand.d.ts +35 -0
  89. package/dist-types/commands/GetConnectInstanceConfigCommand.d.ts +35 -0
  90. package/dist-types/commands/GetInstanceOnboardingJobStatusCommand.d.ts +35 -0
  91. package/dist-types/commands/ListCampaignsCommand.d.ts +35 -0
  92. package/dist-types/commands/ListTagsForResourceCommand.d.ts +35 -0
  93. package/dist-types/commands/PauseCampaignCommand.d.ts +35 -0
  94. package/dist-types/commands/PutDialRequestBatchCommand.d.ts +35 -0
  95. package/dist-types/commands/ResumeCampaignCommand.d.ts +35 -0
  96. package/dist-types/commands/StartCampaignCommand.d.ts +35 -0
  97. package/dist-types/commands/StartInstanceOnboardingJobCommand.d.ts +35 -0
  98. package/dist-types/commands/StopCampaignCommand.d.ts +35 -0
  99. package/dist-types/commands/TagResourceCommand.d.ts +35 -0
  100. package/dist-types/commands/UntagResourceCommand.d.ts +35 -0
  101. package/dist-types/commands/UpdateCampaignDialerConfigCommand.d.ts +35 -0
  102. package/dist-types/commands/UpdateCampaignNameCommand.d.ts +35 -0
  103. package/dist-types/commands/UpdateCampaignOutboundCallConfigCommand.d.ts +35 -0
  104. package/dist-types/commands/index.d.ts +22 -0
  105. package/dist-types/endpoints.d.ts +2 -0
  106. package/dist-types/index.d.ts +6 -0
  107. package/dist-types/models/ConnectCampaignsServiceException.d.ts +10 -0
  108. package/dist-types/models/index.d.ts +1 -0
  109. package/dist-types/models/models_0.d.ts +1165 -0
  110. package/dist-types/pagination/Interfaces.d.ts +6 -0
  111. package/dist-types/pagination/ListCampaignsPaginator.d.ts +4 -0
  112. package/dist-types/pagination/index.d.ts +2 -0
  113. package/dist-types/protocols/Aws_restJson1.d.ts +68 -0
  114. package/dist-types/runtimeConfig.browser.d.ts +40 -0
  115. package/dist-types/runtimeConfig.d.ts +40 -0
  116. package/dist-types/runtimeConfig.native.d.ts +39 -0
  117. package/dist-types/runtimeConfig.shared.d.ts +13 -0
  118. package/dist-types/ts3.4/ConnectCampaigns.d.ts +115 -0
  119. package/dist-types/ts3.4/ConnectCampaignsClient.d.ts +95 -0
  120. package/dist-types/ts3.4/commands/CreateCampaignCommand.d.ts +17 -0
  121. package/dist-types/ts3.4/commands/DeleteCampaignCommand.d.ts +17 -0
  122. package/dist-types/ts3.4/commands/DeleteConnectInstanceConfigCommand.d.ts +17 -0
  123. package/dist-types/ts3.4/commands/DeleteInstanceOnboardingJobCommand.d.ts +17 -0
  124. package/dist-types/ts3.4/commands/DescribeCampaignCommand.d.ts +17 -0
  125. package/dist-types/ts3.4/commands/GetCampaignStateBatchCommand.d.ts +17 -0
  126. package/dist-types/ts3.4/commands/GetCampaignStateCommand.d.ts +17 -0
  127. package/dist-types/ts3.4/commands/GetConnectInstanceConfigCommand.d.ts +17 -0
  128. package/dist-types/ts3.4/commands/GetInstanceOnboardingJobStatusCommand.d.ts +17 -0
  129. package/dist-types/ts3.4/commands/ListCampaignsCommand.d.ts +17 -0
  130. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  131. package/dist-types/ts3.4/commands/PauseCampaignCommand.d.ts +17 -0
  132. package/dist-types/ts3.4/commands/PutDialRequestBatchCommand.d.ts +17 -0
  133. package/dist-types/ts3.4/commands/ResumeCampaignCommand.d.ts +17 -0
  134. package/dist-types/ts3.4/commands/StartCampaignCommand.d.ts +17 -0
  135. package/dist-types/ts3.4/commands/StartInstanceOnboardingJobCommand.d.ts +17 -0
  136. package/dist-types/ts3.4/commands/StopCampaignCommand.d.ts +17 -0
  137. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  138. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  139. package/dist-types/ts3.4/commands/UpdateCampaignDialerConfigCommand.d.ts +17 -0
  140. package/dist-types/ts3.4/commands/UpdateCampaignNameCommand.d.ts +17 -0
  141. package/dist-types/ts3.4/commands/UpdateCampaignOutboundCallConfigCommand.d.ts +17 -0
  142. package/dist-types/ts3.4/commands/index.d.ts +22 -0
  143. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  144. package/dist-types/ts3.4/index.d.ts +6 -0
  145. package/dist-types/ts3.4/models/ConnectCampaignsServiceException.d.ts +6 -0
  146. package/dist-types/ts3.4/models/index.d.ts +1 -0
  147. package/dist-types/ts3.4/models/models_0.d.ts +691 -0
  148. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  149. package/dist-types/ts3.4/pagination/ListCampaignsPaginator.d.ts +4 -0
  150. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  151. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +68 -0
  152. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  153. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  154. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  155. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  156. package/package.json +94 -0
@@ -0,0 +1,68 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { CreateCampaignCommandInput, CreateCampaignCommandOutput } from "../commands/CreateCampaignCommand";
4
+ import { DeleteCampaignCommandInput, DeleteCampaignCommandOutput } from "../commands/DeleteCampaignCommand";
5
+ import { DeleteConnectInstanceConfigCommandInput, DeleteConnectInstanceConfigCommandOutput } from "../commands/DeleteConnectInstanceConfigCommand";
6
+ import { DeleteInstanceOnboardingJobCommandInput, DeleteInstanceOnboardingJobCommandOutput } from "../commands/DeleteInstanceOnboardingJobCommand";
7
+ import { DescribeCampaignCommandInput, DescribeCampaignCommandOutput } from "../commands/DescribeCampaignCommand";
8
+ import { GetCampaignStateBatchCommandInput, GetCampaignStateBatchCommandOutput } from "../commands/GetCampaignStateBatchCommand";
9
+ import { GetCampaignStateCommandInput, GetCampaignStateCommandOutput } from "../commands/GetCampaignStateCommand";
10
+ import { GetConnectInstanceConfigCommandInput, GetConnectInstanceConfigCommandOutput } from "../commands/GetConnectInstanceConfigCommand";
11
+ import { GetInstanceOnboardingJobStatusCommandInput, GetInstanceOnboardingJobStatusCommandOutput } from "../commands/GetInstanceOnboardingJobStatusCommand";
12
+ import { ListCampaignsCommandInput, ListCampaignsCommandOutput } from "../commands/ListCampaignsCommand";
13
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
14
+ import { PauseCampaignCommandInput, PauseCampaignCommandOutput } from "../commands/PauseCampaignCommand";
15
+ import { PutDialRequestBatchCommandInput, PutDialRequestBatchCommandOutput } from "../commands/PutDialRequestBatchCommand";
16
+ import { ResumeCampaignCommandInput, ResumeCampaignCommandOutput } from "../commands/ResumeCampaignCommand";
17
+ import { StartCampaignCommandInput, StartCampaignCommandOutput } from "../commands/StartCampaignCommand";
18
+ import { StartInstanceOnboardingJobCommandInput, StartInstanceOnboardingJobCommandOutput } from "../commands/StartInstanceOnboardingJobCommand";
19
+ import { StopCampaignCommandInput, StopCampaignCommandOutput } from "../commands/StopCampaignCommand";
20
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
21
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
22
+ import { UpdateCampaignDialerConfigCommandInput, UpdateCampaignDialerConfigCommandOutput } from "../commands/UpdateCampaignDialerConfigCommand";
23
+ import { UpdateCampaignNameCommandInput, UpdateCampaignNameCommandOutput } from "../commands/UpdateCampaignNameCommand";
24
+ import { UpdateCampaignOutboundCallConfigCommandInput, UpdateCampaignOutboundCallConfigCommandOutput } from "../commands/UpdateCampaignOutboundCallConfigCommand";
25
+ export declare const serializeAws_restJson1CreateCampaignCommand: (input: CreateCampaignCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_restJson1DeleteCampaignCommand: (input: DeleteCampaignCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ export declare const serializeAws_restJson1DeleteConnectInstanceConfigCommand: (input: DeleteConnectInstanceConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
+ export declare const serializeAws_restJson1DeleteInstanceOnboardingJobCommand: (input: DeleteInstanceOnboardingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const serializeAws_restJson1DescribeCampaignCommand: (input: DescribeCampaignCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
+ export declare const serializeAws_restJson1GetCampaignStateCommand: (input: GetCampaignStateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ export declare const serializeAws_restJson1GetCampaignStateBatchCommand: (input: GetCampaignStateBatchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
+ export declare const serializeAws_restJson1GetConnectInstanceConfigCommand: (input: GetConnectInstanceConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
+ export declare const serializeAws_restJson1GetInstanceOnboardingJobStatusCommand: (input: GetInstanceOnboardingJobStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
+ export declare const serializeAws_restJson1ListCampaignsCommand: (input: ListCampaignsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
+ export declare const serializeAws_restJson1PauseCampaignCommand: (input: PauseCampaignCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
+ export declare const serializeAws_restJson1PutDialRequestBatchCommand: (input: PutDialRequestBatchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
+ export declare const serializeAws_restJson1ResumeCampaignCommand: (input: ResumeCampaignCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ export declare const serializeAws_restJson1StartCampaignCommand: (input: StartCampaignCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
+ export declare const serializeAws_restJson1StartInstanceOnboardingJobCommand: (input: StartInstanceOnboardingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
+ export declare const serializeAws_restJson1StopCampaignCommand: (input: StopCampaignCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
+ export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
+ export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
+ export declare const serializeAws_restJson1UpdateCampaignDialerConfigCommand: (input: UpdateCampaignDialerConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
+ export declare const serializeAws_restJson1UpdateCampaignNameCommand: (input: UpdateCampaignNameCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
+ export declare const serializeAws_restJson1UpdateCampaignOutboundCallConfigCommand: (input: UpdateCampaignOutboundCallConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
+ export declare const deserializeAws_restJson1CreateCampaignCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCampaignCommandOutput>;
48
+ export declare const deserializeAws_restJson1DeleteCampaignCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCampaignCommandOutput>;
49
+ export declare const deserializeAws_restJson1DeleteConnectInstanceConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectInstanceConfigCommandOutput>;
50
+ export declare const deserializeAws_restJson1DeleteInstanceOnboardingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteInstanceOnboardingJobCommandOutput>;
51
+ export declare const deserializeAws_restJson1DescribeCampaignCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCampaignCommandOutput>;
52
+ export declare const deserializeAws_restJson1GetCampaignStateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCampaignStateCommandOutput>;
53
+ export declare const deserializeAws_restJson1GetCampaignStateBatchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCampaignStateBatchCommandOutput>;
54
+ export declare const deserializeAws_restJson1GetConnectInstanceConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConnectInstanceConfigCommandOutput>;
55
+ export declare const deserializeAws_restJson1GetInstanceOnboardingJobStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetInstanceOnboardingJobStatusCommandOutput>;
56
+ export declare const deserializeAws_restJson1ListCampaignsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCampaignsCommandOutput>;
57
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
58
+ export declare const deserializeAws_restJson1PauseCampaignCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PauseCampaignCommandOutput>;
59
+ export declare const deserializeAws_restJson1PutDialRequestBatchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutDialRequestBatchCommandOutput>;
60
+ export declare const deserializeAws_restJson1ResumeCampaignCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResumeCampaignCommandOutput>;
61
+ export declare const deserializeAws_restJson1StartCampaignCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartCampaignCommandOutput>;
62
+ export declare const deserializeAws_restJson1StartInstanceOnboardingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartInstanceOnboardingJobCommandOutput>;
63
+ export declare const deserializeAws_restJson1StopCampaignCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopCampaignCommandOutput>;
64
+ export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
65
+ export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
66
+ export declare const deserializeAws_restJson1UpdateCampaignDialerConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCampaignDialerConfigCommandOutput>;
67
+ export declare const deserializeAws_restJson1UpdateCampaignNameCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCampaignNameCommandOutput>;
68
+ export declare const deserializeAws_restJson1UpdateCampaignOutboundCallConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCampaignOutboundCallConfigCommandOutput>;
@@ -0,0 +1,38 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { ConnectCampaignsClientConfig } from "./ConnectCampaignsClient";
3
+
4
+ export declare const getRuntimeConfig: (config: ConnectCampaignsClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<any>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,38 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { ConnectCampaignsClientConfig } from "./ConnectCampaignsClient";
3
+
4
+ export declare const getRuntimeConfig: (config: ConnectCampaignsClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<string>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,37 @@
1
+ import { ConnectCampaignsClientConfig } from "./ConnectCampaignsClient";
2
+
3
+ export declare const getRuntimeConfig: (config: ConnectCampaignsClientConfig) => {
4
+ runtime: string;
5
+ sha256: import("@aws-sdk/types").HashConstructor;
6
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
+ apiVersion: string;
8
+ urlParser: import("@aws-sdk/types").UrlParser;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
+ streamCollector: import("@aws-sdk/types").StreamCollector;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ utf8Decoder: import("@aws-sdk/types").Decoder;
14
+ utf8Encoder: import("@aws-sdk/types").Encoder;
15
+ disableHostPrefix: boolean;
16
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
18
+ logger: import("@aws-sdk/types").Logger;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
+ serviceId: string;
22
+ region: string | import("@aws-sdk/types").Provider<any>;
23
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
27
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ tls?: boolean | undefined;
29
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
+ signingEscapePath?: boolean | undefined;
33
+ systemClockOffset?: number | undefined;
34
+ signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
+ };
@@ -0,0 +1,11 @@
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { ConnectCampaignsClientConfig } from "./ConnectCampaignsClient";
3
+
4
+ export declare const getRuntimeConfig: (config: ConnectCampaignsClientConfig) => {
5
+ apiVersion: string;
6
+ disableHostPrefix: boolean;
7
+ logger: __Logger;
8
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
+ serviceId: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ };
package/package.json ADDED
@@ -0,0 +1,94 @@
1
+ {
2
+ "name": "@aws-sdk/client-connectcampaigns",
3
+ "description": "AWS SDK for JavaScript Connectcampaigns Client for Node.js, Browser and React Native",
4
+ "version": "3.113.0",
5
+ "scripts": {
6
+ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
+ "build:cjs": "tsc -p tsconfig.cjs.json",
8
+ "build:docs": "typedoc",
9
+ "build:es": "tsc -p tsconfig.es.json",
10
+ "build:types": "tsc -p tsconfig.types.json",
11
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
13
+ },
14
+ "main": "./dist-cjs/index.js",
15
+ "types": "./dist-types/index.d.ts",
16
+ "module": "./dist-es/index.js",
17
+ "sideEffects": false,
18
+ "dependencies": {
19
+ "@aws-crypto/sha256-browser": "2.0.0",
20
+ "@aws-crypto/sha256-js": "2.0.0",
21
+ "@aws-sdk/client-sts": "3.112.0",
22
+ "@aws-sdk/config-resolver": "3.110.0",
23
+ "@aws-sdk/credential-provider-node": "3.112.0",
24
+ "@aws-sdk/fetch-http-handler": "3.110.0",
25
+ "@aws-sdk/hash-node": "3.110.0",
26
+ "@aws-sdk/invalid-dependency": "3.110.0",
27
+ "@aws-sdk/middleware-content-length": "3.110.0",
28
+ "@aws-sdk/middleware-host-header": "3.110.0",
29
+ "@aws-sdk/middleware-logger": "3.110.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.110.0",
31
+ "@aws-sdk/middleware-retry": "3.110.0",
32
+ "@aws-sdk/middleware-serde": "3.110.0",
33
+ "@aws-sdk/middleware-signing": "3.110.0",
34
+ "@aws-sdk/middleware-stack": "3.110.0",
35
+ "@aws-sdk/middleware-user-agent": "3.110.0",
36
+ "@aws-sdk/node-config-provider": "3.110.0",
37
+ "@aws-sdk/node-http-handler": "3.110.0",
38
+ "@aws-sdk/protocol-http": "3.110.0",
39
+ "@aws-sdk/smithy-client": "3.110.0",
40
+ "@aws-sdk/types": "3.110.0",
41
+ "@aws-sdk/url-parser": "3.110.0",
42
+ "@aws-sdk/util-base64-browser": "3.109.0",
43
+ "@aws-sdk/util-base64-node": "3.55.0",
44
+ "@aws-sdk/util-body-length-browser": "3.55.0",
45
+ "@aws-sdk/util-body-length-node": "3.55.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.110.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.110.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.110.0",
49
+ "@aws-sdk/util-user-agent-node": "3.110.0",
50
+ "@aws-sdk/util-utf8-browser": "3.109.0",
51
+ "@aws-sdk/util-utf8-node": "3.109.0",
52
+ "tslib": "^2.3.1"
53
+ },
54
+ "devDependencies": {
55
+ "@aws-sdk/service-client-documentation-generator": "3.58.0",
56
+ "@tsconfig/recommended": "1.0.1",
57
+ "@types/node": "^12.7.5",
58
+ "concurrently": "7.0.0",
59
+ "downlevel-dts": "0.7.0",
60
+ "rimraf": "3.0.2",
61
+ "typedoc": "0.19.2",
62
+ "typescript": "~4.6.2"
63
+ },
64
+ "engines": {
65
+ "node": ">=12.0.0"
66
+ },
67
+ "typesVersions": {
68
+ "<4.0": {
69
+ "dist-types/*": [
70
+ "dist-types/ts3.4/*"
71
+ ]
72
+ }
73
+ },
74
+ "files": [
75
+ "dist-*"
76
+ ],
77
+ "author": {
78
+ "name": "AWS SDK for JavaScript Team",
79
+ "url": "https://aws.amazon.com/javascript/"
80
+ },
81
+ "license": "Apache-2.0",
82
+ "browser": {
83
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
84
+ },
85
+ "react-native": {
86
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
87
+ },
88
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-connectcampaigns",
89
+ "repository": {
90
+ "type": "git",
91
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
92
+ "directory": "clients/client-connectcampaigns"
93
+ }
94
+ }