@aws-sdk/client-connectcampaignsv2 3.1075.0 → 3.1076.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 CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultConnectCampaignsV2HttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CreateCampaign$, DeleteCampaignChannelSubtypeConfig$, DeleteCampaign$, DeleteCampaignCommunicationLimits$, DeleteCampaignCommunicationTime$, DeleteCampaignEntryLimits$, DeleteConnectInstanceConfig$, DeleteConnectInstanceIntegration$, DeleteInstanceOnboardingJob$, DescribeCampaign$, GetCampaignStateBatch$, GetCampaignState$, GetConnectInstanceConfig$, GetInstanceCommunicationLimits$, GetInstanceOnboardingJobStatus$, ListCampaigns$, ListConnectInstanceIntegrations$, ListTagsForResource$, PauseCampaign$, PutConnectInstanceIntegration$, PutInstanceCommunicationLimits$, PutOutboundRequestBatch$, PutProfileOutboundRequestBatch$, ResumeCampaign$, StartCampaign$, StartInstanceOnboardingJob$, StopCampaign$, TagResource$, UntagResource$, UpdateCampaignChannelSubtypeConfig$, UpdateCampaignCommunicationLimits$, UpdateCampaignCommunicationTime$, UpdateCampaignEntryLimits$, UpdateCampaignFlowAssociation$, UpdateCampaignName$, UpdateCampaignSchedule$, UpdateCampaignSource$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { ConnectCampaignsV2ServiceException } = require("./models/ConnectCampaignsV2ServiceException");
18
- exports.ConnectCampaignsV2ServiceException = ConnectCampaignsV2ServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultConnectCampaignsV2HttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "connect-campaigns",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultConnectCampaignsV2HttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,1404 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const k = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [g]],
79
+ [c, j],
80
+ ["aws.partition", j, d],
81
+ [e, [{ [k]: "UseFIPS" }, b]],
82
+ [e, [{ [k]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
85
+ ],
86
+ results: [
87
+ [a],
88
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
89
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
90
+ [g, i],
91
+ ["https://connect-campaigns-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://connect-campaigns-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://connect-campaigns.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://connect-campaigns.{Region}.{PartitionResult#dnsSuffix}", i],
98
+ [a, "Invalid Configuration: Missing Region"]
99
+ ]
100
+ };
101
+ const root = 2;
102
+ const r = 100_000_000;
103
+ const nodes = new Int32Array([
104
+ -1, 1, -1,
105
+ 0, 12, 3,
106
+ 1, 4, r + 11,
107
+ 2, 5, r + 11,
108
+ 3, 8, 6,
109
+ 4, 7, r + 10,
110
+ 5, r + 8, r + 9,
111
+ 4, 10, 9,
112
+ 6, r + 6, r + 7,
113
+ 5, 11, r + 5,
114
+ 6, r + 4, r + 5,
115
+ 3, r + 1, 13,
116
+ 4, r + 2, r + 3,
117
+ ]);
118
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
119
+
120
+ const cache = new EndpointCache({
121
+ size: 50,
122
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
123
+ });
124
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
125
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
126
+ endpointParams: endpointParams,
127
+ logger: context.logger,
128
+ }));
129
+ };
130
+ customEndpointFunctions.aws = awsEndpointFunctions;
131
+
132
+ class ConnectCampaignsV2ServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, ConnectCampaignsV2ServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class AccessDeniedException extends ConnectCampaignsV2ServiceException {
140
+ name = "AccessDeniedException";
141
+ $fault = "client";
142
+ xAmzErrorType;
143
+ constructor(opts) {
144
+ super({
145
+ name: "AccessDeniedException",
146
+ $fault: "client",
147
+ ...opts,
148
+ });
149
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
150
+ this.xAmzErrorType = opts.xAmzErrorType;
151
+ }
152
+ }
153
+ class ConflictException extends ConnectCampaignsV2ServiceException {
154
+ name = "ConflictException";
155
+ $fault = "client";
156
+ xAmzErrorType;
157
+ constructor(opts) {
158
+ super({
159
+ name: "ConflictException",
160
+ $fault: "client",
161
+ ...opts,
162
+ });
163
+ Object.setPrototypeOf(this, ConflictException.prototype);
164
+ this.xAmzErrorType = opts.xAmzErrorType;
165
+ }
166
+ }
167
+ class InternalServerException extends ConnectCampaignsV2ServiceException {
168
+ name = "InternalServerException";
169
+ $fault = "server";
170
+ $retryable = {};
171
+ xAmzErrorType;
172
+ constructor(opts) {
173
+ super({
174
+ name: "InternalServerException",
175
+ $fault: "server",
176
+ ...opts,
177
+ });
178
+ Object.setPrototypeOf(this, InternalServerException.prototype);
179
+ this.xAmzErrorType = opts.xAmzErrorType;
180
+ }
181
+ }
182
+ class ResourceNotFoundException extends ConnectCampaignsV2ServiceException {
183
+ name = "ResourceNotFoundException";
184
+ $fault = "client";
185
+ xAmzErrorType;
186
+ constructor(opts) {
187
+ super({
188
+ name: "ResourceNotFoundException",
189
+ $fault: "client",
190
+ ...opts,
191
+ });
192
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
193
+ this.xAmzErrorType = opts.xAmzErrorType;
194
+ }
195
+ }
196
+ class ServiceQuotaExceededException extends ConnectCampaignsV2ServiceException {
197
+ name = "ServiceQuotaExceededException";
198
+ $fault = "client";
199
+ xAmzErrorType;
200
+ constructor(opts) {
201
+ super({
202
+ name: "ServiceQuotaExceededException",
203
+ $fault: "client",
204
+ ...opts,
205
+ });
206
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
207
+ this.xAmzErrorType = opts.xAmzErrorType;
208
+ }
209
+ }
210
+ class ThrottlingException extends ConnectCampaignsV2ServiceException {
211
+ name = "ThrottlingException";
212
+ $fault = "client";
213
+ $retryable = {};
214
+ xAmzErrorType;
215
+ constructor(opts) {
216
+ super({
217
+ name: "ThrottlingException",
218
+ $fault: "client",
219
+ ...opts,
220
+ });
221
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
222
+ this.xAmzErrorType = opts.xAmzErrorType;
223
+ }
224
+ }
225
+ class ValidationException extends ConnectCampaignsV2ServiceException {
226
+ name = "ValidationException";
227
+ $fault = "client";
228
+ xAmzErrorType;
229
+ constructor(opts) {
230
+ super({
231
+ name: "ValidationException",
232
+ $fault: "client",
233
+ ...opts,
234
+ });
235
+ Object.setPrototypeOf(this, ValidationException.prototype);
236
+ this.xAmzErrorType = opts.xAmzErrorType;
237
+ }
238
+ }
239
+ class InvalidCampaignStateException extends ConnectCampaignsV2ServiceException {
240
+ name = "InvalidCampaignStateException";
241
+ $fault = "client";
242
+ state;
243
+ xAmzErrorType;
244
+ constructor(opts) {
245
+ super({
246
+ name: "InvalidCampaignStateException",
247
+ $fault: "client",
248
+ ...opts,
249
+ });
250
+ Object.setPrototypeOf(this, InvalidCampaignStateException.prototype);
251
+ this.state = opts.state;
252
+ this.xAmzErrorType = opts.xAmzErrorType;
253
+ }
254
+ }
255
+ class InvalidStateException extends ConnectCampaignsV2ServiceException {
256
+ name = "InvalidStateException";
257
+ $fault = "client";
258
+ xAmzErrorType;
259
+ constructor(opts) {
260
+ super({
261
+ name: "InvalidStateException",
262
+ $fault: "client",
263
+ ...opts,
264
+ });
265
+ Object.setPrototypeOf(this, InvalidStateException.prototype);
266
+ this.xAmzErrorType = opts.xAmzErrorType;
267
+ }
268
+ }
269
+
270
+ const _A = "Attributes";
271
+ const _AC = "AgentlessConfig";
272
+ const _ADE = "AccessDeniedException";
273
+ const _AMDC = "AnswerMachineDetectionConfig";
274
+ const _C = "Campaign";
275
+ const _CC = "ChannelContext";
276
+ const _CCR = "CreateCampaignRequest";
277
+ const _CCRr = "CreateCampaignResponse";
278
+ const _CCr = "CreateCampaign";
279
+ const _CE = "ConflictException";
280
+ const _CF = "CampaignFilters";
281
+ const _CL = "CommunicationLimit";
282
+ const _CLC = "CommunicationLimitsConfig";
283
+ const _CLL = "CommunicationLimitList";
284
+ const _CLo = "CommunicationLimits";
285
+ const _CPIC = "CustomerProfilesIntegrationConfig";
286
+ const _CPII = "CustomerProfilesIntegrationIdentifier";
287
+ const _CPIS = "CustomerProfilesIntegrationSummary";
288
+ const _CS = "CampaignSummary";
289
+ const _CSC = "ChannelSubtypeConfig";
290
+ const _CSL = "CampaignSummaryList";
291
+ const _CSP = "ChannelSubtypeParameters";
292
+ const _CTC = "CommunicationTimeConfig";
293
+ const _DC = "DeleteCampaign";
294
+ const _DCCL = "DeleteCampaignCommunicationLimits";
295
+ const _DCCLR = "DeleteCampaignCommunicationLimitsRequest";
296
+ const _DCCSC = "DeleteCampaignChannelSubtypeConfig";
297
+ const _DCCSCR = "DeleteCampaignChannelSubtypeConfigRequest";
298
+ const _DCCT = "DeleteCampaignCommunicationTime";
299
+ const _DCCTR = "DeleteCampaignCommunicationTimeRequest";
300
+ const _DCEL = "DeleteCampaignEntryLimits";
301
+ const _DCELR = "DeleteCampaignEntryLimitsRequest";
302
+ const _DCIC = "DeleteConnectInstanceConfig";
303
+ const _DCICR = "DeleteConnectInstanceConfigRequest";
304
+ const _DCII = "DeleteConnectInstanceIntegration";
305
+ const _DCIIR = "DeleteConnectInstanceIntegrationRequest";
306
+ const _DCR = "DeleteCampaignRequest";
307
+ const _DCRe = "DescribeCampaignRequest";
308
+ const _DCRes = "DescribeCampaignResponse";
309
+ const _DCe = "DescribeCampaign";
310
+ const _DH = "DailyHours";
311
+ const _DIOJ = "DeleteInstanceOnboardingJob";
312
+ const _DIOJR = "DeleteInstanceOnboardingJobRequest";
313
+ const _DPN = "DestinationPhoneNumber";
314
+ const _EA = "EmailAddress";
315
+ const _EC = "EncryptionConfig";
316
+ const _ECSC = "EmailChannelSubtypeConfig";
317
+ const _ECSP = "EmailChannelSubtypeParameters";
318
+ const _EDN = "EmailDisplayName";
319
+ const _ELC = "EntryLimitsConfig";
320
+ const _EOC = "EmailOutboundConfig";
321
+ const _EOM = "EmailOutboundMode";
322
+ const _ET = "EventTrigger";
323
+ const _ETC = "EventTriggerContext";
324
+ const _FCSR = "FailedCampaignStateResponse";
325
+ const _FCSRL = "FailedCampaignStateResponseList";
326
+ const _FPOR = "FailedProfileOutboundRequest";
327
+ const _FPORL = "FailedProfileOutboundRequestList";
328
+ const _FR = "FailedRequest";
329
+ const _FRL = "FailedRequestList";
330
+ const _GCIC = "GetConnectInstanceConfig";
331
+ const _GCICR = "GetConnectInstanceConfigRequest";
332
+ const _GCICRe = "GetConnectInstanceConfigResponse";
333
+ const _GCS = "GetCampaignState";
334
+ const _GCSB = "GetCampaignStateBatch";
335
+ const _GCSBR = "GetCampaignStateBatchRequest";
336
+ const _GCSBRe = "GetCampaignStateBatchResponse";
337
+ const _GCSR = "GetCampaignStateRequest";
338
+ const _GCSRe = "GetCampaignStateResponse";
339
+ const _GICL = "GetInstanceCommunicationLimits";
340
+ const _GICLR = "GetInstanceCommunicationLimitsRequest";
341
+ const _GICLRe = "GetInstanceCommunicationLimitsResponse";
342
+ const _GIOJS = "GetInstanceOnboardingJobStatus";
343
+ const _GIOJSR = "GetInstanceOnboardingJobStatusRequest";
344
+ const _GIOJSRe = "GetInstanceOnboardingJobStatusResponse";
345
+ const _IC = "InstanceConfig";
346
+ const _ICLC = "InstanceCommunicationLimitsConfig";
347
+ const _ICSE = "InvalidCampaignStateException";
348
+ const _ICn = "IntegrationConfig";
349
+ const _II = "IntegrationIdentifier";
350
+ const _IIF = "InstanceIdFilter";
351
+ const _IOJS = "InstanceOnboardingJobStatus";
352
+ const _IS = "IntegrationSummary";
353
+ const _ISE = "InternalServerException";
354
+ const _ISEn = "InvalidStateException";
355
+ const _ISL = "IntegrationSummaryList";
356
+ const _LC = "ListCampaigns";
357
+ const _LCII = "ListConnectInstanceIntegrations";
358
+ const _LCIIR = "ListConnectInstanceIntegrationsRequest";
359
+ const _LCIIRi = "ListConnectInstanceIntegrationsResponse";
360
+ const _LCR = "ListCampaignsRequest";
361
+ const _LCRi = "ListCampaignsResponse";
362
+ const _LIC = "LambdaIntegrationConfig";
363
+ const _LII = "LambdaIntegrationIdentifier";
364
+ const _LIS = "LambdaIntegrationSummary";
365
+ const _LTFR = "ListTagsForResource";
366
+ const _LTFRR = "ListTagsForResourceRequest";
367
+ const _LTFRRi = "ListTagsForResourceResponse";
368
+ const _LTZC = "LocalTimeZoneConfig";
369
+ const _OH = "OpenHours";
370
+ const _OR = "OutboundRequest";
371
+ const _ORL = "OutboundRequestList";
372
+ const _PC = "PredictiveConfig";
373
+ const _PCII = "PutConnectInstanceIntegration";
374
+ const _PCIIR = "PutConnectInstanceIntegrationRequest";
375
+ const _PCR = "PauseCampaignRequest";
376
+ const _PCa = "PauseCampaign";
377
+ const _PCr = "PreviewConfig";
378
+ const _PCro = "ProgressiveConfig";
379
+ const _PICL = "PutInstanceCommunicationLimits";
380
+ const _PICLR = "PutInstanceCommunicationLimitsRequest";
381
+ const _POR = "ProfileOutboundRequest";
382
+ const _PORB = "PutOutboundRequestBatch";
383
+ const _PORBR = "PutOutboundRequestBatchRequest";
384
+ const _PORBRu = "PutOutboundRequestBatchResponse";
385
+ const _PORL = "ProfileOutboundRequestList";
386
+ const _PPORB = "PutProfileOutboundRequestBatch";
387
+ const _PPORBR = "PutProfileOutboundRequestBatchRequest";
388
+ const _PPORBRu = "PutProfileOutboundRequestBatchResponse";
389
+ const _QCIC = "QConnectIntegrationConfig";
390
+ const _QCII = "QConnectIntegrationIdentifier";
391
+ const _QCIS = "QConnectIntegrationSummary";
392
+ const _RC = "ResumeCampaign";
393
+ const _RCR = "ResumeCampaignRequest";
394
+ const _RNFE = "ResourceNotFoundException";
395
+ const _RP = "RestrictedPeriod";
396
+ const _RPL = "RestrictedPeriodList";
397
+ const _RPe = "RestrictedPeriods";
398
+ const _S = "Schedule";
399
+ const _SC = "StartCampaign";
400
+ const _SCR = "StartCampaignRequest";
401
+ const _SCRt = "StopCampaignRequest";
402
+ const _SCSC = "SmsChannelSubtypeConfig";
403
+ const _SCSP = "SmsChannelSubtypeParameters";
404
+ const _SCSR = "SuccessfulCampaignStateResponse";
405
+ const _SCSRL = "SuccessfulCampaignStateResponseList";
406
+ const _SCt = "StopCampaign";
407
+ const _SIOJ = "StartInstanceOnboardingJob";
408
+ const _SIOJR = "StartInstanceOnboardingJobRequest";
409
+ const _SIOJRt = "StartInstanceOnboardingJobResponse";
410
+ const _SOC = "SmsOutboundConfig";
411
+ const _SOM = "SmsOutboundMode";
412
+ const _SPOR = "SuccessfulProfileOutboundRequest";
413
+ const _SPORL = "SuccessfulProfileOutboundRequestList";
414
+ const _SQEE = "ServiceQuotaExceededException";
415
+ const _SR = "SuccessfulRequest";
416
+ const _SRL = "SuccessfulRequestList";
417
+ const _So = "Source";
418
+ const _TC = "TimeoutConfig";
419
+ const _TCSC = "TelephonyChannelSubtypeConfig";
420
+ const _TCSP = "TelephonyChannelSubtypeParameters";
421
+ const _TE = "ThrottlingException";
422
+ const _TOC = "TelephonyOutboundConfig";
423
+ const _TOM = "TelephonyOutboundMode";
424
+ const _TR = "TimeRange";
425
+ const _TRL = "TimeRangeList";
426
+ const _TRR = "TagResourceRequest";
427
+ const _TRa = "TagResource";
428
+ const _TW = "TimeWindow";
429
+ const _UCCL = "UpdateCampaignCommunicationLimits";
430
+ const _UCCLR = "UpdateCampaignCommunicationLimitsRequest";
431
+ const _UCCSC = "UpdateCampaignChannelSubtypeConfig";
432
+ const _UCCSCR = "UpdateCampaignChannelSubtypeConfigRequest";
433
+ const _UCCT = "UpdateCampaignCommunicationTime";
434
+ const _UCCTR = "UpdateCampaignCommunicationTimeRequest";
435
+ const _UCEL = "UpdateCampaignEntryLimits";
436
+ const _UCELR = "UpdateCampaignEntryLimitsRequest";
437
+ const _UCFA = "UpdateCampaignFlowAssociation";
438
+ const _UCFAR = "UpdateCampaignFlowAssociationRequest";
439
+ const _UCN = "UpdateCampaignName";
440
+ const _UCNR = "UpdateCampaignNameRequest";
441
+ const _UCS = "UpdateCampaignSchedule";
442
+ const _UCSR = "UpdateCampaignScheduleRequest";
443
+ const _UCSRp = "UpdateCampaignSourceRequest";
444
+ const _UCSp = "UpdateCampaignSource";
445
+ const _UR = "UntagResource";
446
+ const _URR = "UntagResourceRequest";
447
+ const _VE = "ValidationException";
448
+ const _WACSC = "WhatsAppChannelSubtypeConfig";
449
+ const _WACSP = "WhatsAppChannelSubtypeParameters";
450
+ const _WAOC = "WhatsAppOutboundConfig";
451
+ const _WAOM = "WhatsAppOutboundMode";
452
+ const _WNC = "WebNotificationContext";
453
+ const _a = "arn";
454
+ const _aA = "agentActions";
455
+ const _aAMP = "awaitAnswerMachinePrompt";
456
+ const _aCS = "allChannelSubtypes";
457
+ const _aMDC = "answerMachineDetectionConfig";
458
+ const _ag = "agentless";
459
+ const _at = "attributes";
460
+ const _bA = "bandwidthAllocation";
461
+ const _bI = "browserId";
462
+ const _c = "client";
463
+ const _cC = "channelContext";
464
+ const _cCFA = "connectCampaignFlowArn";
465
+ const _cCFI = "connectContactFlowId";
466
+ const _cDP = "campaignDeletionPolicy";
467
+ const _cI = "campaignId";
468
+ const _cIC = "connectInstanceConfig";
469
+ const _cII = "connectInstanceId";
470
+ const _cIOJS = "connectInstanceOnboardingJobStatus";
471
+ const _cIa = "campaignIds";
472
+ const _cLC = "communicationLimitsConfig";
473
+ const _cLL = "communicationLimitsList";
474
+ const _cLO = "communicationLimitsOverride";
475
+ const _cP = "customerProfiles";
476
+ const _cPDA = "customerProfilesDomainArn";
477
+ const _cPSA = "customerProfilesSegmentArn";
478
+ const _cQI = "connectQueueId";
479
+ const _cS = "channelSubtypes";
480
+ const _cSC = "channelSubtypeConfig";
481
+ const _cSEA = "connectSourceEmailAddress";
482
+ const _cSL = "campaignSummaryList";
483
+ const _cSP = "channelSubtypeParameters";
484
+ const _cSPN = "connectSourcePhoneNumber";
485
+ const _cSPNA = "connectSourcePhoneNumberArn";
486
+ const _cSh = "channelSubtype";
487
+ const _cT = "clientToken";
488
+ const _cTC = "communicationTimeConfig";
489
+ const _ca = "campaign";
490
+ const _cap = "capacity";
491
+ const _co = "config";
492
+ const _dA = "domainArn";
493
+ const _dEA = "destinationEmailAddress";
494
+ const _dH = "dailyHours";
495
+ const _dIS = "durationInSeconds";
496
+ const _dOC = "defaultOutboundConfig";
497
+ const _dPN = "destinationPhoneNumber";
498
+ const _dTZ = "defaultTimeZone";
499
+ const _e = "error";
500
+ const _eAMD = "enableAnswerMachineDetection";
501
+ const _eC = "encryptionConfig";
502
+ const _eD = "endDate";
503
+ const _eLC = "entryLimitsConfig";
504
+ const _eT = "encryptionType";
505
+ const _eTC = "eventTriggerContext";
506
+ const _eTn = "endTime";
507
+ const _eTv = "eventTrigger";
508
+ const _eTx = "expirationTime";
509
+ const _em = "email";
510
+ const _en = "enabled";
511
+ const _f = "frequency";
512
+ const _fA = "functionArn";
513
+ const _fC = "failureCode";
514
+ const _fR = "failedRequests";
515
+ const _fi = "filters";
516
+ const _h = "http";
517
+ const _hE = "httpError";
518
+ const _hH = "httpHeader";
519
+ const _hQ = "httpQuery";
520
+ const _i = "id";
521
+ const _iC = "integrationConfig";
522
+ const _iI = "integrationIdentifier";
523
+ const _iIF = "instanceIdFilter";
524
+ const _iLH = "instanceLimitsHandling";
525
+ const _iSL = "integrationSummaryList";
526
+ const _kA = "keyArn";
527
+ const _kBA = "knowledgeBaseArn";
528
+ const _l = "lambda";
529
+ const _lTZC = "localTimeZoneConfig";
530
+ const _lTZD = "localTimeZoneDetection";
531
+ const _lTZDS = "localTimeZoneDetectionScope";
532
+ const _m = "message";
533
+ const _mCPR = "maxCountPerRecipient";
534
+ const _mEC = "maxEntryCount";
535
+ const _mEI = "minEntryInterval";
536
+ const _mR = "maxResults";
537
+ const _n = "name";
538
+ const _nT = "nextToken";
539
+ const _o = "operator";
540
+ const _oH = "openHours";
541
+ const _oM = "outboundMode";
542
+ const _oR = "outboundRequests";
543
+ const _oTN = "objectTypeNames";
544
+ const _p = "progressive";
545
+ const _pI = "profileId";
546
+ const _pOR = "profileOutboundRequests";
547
+ const _pr = "predictive";
548
+ const _pre = "preview";
549
+ const _qC = "qConnect";
550
+ const _rF = "refreshFrequency";
551
+ const _rP = "restrictedPeriods";
552
+ const _rPL = "restrictedPeriodList";
553
+ const _rT = "ringTimeout";
554
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.connectcampaignsv2";
555
+ const _sD = "startDate";
556
+ const _sE = "sourceEvent";
557
+ const _sEADN = "sourceEmailAddressDisplayName";
558
+ const _sI = "sessionId";
559
+ const _sLRA = "serviceLinkedRoleArn";
560
+ const _sR = "successfulRequests";
561
+ const _sT = "startTime";
562
+ const _sc = "schedule";
563
+ const _se = "server";
564
+ const _sm = "sms";
565
+ const _so = "source";
566
+ const _st = "state";
567
+ const _sta = "status";
568
+ const _t = "type";
569
+ const _tA = "templateArn";
570
+ const _tC = "timeoutConfig";
571
+ const _tK = "tagKeys";
572
+ const _tP = "templateParameters";
573
+ const _ta = "tags";
574
+ const _te = "telephony";
575
+ const _u = "unit";
576
+ const _v = "value";
577
+ const _wA = "whatsApp";
578
+ const _wNC = "webNotificationContext";
579
+ const _wTA = "wisdomTemplateArn";
580
+ const _xAET = "xAmzErrorType";
581
+ const _xaE = "x-amzn-ErrorType";
582
+ const n0 = "com.amazonaws.connectcampaignsv2";
583
+ const _s_registry = TypeRegistry.for(_s);
584
+ var ConnectCampaignsV2ServiceException$ = [-3, _s, "ConnectCampaignsV2ServiceException", 0, [], []];
585
+ _s_registry.registerError(ConnectCampaignsV2ServiceException$, ConnectCampaignsV2ServiceException);
586
+ const n0_registry = TypeRegistry.for(n0);
587
+ var AccessDeniedException$ = [-3, n0, _ADE,
588
+ { [_e]: _c, [_hE]: 403 },
589
+ [_m, _xAET],
590
+ [0, [0, { [_hH]: _xaE }]], 1
591
+ ];
592
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
593
+ var ConflictException$ = [-3, n0, _CE,
594
+ { [_e]: _c, [_hE]: 409 },
595
+ [_m, _xAET],
596
+ [0, [0, { [_hH]: _xaE }]], 1
597
+ ];
598
+ n0_registry.registerError(ConflictException$, ConflictException);
599
+ var InternalServerException$ = [-3, n0, _ISE,
600
+ { [_e]: _se, [_hE]: 500 },
601
+ [_m, _xAET],
602
+ [0, [0, { [_hH]: _xaE }]], 1
603
+ ];
604
+ n0_registry.registerError(InternalServerException$, InternalServerException);
605
+ var InvalidCampaignStateException$ = [-3, n0, _ICSE,
606
+ { [_e]: _c, [_hE]: 409 },
607
+ [_st, _m, _xAET],
608
+ [0, 0, [0, { [_hH]: _xaE }]], 2
609
+ ];
610
+ n0_registry.registerError(InvalidCampaignStateException$, InvalidCampaignStateException);
611
+ var InvalidStateException$ = [-3, n0, _ISEn,
612
+ { [_e]: _c, [_hE]: 409 },
613
+ [_m, _xAET],
614
+ [0, [0, { [_hH]: _xaE }]], 1
615
+ ];
616
+ n0_registry.registerError(InvalidStateException$, InvalidStateException);
617
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
618
+ { [_e]: _c, [_hE]: 404 },
619
+ [_m, _xAET],
620
+ [0, [0, { [_hH]: _xaE }]], 1
621
+ ];
622
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
623
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
624
+ { [_e]: _c, [_hE]: 402 },
625
+ [_m, _xAET],
626
+ [0, [0, { [_hH]: _xaE }]], 1
627
+ ];
628
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
629
+ var ThrottlingException$ = [-3, n0, _TE,
630
+ { [_e]: _c, [_hE]: 429 },
631
+ [_m, _xAET],
632
+ [0, [0, { [_hH]: _xaE }]], 1
633
+ ];
634
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
635
+ var ValidationException$ = [-3, n0, _VE,
636
+ { [_e]: _c, [_hE]: 400 },
637
+ [_m, _xAET],
638
+ [0, [0, { [_hH]: _xaE }]], 1
639
+ ];
640
+ n0_registry.registerError(ValidationException$, ValidationException);
641
+ const errorTypeRegistries = [
642
+ _s_registry,
643
+ n0_registry,
644
+ ];
645
+ var DestinationPhoneNumber = [0, n0, _DPN, 8, 0];
646
+ var EmailAddress = [0, n0, _EA, 8, 0];
647
+ var EmailDisplayName = [0, n0, _EDN, 8, 0];
648
+ var AgentlessConfig$ = [3, n0, _AC,
649
+ 0,
650
+ [],
651
+ []
652
+ ];
653
+ var AnswerMachineDetectionConfig$ = [3, n0, _AMDC,
654
+ 0,
655
+ [_eAMD, _aAMP],
656
+ [2, 2], 1
657
+ ];
658
+ var Campaign$ = [3, n0, _C,
659
+ 0,
660
+ [_i, _a, _n, _cII, _cSC, _t, _so, _cCFA, _sc, _eLC, _cTC, _cLO, _ta],
661
+ [0, 0, 0, 0, [() => ChannelSubtypeConfig$, 0], 0, () => Source$, 0, () => Schedule$, () => EntryLimitsConfig$, () => CommunicationTimeConfig$, () => CommunicationLimitsConfig$, 128 | 0], 4
662
+ ];
663
+ var CampaignFilters$ = [3, n0, _CF,
664
+ 0,
665
+ [_iIF],
666
+ [() => InstanceIdFilter$]
667
+ ];
668
+ var CampaignSummary$ = [3, n0, _CS,
669
+ 0,
670
+ [_i, _a, _n, _cII, _cS, _t, _sc, _eLC, _cCFA],
671
+ [0, 0, 0, 0, 64 | 0, 0, () => Schedule$, () => EntryLimitsConfig$, 0], 5
672
+ ];
673
+ var ChannelContext$ = [3, n0, _CC,
674
+ 0,
675
+ [_wNC],
676
+ [() => WebNotificationContext$]
677
+ ];
678
+ var ChannelSubtypeConfig$ = [3, n0, _CSC,
679
+ 0,
680
+ [_te, _sm, _em, _wA],
681
+ [() => TelephonyChannelSubtypeConfig$, () => SmsChannelSubtypeConfig$, [() => EmailChannelSubtypeConfig$, 0], () => WhatsAppChannelSubtypeConfig$]
682
+ ];
683
+ var CommunicationLimit$ = [3, n0, _CL,
684
+ 0,
685
+ [_mCPR, _f, _u],
686
+ [1, 1, 0], 3
687
+ ];
688
+ var CommunicationLimitsConfig$ = [3, n0, _CLC,
689
+ 0,
690
+ [_aCS, _iLH],
691
+ [() => CommunicationLimits$, 0]
692
+ ];
693
+ var CommunicationTimeConfig$ = [3, n0, _CTC,
694
+ 0,
695
+ [_lTZC, _te, _sm, _em, _wA],
696
+ [() => LocalTimeZoneConfig$, () => TimeWindow$, () => TimeWindow$, () => TimeWindow$, () => TimeWindow$], 1
697
+ ];
698
+ var CreateCampaignRequest$ = [3, n0, _CCR,
699
+ 0,
700
+ [_n, _cII, _cSC, _t, _so, _cCFA, _sc, _eLC, _cTC, _cLO, _ta],
701
+ [0, 0, [() => ChannelSubtypeConfig$, 0], 0, () => Source$, 0, () => Schedule$, () => EntryLimitsConfig$, () => CommunicationTimeConfig$, () => CommunicationLimitsConfig$, 128 | 0], 2
702
+ ];
703
+ var CreateCampaignResponse$ = [3, n0, _CCRr,
704
+ 0,
705
+ [_i, _a, _ta],
706
+ [0, 0, 128 | 0]
707
+ ];
708
+ var CustomerProfilesIntegrationConfig$ = [3, n0, _CPIC,
709
+ 0,
710
+ [_dA, _oTN],
711
+ [0, 128 | 0], 2
712
+ ];
713
+ var CustomerProfilesIntegrationIdentifier$ = [3, n0, _CPII,
714
+ 0,
715
+ [_dA],
716
+ [0], 1
717
+ ];
718
+ var CustomerProfilesIntegrationSummary$ = [3, n0, _CPIS,
719
+ 0,
720
+ [_dA, _oTN],
721
+ [0, 128 | 0], 2
722
+ ];
723
+ var DeleteCampaignChannelSubtypeConfigRequest$ = [3, n0, _DCCSCR,
724
+ 0,
725
+ [_i, _cSh],
726
+ [[0, 1], [0, { [_hQ]: _cSh }]], 2
727
+ ];
728
+ var DeleteCampaignCommunicationLimitsRequest$ = [3, n0, _DCCLR,
729
+ 0,
730
+ [_i, _co],
731
+ [[0, 1], [0, { [_hQ]: _co }]], 2
732
+ ];
733
+ var DeleteCampaignCommunicationTimeRequest$ = [3, n0, _DCCTR,
734
+ 0,
735
+ [_i, _co],
736
+ [[0, 1], [0, { [_hQ]: _co }]], 2
737
+ ];
738
+ var DeleteCampaignEntryLimitsRequest$ = [3, n0, _DCELR,
739
+ 0,
740
+ [_i],
741
+ [[0, 1]], 1
742
+ ];
743
+ var DeleteCampaignRequest$ = [3, n0, _DCR,
744
+ 0,
745
+ [_i],
746
+ [[0, 1]], 1
747
+ ];
748
+ var DeleteConnectInstanceConfigRequest$ = [3, n0, _DCICR,
749
+ 0,
750
+ [_cII, _cDP],
751
+ [[0, 1], [0, { [_hQ]: _cDP }]], 1
752
+ ];
753
+ var DeleteConnectInstanceIntegrationRequest$ = [3, n0, _DCIIR,
754
+ 0,
755
+ [_cII, _iI],
756
+ [[0, 1], () => IntegrationIdentifier$], 2
757
+ ];
758
+ var DeleteInstanceOnboardingJobRequest$ = [3, n0, _DIOJR,
759
+ 0,
760
+ [_cII],
761
+ [[0, 1]], 1
762
+ ];
763
+ var DescribeCampaignRequest$ = [3, n0, _DCRe,
764
+ 0,
765
+ [_i],
766
+ [[0, 1]], 1
767
+ ];
768
+ var DescribeCampaignResponse$ = [3, n0, _DCRes,
769
+ 0,
770
+ [_ca],
771
+ [[() => Campaign$, 0]]
772
+ ];
773
+ var EmailChannelSubtypeConfig$ = [3, n0, _ECSC,
774
+ 0,
775
+ [_oM, _dOC, _cap],
776
+ [() => EmailOutboundMode$, [() => EmailOutboundConfig$, 0], 1], 2
777
+ ];
778
+ var EmailChannelSubtypeParameters$ = [3, n0, _ECSP,
779
+ 0,
780
+ [_dEA, _tP, _cSEA, _tA],
781
+ [[() => EmailAddress, 0], [() => Attributes, 0], [() => EmailAddress, 0], 0], 2
782
+ ];
783
+ var EmailOutboundConfig$ = [3, n0, _EOC,
784
+ 0,
785
+ [_cSEA, _wTA, _sEADN],
786
+ [[() => EmailAddress, 0], 0, [() => EmailDisplayName, 0]], 2
787
+ ];
788
+ var EncryptionConfig$ = [3, n0, _EC,
789
+ 0,
790
+ [_en, _eT, _kA],
791
+ [2, 0, 0], 1
792
+ ];
793
+ var EntryLimitsConfig$ = [3, n0, _ELC,
794
+ 0,
795
+ [_mEC, _mEI],
796
+ [1, 0], 2
797
+ ];
798
+ var EventTrigger$ = [3, n0, _ET,
799
+ 0,
800
+ [_cPDA],
801
+ [0]
802
+ ];
803
+ var EventTriggerContext$ = [3, n0, _ETC,
804
+ 0,
805
+ [_sE, _cC],
806
+ [0, () => ChannelContext$]
807
+ ];
808
+ var FailedCampaignStateResponse$ = [3, n0, _FCSR,
809
+ 0,
810
+ [_cI, _fC],
811
+ [0, 0]
812
+ ];
813
+ var FailedProfileOutboundRequest$ = [3, n0, _FPOR,
814
+ 0,
815
+ [_cT, _i, _fC],
816
+ [0, 0, 0]
817
+ ];
818
+ var FailedRequest$ = [3, n0, _FR,
819
+ 0,
820
+ [_cT, _i, _fC],
821
+ [0, 0, 0]
822
+ ];
823
+ var GetCampaignStateBatchRequest$ = [3, n0, _GCSBR,
824
+ 0,
825
+ [_cIa],
826
+ [64 | 0], 1
827
+ ];
828
+ var GetCampaignStateBatchResponse$ = [3, n0, _GCSBRe,
829
+ 0,
830
+ [_sR, _fR],
831
+ [() => SuccessfulCampaignStateResponseList, () => FailedCampaignStateResponseList]
832
+ ];
833
+ var GetCampaignStateRequest$ = [3, n0, _GCSR,
834
+ 0,
835
+ [_i],
836
+ [[0, 1]], 1
837
+ ];
838
+ var GetCampaignStateResponse$ = [3, n0, _GCSRe,
839
+ 0,
840
+ [_st],
841
+ [0]
842
+ ];
843
+ var GetConnectInstanceConfigRequest$ = [3, n0, _GCICR,
844
+ 0,
845
+ [_cII],
846
+ [[0, 1]], 1
847
+ ];
848
+ var GetConnectInstanceConfigResponse$ = [3, n0, _GCICRe,
849
+ 0,
850
+ [_cIC],
851
+ [() => InstanceConfig$]
852
+ ];
853
+ var GetInstanceCommunicationLimitsRequest$ = [3, n0, _GICLR,
854
+ 0,
855
+ [_cII],
856
+ [[0, 1]], 1
857
+ ];
858
+ var GetInstanceCommunicationLimitsResponse$ = [3, n0, _GICLRe,
859
+ 0,
860
+ [_cLC],
861
+ [() => InstanceCommunicationLimitsConfig$]
862
+ ];
863
+ var GetInstanceOnboardingJobStatusRequest$ = [3, n0, _GIOJSR,
864
+ 0,
865
+ [_cII],
866
+ [[0, 1]], 1
867
+ ];
868
+ var GetInstanceOnboardingJobStatusResponse$ = [3, n0, _GIOJSRe,
869
+ 0,
870
+ [_cIOJS],
871
+ [() => InstanceOnboardingJobStatus$]
872
+ ];
873
+ var InstanceCommunicationLimitsConfig$ = [3, n0, _ICLC,
874
+ 0,
875
+ [_aCS],
876
+ [() => CommunicationLimits$]
877
+ ];
878
+ var InstanceConfig$ = [3, n0, _IC,
879
+ 0,
880
+ [_cII, _sLRA, _eC],
881
+ [0, 0, () => EncryptionConfig$], 3
882
+ ];
883
+ var InstanceIdFilter$ = [3, n0, _IIF,
884
+ 0,
885
+ [_v, _o],
886
+ [0, 0], 2
887
+ ];
888
+ var InstanceOnboardingJobStatus$ = [3, n0, _IOJS,
889
+ 0,
890
+ [_cII, _sta, _fC],
891
+ [0, 0, 0], 2
892
+ ];
893
+ var LambdaIntegrationConfig$ = [3, n0, _LIC,
894
+ 0,
895
+ [_fA],
896
+ [0], 1
897
+ ];
898
+ var LambdaIntegrationIdentifier$ = [3, n0, _LII,
899
+ 0,
900
+ [_fA],
901
+ [0], 1
902
+ ];
903
+ var LambdaIntegrationSummary$ = [3, n0, _LIS,
904
+ 0,
905
+ [_fA],
906
+ [0], 1
907
+ ];
908
+ var ListCampaignsRequest$ = [3, n0, _LCR,
909
+ 0,
910
+ [_mR, _nT, _fi],
911
+ [1, 0, () => CampaignFilters$]
912
+ ];
913
+ var ListCampaignsResponse$ = [3, n0, _LCRi,
914
+ 0,
915
+ [_nT, _cSL],
916
+ [0, () => CampaignSummaryList]
917
+ ];
918
+ var ListConnectInstanceIntegrationsRequest$ = [3, n0, _LCIIR,
919
+ 0,
920
+ [_cII, _mR, _nT],
921
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
922
+ ];
923
+ var ListConnectInstanceIntegrationsResponse$ = [3, n0, _LCIIRi,
924
+ 0,
925
+ [_nT, _iSL],
926
+ [0, () => IntegrationSummaryList]
927
+ ];
928
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
929
+ 0,
930
+ [_a],
931
+ [[0, 1]], 1
932
+ ];
933
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
934
+ 0,
935
+ [_ta],
936
+ [128 | 0]
937
+ ];
938
+ var LocalTimeZoneConfig$ = [3, n0, _LTZC,
939
+ 0,
940
+ [_dTZ, _lTZD, _lTZDS],
941
+ [0, 64 | 0, 0]
942
+ ];
943
+ var OutboundRequest$ = [3, n0, _OR,
944
+ 0,
945
+ [_cT, _eTx, _cSP],
946
+ [0, 5, [() => ChannelSubtypeParameters$, 0]], 3
947
+ ];
948
+ var PauseCampaignRequest$ = [3, n0, _PCR,
949
+ 0,
950
+ [_i],
951
+ [[0, 1]], 1
952
+ ];
953
+ var PredictiveConfig$ = [3, n0, _PC,
954
+ 0,
955
+ [_bA],
956
+ [1], 1
957
+ ];
958
+ var PreviewConfig$ = [3, n0, _PCr,
959
+ 0,
960
+ [_bA, _tC, _aA],
961
+ [1, () => TimeoutConfig$, 64 | 0], 2
962
+ ];
963
+ var ProfileOutboundRequest$ = [3, n0, _POR,
964
+ 0,
965
+ [_cT, _pI, _eTx, _eTC],
966
+ [0, 0, 5, () => EventTriggerContext$], 2
967
+ ];
968
+ var ProgressiveConfig$ = [3, n0, _PCro,
969
+ 0,
970
+ [_bA],
971
+ [1], 1
972
+ ];
973
+ var PutConnectInstanceIntegrationRequest$ = [3, n0, _PCIIR,
974
+ 0,
975
+ [_cII, _iC],
976
+ [[0, 1], () => IntegrationConfig$], 2
977
+ ];
978
+ var PutInstanceCommunicationLimitsRequest$ = [3, n0, _PICLR,
979
+ 0,
980
+ [_cII, _cLC],
981
+ [[0, 1], () => InstanceCommunicationLimitsConfig$], 2
982
+ ];
983
+ var PutOutboundRequestBatchRequest$ = [3, n0, _PORBR,
984
+ 0,
985
+ [_i, _oR],
986
+ [[0, 1], [() => OutboundRequestList, 0]], 2
987
+ ];
988
+ var PutOutboundRequestBatchResponse$ = [3, n0, _PORBRu,
989
+ 0,
990
+ [_sR, _fR],
991
+ [() => SuccessfulRequestList, () => FailedRequestList]
992
+ ];
993
+ var PutProfileOutboundRequestBatchRequest$ = [3, n0, _PPORBR,
994
+ 0,
995
+ [_i, _pOR],
996
+ [[0, 1], () => ProfileOutboundRequestList], 2
997
+ ];
998
+ var PutProfileOutboundRequestBatchResponse$ = [3, n0, _PPORBRu,
999
+ 0,
1000
+ [_sR, _fR],
1001
+ [() => SuccessfulProfileOutboundRequestList, () => FailedProfileOutboundRequestList]
1002
+ ];
1003
+ var QConnectIntegrationConfig$ = [3, n0, _QCIC,
1004
+ 0,
1005
+ [_kBA],
1006
+ [0], 1
1007
+ ];
1008
+ var QConnectIntegrationIdentifier$ = [3, n0, _QCII,
1009
+ 0,
1010
+ [_kBA],
1011
+ [0], 1
1012
+ ];
1013
+ var QConnectIntegrationSummary$ = [3, n0, _QCIS,
1014
+ 0,
1015
+ [_kBA],
1016
+ [0], 1
1017
+ ];
1018
+ var RestrictedPeriod$ = [3, n0, _RP,
1019
+ 0,
1020
+ [_sD, _eD, _n],
1021
+ [0, 0, 0], 2
1022
+ ];
1023
+ var ResumeCampaignRequest$ = [3, n0, _RCR,
1024
+ 0,
1025
+ [_i],
1026
+ [[0, 1]], 1
1027
+ ];
1028
+ var Schedule$ = [3, n0, _S,
1029
+ 0,
1030
+ [_sT, _eTn, _rF],
1031
+ [5, 5, 0], 2
1032
+ ];
1033
+ var SmsChannelSubtypeConfig$ = [3, n0, _SCSC,
1034
+ 0,
1035
+ [_oM, _dOC, _cap],
1036
+ [() => SmsOutboundMode$, () => SmsOutboundConfig$, 1], 2
1037
+ ];
1038
+ var SmsChannelSubtypeParameters$ = [3, n0, _SCSP,
1039
+ 0,
1040
+ [_dPN, _tP, _cSPNA, _tA],
1041
+ [[() => DestinationPhoneNumber, 0], [() => Attributes, 0], 0, 0], 2
1042
+ ];
1043
+ var SmsOutboundConfig$ = [3, n0, _SOC,
1044
+ 0,
1045
+ [_cSPNA, _wTA],
1046
+ [0, 0], 2
1047
+ ];
1048
+ var StartCampaignRequest$ = [3, n0, _SCR,
1049
+ 0,
1050
+ [_i],
1051
+ [[0, 1]], 1
1052
+ ];
1053
+ var StartInstanceOnboardingJobRequest$ = [3, n0, _SIOJR,
1054
+ 0,
1055
+ [_cII, _eC],
1056
+ [[0, 1], () => EncryptionConfig$], 2
1057
+ ];
1058
+ var StartInstanceOnboardingJobResponse$ = [3, n0, _SIOJRt,
1059
+ 0,
1060
+ [_cIOJS],
1061
+ [() => InstanceOnboardingJobStatus$]
1062
+ ];
1063
+ var StopCampaignRequest$ = [3, n0, _SCRt,
1064
+ 0,
1065
+ [_i],
1066
+ [[0, 1]], 1
1067
+ ];
1068
+ var SuccessfulCampaignStateResponse$ = [3, n0, _SCSR,
1069
+ 0,
1070
+ [_cI, _st],
1071
+ [0, 0]
1072
+ ];
1073
+ var SuccessfulProfileOutboundRequest$ = [3, n0, _SPOR,
1074
+ 0,
1075
+ [_cT, _i],
1076
+ [0, 0]
1077
+ ];
1078
+ var SuccessfulRequest$ = [3, n0, _SR,
1079
+ 0,
1080
+ [_cT, _i],
1081
+ [0, 0]
1082
+ ];
1083
+ var TagResourceRequest$ = [3, n0, _TRR,
1084
+ 0,
1085
+ [_a, _ta],
1086
+ [[0, 1], 128 | 0], 2
1087
+ ];
1088
+ var TelephonyChannelSubtypeConfig$ = [3, n0, _TCSC,
1089
+ 0,
1090
+ [_oM, _dOC, _cap, _cQI],
1091
+ [() => TelephonyOutboundMode$, () => TelephonyOutboundConfig$, 1, 0], 2
1092
+ ];
1093
+ var TelephonyChannelSubtypeParameters$ = [3, n0, _TCSP,
1094
+ 0,
1095
+ [_dPN, _at, _cSPN, _aMDC, _rT],
1096
+ [[() => DestinationPhoneNumber, 0], [() => Attributes, 0], 0, () => AnswerMachineDetectionConfig$, 1], 2
1097
+ ];
1098
+ var TelephonyOutboundConfig$ = [3, n0, _TOC,
1099
+ 0,
1100
+ [_cCFI, _cSPN, _aMDC, _rT],
1101
+ [0, 0, () => AnswerMachineDetectionConfig$, 1], 1
1102
+ ];
1103
+ var TimeoutConfig$ = [3, n0, _TC,
1104
+ 0,
1105
+ [_dIS],
1106
+ [1], 1
1107
+ ];
1108
+ var TimeRange$ = [3, n0, _TR,
1109
+ 0,
1110
+ [_sT, _eTn],
1111
+ [0, 0], 2
1112
+ ];
1113
+ var TimeWindow$ = [3, n0, _TW,
1114
+ 0,
1115
+ [_oH, _rP],
1116
+ [() => OpenHours$, () => RestrictedPeriods$], 1
1117
+ ];
1118
+ var UntagResourceRequest$ = [3, n0, _URR,
1119
+ 0,
1120
+ [_a, _tK],
1121
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1122
+ ];
1123
+ var UpdateCampaignChannelSubtypeConfigRequest$ = [3, n0, _UCCSCR,
1124
+ 0,
1125
+ [_i, _cSC],
1126
+ [[0, 1], [() => ChannelSubtypeConfig$, 0]], 2
1127
+ ];
1128
+ var UpdateCampaignCommunicationLimitsRequest$ = [3, n0, _UCCLR,
1129
+ 0,
1130
+ [_i, _cLO],
1131
+ [[0, 1], () => CommunicationLimitsConfig$], 2
1132
+ ];
1133
+ var UpdateCampaignCommunicationTimeRequest$ = [3, n0, _UCCTR,
1134
+ 0,
1135
+ [_i, _cTC],
1136
+ [[0, 1], () => CommunicationTimeConfig$], 2
1137
+ ];
1138
+ var UpdateCampaignEntryLimitsRequest$ = [3, n0, _UCELR,
1139
+ 0,
1140
+ [_i, _eLC],
1141
+ [[0, 1], () => EntryLimitsConfig$], 2
1142
+ ];
1143
+ var UpdateCampaignFlowAssociationRequest$ = [3, n0, _UCFAR,
1144
+ 0,
1145
+ [_i, _cCFA],
1146
+ [[0, 1], 0], 2
1147
+ ];
1148
+ var UpdateCampaignNameRequest$ = [3, n0, _UCNR,
1149
+ 0,
1150
+ [_i, _n],
1151
+ [[0, 1], 0], 2
1152
+ ];
1153
+ var UpdateCampaignScheduleRequest$ = [3, n0, _UCSR,
1154
+ 0,
1155
+ [_i, _sc],
1156
+ [[0, 1], () => Schedule$], 2
1157
+ ];
1158
+ var UpdateCampaignSourceRequest$ = [3, n0, _UCSRp,
1159
+ 0,
1160
+ [_i, _so],
1161
+ [[0, 1], () => Source$], 2
1162
+ ];
1163
+ var WebNotificationContext$ = [3, n0, _WNC,
1164
+ 0,
1165
+ [_sI, _bI],
1166
+ [0, 0]
1167
+ ];
1168
+ var WhatsAppChannelSubtypeConfig$ = [3, n0, _WACSC,
1169
+ 0,
1170
+ [_oM, _dOC, _cap],
1171
+ [() => WhatsAppOutboundMode$, () => WhatsAppOutboundConfig$, 1], 2
1172
+ ];
1173
+ var WhatsAppChannelSubtypeParameters$ = [3, n0, _WACSP,
1174
+ 0,
1175
+ [_dPN, _tP, _cSPNA, _tA],
1176
+ [[() => DestinationPhoneNumber, 0], [() => Attributes, 0], 0, 0], 2
1177
+ ];
1178
+ var WhatsAppOutboundConfig$ = [3, n0, _WAOC,
1179
+ 0,
1180
+ [_cSPNA, _wTA],
1181
+ [0, 0], 2
1182
+ ];
1183
+ var __Unit = "unit";
1184
+ var CampaignSummaryList = [1, n0, _CSL,
1185
+ 0, () => CampaignSummary$
1186
+ ];
1187
+ var CommunicationLimitList = [1, n0, _CLL,
1188
+ 0, () => CommunicationLimit$
1189
+ ];
1190
+ var FailedCampaignStateResponseList = [1, n0, _FCSRL,
1191
+ 0, () => FailedCampaignStateResponse$
1192
+ ];
1193
+ var FailedProfileOutboundRequestList = [1, n0, _FPORL,
1194
+ 0, () => FailedProfileOutboundRequest$
1195
+ ];
1196
+ var FailedRequestList = [1, n0, _FRL,
1197
+ 0, () => FailedRequest$
1198
+ ];
1199
+ var IntegrationSummaryList = [1, n0, _ISL,
1200
+ 0, () => IntegrationSummary$
1201
+ ];
1202
+ var OutboundRequestList = [1, n0, _ORL,
1203
+ 0, [() => OutboundRequest$,
1204
+ 0]
1205
+ ];
1206
+ var ProfileOutboundRequestList = [1, n0, _PORL,
1207
+ 0, () => ProfileOutboundRequest$
1208
+ ];
1209
+ var RestrictedPeriodList = [1, n0, _RPL,
1210
+ 0, () => RestrictedPeriod$
1211
+ ];
1212
+ var SuccessfulCampaignStateResponseList = [1, n0, _SCSRL,
1213
+ 0, () => SuccessfulCampaignStateResponse$
1214
+ ];
1215
+ var SuccessfulProfileOutboundRequestList = [1, n0, _SPORL,
1216
+ 0, () => SuccessfulProfileOutboundRequest$
1217
+ ];
1218
+ var SuccessfulRequestList = [1, n0, _SRL,
1219
+ 0, () => SuccessfulRequest$
1220
+ ];
1221
+ var TimeRangeList = [1, n0, _TRL,
1222
+ 0, () => TimeRange$
1223
+ ];
1224
+ var Attributes = [2, n0, _A,
1225
+ 8, 0, 0
1226
+ ];
1227
+ var DailyHours = [2, n0, _DH,
1228
+ 0, 0, () => TimeRangeList
1229
+ ];
1230
+ var ChannelSubtypeParameters$ = [4, n0, _CSP,
1231
+ 0,
1232
+ [_te, _sm, _em, _wA],
1233
+ [[() => TelephonyChannelSubtypeParameters$, 0], [() => SmsChannelSubtypeParameters$, 0], [() => EmailChannelSubtypeParameters$, 0], [() => WhatsAppChannelSubtypeParameters$, 0]]
1234
+ ];
1235
+ var CommunicationLimits$ = [4, n0, _CLo,
1236
+ 0,
1237
+ [_cLL],
1238
+ [() => CommunicationLimitList]
1239
+ ];
1240
+ var EmailOutboundMode$ = [4, n0, _EOM,
1241
+ 0,
1242
+ [_ag],
1243
+ [() => AgentlessConfig$]
1244
+ ];
1245
+ var IntegrationConfig$ = [4, n0, _ICn,
1246
+ 0,
1247
+ [_cP, _qC, _l],
1248
+ [() => CustomerProfilesIntegrationConfig$, () => QConnectIntegrationConfig$, () => LambdaIntegrationConfig$]
1249
+ ];
1250
+ var IntegrationIdentifier$ = [4, n0, _II,
1251
+ 0,
1252
+ [_cP, _qC, _l],
1253
+ [() => CustomerProfilesIntegrationIdentifier$, () => QConnectIntegrationIdentifier$, () => LambdaIntegrationIdentifier$]
1254
+ ];
1255
+ var IntegrationSummary$ = [4, n0, _IS,
1256
+ 0,
1257
+ [_cP, _qC, _l],
1258
+ [() => CustomerProfilesIntegrationSummary$, () => QConnectIntegrationSummary$, () => LambdaIntegrationSummary$]
1259
+ ];
1260
+ var OpenHours$ = [4, n0, _OH,
1261
+ 0,
1262
+ [_dH],
1263
+ [() => DailyHours]
1264
+ ];
1265
+ var RestrictedPeriods$ = [4, n0, _RPe,
1266
+ 0,
1267
+ [_rPL],
1268
+ [() => RestrictedPeriodList]
1269
+ ];
1270
+ var SmsOutboundMode$ = [4, n0, _SOM,
1271
+ 0,
1272
+ [_ag],
1273
+ [() => AgentlessConfig$]
1274
+ ];
1275
+ var Source$ = [4, n0, _So,
1276
+ 0,
1277
+ [_cPSA, _eTv],
1278
+ [0, () => EventTrigger$]
1279
+ ];
1280
+ var TelephonyOutboundMode$ = [4, n0, _TOM,
1281
+ 0,
1282
+ [_p, _pr, _ag, _pre],
1283
+ [() => ProgressiveConfig$, () => PredictiveConfig$, () => AgentlessConfig$, () => PreviewConfig$]
1284
+ ];
1285
+ var WhatsAppOutboundMode$ = [4, n0, _WAOM,
1286
+ 0,
1287
+ [_ag],
1288
+ [() => AgentlessConfig$]
1289
+ ];
1290
+ var CreateCampaign$ = [9, n0, _CCr,
1291
+ { [_h]: ["PUT", "/v2/campaigns", 200] }, () => CreateCampaignRequest$, () => CreateCampaignResponse$
1292
+ ];
1293
+ var DeleteCampaign$ = [9, n0, _DC,
1294
+ { [_h]: ["DELETE", "/v2/campaigns/{id}", 200] }, () => DeleteCampaignRequest$, () => __Unit
1295
+ ];
1296
+ var DeleteCampaignChannelSubtypeConfig$ = [9, n0, _DCCSC,
1297
+ { [_h]: ["DELETE", "/v2/campaigns/{id}/channel-subtype-config", 200] }, () => DeleteCampaignChannelSubtypeConfigRequest$, () => __Unit
1298
+ ];
1299
+ var DeleteCampaignCommunicationLimits$ = [9, n0, _DCCL,
1300
+ { [_h]: ["DELETE", "/v2/campaigns/{id}/communication-limits", 200] }, () => DeleteCampaignCommunicationLimitsRequest$, () => __Unit
1301
+ ];
1302
+ var DeleteCampaignCommunicationTime$ = [9, n0, _DCCT,
1303
+ { [_h]: ["DELETE", "/v2/campaigns/{id}/communication-time", 200] }, () => DeleteCampaignCommunicationTimeRequest$, () => __Unit
1304
+ ];
1305
+ var DeleteCampaignEntryLimits$ = [9, n0, _DCEL,
1306
+ { [_h]: ["DELETE", "/v2/campaigns/{id}/entry-limits", 200] }, () => DeleteCampaignEntryLimitsRequest$, () => __Unit
1307
+ ];
1308
+ var DeleteConnectInstanceConfig$ = [9, n0, _DCIC,
1309
+ { [_h]: ["DELETE", "/v2/connect-instance/{connectInstanceId}/config", 200] }, () => DeleteConnectInstanceConfigRequest$, () => __Unit
1310
+ ];
1311
+ var DeleteConnectInstanceIntegration$ = [9, n0, _DCII,
1312
+ { [_h]: ["POST", "/v2/connect-instance/{connectInstanceId}/integrations/delete", 200] }, () => DeleteConnectInstanceIntegrationRequest$, () => __Unit
1313
+ ];
1314
+ var DeleteInstanceOnboardingJob$ = [9, n0, _DIOJ,
1315
+ { [_h]: ["DELETE", "/v2/connect-instance/{connectInstanceId}/onboarding", 200] }, () => DeleteInstanceOnboardingJobRequest$, () => __Unit
1316
+ ];
1317
+ var DescribeCampaign$ = [9, n0, _DCe,
1318
+ { [_h]: ["GET", "/v2/campaigns/{id}", 200] }, () => DescribeCampaignRequest$, () => DescribeCampaignResponse$
1319
+ ];
1320
+ var GetCampaignState$ = [9, n0, _GCS,
1321
+ { [_h]: ["GET", "/v2/campaigns/{id}/state", 200] }, () => GetCampaignStateRequest$, () => GetCampaignStateResponse$
1322
+ ];
1323
+ var GetCampaignStateBatch$ = [9, n0, _GCSB,
1324
+ { [_h]: ["POST", "/v2/campaigns-state", 200] }, () => GetCampaignStateBatchRequest$, () => GetCampaignStateBatchResponse$
1325
+ ];
1326
+ var GetConnectInstanceConfig$ = [9, n0, _GCIC,
1327
+ { [_h]: ["GET", "/v2/connect-instance/{connectInstanceId}/config", 200] }, () => GetConnectInstanceConfigRequest$, () => GetConnectInstanceConfigResponse$
1328
+ ];
1329
+ var GetInstanceCommunicationLimits$ = [9, n0, _GICL,
1330
+ { [_h]: ["GET", "/v2/connect-instance/{connectInstanceId}/communication-limits", 200] }, () => GetInstanceCommunicationLimitsRequest$, () => GetInstanceCommunicationLimitsResponse$
1331
+ ];
1332
+ var GetInstanceOnboardingJobStatus$ = [9, n0, _GIOJS,
1333
+ { [_h]: ["GET", "/v2/connect-instance/{connectInstanceId}/onboarding", 200] }, () => GetInstanceOnboardingJobStatusRequest$, () => GetInstanceOnboardingJobStatusResponse$
1334
+ ];
1335
+ var ListCampaigns$ = [9, n0, _LC,
1336
+ { [_h]: ["POST", "/v2/campaigns-summary", 200] }, () => ListCampaignsRequest$, () => ListCampaignsResponse$
1337
+ ];
1338
+ var ListConnectInstanceIntegrations$ = [9, n0, _LCII,
1339
+ { [_h]: ["GET", "/v2/connect-instance/{connectInstanceId}/integrations", 200] }, () => ListConnectInstanceIntegrationsRequest$, () => ListConnectInstanceIntegrationsResponse$
1340
+ ];
1341
+ var ListTagsForResource$ = [9, n0, _LTFR,
1342
+ { [_h]: ["GET", "/v2/tags/{arn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1343
+ ];
1344
+ var PauseCampaign$ = [9, n0, _PCa,
1345
+ { [_h]: ["POST", "/v2/campaigns/{id}/pause", 200] }, () => PauseCampaignRequest$, () => __Unit
1346
+ ];
1347
+ var PutConnectInstanceIntegration$ = [9, n0, _PCII,
1348
+ { [_h]: ["PUT", "/v2/connect-instance/{connectInstanceId}/integrations", 200] }, () => PutConnectInstanceIntegrationRequest$, () => __Unit
1349
+ ];
1350
+ var PutInstanceCommunicationLimits$ = [9, n0, _PICL,
1351
+ { [_h]: ["PUT", "/v2/connect-instance/{connectInstanceId}/communication-limits", 200] }, () => PutInstanceCommunicationLimitsRequest$, () => __Unit
1352
+ ];
1353
+ var PutOutboundRequestBatch$ = [9, n0, _PORB,
1354
+ { [_h]: ["PUT", "/v2/campaigns/{id}/outbound-requests", 200] }, () => PutOutboundRequestBatchRequest$, () => PutOutboundRequestBatchResponse$
1355
+ ];
1356
+ var PutProfileOutboundRequestBatch$ = [9, n0, _PPORB,
1357
+ { [_h]: ["PUT", "/v2/campaigns/{id}/profile-outbound-requests", 200] }, () => PutProfileOutboundRequestBatchRequest$, () => PutProfileOutboundRequestBatchResponse$
1358
+ ];
1359
+ var ResumeCampaign$ = [9, n0, _RC,
1360
+ { [_h]: ["POST", "/v2/campaigns/{id}/resume", 200] }, () => ResumeCampaignRequest$, () => __Unit
1361
+ ];
1362
+ var StartCampaign$ = [9, n0, _SC,
1363
+ { [_h]: ["POST", "/v2/campaigns/{id}/start", 200] }, () => StartCampaignRequest$, () => __Unit
1364
+ ];
1365
+ var StartInstanceOnboardingJob$ = [9, n0, _SIOJ,
1366
+ { [_h]: ["PUT", "/v2/connect-instance/{connectInstanceId}/onboarding", 200] }, () => StartInstanceOnboardingJobRequest$, () => StartInstanceOnboardingJobResponse$
1367
+ ];
1368
+ var StopCampaign$ = [9, n0, _SCt,
1369
+ { [_h]: ["POST", "/v2/campaigns/{id}/stop", 200] }, () => StopCampaignRequest$, () => __Unit
1370
+ ];
1371
+ var TagResource$ = [9, n0, _TRa,
1372
+ { [_h]: ["POST", "/v2/tags/{arn}", 200] }, () => TagResourceRequest$, () => __Unit
1373
+ ];
1374
+ var UntagResource$ = [9, n0, _UR,
1375
+ { [_h]: ["DELETE", "/v2/tags/{arn}", 200] }, () => UntagResourceRequest$, () => __Unit
1376
+ ];
1377
+ var UpdateCampaignChannelSubtypeConfig$ = [9, n0, _UCCSC,
1378
+ { [_h]: ["POST", "/v2/campaigns/{id}/channel-subtype-config", 200] }, () => UpdateCampaignChannelSubtypeConfigRequest$, () => __Unit
1379
+ ];
1380
+ var UpdateCampaignCommunicationLimits$ = [9, n0, _UCCL,
1381
+ { [_h]: ["POST", "/v2/campaigns/{id}/communication-limits", 200] }, () => UpdateCampaignCommunicationLimitsRequest$, () => __Unit
1382
+ ];
1383
+ var UpdateCampaignCommunicationTime$ = [9, n0, _UCCT,
1384
+ { [_h]: ["POST", "/v2/campaigns/{id}/communication-time", 200] }, () => UpdateCampaignCommunicationTimeRequest$, () => __Unit
1385
+ ];
1386
+ var UpdateCampaignEntryLimits$ = [9, n0, _UCEL,
1387
+ { [_h]: ["POST", "/v2/campaigns/{id}/entry-limits", 200] }, () => UpdateCampaignEntryLimitsRequest$, () => __Unit
1388
+ ];
1389
+ var UpdateCampaignFlowAssociation$ = [9, n0, _UCFA,
1390
+ { [_h]: ["POST", "/v2/campaigns/{id}/flow", 200] }, () => UpdateCampaignFlowAssociationRequest$, () => __Unit
1391
+ ];
1392
+ var UpdateCampaignName$ = [9, n0, _UCN,
1393
+ { [_h]: ["POST", "/v2/campaigns/{id}/name", 200] }, () => UpdateCampaignNameRequest$, () => __Unit
1394
+ ];
1395
+ var UpdateCampaignSchedule$ = [9, n0, _UCS,
1396
+ { [_h]: ["POST", "/v2/campaigns/{id}/schedule", 200] }, () => UpdateCampaignScheduleRequest$, () => __Unit
1397
+ ];
1398
+ var UpdateCampaignSource$ = [9, n0, _UCSp,
1399
+ { [_h]: ["POST", "/v2/campaigns/{id}/source", 200] }, () => UpdateCampaignSourceRequest$, () => __Unit
1400
+ ];
1401
+
1402
+ const getRuntimeConfig$1 = (config) => {
1403
+ return {
1404
+ apiVersion: "2024-04-23",
1405
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1406
+ base64Encoder: config?.base64Encoder ?? toBase64,
1407
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1408
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1409
+ extensions: config?.extensions ?? [],
1410
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultConnectCampaignsV2HttpAuthSchemeProvider,
1411
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1412
+ {
1413
+ schemeId: "aws.auth#sigv4",
1414
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1415
+ signer: new AwsSdkSigV4Signer(),
1416
+ },
1417
+ ],
1418
+ logger: config?.logger ?? new NoOpLogger(),
1419
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1420
+ protocolSettings: config?.protocolSettings ?? {
1421
+ defaultNamespace: "com.amazonaws.connectcampaignsv2",
1422
+ errorTypeRegistries,
1423
+ version: "2024-04-23",
1424
+ serviceTarget: "AmazonConnectCampaignServiceV2",
1425
+ },
1426
+ serviceId: config?.serviceId ?? "ConnectCampaignsV2",
1427
+ urlParser: config?.urlParser ?? parseUrl,
1428
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1429
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1430
+ };
1431
+ };
1432
+
1433
+ const getRuntimeConfig = (config) => {
1434
+ emitWarningIfUnsupportedVersion(process.version);
1435
+ const defaultsMode = resolveDefaultsModeConfig(config);
1436
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1437
+ const clientSharedValues = getRuntimeConfig$1(config);
1438
+ emitWarningIfUnsupportedVersion$1(process.version);
1439
+ const loaderConfig = {
1440
+ profile: config?.profile,
1441
+ logger: clientSharedValues.logger,
1442
+ };
1443
+ return {
1444
+ ...clientSharedValues,
1445
+ ...config,
1446
+ runtime: "node",
1447
+ defaultsMode,
1448
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1449
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1450
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1451
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1452
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1453
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1454
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1455
+ retryMode: config?.retryMode ??
1456
+ loadConfig({
1457
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1458
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1459
+ }, config),
1460
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1461
+ streamCollector: config?.streamCollector ?? streamCollector,
1462
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1463
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1464
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1465
+ };
1466
+ };
1467
+
34
1468
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1469
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1470
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -692,6 +2126,7 @@ const EventType = {
692
2126
  CAMPAIGN_ORCHESTRATION: "Campaign-Orchestration",
693
2127
  CAMPAIGN_SMS: "Campaign-SMS",
694
2128
  CAMPAIGN_TELEPHONY: "Campaign-Telephony",
2129
+ CAMPAIGN_WEB_NOTIFICATION: "Campaign-WebNotification",
695
2130
  CAMPAIGN_WHATS_APP: "Campaign-WhatsApp",
696
2131
  };
697
2132
  const FailureCode = {
@@ -708,64 +2143,241 @@ const ProfileOutboundRequestFailureCode = {
708
2143
  UNKNOWN_ERROR: "UnknownError",
709
2144
  };
710
2145
 
2146
+ exports.AccessDeniedException = AccessDeniedException;
2147
+ exports.AccessDeniedException$ = AccessDeniedException$;
711
2148
  exports.AgentAction = AgentAction;
2149
+ exports.AgentlessConfig$ = AgentlessConfig$;
2150
+ exports.AnswerMachineDetectionConfig$ = AnswerMachineDetectionConfig$;
2151
+ exports.Campaign$ = Campaign$;
712
2152
  exports.CampaignDeletionPolicy = CampaignDeletionPolicy;
2153
+ exports.CampaignFilters$ = CampaignFilters$;
713
2154
  exports.CampaignState = CampaignState;
2155
+ exports.CampaignSummary$ = CampaignSummary$;
2156
+ exports.ChannelContext$ = ChannelContext$;
714
2157
  exports.ChannelSubtype = ChannelSubtype;
2158
+ exports.ChannelSubtypeConfig$ = ChannelSubtypeConfig$;
2159
+ exports.ChannelSubtypeParameters$ = ChannelSubtypeParameters$;
2160
+ exports.CommunicationLimit$ = CommunicationLimit$;
715
2161
  exports.CommunicationLimitTimeUnit = CommunicationLimitTimeUnit;
2162
+ exports.CommunicationLimits$ = CommunicationLimits$;
2163
+ exports.CommunicationLimitsConfig$ = CommunicationLimitsConfig$;
716
2164
  exports.CommunicationLimitsConfigType = CommunicationLimitsConfigType;
2165
+ exports.CommunicationTimeConfig$ = CommunicationTimeConfig$;
717
2166
  exports.CommunicationTimeConfigType = CommunicationTimeConfigType;
2167
+ exports.ConflictException = ConflictException;
2168
+ exports.ConflictException$ = ConflictException$;
718
2169
  exports.ConnectCampaignsV2 = ConnectCampaignsV2;
719
2170
  exports.ConnectCampaignsV2Client = ConnectCampaignsV2Client;
2171
+ exports.ConnectCampaignsV2ServiceException = ConnectCampaignsV2ServiceException;
2172
+ exports.ConnectCampaignsV2ServiceException$ = ConnectCampaignsV2ServiceException$;
2173
+ exports.CreateCampaign$ = CreateCampaign$;
720
2174
  exports.CreateCampaignCommand = CreateCampaignCommand;
2175
+ exports.CreateCampaignRequest$ = CreateCampaignRequest$;
2176
+ exports.CreateCampaignResponse$ = CreateCampaignResponse$;
2177
+ exports.CustomerProfilesIntegrationConfig$ = CustomerProfilesIntegrationConfig$;
2178
+ exports.CustomerProfilesIntegrationIdentifier$ = CustomerProfilesIntegrationIdentifier$;
2179
+ exports.CustomerProfilesIntegrationSummary$ = CustomerProfilesIntegrationSummary$;
721
2180
  exports.DayOfWeek = DayOfWeek;
2181
+ exports.DeleteCampaign$ = DeleteCampaign$;
2182
+ exports.DeleteCampaignChannelSubtypeConfig$ = DeleteCampaignChannelSubtypeConfig$;
722
2183
  exports.DeleteCampaignChannelSubtypeConfigCommand = DeleteCampaignChannelSubtypeConfigCommand;
2184
+ exports.DeleteCampaignChannelSubtypeConfigRequest$ = DeleteCampaignChannelSubtypeConfigRequest$;
723
2185
  exports.DeleteCampaignCommand = DeleteCampaignCommand;
2186
+ exports.DeleteCampaignCommunicationLimits$ = DeleteCampaignCommunicationLimits$;
724
2187
  exports.DeleteCampaignCommunicationLimitsCommand = DeleteCampaignCommunicationLimitsCommand;
2188
+ exports.DeleteCampaignCommunicationLimitsRequest$ = DeleteCampaignCommunicationLimitsRequest$;
2189
+ exports.DeleteCampaignCommunicationTime$ = DeleteCampaignCommunicationTime$;
725
2190
  exports.DeleteCampaignCommunicationTimeCommand = DeleteCampaignCommunicationTimeCommand;
2191
+ exports.DeleteCampaignCommunicationTimeRequest$ = DeleteCampaignCommunicationTimeRequest$;
2192
+ exports.DeleteCampaignEntryLimits$ = DeleteCampaignEntryLimits$;
726
2193
  exports.DeleteCampaignEntryLimitsCommand = DeleteCampaignEntryLimitsCommand;
2194
+ exports.DeleteCampaignEntryLimitsRequest$ = DeleteCampaignEntryLimitsRequest$;
2195
+ exports.DeleteCampaignRequest$ = DeleteCampaignRequest$;
2196
+ exports.DeleteConnectInstanceConfig$ = DeleteConnectInstanceConfig$;
727
2197
  exports.DeleteConnectInstanceConfigCommand = DeleteConnectInstanceConfigCommand;
2198
+ exports.DeleteConnectInstanceConfigRequest$ = DeleteConnectInstanceConfigRequest$;
2199
+ exports.DeleteConnectInstanceIntegration$ = DeleteConnectInstanceIntegration$;
728
2200
  exports.DeleteConnectInstanceIntegrationCommand = DeleteConnectInstanceIntegrationCommand;
2201
+ exports.DeleteConnectInstanceIntegrationRequest$ = DeleteConnectInstanceIntegrationRequest$;
2202
+ exports.DeleteInstanceOnboardingJob$ = DeleteInstanceOnboardingJob$;
729
2203
  exports.DeleteInstanceOnboardingJobCommand = DeleteInstanceOnboardingJobCommand;
2204
+ exports.DeleteInstanceOnboardingJobRequest$ = DeleteInstanceOnboardingJobRequest$;
2205
+ exports.DescribeCampaign$ = DescribeCampaign$;
730
2206
  exports.DescribeCampaignCommand = DescribeCampaignCommand;
2207
+ exports.DescribeCampaignRequest$ = DescribeCampaignRequest$;
2208
+ exports.DescribeCampaignResponse$ = DescribeCampaignResponse$;
2209
+ exports.EmailChannelSubtypeConfig$ = EmailChannelSubtypeConfig$;
2210
+ exports.EmailChannelSubtypeParameters$ = EmailChannelSubtypeParameters$;
2211
+ exports.EmailOutboundConfig$ = EmailOutboundConfig$;
2212
+ exports.EmailOutboundMode$ = EmailOutboundMode$;
2213
+ exports.EncryptionConfig$ = EncryptionConfig$;
731
2214
  exports.EncryptionType = EncryptionType;
2215
+ exports.EntryLimitsConfig$ = EntryLimitsConfig$;
2216
+ exports.EventTrigger$ = EventTrigger$;
2217
+ exports.EventTriggerContext$ = EventTriggerContext$;
732
2218
  exports.EventType = EventType;
733
2219
  exports.ExternalCampaignType = ExternalCampaignType;
2220
+ exports.FailedCampaignStateResponse$ = FailedCampaignStateResponse$;
2221
+ exports.FailedProfileOutboundRequest$ = FailedProfileOutboundRequest$;
2222
+ exports.FailedRequest$ = FailedRequest$;
734
2223
  exports.FailureCode = FailureCode;
2224
+ exports.GetCampaignState$ = GetCampaignState$;
2225
+ exports.GetCampaignStateBatch$ = GetCampaignStateBatch$;
735
2226
  exports.GetCampaignStateBatchCommand = GetCampaignStateBatchCommand;
736
2227
  exports.GetCampaignStateBatchFailureCode = GetCampaignStateBatchFailureCode;
2228
+ exports.GetCampaignStateBatchRequest$ = GetCampaignStateBatchRequest$;
2229
+ exports.GetCampaignStateBatchResponse$ = GetCampaignStateBatchResponse$;
737
2230
  exports.GetCampaignStateCommand = GetCampaignStateCommand;
2231
+ exports.GetCampaignStateRequest$ = GetCampaignStateRequest$;
2232
+ exports.GetCampaignStateResponse$ = GetCampaignStateResponse$;
2233
+ exports.GetConnectInstanceConfig$ = GetConnectInstanceConfig$;
738
2234
  exports.GetConnectInstanceConfigCommand = GetConnectInstanceConfigCommand;
2235
+ exports.GetConnectInstanceConfigRequest$ = GetConnectInstanceConfigRequest$;
2236
+ exports.GetConnectInstanceConfigResponse$ = GetConnectInstanceConfigResponse$;
2237
+ exports.GetInstanceCommunicationLimits$ = GetInstanceCommunicationLimits$;
739
2238
  exports.GetInstanceCommunicationLimitsCommand = GetInstanceCommunicationLimitsCommand;
2239
+ exports.GetInstanceCommunicationLimitsRequest$ = GetInstanceCommunicationLimitsRequest$;
2240
+ exports.GetInstanceCommunicationLimitsResponse$ = GetInstanceCommunicationLimitsResponse$;
2241
+ exports.GetInstanceOnboardingJobStatus$ = GetInstanceOnboardingJobStatus$;
740
2242
  exports.GetInstanceOnboardingJobStatusCommand = GetInstanceOnboardingJobStatusCommand;
2243
+ exports.GetInstanceOnboardingJobStatusRequest$ = GetInstanceOnboardingJobStatusRequest$;
2244
+ exports.GetInstanceOnboardingJobStatusResponse$ = GetInstanceOnboardingJobStatusResponse$;
2245
+ exports.InstanceCommunicationLimitsConfig$ = InstanceCommunicationLimitsConfig$;
2246
+ exports.InstanceConfig$ = InstanceConfig$;
2247
+ exports.InstanceIdFilter$ = InstanceIdFilter$;
741
2248
  exports.InstanceIdFilterOperator = InstanceIdFilterOperator;
742
2249
  exports.InstanceLimitsHandling = InstanceLimitsHandling;
743
2250
  exports.InstanceOnboardingJobFailureCode = InstanceOnboardingJobFailureCode;
2251
+ exports.InstanceOnboardingJobStatus$ = InstanceOnboardingJobStatus$;
744
2252
  exports.InstanceOnboardingJobStatusCode = InstanceOnboardingJobStatusCode;
2253
+ exports.IntegrationConfig$ = IntegrationConfig$;
2254
+ exports.IntegrationIdentifier$ = IntegrationIdentifier$;
2255
+ exports.IntegrationSummary$ = IntegrationSummary$;
2256
+ exports.InternalServerException = InternalServerException;
2257
+ exports.InternalServerException$ = InternalServerException$;
2258
+ exports.InvalidCampaignStateException = InvalidCampaignStateException;
2259
+ exports.InvalidCampaignStateException$ = InvalidCampaignStateException$;
2260
+ exports.InvalidStateException = InvalidStateException;
2261
+ exports.InvalidStateException$ = InvalidStateException$;
2262
+ exports.LambdaIntegrationConfig$ = LambdaIntegrationConfig$;
2263
+ exports.LambdaIntegrationIdentifier$ = LambdaIntegrationIdentifier$;
2264
+ exports.LambdaIntegrationSummary$ = LambdaIntegrationSummary$;
2265
+ exports.ListCampaigns$ = ListCampaigns$;
745
2266
  exports.ListCampaignsCommand = ListCampaignsCommand;
2267
+ exports.ListCampaignsRequest$ = ListCampaignsRequest$;
2268
+ exports.ListCampaignsResponse$ = ListCampaignsResponse$;
2269
+ exports.ListConnectInstanceIntegrations$ = ListConnectInstanceIntegrations$;
746
2270
  exports.ListConnectInstanceIntegrationsCommand = ListConnectInstanceIntegrationsCommand;
2271
+ exports.ListConnectInstanceIntegrationsRequest$ = ListConnectInstanceIntegrationsRequest$;
2272
+ exports.ListConnectInstanceIntegrationsResponse$ = ListConnectInstanceIntegrationsResponse$;
2273
+ exports.ListTagsForResource$ = ListTagsForResource$;
747
2274
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2275
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2276
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2277
+ exports.LocalTimeZoneConfig$ = LocalTimeZoneConfig$;
748
2278
  exports.LocalTimeZoneDetectionScope = LocalTimeZoneDetectionScope;
749
2279
  exports.LocalTimeZoneDetectionType = LocalTimeZoneDetectionType;
2280
+ exports.OpenHours$ = OpenHours$;
2281
+ exports.OutboundRequest$ = OutboundRequest$;
2282
+ exports.PauseCampaign$ = PauseCampaign$;
750
2283
  exports.PauseCampaignCommand = PauseCampaignCommand;
2284
+ exports.PauseCampaignRequest$ = PauseCampaignRequest$;
2285
+ exports.PredictiveConfig$ = PredictiveConfig$;
2286
+ exports.PreviewConfig$ = PreviewConfig$;
2287
+ exports.ProfileOutboundRequest$ = ProfileOutboundRequest$;
751
2288
  exports.ProfileOutboundRequestFailureCode = ProfileOutboundRequestFailureCode;
2289
+ exports.ProgressiveConfig$ = ProgressiveConfig$;
2290
+ exports.PutConnectInstanceIntegration$ = PutConnectInstanceIntegration$;
752
2291
  exports.PutConnectInstanceIntegrationCommand = PutConnectInstanceIntegrationCommand;
2292
+ exports.PutConnectInstanceIntegrationRequest$ = PutConnectInstanceIntegrationRequest$;
2293
+ exports.PutInstanceCommunicationLimits$ = PutInstanceCommunicationLimits$;
753
2294
  exports.PutInstanceCommunicationLimitsCommand = PutInstanceCommunicationLimitsCommand;
2295
+ exports.PutInstanceCommunicationLimitsRequest$ = PutInstanceCommunicationLimitsRequest$;
2296
+ exports.PutOutboundRequestBatch$ = PutOutboundRequestBatch$;
754
2297
  exports.PutOutboundRequestBatchCommand = PutOutboundRequestBatchCommand;
2298
+ exports.PutOutboundRequestBatchRequest$ = PutOutboundRequestBatchRequest$;
2299
+ exports.PutOutboundRequestBatchResponse$ = PutOutboundRequestBatchResponse$;
2300
+ exports.PutProfileOutboundRequestBatch$ = PutProfileOutboundRequestBatch$;
755
2301
  exports.PutProfileOutboundRequestBatchCommand = PutProfileOutboundRequestBatchCommand;
2302
+ exports.PutProfileOutboundRequestBatchRequest$ = PutProfileOutboundRequestBatchRequest$;
2303
+ exports.PutProfileOutboundRequestBatchResponse$ = PutProfileOutboundRequestBatchResponse$;
2304
+ exports.QConnectIntegrationConfig$ = QConnectIntegrationConfig$;
2305
+ exports.QConnectIntegrationIdentifier$ = QConnectIntegrationIdentifier$;
2306
+ exports.QConnectIntegrationSummary$ = QConnectIntegrationSummary$;
2307
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2308
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2309
+ exports.RestrictedPeriod$ = RestrictedPeriod$;
2310
+ exports.RestrictedPeriods$ = RestrictedPeriods$;
2311
+ exports.ResumeCampaign$ = ResumeCampaign$;
756
2312
  exports.ResumeCampaignCommand = ResumeCampaignCommand;
2313
+ exports.ResumeCampaignRequest$ = ResumeCampaignRequest$;
2314
+ exports.Schedule$ = Schedule$;
2315
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2316
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2317
+ exports.SmsChannelSubtypeConfig$ = SmsChannelSubtypeConfig$;
2318
+ exports.SmsChannelSubtypeParameters$ = SmsChannelSubtypeParameters$;
2319
+ exports.SmsOutboundConfig$ = SmsOutboundConfig$;
2320
+ exports.SmsOutboundMode$ = SmsOutboundMode$;
2321
+ exports.Source$ = Source$;
2322
+ exports.StartCampaign$ = StartCampaign$;
757
2323
  exports.StartCampaignCommand = StartCampaignCommand;
2324
+ exports.StartCampaignRequest$ = StartCampaignRequest$;
2325
+ exports.StartInstanceOnboardingJob$ = StartInstanceOnboardingJob$;
758
2326
  exports.StartInstanceOnboardingJobCommand = StartInstanceOnboardingJobCommand;
2327
+ exports.StartInstanceOnboardingJobRequest$ = StartInstanceOnboardingJobRequest$;
2328
+ exports.StartInstanceOnboardingJobResponse$ = StartInstanceOnboardingJobResponse$;
2329
+ exports.StopCampaign$ = StopCampaign$;
759
2330
  exports.StopCampaignCommand = StopCampaignCommand;
2331
+ exports.StopCampaignRequest$ = StopCampaignRequest$;
2332
+ exports.SuccessfulCampaignStateResponse$ = SuccessfulCampaignStateResponse$;
2333
+ exports.SuccessfulProfileOutboundRequest$ = SuccessfulProfileOutboundRequest$;
2334
+ exports.SuccessfulRequest$ = SuccessfulRequest$;
2335
+ exports.TagResource$ = TagResource$;
760
2336
  exports.TagResourceCommand = TagResourceCommand;
2337
+ exports.TagResourceRequest$ = TagResourceRequest$;
2338
+ exports.TelephonyChannelSubtypeConfig$ = TelephonyChannelSubtypeConfig$;
2339
+ exports.TelephonyChannelSubtypeParameters$ = TelephonyChannelSubtypeParameters$;
2340
+ exports.TelephonyOutboundConfig$ = TelephonyOutboundConfig$;
2341
+ exports.TelephonyOutboundMode$ = TelephonyOutboundMode$;
2342
+ exports.ThrottlingException = ThrottlingException;
2343
+ exports.ThrottlingException$ = ThrottlingException$;
2344
+ exports.TimeRange$ = TimeRange$;
2345
+ exports.TimeWindow$ = TimeWindow$;
2346
+ exports.TimeoutConfig$ = TimeoutConfig$;
2347
+ exports.UntagResource$ = UntagResource$;
761
2348
  exports.UntagResourceCommand = UntagResourceCommand;
2349
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2350
+ exports.UpdateCampaignChannelSubtypeConfig$ = UpdateCampaignChannelSubtypeConfig$;
762
2351
  exports.UpdateCampaignChannelSubtypeConfigCommand = UpdateCampaignChannelSubtypeConfigCommand;
2352
+ exports.UpdateCampaignChannelSubtypeConfigRequest$ = UpdateCampaignChannelSubtypeConfigRequest$;
2353
+ exports.UpdateCampaignCommunicationLimits$ = UpdateCampaignCommunicationLimits$;
763
2354
  exports.UpdateCampaignCommunicationLimitsCommand = UpdateCampaignCommunicationLimitsCommand;
2355
+ exports.UpdateCampaignCommunicationLimitsRequest$ = UpdateCampaignCommunicationLimitsRequest$;
2356
+ exports.UpdateCampaignCommunicationTime$ = UpdateCampaignCommunicationTime$;
764
2357
  exports.UpdateCampaignCommunicationTimeCommand = UpdateCampaignCommunicationTimeCommand;
2358
+ exports.UpdateCampaignCommunicationTimeRequest$ = UpdateCampaignCommunicationTimeRequest$;
2359
+ exports.UpdateCampaignEntryLimits$ = UpdateCampaignEntryLimits$;
765
2360
  exports.UpdateCampaignEntryLimitsCommand = UpdateCampaignEntryLimitsCommand;
2361
+ exports.UpdateCampaignEntryLimitsRequest$ = UpdateCampaignEntryLimitsRequest$;
2362
+ exports.UpdateCampaignFlowAssociation$ = UpdateCampaignFlowAssociation$;
766
2363
  exports.UpdateCampaignFlowAssociationCommand = UpdateCampaignFlowAssociationCommand;
2364
+ exports.UpdateCampaignFlowAssociationRequest$ = UpdateCampaignFlowAssociationRequest$;
2365
+ exports.UpdateCampaignName$ = UpdateCampaignName$;
767
2366
  exports.UpdateCampaignNameCommand = UpdateCampaignNameCommand;
2367
+ exports.UpdateCampaignNameRequest$ = UpdateCampaignNameRequest$;
2368
+ exports.UpdateCampaignSchedule$ = UpdateCampaignSchedule$;
768
2369
  exports.UpdateCampaignScheduleCommand = UpdateCampaignScheduleCommand;
2370
+ exports.UpdateCampaignScheduleRequest$ = UpdateCampaignScheduleRequest$;
2371
+ exports.UpdateCampaignSource$ = UpdateCampaignSource$;
769
2372
  exports.UpdateCampaignSourceCommand = UpdateCampaignSourceCommand;
2373
+ exports.UpdateCampaignSourceRequest$ = UpdateCampaignSourceRequest$;
2374
+ exports.ValidationException = ValidationException;
2375
+ exports.ValidationException$ = ValidationException$;
2376
+ exports.WebNotificationContext$ = WebNotificationContext$;
2377
+ exports.WhatsAppChannelSubtypeConfig$ = WhatsAppChannelSubtypeConfig$;
2378
+ exports.WhatsAppChannelSubtypeParameters$ = WhatsAppChannelSubtypeParameters$;
2379
+ exports.WhatsAppOutboundConfig$ = WhatsAppOutboundConfig$;
2380
+ exports.WhatsAppOutboundMode$ = WhatsAppOutboundMode$;
2381
+ exports.errorTypeRegistries = errorTypeRegistries;
770
2382
  exports.paginateListCampaigns = paginateListCampaigns;
771
2383
  exports.paginateListConnectInstanceIntegrations = paginateListConnectInstanceIntegrations;