@aws-sdk/client-connectcampaigns 3.927.0 → 3.929.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 +826 -986
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/ConnectCampaignsClient.js +2 -0
- package/dist-es/commands/CreateCampaignCommand.js +3 -9
- package/dist-es/commands/DeleteCampaignCommand.js +3 -9
- package/dist-es/commands/DeleteConnectInstanceConfigCommand.js +3 -9
- package/dist-es/commands/DeleteInstanceOnboardingJobCommand.js +3 -9
- package/dist-es/commands/DescribeCampaignCommand.js +3 -9
- package/dist-es/commands/GetCampaignStateBatchCommand.js +3 -9
- package/dist-es/commands/GetCampaignStateCommand.js +3 -9
- package/dist-es/commands/GetConnectInstanceConfigCommand.js +3 -9
- package/dist-es/commands/GetInstanceOnboardingJobStatusCommand.js +3 -9
- package/dist-es/commands/ListCampaignsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PauseCampaignCommand.js +3 -9
- package/dist-es/commands/PutDialRequestBatchCommand.js +3 -10
- package/dist-es/commands/ResumeCampaignCommand.js +3 -9
- package/dist-es/commands/StartCampaignCommand.js +3 -9
- package/dist-es/commands/StartInstanceOnboardingJobCommand.js +3 -9
- package/dist-es/commands/StopCampaignCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateCampaignDialerConfigCommand.js +3 -9
- package/dist-es/commands/UpdateCampaignNameCommand.js +3 -9
- package/dist-es/commands/UpdateCampaignOutboundCallConfigCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -10
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +758 -0
- package/dist-types/ConnectCampaignsClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -8
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +95 -0
- package/dist-types/ts3.4/ConnectCampaignsClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +102 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_restJson1.js +0 -797
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -200
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -269
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateCampaignCommandInput, CreateCampaignCommandOutput } from "./commands/CreateCampaignCommand";
|
|
11
11
|
import { DeleteCampaignCommandInput, DeleteCampaignCommandOutput } from "./commands/DeleteCampaignCommand";
|
|
@@ -163,6 +163,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
163
163
|
* Optional extensions
|
|
164
164
|
*/
|
|
165
165
|
extensions?: RuntimeExtension[];
|
|
166
|
+
/**
|
|
167
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
168
|
+
* may be overridden. A default will always be set by the client.
|
|
169
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
170
|
+
* the client.
|
|
171
|
+
* @alpha
|
|
172
|
+
*
|
|
173
|
+
*/
|
|
174
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
166
175
|
/**
|
|
167
176
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
168
177
|
*/
|
|
@@ -1138,11 +1138,3 @@ export interface UpdateCampaignOutboundCallConfigRequest {
|
|
|
1138
1138
|
*/
|
|
1139
1139
|
answerMachineDetectionConfig?: AnswerMachineDetectionConfig | undefined;
|
|
1140
1140
|
}
|
|
1141
|
-
/**
|
|
1142
|
-
* @internal
|
|
1143
|
-
*/
|
|
1144
|
-
export declare const DialRequestFilterSensitiveLog: (obj: DialRequest) => any;
|
|
1145
|
-
/**
|
|
1146
|
-
* @internal
|
|
1147
|
-
*/
|
|
1148
|
-
export declare const PutDialRequestBatchRequestFilterSensitiveLog: (obj: PutDialRequestBatchRequest) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: ConnectCampaignsClientConfig) =>
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: ConnectCampaignsClientConfig) =>
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: ConnectCampaignsClientConfig) =>
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: ConnectCampaignsClientConfig) =>
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectCampaignsHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var DestinationPhoneNumber: StaticSimpleSchema;
|
|
3
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
4
|
+
export declare var AgentlessDialerConfig: StaticStructureSchema;
|
|
5
|
+
export declare var AnswerMachineDetectionConfig: StaticStructureSchema;
|
|
6
|
+
export declare var Campaign: StaticStructureSchema;
|
|
7
|
+
export declare var CampaignFilters: StaticStructureSchema;
|
|
8
|
+
export declare var CampaignSummary: StaticStructureSchema;
|
|
9
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
10
|
+
export declare var CreateCampaignRequest: StaticStructureSchema;
|
|
11
|
+
export declare var CreateCampaignResponse: StaticStructureSchema;
|
|
12
|
+
export declare var DeleteCampaignRequest: StaticStructureSchema;
|
|
13
|
+
export declare var DeleteConnectInstanceConfigRequest: StaticStructureSchema;
|
|
14
|
+
export declare var DeleteInstanceOnboardingJobRequest: StaticStructureSchema;
|
|
15
|
+
export declare var DescribeCampaignRequest: StaticStructureSchema;
|
|
16
|
+
export declare var DescribeCampaignResponse: StaticStructureSchema;
|
|
17
|
+
export declare var DialRequest: StaticStructureSchema;
|
|
18
|
+
export declare var EncryptionConfig: StaticStructureSchema;
|
|
19
|
+
export declare var FailedCampaignStateResponse: StaticStructureSchema;
|
|
20
|
+
export declare var FailedRequest: StaticStructureSchema;
|
|
21
|
+
export declare var GetCampaignStateBatchRequest: StaticStructureSchema;
|
|
22
|
+
export declare var GetCampaignStateBatchResponse: StaticStructureSchema;
|
|
23
|
+
export declare var GetCampaignStateRequest: StaticStructureSchema;
|
|
24
|
+
export declare var GetCampaignStateResponse: StaticStructureSchema;
|
|
25
|
+
export declare var GetConnectInstanceConfigRequest: StaticStructureSchema;
|
|
26
|
+
export declare var GetConnectInstanceConfigResponse: StaticStructureSchema;
|
|
27
|
+
export declare var GetInstanceOnboardingJobStatusRequest: StaticStructureSchema;
|
|
28
|
+
export declare var GetInstanceOnboardingJobStatusResponse: StaticStructureSchema;
|
|
29
|
+
export declare var InstanceConfig: StaticStructureSchema;
|
|
30
|
+
export declare var InstanceIdFilter: StaticStructureSchema;
|
|
31
|
+
export declare var InstanceOnboardingJobStatus: StaticStructureSchema;
|
|
32
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
33
|
+
export declare var InvalidCampaignStateException: StaticErrorSchema;
|
|
34
|
+
export declare var InvalidStateException: StaticErrorSchema;
|
|
35
|
+
export declare var ListCampaignsRequest: StaticStructureSchema;
|
|
36
|
+
export declare var ListCampaignsResponse: StaticStructureSchema;
|
|
37
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
38
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
39
|
+
export declare var OutboundCallConfig: StaticStructureSchema;
|
|
40
|
+
export declare var PauseCampaignRequest: StaticStructureSchema;
|
|
41
|
+
export declare var PredictiveDialerConfig: StaticStructureSchema;
|
|
42
|
+
export declare var ProgressiveDialerConfig: StaticStructureSchema;
|
|
43
|
+
export declare var PutDialRequestBatchRequest: StaticStructureSchema;
|
|
44
|
+
export declare var PutDialRequestBatchResponse: StaticStructureSchema;
|
|
45
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
46
|
+
export declare var ResumeCampaignRequest: StaticStructureSchema;
|
|
47
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
48
|
+
export declare var StartCampaignRequest: StaticStructureSchema;
|
|
49
|
+
export declare var StartInstanceOnboardingJobRequest: StaticStructureSchema;
|
|
50
|
+
export declare var StartInstanceOnboardingJobResponse: StaticStructureSchema;
|
|
51
|
+
export declare var StopCampaignRequest: StaticStructureSchema;
|
|
52
|
+
export declare var SuccessfulCampaignStateResponse: StaticStructureSchema;
|
|
53
|
+
export declare var SuccessfulRequest: StaticStructureSchema;
|
|
54
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
55
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
56
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
57
|
+
export declare var UpdateCampaignDialerConfigRequest: StaticStructureSchema;
|
|
58
|
+
export declare var UpdateCampaignNameRequest: StaticStructureSchema;
|
|
59
|
+
export declare var UpdateCampaignOutboundCallConfigRequest: StaticStructureSchema;
|
|
60
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
61
|
+
export declare var __Unit: "unit";
|
|
62
|
+
export declare var ConnectCampaignsServiceException: StaticErrorSchema;
|
|
63
|
+
export declare var CampaignIdList: number;
|
|
64
|
+
export declare var CampaignSummaryList: StaticListSchema;
|
|
65
|
+
export declare var DialRequestList: StaticListSchema;
|
|
66
|
+
export declare var FailedCampaignStateResponseList: StaticListSchema;
|
|
67
|
+
export declare var FailedRequestList: StaticListSchema;
|
|
68
|
+
export declare var SuccessfulCampaignStateResponseList: StaticListSchema;
|
|
69
|
+
export declare var SuccessfulRequestList: StaticListSchema;
|
|
70
|
+
export declare var TagKeyList: number;
|
|
71
|
+
export declare var Attributes: StaticMapSchema;
|
|
72
|
+
export declare var TagMap: number;
|
|
73
|
+
export declare var DialerConfig: StaticStructureSchema;
|
|
74
|
+
export declare var CreateCampaign: StaticOperationSchema;
|
|
75
|
+
export declare var DeleteCampaign: StaticOperationSchema;
|
|
76
|
+
export declare var DeleteConnectInstanceConfig: StaticOperationSchema;
|
|
77
|
+
export declare var DeleteInstanceOnboardingJob: StaticOperationSchema;
|
|
78
|
+
export declare var DescribeCampaign: StaticOperationSchema;
|
|
79
|
+
export declare var GetCampaignState: StaticOperationSchema;
|
|
80
|
+
export declare var GetCampaignStateBatch: StaticOperationSchema;
|
|
81
|
+
export declare var GetConnectInstanceConfig: StaticOperationSchema;
|
|
82
|
+
export declare var GetInstanceOnboardingJobStatus: StaticOperationSchema;
|
|
83
|
+
export declare var ListCampaigns: StaticOperationSchema;
|
|
84
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
85
|
+
export declare var PauseCampaign: StaticOperationSchema;
|
|
86
|
+
export declare var PutDialRequestBatch: StaticOperationSchema;
|
|
87
|
+
export declare var ResumeCampaign: StaticOperationSchema;
|
|
88
|
+
export declare var StartCampaign: StaticOperationSchema;
|
|
89
|
+
export declare var StartInstanceOnboardingJob: StaticOperationSchema;
|
|
90
|
+
export declare var StopCampaign: StaticOperationSchema;
|
|
91
|
+
export declare var TagResource: StaticOperationSchema;
|
|
92
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
93
|
+
export declare var UpdateCampaignDialerConfig: StaticOperationSchema;
|
|
94
|
+
export declare var UpdateCampaignName: StaticOperationSchema;
|
|
95
|
+
export declare var UpdateCampaignOutboundCallConfig: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -210,6 +213,7 @@ export interface ClientDefaults
|
|
|
210
213
|
retryMode?: string | __Provider<string>;
|
|
211
214
|
logger?: __Logger;
|
|
212
215
|
extensions?: RuntimeExtension[];
|
|
216
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
213
217
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
214
218
|
}
|
|
215
219
|
export type ConnectCampaignsClientConfigType = Partial<
|
|
@@ -355,7 +355,3 @@ export interface UpdateCampaignOutboundCallConfigRequest {
|
|
|
355
355
|
connectSourcePhoneNumber?: string | undefined;
|
|
356
356
|
answerMachineDetectionConfig?: AnswerMachineDetectionConfig | undefined;
|
|
357
357
|
}
|
|
358
|
-
export declare const DialRequestFilterSensitiveLog: (obj: DialRequest) => any;
|
|
359
|
-
export declare const PutDialRequestBatchRequestFilterSensitiveLog: (
|
|
360
|
-
obj: PutDialRequestBatchRequest
|
|
361
|
-
) => any;
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
userAgentAppId?:
|
|
45
49
|
| string
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
retryStrategy?:
|
|
45
49
|
| import("@smithy/types").RetryStrategy
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
|
|
|
39
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
40
|
logger: import("@smithy/types").Logger;
|
|
41
41
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
42
46
|
defaultsMode:
|
|
43
47
|
| import("@smithy/smithy-client").DefaultsMode
|
|
44
48
|
| import("@smithy/types").Provider<
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectCampaignsHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
serviceId: string;
|
|
20
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticMapSchema,
|
|
5
|
+
StaticOperationSchema,
|
|
6
|
+
StaticSimpleSchema,
|
|
7
|
+
StaticStructureSchema,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
export declare var DestinationPhoneNumber: StaticSimpleSchema;
|
|
10
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
11
|
+
export declare var AgentlessDialerConfig: StaticStructureSchema;
|
|
12
|
+
export declare var AnswerMachineDetectionConfig: StaticStructureSchema;
|
|
13
|
+
export declare var Campaign: StaticStructureSchema;
|
|
14
|
+
export declare var CampaignFilters: StaticStructureSchema;
|
|
15
|
+
export declare var CampaignSummary: StaticStructureSchema;
|
|
16
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
17
|
+
export declare var CreateCampaignRequest: StaticStructureSchema;
|
|
18
|
+
export declare var CreateCampaignResponse: StaticStructureSchema;
|
|
19
|
+
export declare var DeleteCampaignRequest: StaticStructureSchema;
|
|
20
|
+
export declare var DeleteConnectInstanceConfigRequest: StaticStructureSchema;
|
|
21
|
+
export declare var DeleteInstanceOnboardingJobRequest: StaticStructureSchema;
|
|
22
|
+
export declare var DescribeCampaignRequest: StaticStructureSchema;
|
|
23
|
+
export declare var DescribeCampaignResponse: StaticStructureSchema;
|
|
24
|
+
export declare var DialRequest: StaticStructureSchema;
|
|
25
|
+
export declare var EncryptionConfig: StaticStructureSchema;
|
|
26
|
+
export declare var FailedCampaignStateResponse: StaticStructureSchema;
|
|
27
|
+
export declare var FailedRequest: StaticStructureSchema;
|
|
28
|
+
export declare var GetCampaignStateBatchRequest: StaticStructureSchema;
|
|
29
|
+
export declare var GetCampaignStateBatchResponse: StaticStructureSchema;
|
|
30
|
+
export declare var GetCampaignStateRequest: StaticStructureSchema;
|
|
31
|
+
export declare var GetCampaignStateResponse: StaticStructureSchema;
|
|
32
|
+
export declare var GetConnectInstanceConfigRequest: StaticStructureSchema;
|
|
33
|
+
export declare var GetConnectInstanceConfigResponse: StaticStructureSchema;
|
|
34
|
+
export declare var GetInstanceOnboardingJobStatusRequest: StaticStructureSchema;
|
|
35
|
+
export declare var GetInstanceOnboardingJobStatusResponse: StaticStructureSchema;
|
|
36
|
+
export declare var InstanceConfig: StaticStructureSchema;
|
|
37
|
+
export declare var InstanceIdFilter: StaticStructureSchema;
|
|
38
|
+
export declare var InstanceOnboardingJobStatus: StaticStructureSchema;
|
|
39
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
40
|
+
export declare var InvalidCampaignStateException: StaticErrorSchema;
|
|
41
|
+
export declare var InvalidStateException: StaticErrorSchema;
|
|
42
|
+
export declare var ListCampaignsRequest: StaticStructureSchema;
|
|
43
|
+
export declare var ListCampaignsResponse: StaticStructureSchema;
|
|
44
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
45
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
46
|
+
export declare var OutboundCallConfig: StaticStructureSchema;
|
|
47
|
+
export declare var PauseCampaignRequest: StaticStructureSchema;
|
|
48
|
+
export declare var PredictiveDialerConfig: StaticStructureSchema;
|
|
49
|
+
export declare var ProgressiveDialerConfig: StaticStructureSchema;
|
|
50
|
+
export declare var PutDialRequestBatchRequest: StaticStructureSchema;
|
|
51
|
+
export declare var PutDialRequestBatchResponse: StaticStructureSchema;
|
|
52
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
53
|
+
export declare var ResumeCampaignRequest: StaticStructureSchema;
|
|
54
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
55
|
+
export declare var StartCampaignRequest: StaticStructureSchema;
|
|
56
|
+
export declare var StartInstanceOnboardingJobRequest: StaticStructureSchema;
|
|
57
|
+
export declare var StartInstanceOnboardingJobResponse: StaticStructureSchema;
|
|
58
|
+
export declare var StopCampaignRequest: StaticStructureSchema;
|
|
59
|
+
export declare var SuccessfulCampaignStateResponse: StaticStructureSchema;
|
|
60
|
+
export declare var SuccessfulRequest: StaticStructureSchema;
|
|
61
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
62
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
63
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
64
|
+
export declare var UpdateCampaignDialerConfigRequest: StaticStructureSchema;
|
|
65
|
+
export declare var UpdateCampaignNameRequest: StaticStructureSchema;
|
|
66
|
+
export declare var UpdateCampaignOutboundCallConfigRequest: StaticStructureSchema;
|
|
67
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
68
|
+
export declare var __Unit: "unit";
|
|
69
|
+
export declare var ConnectCampaignsServiceException: StaticErrorSchema;
|
|
70
|
+
export declare var CampaignIdList: number;
|
|
71
|
+
export declare var CampaignSummaryList: StaticListSchema;
|
|
72
|
+
export declare var DialRequestList: StaticListSchema;
|
|
73
|
+
export declare var FailedCampaignStateResponseList: StaticListSchema;
|
|
74
|
+
export declare var FailedRequestList: StaticListSchema;
|
|
75
|
+
export declare var SuccessfulCampaignStateResponseList: StaticListSchema;
|
|
76
|
+
export declare var SuccessfulRequestList: StaticListSchema;
|
|
77
|
+
export declare var TagKeyList: number;
|
|
78
|
+
export declare var Attributes: StaticMapSchema;
|
|
79
|
+
export declare var TagMap: number;
|
|
80
|
+
export declare var DialerConfig: StaticStructureSchema;
|
|
81
|
+
export declare var CreateCampaign: StaticOperationSchema;
|
|
82
|
+
export declare var DeleteCampaign: StaticOperationSchema;
|
|
83
|
+
export declare var DeleteConnectInstanceConfig: StaticOperationSchema;
|
|
84
|
+
export declare var DeleteInstanceOnboardingJob: StaticOperationSchema;
|
|
85
|
+
export declare var DescribeCampaign: StaticOperationSchema;
|
|
86
|
+
export declare var GetCampaignState: StaticOperationSchema;
|
|
87
|
+
export declare var GetCampaignStateBatch: StaticOperationSchema;
|
|
88
|
+
export declare var GetConnectInstanceConfig: StaticOperationSchema;
|
|
89
|
+
export declare var GetInstanceOnboardingJobStatus: StaticOperationSchema;
|
|
90
|
+
export declare var ListCampaigns: StaticOperationSchema;
|
|
91
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
92
|
+
export declare var PauseCampaign: StaticOperationSchema;
|
|
93
|
+
export declare var PutDialRequestBatch: StaticOperationSchema;
|
|
94
|
+
export declare var ResumeCampaign: StaticOperationSchema;
|
|
95
|
+
export declare var StartCampaign: StaticOperationSchema;
|
|
96
|
+
export declare var StartInstanceOnboardingJob: StaticOperationSchema;
|
|
97
|
+
export declare var StopCampaign: StaticOperationSchema;
|
|
98
|
+
export declare var TagResource: StaticOperationSchema;
|
|
99
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
100
|
+
export declare var UpdateCampaignDialerConfig: StaticOperationSchema;
|
|
101
|
+
export declare var UpdateCampaignName: StaticOperationSchema;
|
|
102
|
+
export declare var UpdateCampaignOutboundCallConfig: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-connectcampaigns",
|
|
3
3
|
"description": "AWS SDK for JavaScript Connectcampaigns Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.929.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-connectcampaigns",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.928.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.929.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.928.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.925.0",
|
|
30
30
|
"@aws-sdk/types": "3.922.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.922.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.922.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.928.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.2",
|
|
35
35
|
"@smithy/core": "^3.17.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.5",
|