@aws-sdk/client-connectcampaignsv2 3.952.0 → 3.953.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/dist-cjs/index.js +518 -348
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateCampaignCommand.js +2 -2
  4. package/dist-es/commands/DeleteCampaignChannelSubtypeConfigCommand.js +2 -2
  5. package/dist-es/commands/DeleteCampaignCommand.js +2 -2
  6. package/dist-es/commands/DeleteCampaignCommunicationLimitsCommand.js +2 -2
  7. package/dist-es/commands/DeleteCampaignCommunicationTimeCommand.js +2 -2
  8. package/dist-es/commands/DeleteConnectInstanceConfigCommand.js +2 -2
  9. package/dist-es/commands/DeleteConnectInstanceIntegrationCommand.js +2 -2
  10. package/dist-es/commands/DeleteInstanceOnboardingJobCommand.js +2 -2
  11. package/dist-es/commands/DescribeCampaignCommand.js +2 -2
  12. package/dist-es/commands/GetCampaignStateBatchCommand.js +2 -2
  13. package/dist-es/commands/GetCampaignStateCommand.js +2 -2
  14. package/dist-es/commands/GetConnectInstanceConfigCommand.js +2 -2
  15. package/dist-es/commands/GetInstanceCommunicationLimitsCommand.js +2 -2
  16. package/dist-es/commands/GetInstanceOnboardingJobStatusCommand.js +2 -2
  17. package/dist-es/commands/ListCampaignsCommand.js +2 -2
  18. package/dist-es/commands/ListConnectInstanceIntegrationsCommand.js +2 -2
  19. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  20. package/dist-es/commands/PauseCampaignCommand.js +2 -2
  21. package/dist-es/commands/PutConnectInstanceIntegrationCommand.js +2 -2
  22. package/dist-es/commands/PutInstanceCommunicationLimitsCommand.js +2 -2
  23. package/dist-es/commands/PutOutboundRequestBatchCommand.js +2 -2
  24. package/dist-es/commands/PutProfileOutboundRequestBatchCommand.js +2 -2
  25. package/dist-es/commands/ResumeCampaignCommand.js +2 -2
  26. package/dist-es/commands/StartCampaignCommand.js +2 -2
  27. package/dist-es/commands/StartInstanceOnboardingJobCommand.js +2 -2
  28. package/dist-es/commands/StopCampaignCommand.js +2 -2
  29. package/dist-es/commands/TagResourceCommand.js +2 -2
  30. package/dist-es/commands/UntagResourceCommand.js +2 -2
  31. package/dist-es/commands/UpdateCampaignChannelSubtypeConfigCommand.js +2 -2
  32. package/dist-es/commands/UpdateCampaignCommunicationLimitsCommand.js +2 -2
  33. package/dist-es/commands/UpdateCampaignCommunicationTimeCommand.js +2 -2
  34. package/dist-es/commands/UpdateCampaignFlowAssociationCommand.js +2 -2
  35. package/dist-es/commands/UpdateCampaignNameCommand.js +2 -2
  36. package/dist-es/commands/UpdateCampaignScheduleCommand.js +2 -2
  37. package/dist-es/commands/UpdateCampaignSourceCommand.js +2 -2
  38. package/dist-es/index.js +1 -0
  39. package/dist-es/runtimeConfig.shared.js +6 -1
  40. package/dist-es/schemas/schemas_0.js +312 -300
  41. package/dist-types/ConnectCampaignsV2Client.d.ts +1 -10
  42. package/dist-types/index.d.ts +1 -0
  43. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  44. package/dist-types/runtimeConfig.d.ts +6 -2
  45. package/dist-types/runtimeConfig.native.d.ts +6 -2
  46. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  47. package/dist-types/schemas/schemas_0.d.ts +159 -185
  48. package/dist-types/ts3.4/ConnectCampaignsV2Client.d.ts +0 -4
  49. package/dist-types/ts3.4/index.d.ts +1 -0
  50. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  51. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  52. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  53. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  54. package/dist-types/ts3.4/schemas/schemas_0.d.ts +158 -187
  55. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class ConnectCampaignsV2Client extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let ConnectCampaignsV2ServiceException$1 = class ConnectCampaignsV2ServiceException extends smithyClient.ServiceException {
113
+ class ConnectCampaignsV2ServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, ConnectCampaignsV2ServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends ConnectCampaignsV2ServiceException$1 {
120
+ class AccessDeniedException extends ConnectCampaignsV2ServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  xAmzErrorType;
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends ConnectCampaig
130
130
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
131
131
  this.xAmzErrorType = opts.xAmzErrorType;
132
132
  }
133
- };
134
- let ConflictException$1 = class ConflictException extends ConnectCampaignsV2ServiceException$1 {
133
+ }
134
+ class ConflictException extends ConnectCampaignsV2ServiceException {
135
135
  name = "ConflictException";
136
136
  $fault = "client";
137
137
  xAmzErrorType;
@@ -144,8 +144,8 @@ let ConflictException$1 = class ConflictException extends ConnectCampaignsV2Serv
144
144
  Object.setPrototypeOf(this, ConflictException.prototype);
145
145
  this.xAmzErrorType = opts.xAmzErrorType;
146
146
  }
147
- };
148
- let InternalServerException$1 = class InternalServerException extends ConnectCampaignsV2ServiceException$1 {
147
+ }
148
+ class InternalServerException extends ConnectCampaignsV2ServiceException {
149
149
  name = "InternalServerException";
150
150
  $fault = "server";
151
151
  $retryable = {};
@@ -159,8 +159,8 @@ let InternalServerException$1 = class InternalServerException extends ConnectCam
159
159
  Object.setPrototypeOf(this, InternalServerException.prototype);
160
160
  this.xAmzErrorType = opts.xAmzErrorType;
161
161
  }
162
- };
163
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends ConnectCampaignsV2ServiceException$1 {
162
+ }
163
+ class ResourceNotFoundException extends ConnectCampaignsV2ServiceException {
164
164
  name = "ResourceNotFoundException";
165
165
  $fault = "client";
166
166
  xAmzErrorType;
@@ -173,8 +173,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Connec
173
173
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
174
174
  this.xAmzErrorType = opts.xAmzErrorType;
175
175
  }
176
- };
177
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends ConnectCampaignsV2ServiceException$1 {
176
+ }
177
+ class ServiceQuotaExceededException extends ConnectCampaignsV2ServiceException {
178
178
  name = "ServiceQuotaExceededException";
179
179
  $fault = "client";
180
180
  xAmzErrorType;
@@ -187,8 +187,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
187
187
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
188
188
  this.xAmzErrorType = opts.xAmzErrorType;
189
189
  }
190
- };
191
- let ThrottlingException$1 = class ThrottlingException extends ConnectCampaignsV2ServiceException$1 {
190
+ }
191
+ class ThrottlingException extends ConnectCampaignsV2ServiceException {
192
192
  name = "ThrottlingException";
193
193
  $fault = "client";
194
194
  $retryable = {};
@@ -202,8 +202,8 @@ let ThrottlingException$1 = class ThrottlingException extends ConnectCampaignsV2
202
202
  Object.setPrototypeOf(this, ThrottlingException.prototype);
203
203
  this.xAmzErrorType = opts.xAmzErrorType;
204
204
  }
205
- };
206
- let ValidationException$1 = class ValidationException extends ConnectCampaignsV2ServiceException$1 {
205
+ }
206
+ class ValidationException extends ConnectCampaignsV2ServiceException {
207
207
  name = "ValidationException";
208
208
  $fault = "client";
209
209
  xAmzErrorType;
@@ -216,8 +216,8 @@ let ValidationException$1 = class ValidationException extends ConnectCampaignsV2
216
216
  Object.setPrototypeOf(this, ValidationException.prototype);
217
217
  this.xAmzErrorType = opts.xAmzErrorType;
218
218
  }
219
- };
220
- let InvalidCampaignStateException$1 = class InvalidCampaignStateException extends ConnectCampaignsV2ServiceException$1 {
219
+ }
220
+ class InvalidCampaignStateException extends ConnectCampaignsV2ServiceException {
221
221
  name = "InvalidCampaignStateException";
222
222
  $fault = "client";
223
223
  state;
@@ -232,8 +232,8 @@ let InvalidCampaignStateException$1 = class InvalidCampaignStateException extend
232
232
  this.state = opts.state;
233
233
  this.xAmzErrorType = opts.xAmzErrorType;
234
234
  }
235
- };
236
- let InvalidStateException$1 = class InvalidStateException extends ConnectCampaignsV2ServiceException$1 {
235
+ }
236
+ class InvalidStateException extends ConnectCampaignsV2ServiceException {
237
237
  name = "InvalidStateException";
238
238
  $fault = "client";
239
239
  xAmzErrorType;
@@ -246,7 +246,7 @@ let InvalidStateException$1 = class InvalidStateException extends ConnectCampaig
246
246
  Object.setPrototypeOf(this, InvalidStateException.prototype);
247
247
  this.xAmzErrorType = opts.xAmzErrorType;
248
248
  }
249
- };
249
+ }
250
250
 
251
251
  const _A = "Attributes";
252
252
  const _AC = "AgentlessConfig";
@@ -546,7 +546,7 @@ const n0 = "com.amazonaws.connectcampaignsv2";
546
546
  var DestinationPhoneNumber = [0, n0, _DPN, 8, 0];
547
547
  var EmailAddress = [0, n0, _EA, 8, 0];
548
548
  var EmailDisplayName = [0, n0, _EDN, 8, 0];
549
- var AccessDeniedException = [
549
+ var AccessDeniedException$ = [
550
550
  -3,
551
551
  n0,
552
552
  _ADE,
@@ -554,10 +554,10 @@ var AccessDeniedException = [
554
554
  [_m, _xAET],
555
555
  [0, [0, { [_hH]: _xaE }]],
556
556
  ];
557
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
558
- var AgentlessConfig = [3, n0, _AC, 0, [], []];
559
- var AnswerMachineDetectionConfig = [3, n0, _AMDC, 0, [_eAMD, _aAMP], [2, 2]];
560
- var Campaign = [
557
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
558
+ var AgentlessConfig$ = [3, n0, _AC, 0, [], []];
559
+ var AnswerMachineDetectionConfig$ = [3, n0, _AMDC, 0, [_eAMD, _aAMP], [2, 2]];
560
+ var Campaign$ = [
561
561
  3,
562
562
  n0,
563
563
  _C,
@@ -568,56 +568,56 @@ var Campaign = [
568
568
  0,
569
569
  0,
570
570
  0,
571
- [() => ChannelSubtypeConfig, 0],
571
+ [() => ChannelSubtypeConfig$, 0],
572
572
  0,
573
- () => Source,
573
+ () => Source$,
574
574
  0,
575
- () => Schedule,
576
- () => CommunicationTimeConfig,
577
- () => CommunicationLimitsConfig,
575
+ () => Schedule$,
576
+ () => CommunicationTimeConfig$,
577
+ () => CommunicationLimitsConfig$,
578
578
  128 | 0,
579
579
  ],
580
580
  ];
581
- var CampaignFilters = [3, n0, _CF, 0, [_iIF], [() => InstanceIdFilter]];
582
- var CampaignSummary = [
581
+ var CampaignFilters$ = [3, n0, _CF, 0, [_iIF], [() => InstanceIdFilter$]];
582
+ var CampaignSummary$ = [
583
583
  3,
584
584
  n0,
585
585
  _CS,
586
586
  0,
587
587
  [_i, _a, _n, _cII, _cS, _t, _sc, _cCFA],
588
- [0, 0, 0, 0, 64 | 0, 0, () => Schedule, 0],
588
+ [0, 0, 0, 0, 64 | 0, 0, () => Schedule$, 0],
589
589
  ];
590
- var ChannelSubtypeConfig = [
590
+ var ChannelSubtypeConfig$ = [
591
591
  3,
592
592
  n0,
593
593
  _CSC,
594
594
  0,
595
595
  [_te, _sm, _em, _wA],
596
596
  [
597
- () => TelephonyChannelSubtypeConfig,
598
- () => SmsChannelSubtypeConfig,
599
- [() => EmailChannelSubtypeConfig, 0],
600
- () => WhatsAppChannelSubtypeConfig,
597
+ () => TelephonyChannelSubtypeConfig$,
598
+ () => SmsChannelSubtypeConfig$,
599
+ [() => EmailChannelSubtypeConfig$, 0],
600
+ () => WhatsAppChannelSubtypeConfig$,
601
601
  ],
602
602
  ];
603
- var CommunicationLimit = [3, n0, _CL, 0, [_mCPR, _f, _u], [1, 1, 0]];
604
- var CommunicationLimitsConfig = [
603
+ var CommunicationLimit$ = [3, n0, _CL, 0, [_mCPR, _f, _u], [1, 1, 0]];
604
+ var CommunicationLimitsConfig$ = [
605
605
  3,
606
606
  n0,
607
607
  _CLC,
608
608
  0,
609
609
  [_aCS, _iLH],
610
- [() => CommunicationLimits, 0],
610
+ [() => CommunicationLimits$, 0],
611
611
  ];
612
- var CommunicationTimeConfig = [
612
+ var CommunicationTimeConfig$ = [
613
613
  3,
614
614
  n0,
615
615
  _CTC,
616
616
  0,
617
617
  [_lTZC, _te, _sm, _em, _wA],
618
- [() => LocalTimeZoneConfig, () => TimeWindow, () => TimeWindow, () => TimeWindow, () => TimeWindow],
618
+ [() => LocalTimeZoneConfig$, () => TimeWindow$, () => TimeWindow$, () => TimeWindow$, () => TimeWindow$],
619
619
  ];
620
- var ConflictException = [
620
+ var ConflictException$ = [
621
621
  -3,
622
622
  n0,
623
623
  _CE,
@@ -625,8 +625,8 @@ var ConflictException = [
625
625
  [_m, _xAET],
626
626
  [0, [0, { [_hH]: _xaE }]],
627
627
  ];
628
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
629
- var CreateCampaignRequest = [
628
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
629
+ var CreateCampaignRequest$ = [
630
630
  3,
631
631
  n0,
632
632
  _CCR,
@@ -635,21 +635,21 @@ var CreateCampaignRequest = [
635
635
  [
636
636
  0,
637
637
  0,
638
- [() => ChannelSubtypeConfig, 0],
638
+ [() => ChannelSubtypeConfig$, 0],
639
639
  0,
640
- () => Source,
640
+ () => Source$,
641
641
  0,
642
- () => Schedule,
643
- () => CommunicationTimeConfig,
644
- () => CommunicationLimitsConfig,
642
+ () => Schedule$,
643
+ () => CommunicationTimeConfig$,
644
+ () => CommunicationLimitsConfig$,
645
645
  128 | 0,
646
646
  ],
647
647
  ];
648
- var CreateCampaignResponse = [3, n0, _CCRr, 0, [_i, _a, _ta], [0, 0, 128 | 0]];
649
- var CustomerProfilesIntegrationConfig = [3, n0, _CPIC, 0, [_dA, _oTN], [0, 128 | 0]];
650
- var CustomerProfilesIntegrationIdentifier = [3, n0, _CPII, 0, [_dA], [0]];
651
- var CustomerProfilesIntegrationSummary = [3, n0, _CPIS, 0, [_dA, _oTN], [0, 128 | 0]];
652
- var DeleteCampaignChannelSubtypeConfigRequest = [
648
+ var CreateCampaignResponse$ = [3, n0, _CCRr, 0, [_i, _a, _ta], [0, 0, 128 | 0]];
649
+ var CustomerProfilesIntegrationConfig$ = [3, n0, _CPIC, 0, [_dA, _oTN], [0, 128 | 0]];
650
+ var CustomerProfilesIntegrationIdentifier$ = [3, n0, _CPII, 0, [_dA], [0]];
651
+ var CustomerProfilesIntegrationSummary$ = [3, n0, _CPIS, 0, [_dA, _oTN], [0, 128 | 0]];
652
+ var DeleteCampaignChannelSubtypeConfigRequest$ = [
653
653
  3,
654
654
  n0,
655
655
  _DCCSCR,
@@ -660,7 +660,7 @@ var DeleteCampaignChannelSubtypeConfigRequest = [
660
660
  [0, { [_hQ]: _cSh }],
661
661
  ],
662
662
  ];
663
- var DeleteCampaignCommunicationLimitsRequest = [
663
+ var DeleteCampaignCommunicationLimitsRequest$ = [
664
664
  3,
665
665
  n0,
666
666
  _DCCLR,
@@ -671,7 +671,7 @@ var DeleteCampaignCommunicationLimitsRequest = [
671
671
  [0, { [_hQ]: _co }],
672
672
  ],
673
673
  ];
674
- var DeleteCampaignCommunicationTimeRequest = [
674
+ var DeleteCampaignCommunicationTimeRequest$ = [
675
675
  3,
676
676
  n0,
677
677
  _DCCTR,
@@ -682,8 +682,8 @@ var DeleteCampaignCommunicationTimeRequest = [
682
682
  [0, { [_hQ]: _co }],
683
683
  ],
684
684
  ];
685
- var DeleteCampaignRequest = [3, n0, _DCR, 0, [_i], [[0, 1]]];
686
- var DeleteConnectInstanceConfigRequest = [
685
+ var DeleteCampaignRequest$ = [3, n0, _DCR, 0, [_i], [[0, 1]]];
686
+ var DeleteConnectInstanceConfigRequest$ = [
687
687
  3,
688
688
  n0,
689
689
  _DCICR,
@@ -694,26 +694,26 @@ var DeleteConnectInstanceConfigRequest = [
694
694
  [0, { [_hQ]: _cDP }],
695
695
  ],
696
696
  ];
697
- var DeleteConnectInstanceIntegrationRequest = [
697
+ var DeleteConnectInstanceIntegrationRequest$ = [
698
698
  3,
699
699
  n0,
700
700
  _DCIIR,
701
701
  0,
702
702
  [_cII, _iI],
703
- [[0, 1], () => IntegrationIdentifier],
703
+ [[0, 1], () => IntegrationIdentifier$],
704
704
  ];
705
- var DeleteInstanceOnboardingJobRequest = [3, n0, _DIOJR, 0, [_cII], [[0, 1]]];
706
- var DescribeCampaignRequest = [3, n0, _DCRe, 0, [_i], [[0, 1]]];
707
- var DescribeCampaignResponse = [3, n0, _DCRes, 0, [_ca], [[() => Campaign, 0]]];
708
- var EmailChannelSubtypeConfig = [
705
+ var DeleteInstanceOnboardingJobRequest$ = [3, n0, _DIOJR, 0, [_cII], [[0, 1]]];
706
+ var DescribeCampaignRequest$ = [3, n0, _DCRe, 0, [_i], [[0, 1]]];
707
+ var DescribeCampaignResponse$ = [3, n0, _DCRes, 0, [_ca], [[() => Campaign$, 0]]];
708
+ var EmailChannelSubtypeConfig$ = [
709
709
  3,
710
710
  n0,
711
711
  _ECSC,
712
712
  0,
713
713
  [_cap, _oM, _dOC],
714
- [1, () => EmailOutboundMode, [() => EmailOutboundConfig, 0]],
714
+ [1, () => EmailOutboundMode$, [() => EmailOutboundConfig$, 0]],
715
715
  ];
716
- var EmailChannelSubtypeParameters = [
716
+ var EmailChannelSubtypeParameters$ = [
717
717
  3,
718
718
  n0,
719
719
  _ECSP,
@@ -721,7 +721,7 @@ var EmailChannelSubtypeParameters = [
721
721
  [_dEA, _cSEA, _tA, _tP],
722
722
  [[() => EmailAddress, 0], [() => EmailAddress, 0], 0, [() => Attributes, 0]],
723
723
  ];
724
- var EmailOutboundConfig = [
724
+ var EmailOutboundConfig$ = [
725
725
  3,
726
726
  n0,
727
727
  _EOC,
@@ -729,13 +729,13 @@ var EmailOutboundConfig = [
729
729
  [_cSEA, _sEADN, _wTA],
730
730
  [[() => EmailAddress, 0], [() => EmailDisplayName, 0], 0],
731
731
  ];
732
- var EncryptionConfig = [3, n0, _EC, 0, [_en, _eT, _kA], [2, 0, 0]];
733
- var EventTrigger = [3, n0, _ET, 0, [_cPDA], [0]];
734
- var FailedCampaignStateResponse = [3, n0, _FCSR, 0, [_cI, _fC], [0, 0]];
735
- var FailedProfileOutboundRequest = [3, n0, _FPOR, 0, [_cT, _i, _fC], [0, 0, 0]];
736
- var FailedRequest = [3, n0, _FR, 0, [_cT, _i, _fC], [0, 0, 0]];
737
- var GetCampaignStateBatchRequest = [3, n0, _GCSBR, 0, [_cIa], [64 | 0]];
738
- var GetCampaignStateBatchResponse = [
732
+ var EncryptionConfig$ = [3, n0, _EC, 0, [_en, _eT, _kA], [2, 0, 0]];
733
+ var EventTrigger$ = [3, n0, _ET, 0, [_cPDA], [0]];
734
+ var FailedCampaignStateResponse$ = [3, n0, _FCSR, 0, [_cI, _fC], [0, 0]];
735
+ var FailedProfileOutboundRequest$ = [3, n0, _FPOR, 0, [_cT, _i, _fC], [0, 0, 0]];
736
+ var FailedRequest$ = [3, n0, _FR, 0, [_cT, _i, _fC], [0, 0, 0]];
737
+ var GetCampaignStateBatchRequest$ = [3, n0, _GCSBR, 0, [_cIa], [64 | 0]];
738
+ var GetCampaignStateBatchResponse$ = [
739
739
  3,
740
740
  n0,
741
741
  _GCSBRe,
@@ -743,47 +743,54 @@ var GetCampaignStateBatchResponse = [
743
743
  [_sR, _fR],
744
744
  [() => SuccessfulCampaignStateResponseList, () => FailedCampaignStateResponseList],
745
745
  ];
746
- var GetCampaignStateRequest = [3, n0, _GCSR, 0, [_i], [[0, 1]]];
747
- var GetCampaignStateResponse = [3, n0, _GCSRe, 0, [_st], [0]];
748
- var GetConnectInstanceConfigRequest = [3, n0, _GCICR, 0, [_cII], [[0, 1]]];
749
- var GetConnectInstanceConfigResponse = [
746
+ var GetCampaignStateRequest$ = [3, n0, _GCSR, 0, [_i], [[0, 1]]];
747
+ var GetCampaignStateResponse$ = [3, n0, _GCSRe, 0, [_st], [0]];
748
+ var GetConnectInstanceConfigRequest$ = [3, n0, _GCICR, 0, [_cII], [[0, 1]]];
749
+ var GetConnectInstanceConfigResponse$ = [
750
750
  3,
751
751
  n0,
752
752
  _GCICRe,
753
753
  0,
754
754
  [_cIC],
755
- [() => InstanceConfig],
755
+ [() => InstanceConfig$],
756
756
  ];
757
- var GetInstanceCommunicationLimitsRequest = [3, n0, _GICLR, 0, [_cII], [[0, 1]]];
758
- var GetInstanceCommunicationLimitsResponse = [
757
+ var GetInstanceCommunicationLimitsRequest$ = [3, n0, _GICLR, 0, [_cII], [[0, 1]]];
758
+ var GetInstanceCommunicationLimitsResponse$ = [
759
759
  3,
760
760
  n0,
761
761
  _GICLRe,
762
762
  0,
763
763
  [_cLC],
764
- [() => InstanceCommunicationLimitsConfig],
764
+ [() => InstanceCommunicationLimitsConfig$],
765
765
  ];
766
- var GetInstanceOnboardingJobStatusRequest = [3, n0, _GIOJSR, 0, [_cII], [[0, 1]]];
767
- var GetInstanceOnboardingJobStatusResponse = [
766
+ var GetInstanceOnboardingJobStatusRequest$ = [3, n0, _GIOJSR, 0, [_cII], [[0, 1]]];
767
+ var GetInstanceOnboardingJobStatusResponse$ = [
768
768
  3,
769
769
  n0,
770
770
  _GIOJSRe,
771
771
  0,
772
772
  [_cIOJS],
773
- [() => InstanceOnboardingJobStatus],
773
+ [() => InstanceOnboardingJobStatus$],
774
774
  ];
775
- var InstanceCommunicationLimitsConfig = [
775
+ var InstanceCommunicationLimitsConfig$ = [
776
776
  3,
777
777
  n0,
778
778
  _ICLC,
779
779
  0,
780
780
  [_aCS],
781
- [() => CommunicationLimits],
781
+ [() => CommunicationLimits$],
782
782
  ];
783
- var InstanceConfig = [3, n0, _IC, 0, [_cII, _sLRA, _eC], [0, 0, () => EncryptionConfig]];
784
- var InstanceIdFilter = [3, n0, _IIF, 0, [_v, _o], [0, 0]];
785
- var InstanceOnboardingJobStatus = [3, n0, _IOJS, 0, [_cII, _sta, _fC], [0, 0, 0]];
786
- var InternalServerException = [
783
+ var InstanceConfig$ = [
784
+ 3,
785
+ n0,
786
+ _IC,
787
+ 0,
788
+ [_cII, _sLRA, _eC],
789
+ [0, 0, () => EncryptionConfig$],
790
+ ];
791
+ var InstanceIdFilter$ = [3, n0, _IIF, 0, [_v, _o], [0, 0]];
792
+ var InstanceOnboardingJobStatus$ = [3, n0, _IOJS, 0, [_cII, _sta, _fC], [0, 0, 0]];
793
+ var InternalServerException$ = [
787
794
  -3,
788
795
  n0,
789
796
  _ISE,
@@ -791,8 +798,8 @@ var InternalServerException = [
791
798
  [_m, _xAET],
792
799
  [0, [0, { [_hH]: _xaE }]],
793
800
  ];
794
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
795
- var InvalidCampaignStateException = [
801
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
802
+ var InvalidCampaignStateException$ = [
796
803
  -3,
797
804
  n0,
798
805
  _ICSE,
@@ -800,8 +807,8 @@ var InvalidCampaignStateException = [
800
807
  [_st, _m, _xAET],
801
808
  [0, 0, [0, { [_hH]: _xaE }]],
802
809
  ];
803
- schema.TypeRegistry.for(n0).registerError(InvalidCampaignStateException, InvalidCampaignStateException$1);
804
- var InvalidStateException = [
810
+ schema.TypeRegistry.for(n0).registerError(InvalidCampaignStateException$, InvalidCampaignStateException);
811
+ var InvalidStateException$ = [
805
812
  -3,
806
813
  n0,
807
814
  _ISEn,
@@ -809,19 +816,19 @@ var InvalidStateException = [
809
816
  [_m, _xAET],
810
817
  [0, [0, { [_hH]: _xaE }]],
811
818
  ];
812
- schema.TypeRegistry.for(n0).registerError(InvalidStateException, InvalidStateException$1);
813
- var LambdaIntegrationConfig = [3, n0, _LIC, 0, [_fA], [0]];
814
- var LambdaIntegrationIdentifier = [3, n0, _LII, 0, [_fA], [0]];
815
- var LambdaIntegrationSummary = [3, n0, _LIS, 0, [_fA], [0]];
816
- var ListCampaignsRequest = [
819
+ schema.TypeRegistry.for(n0).registerError(InvalidStateException$, InvalidStateException);
820
+ var LambdaIntegrationConfig$ = [3, n0, _LIC, 0, [_fA], [0]];
821
+ var LambdaIntegrationIdentifier$ = [3, n0, _LII, 0, [_fA], [0]];
822
+ var LambdaIntegrationSummary$ = [3, n0, _LIS, 0, [_fA], [0]];
823
+ var ListCampaignsRequest$ = [
817
824
  3,
818
825
  n0,
819
826
  _LCR,
820
827
  0,
821
828
  [_mR, _nT, _fi],
822
- [1, 0, () => CampaignFilters],
829
+ [1, 0, () => CampaignFilters$],
823
830
  ];
824
- var ListCampaignsResponse = [
831
+ var ListCampaignsResponse$ = [
825
832
  3,
826
833
  n0,
827
834
  _LCRi,
@@ -829,7 +836,7 @@ var ListCampaignsResponse = [
829
836
  [_nT, _cSL],
830
837
  [0, () => CampaignSummaryList],
831
838
  ];
832
- var ListConnectInstanceIntegrationsRequest = [
839
+ var ListConnectInstanceIntegrationsRequest$ = [
833
840
  3,
834
841
  n0,
835
842
  _LCIIR,
@@ -841,7 +848,7 @@ var ListConnectInstanceIntegrationsRequest = [
841
848
  [0, { [_hQ]: _nT }],
842
849
  ],
843
850
  ];
844
- var ListConnectInstanceIntegrationsResponse = [
851
+ var ListConnectInstanceIntegrationsResponse$ = [
845
852
  3,
846
853
  n0,
847
854
  _LCIIRi,
@@ -849,39 +856,39 @@ var ListConnectInstanceIntegrationsResponse = [
849
856
  [_nT, _iSL],
850
857
  [0, () => IntegrationSummaryList],
851
858
  ];
852
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_a], [[0, 1]]];
853
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
854
- var LocalTimeZoneConfig = [3, n0, _LTZC, 0, [_dTZ, _lTZD], [0, 64 | 0]];
855
- var OutboundRequest = [
859
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_a], [[0, 1]]];
860
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
861
+ var LocalTimeZoneConfig$ = [3, n0, _LTZC, 0, [_dTZ, _lTZD], [0, 64 | 0]];
862
+ var OutboundRequest$ = [
856
863
  3,
857
864
  n0,
858
865
  _OR,
859
866
  0,
860
867
  [_cT, _eTx, _cSP],
861
- [0, 5, [() => ChannelSubtypeParameters, 0]],
862
- ];
863
- var PauseCampaignRequest = [3, n0, _PCR, 0, [_i], [[0, 1]]];
864
- var PredictiveConfig = [3, n0, _PC, 0, [_bA], [1]];
865
- var PreviewConfig = [3, n0, _PCr, 0, [_bA, _tC, _aA], [1, () => TimeoutConfig, 64 | 0]];
866
- var ProfileOutboundRequest = [3, n0, _POR, 0, [_cT, _pI, _eTx], [0, 0, 5]];
867
- var ProgressiveConfig = [3, n0, _PCro, 0, [_bA], [1]];
868
- var PutConnectInstanceIntegrationRequest = [
868
+ [0, 5, [() => ChannelSubtypeParameters$, 0]],
869
+ ];
870
+ var PauseCampaignRequest$ = [3, n0, _PCR, 0, [_i], [[0, 1]]];
871
+ var PredictiveConfig$ = [3, n0, _PC, 0, [_bA], [1]];
872
+ var PreviewConfig$ = [3, n0, _PCr, 0, [_bA, _tC, _aA], [1, () => TimeoutConfig$, 64 | 0]];
873
+ var ProfileOutboundRequest$ = [3, n0, _POR, 0, [_cT, _pI, _eTx], [0, 0, 5]];
874
+ var ProgressiveConfig$ = [3, n0, _PCro, 0, [_bA], [1]];
875
+ var PutConnectInstanceIntegrationRequest$ = [
869
876
  3,
870
877
  n0,
871
878
  _PCIIR,
872
879
  0,
873
880
  [_cII, _iC],
874
- [[0, 1], () => IntegrationConfig],
881
+ [[0, 1], () => IntegrationConfig$],
875
882
  ];
876
- var PutInstanceCommunicationLimitsRequest = [
883
+ var PutInstanceCommunicationLimitsRequest$ = [
877
884
  3,
878
885
  n0,
879
886
  _PICLR,
880
887
  0,
881
888
  [_cII, _cLC],
882
- [[0, 1], () => InstanceCommunicationLimitsConfig],
889
+ [[0, 1], () => InstanceCommunicationLimitsConfig$],
883
890
  ];
884
- var PutOutboundRequestBatchRequest = [
891
+ var PutOutboundRequestBatchRequest$ = [
885
892
  3,
886
893
  n0,
887
894
  _PORBR,
@@ -892,7 +899,7 @@ var PutOutboundRequestBatchRequest = [
892
899
  [() => OutboundRequestList, 0],
893
900
  ],
894
901
  ];
895
- var PutOutboundRequestBatchResponse = [
902
+ var PutOutboundRequestBatchResponse$ = [
896
903
  3,
897
904
  n0,
898
905
  _PORBRu,
@@ -900,7 +907,7 @@ var PutOutboundRequestBatchResponse = [
900
907
  [_sR, _fR],
901
908
  [() => SuccessfulRequestList, () => FailedRequestList],
902
909
  ];
903
- var PutProfileOutboundRequestBatchRequest = [
910
+ var PutProfileOutboundRequestBatchRequest$ = [
904
911
  3,
905
912
  n0,
906
913
  _PPORBR,
@@ -908,7 +915,7 @@ var PutProfileOutboundRequestBatchRequest = [
908
915
  [_i, _pOR],
909
916
  [[0, 1], () => ProfileOutboundRequestList],
910
917
  ];
911
- var PutProfileOutboundRequestBatchResponse = [
918
+ var PutProfileOutboundRequestBatchResponse$ = [
912
919
  3,
913
920
  n0,
914
921
  _PPORBRu,
@@ -916,10 +923,10 @@ var PutProfileOutboundRequestBatchResponse = [
916
923
  [_sR, _fR],
917
924
  [() => SuccessfulProfileOutboundRequestList, () => FailedProfileOutboundRequestList],
918
925
  ];
919
- var QConnectIntegrationConfig = [3, n0, _QCIC, 0, [_kBA], [0]];
920
- var QConnectIntegrationIdentifier = [3, n0, _QCII, 0, [_kBA], [0]];
921
- var QConnectIntegrationSummary = [3, n0, _QCIS, 0, [_kBA], [0]];
922
- var ResourceNotFoundException = [
926
+ var QConnectIntegrationConfig$ = [3, n0, _QCIC, 0, [_kBA], [0]];
927
+ var QConnectIntegrationIdentifier$ = [3, n0, _QCII, 0, [_kBA], [0]];
928
+ var QConnectIntegrationSummary$ = [3, n0, _QCIS, 0, [_kBA], [0]];
929
+ var ResourceNotFoundException$ = [
923
930
  -3,
924
931
  n0,
925
932
  _RNFE,
@@ -927,11 +934,11 @@ var ResourceNotFoundException = [
927
934
  [_m, _xAET],
928
935
  [0, [0, { [_hH]: _xaE }]],
929
936
  ];
930
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
931
- var RestrictedPeriod = [3, n0, _RP, 0, [_n, _sD, _eD], [0, 0, 0]];
932
- var ResumeCampaignRequest = [3, n0, _RCR, 0, [_i], [[0, 1]]];
933
- var Schedule = [3, n0, _S, 0, [_sT, _eTn, _rF], [5, 5, 0]];
934
- var ServiceQuotaExceededException = [
937
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
938
+ var RestrictedPeriod$ = [3, n0, _RP, 0, [_n, _sD, _eD], [0, 0, 0]];
939
+ var ResumeCampaignRequest$ = [3, n0, _RCR, 0, [_i], [[0, 1]]];
940
+ var Schedule$ = [3, n0, _S, 0, [_sT, _eTn, _rF], [5, 5, 0]];
941
+ var ServiceQuotaExceededException$ = [
935
942
  -3,
936
943
  n0,
937
944
  _SQEE,
@@ -939,16 +946,16 @@ var ServiceQuotaExceededException = [
939
946
  [_m, _xAET],
940
947
  [0, [0, { [_hH]: _xaE }]],
941
948
  ];
942
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
943
- var SmsChannelSubtypeConfig = [
949
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
950
+ var SmsChannelSubtypeConfig$ = [
944
951
  3,
945
952
  n0,
946
953
  _SCSC,
947
954
  0,
948
955
  [_cap, _oM, _dOC],
949
- [1, () => SmsOutboundMode, () => SmsOutboundConfig],
956
+ [1, () => SmsOutboundMode$, () => SmsOutboundConfig$],
950
957
  ];
951
- var SmsChannelSubtypeParameters = [
958
+ var SmsChannelSubtypeParameters$ = [
952
959
  3,
953
960
  n0,
954
961
  _SCSP,
@@ -956,54 +963,54 @@ var SmsChannelSubtypeParameters = [
956
963
  [_dPN, _cSPNA, _tA, _tP],
957
964
  [[() => DestinationPhoneNumber, 0], 0, 0, [() => Attributes, 0]],
958
965
  ];
959
- var SmsOutboundConfig = [3, n0, _SOC, 0, [_cSPNA, _wTA], [0, 0]];
960
- var StartCampaignRequest = [3, n0, _SCR, 0, [_i], [[0, 1]]];
961
- var StartInstanceOnboardingJobRequest = [
966
+ var SmsOutboundConfig$ = [3, n0, _SOC, 0, [_cSPNA, _wTA], [0, 0]];
967
+ var StartCampaignRequest$ = [3, n0, _SCR, 0, [_i], [[0, 1]]];
968
+ var StartInstanceOnboardingJobRequest$ = [
962
969
  3,
963
970
  n0,
964
971
  _SIOJR,
965
972
  0,
966
973
  [_cII, _eC],
967
- [[0, 1], () => EncryptionConfig],
974
+ [[0, 1], () => EncryptionConfig$],
968
975
  ];
969
- var StartInstanceOnboardingJobResponse = [
976
+ var StartInstanceOnboardingJobResponse$ = [
970
977
  3,
971
978
  n0,
972
979
  _SIOJRt,
973
980
  0,
974
981
  [_cIOJS],
975
- [() => InstanceOnboardingJobStatus],
976
- ];
977
- var StopCampaignRequest = [3, n0, _SCRt, 0, [_i], [[0, 1]]];
978
- var SuccessfulCampaignStateResponse = [3, n0, _SCSR, 0, [_cI, _st], [0, 0]];
979
- var SuccessfulProfileOutboundRequest = [3, n0, _SPOR, 0, [_cT, _i], [0, 0]];
980
- var SuccessfulRequest = [3, n0, _SR, 0, [_cT, _i], [0, 0]];
981
- var TagResourceRequest = [3, n0, _TRR, 0, [_a, _ta], [[0, 1], 128 | 0]];
982
- var TelephonyChannelSubtypeConfig = [
982
+ [() => InstanceOnboardingJobStatus$],
983
+ ];
984
+ var StopCampaignRequest$ = [3, n0, _SCRt, 0, [_i], [[0, 1]]];
985
+ var SuccessfulCampaignStateResponse$ = [3, n0, _SCSR, 0, [_cI, _st], [0, 0]];
986
+ var SuccessfulProfileOutboundRequest$ = [3, n0, _SPOR, 0, [_cT, _i], [0, 0]];
987
+ var SuccessfulRequest$ = [3, n0, _SR, 0, [_cT, _i], [0, 0]];
988
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_a, _ta], [[0, 1], 128 | 0]];
989
+ var TelephonyChannelSubtypeConfig$ = [
983
990
  3,
984
991
  n0,
985
992
  _TCSC,
986
993
  0,
987
994
  [_cap, _cQI, _oM, _dOC],
988
- [1, 0, () => TelephonyOutboundMode, () => TelephonyOutboundConfig],
995
+ [1, 0, () => TelephonyOutboundMode$, () => TelephonyOutboundConfig$],
989
996
  ];
990
- var TelephonyChannelSubtypeParameters = [
997
+ var TelephonyChannelSubtypeParameters$ = [
991
998
  3,
992
999
  n0,
993
1000
  _TCSP,
994
1001
  0,
995
1002
  [_dPN, _at, _cSPN, _aMDC, _rT],
996
- [[() => DestinationPhoneNumber, 0], [() => Attributes, 0], 0, () => AnswerMachineDetectionConfig, 1],
1003
+ [[() => DestinationPhoneNumber, 0], [() => Attributes, 0], 0, () => AnswerMachineDetectionConfig$, 1],
997
1004
  ];
998
- var TelephonyOutboundConfig = [
1005
+ var TelephonyOutboundConfig$ = [
999
1006
  3,
1000
1007
  n0,
1001
1008
  _TOC,
1002
1009
  0,
1003
1010
  [_cCFI, _cSPN, _aMDC, _rT],
1004
- [0, 0, () => AnswerMachineDetectionConfig, 1],
1011
+ [0, 0, () => AnswerMachineDetectionConfig$, 1],
1005
1012
  ];
1006
- var ThrottlingException = [
1013
+ var ThrottlingException$ = [
1007
1014
  -3,
1008
1015
  n0,
1009
1016
  _TE,
@@ -1011,11 +1018,18 @@ var ThrottlingException = [
1011
1018
  [_m, _xAET],
1012
1019
  [0, [0, { [_hH]: _xaE }]],
1013
1020
  ];
1014
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
1015
- var TimeoutConfig = [3, n0, _TC, 0, [_dIS], [1]];
1016
- var TimeRange = [3, n0, _TR, 0, [_sT, _eTn], [0, 0]];
1017
- var TimeWindow = [3, n0, _TW, 0, [_oH, _rP], [() => OpenHours, () => RestrictedPeriods]];
1018
- var UntagResourceRequest = [
1021
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
1022
+ var TimeoutConfig$ = [3, n0, _TC, 0, [_dIS], [1]];
1023
+ var TimeRange$ = [3, n0, _TR, 0, [_sT, _eTn], [0, 0]];
1024
+ var TimeWindow$ = [
1025
+ 3,
1026
+ n0,
1027
+ _TW,
1028
+ 0,
1029
+ [_oH, _rP],
1030
+ [() => OpenHours$, () => RestrictedPeriods$],
1031
+ ];
1032
+ var UntagResourceRequest$ = [
1019
1033
  3,
1020
1034
  n0,
1021
1035
  _URR,
@@ -1026,7 +1040,7 @@ var UntagResourceRequest = [
1026
1040
  [64 | 0, { [_hQ]: _tK }],
1027
1041
  ],
1028
1042
  ];
1029
- var UpdateCampaignChannelSubtypeConfigRequest = [
1043
+ var UpdateCampaignChannelSubtypeConfigRequest$ = [
1030
1044
  3,
1031
1045
  n0,
1032
1046
  _UCCSCR,
@@ -1034,37 +1048,37 @@ var UpdateCampaignChannelSubtypeConfigRequest = [
1034
1048
  [_i, _cSC],
1035
1049
  [
1036
1050
  [0, 1],
1037
- [() => ChannelSubtypeConfig, 0],
1051
+ [() => ChannelSubtypeConfig$, 0],
1038
1052
  ],
1039
1053
  ];
1040
- var UpdateCampaignCommunicationLimitsRequest = [
1054
+ var UpdateCampaignCommunicationLimitsRequest$ = [
1041
1055
  3,
1042
1056
  n0,
1043
1057
  _UCCLR,
1044
1058
  0,
1045
1059
  [_i, _cLO],
1046
- [[0, 1], () => CommunicationLimitsConfig],
1060
+ [[0, 1], () => CommunicationLimitsConfig$],
1047
1061
  ];
1048
- var UpdateCampaignCommunicationTimeRequest = [
1062
+ var UpdateCampaignCommunicationTimeRequest$ = [
1049
1063
  3,
1050
1064
  n0,
1051
1065
  _UCCTR,
1052
1066
  0,
1053
1067
  [_i, _cTC],
1054
- [[0, 1], () => CommunicationTimeConfig],
1068
+ [[0, 1], () => CommunicationTimeConfig$],
1055
1069
  ];
1056
- var UpdateCampaignFlowAssociationRequest = [3, n0, _UCFAR, 0, [_i, _cCFA], [[0, 1], 0]];
1057
- var UpdateCampaignNameRequest = [3, n0, _UCNR, 0, [_i, _n], [[0, 1], 0]];
1058
- var UpdateCampaignScheduleRequest = [
1070
+ var UpdateCampaignFlowAssociationRequest$ = [3, n0, _UCFAR, 0, [_i, _cCFA], [[0, 1], 0]];
1071
+ var UpdateCampaignNameRequest$ = [3, n0, _UCNR, 0, [_i, _n], [[0, 1], 0]];
1072
+ var UpdateCampaignScheduleRequest$ = [
1059
1073
  3,
1060
1074
  n0,
1061
1075
  _UCSR,
1062
1076
  0,
1063
1077
  [_i, _sc],
1064
- [[0, 1], () => Schedule],
1078
+ [[0, 1], () => Schedule$],
1065
1079
  ];
1066
- var UpdateCampaignSourceRequest = [3, n0, _UCSRp, 0, [_i, _s], [[0, 1], () => Source]];
1067
- var ValidationException = [
1080
+ var UpdateCampaignSourceRequest$ = [3, n0, _UCSRp, 0, [_i, _s], [[0, 1], () => Source$]];
1081
+ var ValidationException$ = [
1068
1082
  -3,
1069
1083
  n0,
1070
1084
  _VE,
@@ -1072,16 +1086,16 @@ var ValidationException = [
1072
1086
  [_m, _xAET],
1073
1087
  [0, [0, { [_hH]: _xaE }]],
1074
1088
  ];
1075
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1076
- var WhatsAppChannelSubtypeConfig = [
1089
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1090
+ var WhatsAppChannelSubtypeConfig$ = [
1077
1091
  3,
1078
1092
  n0,
1079
1093
  _WACSC,
1080
1094
  0,
1081
1095
  [_cap, _oM, _dOC],
1082
- [1, () => WhatsAppOutboundMode, () => WhatsAppOutboundConfig],
1096
+ [1, () => WhatsAppOutboundMode$, () => WhatsAppOutboundConfig$],
1083
1097
  ];
1084
- var WhatsAppChannelSubtypeParameters = [
1098
+ var WhatsAppChannelSubtypeParameters$ = [
1085
1099
  3,
1086
1100
  n0,
1087
1101
  _WACSP,
@@ -1089,9 +1103,9 @@ var WhatsAppChannelSubtypeParameters = [
1089
1103
  [_dPN, _cSPNA, _tA, _tP],
1090
1104
  [[() => DestinationPhoneNumber, 0], 0, 0, [() => Attributes, 0]],
1091
1105
  ];
1092
- var WhatsAppOutboundConfig = [3, n0, _WAOC, 0, [_cSPNA, _wTA], [0, 0]];
1106
+ var WhatsAppOutboundConfig$ = [3, n0, _WAOC, 0, [_cSPNA, _wTA], [0, 0]];
1093
1107
  var __Unit = "unit";
1094
- var ConnectCampaignsV2ServiceException = [
1108
+ var ConnectCampaignsV2ServiceException$ = [
1095
1109
  -3,
1096
1110
  _smi,
1097
1111
  "ConnectCampaignsV2ServiceException",
@@ -1099,364 +1113,362 @@ var ConnectCampaignsV2ServiceException = [
1099
1113
  [],
1100
1114
  [],
1101
1115
  ];
1102
- schema.TypeRegistry.for(_smi).registerError(ConnectCampaignsV2ServiceException, ConnectCampaignsV2ServiceException$1);
1103
- var CampaignSummaryList = [1, n0, _CSL, 0, () => CampaignSummary];
1104
- var CommunicationLimitList = [1, n0, _CLL, 0, () => CommunicationLimit];
1105
- var FailedCampaignStateResponseList = [1, n0, _FCSRL, 0, () => FailedCampaignStateResponse];
1106
- var FailedProfileOutboundRequestList = [1, n0, _FPORL, 0, () => FailedProfileOutboundRequest];
1107
- var FailedRequestList = [1, n0, _FRL, 0, () => FailedRequest];
1108
- var IntegrationSummaryList = [1, n0, _ISL, 0, () => IntegrationSummary];
1109
- var OutboundRequestList = [1, n0, _ORL, 0, [() => OutboundRequest, 0]];
1110
- var ProfileOutboundRequestList = [1, n0, _PORL, 0, () => ProfileOutboundRequest];
1111
- var RestrictedPeriodList = [1, n0, _RPL, 0, () => RestrictedPeriod];
1112
- var SuccessfulCampaignStateResponseList = [
1113
- 1,
1114
- n0,
1115
- _SCSRL,
1116
- 0,
1117
- () => SuccessfulCampaignStateResponse,
1118
- ];
1116
+ schema.TypeRegistry.for(_smi).registerError(ConnectCampaignsV2ServiceException$, ConnectCampaignsV2ServiceException);
1117
+ var CampaignSummaryList = [1, n0, _CSL, 0, () => CampaignSummary$];
1118
+ var CommunicationLimitList = [1, n0, _CLL, 0, () => CommunicationLimit$];
1119
+ var FailedCampaignStateResponseList = [1, n0, _FCSRL, 0, () => FailedCampaignStateResponse$];
1120
+ var FailedProfileOutboundRequestList = [1, n0, _FPORL, 0, () => FailedProfileOutboundRequest$];
1121
+ var FailedRequestList = [1, n0, _FRL, 0, () => FailedRequest$];
1122
+ var IntegrationSummaryList = [1, n0, _ISL, 0, () => IntegrationSummary$];
1123
+ var OutboundRequestList = [1, n0, _ORL, 0, [() => OutboundRequest$, 0]];
1124
+ var ProfileOutboundRequestList = [1, n0, _PORL, 0, () => ProfileOutboundRequest$];
1125
+ var RestrictedPeriodList = [1, n0, _RPL, 0, () => RestrictedPeriod$];
1126
+ var SuccessfulCampaignStateResponseList = [1, n0, _SCSRL, 0, () => SuccessfulCampaignStateResponse$];
1119
1127
  var SuccessfulProfileOutboundRequestList = [
1120
1128
  1,
1121
1129
  n0,
1122
1130
  _SPORL,
1123
1131
  0,
1124
- () => SuccessfulProfileOutboundRequest,
1132
+ () => SuccessfulProfileOutboundRequest$,
1125
1133
  ];
1126
- var SuccessfulRequestList = [1, n0, _SRL, 0, () => SuccessfulRequest];
1127
- var TimeRangeList = [1, n0, _TRL, 0, () => TimeRange];
1134
+ var SuccessfulRequestList = [1, n0, _SRL, 0, () => SuccessfulRequest$];
1135
+ var TimeRangeList = [1, n0, _TRL, 0, () => TimeRange$];
1128
1136
  var Attributes = [2, n0, _A, 8, 0, 0];
1129
1137
  var DailyHours = [2, n0, _DH, 0, 0, () => TimeRangeList];
1130
- var ChannelSubtypeParameters = [
1138
+ var ChannelSubtypeParameters$ = [
1131
1139
  3,
1132
1140
  n0,
1133
1141
  _CSP,
1134
1142
  0,
1135
1143
  [_te, _sm, _em, _wA],
1136
1144
  [
1137
- [() => TelephonyChannelSubtypeParameters, 0],
1138
- [() => SmsChannelSubtypeParameters, 0],
1139
- [() => EmailChannelSubtypeParameters, 0],
1140
- [() => WhatsAppChannelSubtypeParameters, 0],
1145
+ [() => TelephonyChannelSubtypeParameters$, 0],
1146
+ [() => SmsChannelSubtypeParameters$, 0],
1147
+ [() => EmailChannelSubtypeParameters$, 0],
1148
+ [() => WhatsAppChannelSubtypeParameters$, 0],
1141
1149
  ],
1142
1150
  ];
1143
- var CommunicationLimits = [3, n0, _CLo, 0, [_cLL], [() => CommunicationLimitList]];
1144
- var EmailOutboundMode = [3, n0, _EOM, 0, [_ag], [() => AgentlessConfig]];
1145
- var IntegrationConfig = [
1151
+ var CommunicationLimits$ = [3, n0, _CLo, 0, [_cLL], [() => CommunicationLimitList]];
1152
+ var EmailOutboundMode$ = [3, n0, _EOM, 0, [_ag], [() => AgentlessConfig$]];
1153
+ var IntegrationConfig$ = [
1146
1154
  3,
1147
1155
  n0,
1148
1156
  _ICn,
1149
1157
  0,
1150
1158
  [_cP, _qC, _l],
1151
- [() => CustomerProfilesIntegrationConfig, () => QConnectIntegrationConfig, () => LambdaIntegrationConfig],
1159
+ [() => CustomerProfilesIntegrationConfig$, () => QConnectIntegrationConfig$, () => LambdaIntegrationConfig$],
1152
1160
  ];
1153
- var IntegrationIdentifier = [
1161
+ var IntegrationIdentifier$ = [
1154
1162
  3,
1155
1163
  n0,
1156
1164
  _II,
1157
1165
  0,
1158
1166
  [_cP, _qC, _l],
1159
- [() => CustomerProfilesIntegrationIdentifier, () => QConnectIntegrationIdentifier, () => LambdaIntegrationIdentifier],
1167
+ [
1168
+ () => CustomerProfilesIntegrationIdentifier$,
1169
+ () => QConnectIntegrationIdentifier$,
1170
+ () => LambdaIntegrationIdentifier$,
1171
+ ],
1160
1172
  ];
1161
- var IntegrationSummary = [
1173
+ var IntegrationSummary$ = [
1162
1174
  3,
1163
1175
  n0,
1164
1176
  _IS,
1165
1177
  0,
1166
1178
  [_cP, _qC, _l],
1167
- [() => CustomerProfilesIntegrationSummary, () => QConnectIntegrationSummary, () => LambdaIntegrationSummary],
1179
+ [() => CustomerProfilesIntegrationSummary$, () => QConnectIntegrationSummary$, () => LambdaIntegrationSummary$],
1168
1180
  ];
1169
- var OpenHours = [3, n0, _OH, 0, [_dH], [() => DailyHours]];
1170
- var RestrictedPeriods = [3, n0, _RPe, 0, [_rPL], [() => RestrictedPeriodList]];
1171
- var SmsOutboundMode = [3, n0, _SOM, 0, [_ag], [() => AgentlessConfig]];
1172
- var Source = [3, n0, _So, 0, [_cPSA, _eTv], [0, () => EventTrigger]];
1173
- var TelephonyOutboundMode = [
1181
+ var OpenHours$ = [3, n0, _OH, 0, [_dH], [() => DailyHours]];
1182
+ var RestrictedPeriods$ = [3, n0, _RPe, 0, [_rPL], [() => RestrictedPeriodList]];
1183
+ var SmsOutboundMode$ = [3, n0, _SOM, 0, [_ag], [() => AgentlessConfig$]];
1184
+ var Source$ = [3, n0, _So, 0, [_cPSA, _eTv], [0, () => EventTrigger$]];
1185
+ var TelephonyOutboundMode$ = [
1174
1186
  3,
1175
1187
  n0,
1176
1188
  _TOM,
1177
1189
  0,
1178
1190
  [_p, _pr, _ag, _pre],
1179
- [() => ProgressiveConfig, () => PredictiveConfig, () => AgentlessConfig, () => PreviewConfig],
1191
+ [() => ProgressiveConfig$, () => PredictiveConfig$, () => AgentlessConfig$, () => PreviewConfig$],
1180
1192
  ];
1181
- var WhatsAppOutboundMode = [3, n0, _WAOM, 0, [_ag], [() => AgentlessConfig]];
1182
- var CreateCampaign = [
1193
+ var WhatsAppOutboundMode$ = [3, n0, _WAOM, 0, [_ag], [() => AgentlessConfig$]];
1194
+ var CreateCampaign$ = [
1183
1195
  9,
1184
1196
  n0,
1185
1197
  _CC,
1186
1198
  { [_h]: ["PUT", "/v2/campaigns", 200] },
1187
- () => CreateCampaignRequest,
1188
- () => CreateCampaignResponse,
1199
+ () => CreateCampaignRequest$,
1200
+ () => CreateCampaignResponse$,
1189
1201
  ];
1190
- var DeleteCampaign = [
1202
+ var DeleteCampaign$ = [
1191
1203
  9,
1192
1204
  n0,
1193
1205
  _DC,
1194
1206
  { [_h]: ["DELETE", "/v2/campaigns/{id}", 200] },
1195
- () => DeleteCampaignRequest,
1207
+ () => DeleteCampaignRequest$,
1196
1208
  () => __Unit,
1197
1209
  ];
1198
- var DeleteCampaignChannelSubtypeConfig = [
1210
+ var DeleteCampaignChannelSubtypeConfig$ = [
1199
1211
  9,
1200
1212
  n0,
1201
1213
  _DCCSC,
1202
1214
  { [_h]: ["DELETE", "/v2/campaigns/{id}/channel-subtype-config", 200] },
1203
- () => DeleteCampaignChannelSubtypeConfigRequest,
1215
+ () => DeleteCampaignChannelSubtypeConfigRequest$,
1204
1216
  () => __Unit,
1205
1217
  ];
1206
- var DeleteCampaignCommunicationLimits = [
1218
+ var DeleteCampaignCommunicationLimits$ = [
1207
1219
  9,
1208
1220
  n0,
1209
1221
  _DCCL,
1210
1222
  { [_h]: ["DELETE", "/v2/campaigns/{id}/communication-limits", 200] },
1211
- () => DeleteCampaignCommunicationLimitsRequest,
1223
+ () => DeleteCampaignCommunicationLimitsRequest$,
1212
1224
  () => __Unit,
1213
1225
  ];
1214
- var DeleteCampaignCommunicationTime = [
1226
+ var DeleteCampaignCommunicationTime$ = [
1215
1227
  9,
1216
1228
  n0,
1217
1229
  _DCCT,
1218
1230
  { [_h]: ["DELETE", "/v2/campaigns/{id}/communication-time", 200] },
1219
- () => DeleteCampaignCommunicationTimeRequest,
1231
+ () => DeleteCampaignCommunicationTimeRequest$,
1220
1232
  () => __Unit,
1221
1233
  ];
1222
- var DeleteConnectInstanceConfig = [
1234
+ var DeleteConnectInstanceConfig$ = [
1223
1235
  9,
1224
1236
  n0,
1225
1237
  _DCIC,
1226
1238
  { [_h]: ["DELETE", "/v2/connect-instance/{connectInstanceId}/config", 200] },
1227
- () => DeleteConnectInstanceConfigRequest,
1239
+ () => DeleteConnectInstanceConfigRequest$,
1228
1240
  () => __Unit,
1229
1241
  ];
1230
- var DeleteConnectInstanceIntegration = [
1242
+ var DeleteConnectInstanceIntegration$ = [
1231
1243
  9,
1232
1244
  n0,
1233
1245
  _DCII,
1234
1246
  { [_h]: ["POST", "/v2/connect-instance/{connectInstanceId}/integrations/delete", 200] },
1235
- () => DeleteConnectInstanceIntegrationRequest,
1247
+ () => DeleteConnectInstanceIntegrationRequest$,
1236
1248
  () => __Unit,
1237
1249
  ];
1238
- var DeleteInstanceOnboardingJob = [
1250
+ var DeleteInstanceOnboardingJob$ = [
1239
1251
  9,
1240
1252
  n0,
1241
1253
  _DIOJ,
1242
1254
  { [_h]: ["DELETE", "/v2/connect-instance/{connectInstanceId}/onboarding", 200] },
1243
- () => DeleteInstanceOnboardingJobRequest,
1255
+ () => DeleteInstanceOnboardingJobRequest$,
1244
1256
  () => __Unit,
1245
1257
  ];
1246
- var DescribeCampaign = [
1258
+ var DescribeCampaign$ = [
1247
1259
  9,
1248
1260
  n0,
1249
1261
  _DCe,
1250
1262
  { [_h]: ["GET", "/v2/campaigns/{id}", 200] },
1251
- () => DescribeCampaignRequest,
1252
- () => DescribeCampaignResponse,
1263
+ () => DescribeCampaignRequest$,
1264
+ () => DescribeCampaignResponse$,
1253
1265
  ];
1254
- var GetCampaignState = [
1266
+ var GetCampaignState$ = [
1255
1267
  9,
1256
1268
  n0,
1257
1269
  _GCS,
1258
1270
  { [_h]: ["GET", "/v2/campaigns/{id}/state", 200] },
1259
- () => GetCampaignStateRequest,
1260
- () => GetCampaignStateResponse,
1271
+ () => GetCampaignStateRequest$,
1272
+ () => GetCampaignStateResponse$,
1261
1273
  ];
1262
- var GetCampaignStateBatch = [
1274
+ var GetCampaignStateBatch$ = [
1263
1275
  9,
1264
1276
  n0,
1265
1277
  _GCSB,
1266
1278
  { [_h]: ["POST", "/v2/campaigns-state", 200] },
1267
- () => GetCampaignStateBatchRequest,
1268
- () => GetCampaignStateBatchResponse,
1279
+ () => GetCampaignStateBatchRequest$,
1280
+ () => GetCampaignStateBatchResponse$,
1269
1281
  ];
1270
- var GetConnectInstanceConfig = [
1282
+ var GetConnectInstanceConfig$ = [
1271
1283
  9,
1272
1284
  n0,
1273
1285
  _GCIC,
1274
1286
  { [_h]: ["GET", "/v2/connect-instance/{connectInstanceId}/config", 200] },
1275
- () => GetConnectInstanceConfigRequest,
1276
- () => GetConnectInstanceConfigResponse,
1287
+ () => GetConnectInstanceConfigRequest$,
1288
+ () => GetConnectInstanceConfigResponse$,
1277
1289
  ];
1278
- var GetInstanceCommunicationLimits = [
1290
+ var GetInstanceCommunicationLimits$ = [
1279
1291
  9,
1280
1292
  n0,
1281
1293
  _GICL,
1282
1294
  { [_h]: ["GET", "/v2/connect-instance/{connectInstanceId}/communication-limits", 200] },
1283
- () => GetInstanceCommunicationLimitsRequest,
1284
- () => GetInstanceCommunicationLimitsResponse,
1295
+ () => GetInstanceCommunicationLimitsRequest$,
1296
+ () => GetInstanceCommunicationLimitsResponse$,
1285
1297
  ];
1286
- var GetInstanceOnboardingJobStatus = [
1298
+ var GetInstanceOnboardingJobStatus$ = [
1287
1299
  9,
1288
1300
  n0,
1289
1301
  _GIOJS,
1290
1302
  { [_h]: ["GET", "/v2/connect-instance/{connectInstanceId}/onboarding", 200] },
1291
- () => GetInstanceOnboardingJobStatusRequest,
1292
- () => GetInstanceOnboardingJobStatusResponse,
1303
+ () => GetInstanceOnboardingJobStatusRequest$,
1304
+ () => GetInstanceOnboardingJobStatusResponse$,
1293
1305
  ];
1294
- var ListCampaigns = [
1306
+ var ListCampaigns$ = [
1295
1307
  9,
1296
1308
  n0,
1297
1309
  _LC,
1298
1310
  { [_h]: ["POST", "/v2/campaigns-summary", 200] },
1299
- () => ListCampaignsRequest,
1300
- () => ListCampaignsResponse,
1311
+ () => ListCampaignsRequest$,
1312
+ () => ListCampaignsResponse$,
1301
1313
  ];
1302
- var ListConnectInstanceIntegrations = [
1314
+ var ListConnectInstanceIntegrations$ = [
1303
1315
  9,
1304
1316
  n0,
1305
1317
  _LCII,
1306
1318
  { [_h]: ["GET", "/v2/connect-instance/{connectInstanceId}/integrations", 200] },
1307
- () => ListConnectInstanceIntegrationsRequest,
1308
- () => ListConnectInstanceIntegrationsResponse,
1319
+ () => ListConnectInstanceIntegrationsRequest$,
1320
+ () => ListConnectInstanceIntegrationsResponse$,
1309
1321
  ];
1310
- var ListTagsForResource = [
1322
+ var ListTagsForResource$ = [
1311
1323
  9,
1312
1324
  n0,
1313
1325
  _LTFR,
1314
1326
  { [_h]: ["GET", "/v2/tags/{arn}", 200] },
1315
- () => ListTagsForResourceRequest,
1316
- () => ListTagsForResourceResponse,
1327
+ () => ListTagsForResourceRequest$,
1328
+ () => ListTagsForResourceResponse$,
1317
1329
  ];
1318
- var PauseCampaign = [
1330
+ var PauseCampaign$ = [
1319
1331
  9,
1320
1332
  n0,
1321
1333
  _PCa,
1322
1334
  { [_h]: ["POST", "/v2/campaigns/{id}/pause", 200] },
1323
- () => PauseCampaignRequest,
1335
+ () => PauseCampaignRequest$,
1324
1336
  () => __Unit,
1325
1337
  ];
1326
- var PutConnectInstanceIntegration = [
1338
+ var PutConnectInstanceIntegration$ = [
1327
1339
  9,
1328
1340
  n0,
1329
1341
  _PCII,
1330
1342
  { [_h]: ["PUT", "/v2/connect-instance/{connectInstanceId}/integrations", 200] },
1331
- () => PutConnectInstanceIntegrationRequest,
1343
+ () => PutConnectInstanceIntegrationRequest$,
1332
1344
  () => __Unit,
1333
1345
  ];
1334
- var PutInstanceCommunicationLimits = [
1346
+ var PutInstanceCommunicationLimits$ = [
1335
1347
  9,
1336
1348
  n0,
1337
1349
  _PICL,
1338
1350
  { [_h]: ["PUT", "/v2/connect-instance/{connectInstanceId}/communication-limits", 200] },
1339
- () => PutInstanceCommunicationLimitsRequest,
1351
+ () => PutInstanceCommunicationLimitsRequest$,
1340
1352
  () => __Unit,
1341
1353
  ];
1342
- var PutOutboundRequestBatch = [
1354
+ var PutOutboundRequestBatch$ = [
1343
1355
  9,
1344
1356
  n0,
1345
1357
  _PORB,
1346
1358
  { [_h]: ["PUT", "/v2/campaigns/{id}/outbound-requests", 200] },
1347
- () => PutOutboundRequestBatchRequest,
1348
- () => PutOutboundRequestBatchResponse,
1359
+ () => PutOutboundRequestBatchRequest$,
1360
+ () => PutOutboundRequestBatchResponse$,
1349
1361
  ];
1350
- var PutProfileOutboundRequestBatch = [
1362
+ var PutProfileOutboundRequestBatch$ = [
1351
1363
  9,
1352
1364
  n0,
1353
1365
  _PPORB,
1354
1366
  { [_h]: ["PUT", "/v2/campaigns/{id}/profile-outbound-requests", 200] },
1355
- () => PutProfileOutboundRequestBatchRequest,
1356
- () => PutProfileOutboundRequestBatchResponse,
1367
+ () => PutProfileOutboundRequestBatchRequest$,
1368
+ () => PutProfileOutboundRequestBatchResponse$,
1357
1369
  ];
1358
- var ResumeCampaign = [
1370
+ var ResumeCampaign$ = [
1359
1371
  9,
1360
1372
  n0,
1361
1373
  _RC,
1362
1374
  { [_h]: ["POST", "/v2/campaigns/{id}/resume", 200] },
1363
- () => ResumeCampaignRequest,
1375
+ () => ResumeCampaignRequest$,
1364
1376
  () => __Unit,
1365
1377
  ];
1366
- var StartCampaign = [
1378
+ var StartCampaign$ = [
1367
1379
  9,
1368
1380
  n0,
1369
1381
  _SC,
1370
1382
  { [_h]: ["POST", "/v2/campaigns/{id}/start", 200] },
1371
- () => StartCampaignRequest,
1383
+ () => StartCampaignRequest$,
1372
1384
  () => __Unit,
1373
1385
  ];
1374
- var StartInstanceOnboardingJob = [
1386
+ var StartInstanceOnboardingJob$ = [
1375
1387
  9,
1376
1388
  n0,
1377
1389
  _SIOJ,
1378
1390
  { [_h]: ["PUT", "/v2/connect-instance/{connectInstanceId}/onboarding", 200] },
1379
- () => StartInstanceOnboardingJobRequest,
1380
- () => StartInstanceOnboardingJobResponse,
1391
+ () => StartInstanceOnboardingJobRequest$,
1392
+ () => StartInstanceOnboardingJobResponse$,
1381
1393
  ];
1382
- var StopCampaign = [
1394
+ var StopCampaign$ = [
1383
1395
  9,
1384
1396
  n0,
1385
1397
  _SCt,
1386
1398
  { [_h]: ["POST", "/v2/campaigns/{id}/stop", 200] },
1387
- () => StopCampaignRequest,
1399
+ () => StopCampaignRequest$,
1388
1400
  () => __Unit,
1389
1401
  ];
1390
- var TagResource = [
1402
+ var TagResource$ = [
1391
1403
  9,
1392
1404
  n0,
1393
1405
  _TRa,
1394
1406
  { [_h]: ["POST", "/v2/tags/{arn}", 200] },
1395
- () => TagResourceRequest,
1407
+ () => TagResourceRequest$,
1396
1408
  () => __Unit,
1397
1409
  ];
1398
- var UntagResource = [
1410
+ var UntagResource$ = [
1399
1411
  9,
1400
1412
  n0,
1401
1413
  _UR,
1402
1414
  { [_h]: ["DELETE", "/v2/tags/{arn}", 200] },
1403
- () => UntagResourceRequest,
1415
+ () => UntagResourceRequest$,
1404
1416
  () => __Unit,
1405
1417
  ];
1406
- var UpdateCampaignChannelSubtypeConfig = [
1418
+ var UpdateCampaignChannelSubtypeConfig$ = [
1407
1419
  9,
1408
1420
  n0,
1409
1421
  _UCCSC,
1410
1422
  { [_h]: ["POST", "/v2/campaigns/{id}/channel-subtype-config", 200] },
1411
- () => UpdateCampaignChannelSubtypeConfigRequest,
1423
+ () => UpdateCampaignChannelSubtypeConfigRequest$,
1412
1424
  () => __Unit,
1413
1425
  ];
1414
- var UpdateCampaignCommunicationLimits = [
1426
+ var UpdateCampaignCommunicationLimits$ = [
1415
1427
  9,
1416
1428
  n0,
1417
1429
  _UCCL,
1418
1430
  { [_h]: ["POST", "/v2/campaigns/{id}/communication-limits", 200] },
1419
- () => UpdateCampaignCommunicationLimitsRequest,
1431
+ () => UpdateCampaignCommunicationLimitsRequest$,
1420
1432
  () => __Unit,
1421
1433
  ];
1422
- var UpdateCampaignCommunicationTime = [
1434
+ var UpdateCampaignCommunicationTime$ = [
1423
1435
  9,
1424
1436
  n0,
1425
1437
  _UCCT,
1426
1438
  { [_h]: ["POST", "/v2/campaigns/{id}/communication-time", 200] },
1427
- () => UpdateCampaignCommunicationTimeRequest,
1439
+ () => UpdateCampaignCommunicationTimeRequest$,
1428
1440
  () => __Unit,
1429
1441
  ];
1430
- var UpdateCampaignFlowAssociation = [
1442
+ var UpdateCampaignFlowAssociation$ = [
1431
1443
  9,
1432
1444
  n0,
1433
1445
  _UCFA,
1434
1446
  { [_h]: ["POST", "/v2/campaigns/{id}/flow", 200] },
1435
- () => UpdateCampaignFlowAssociationRequest,
1447
+ () => UpdateCampaignFlowAssociationRequest$,
1436
1448
  () => __Unit,
1437
1449
  ];
1438
- var UpdateCampaignName = [
1450
+ var UpdateCampaignName$ = [
1439
1451
  9,
1440
1452
  n0,
1441
1453
  _UCN,
1442
1454
  { [_h]: ["POST", "/v2/campaigns/{id}/name", 200] },
1443
- () => UpdateCampaignNameRequest,
1455
+ () => UpdateCampaignNameRequest$,
1444
1456
  () => __Unit,
1445
1457
  ];
1446
- var UpdateCampaignSchedule = [
1458
+ var UpdateCampaignSchedule$ = [
1447
1459
  9,
1448
1460
  n0,
1449
1461
  _UCS,
1450
1462
  { [_h]: ["POST", "/v2/campaigns/{id}/schedule", 200] },
1451
- () => UpdateCampaignScheduleRequest,
1463
+ () => UpdateCampaignScheduleRequest$,
1452
1464
  () => __Unit,
1453
1465
  ];
1454
- var UpdateCampaignSource = [
1466
+ var UpdateCampaignSource$ = [
1455
1467
  9,
1456
1468
  n0,
1457
1469
  _UCSp,
1458
1470
  { [_h]: ["POST", "/v2/campaigns/{id}/source", 200] },
1459
- () => UpdateCampaignSourceRequest,
1471
+ () => UpdateCampaignSourceRequest$,
1460
1472
  () => __Unit,
1461
1473
  ];
1462
1474
 
@@ -1468,7 +1480,7 @@ class CreateCampaignCommand extends smithyClient.Command
1468
1480
  })
1469
1481
  .s("AmazonConnectCampaignServiceV2", "CreateCampaign", {})
1470
1482
  .n("ConnectCampaignsV2Client", "CreateCampaignCommand")
1471
- .sc(CreateCampaign)
1483
+ .sc(CreateCampaign$)
1472
1484
  .build() {
1473
1485
  }
1474
1486
 
@@ -1480,7 +1492,7 @@ class DeleteCampaignChannelSubtypeConfigCommand extends smithyClient.Command
1480
1492
  })
1481
1493
  .s("AmazonConnectCampaignServiceV2", "DeleteCampaignChannelSubtypeConfig", {})
1482
1494
  .n("ConnectCampaignsV2Client", "DeleteCampaignChannelSubtypeConfigCommand")
1483
- .sc(DeleteCampaignChannelSubtypeConfig)
1495
+ .sc(DeleteCampaignChannelSubtypeConfig$)
1484
1496
  .build() {
1485
1497
  }
1486
1498
 
@@ -1492,7 +1504,7 @@ class DeleteCampaignCommand extends smithyClient.Command
1492
1504
  })
1493
1505
  .s("AmazonConnectCampaignServiceV2", "DeleteCampaign", {})
1494
1506
  .n("ConnectCampaignsV2Client", "DeleteCampaignCommand")
1495
- .sc(DeleteCampaign)
1507
+ .sc(DeleteCampaign$)
1496
1508
  .build() {
1497
1509
  }
1498
1510
 
@@ -1504,7 +1516,7 @@ class DeleteCampaignCommunicationLimitsCommand extends smithyClient.Command
1504
1516
  })
1505
1517
  .s("AmazonConnectCampaignServiceV2", "DeleteCampaignCommunicationLimits", {})
1506
1518
  .n("ConnectCampaignsV2Client", "DeleteCampaignCommunicationLimitsCommand")
1507
- .sc(DeleteCampaignCommunicationLimits)
1519
+ .sc(DeleteCampaignCommunicationLimits$)
1508
1520
  .build() {
1509
1521
  }
1510
1522
 
@@ -1516,7 +1528,7 @@ class DeleteCampaignCommunicationTimeCommand extends smithyClient.Command
1516
1528
  })
1517
1529
  .s("AmazonConnectCampaignServiceV2", "DeleteCampaignCommunicationTime", {})
1518
1530
  .n("ConnectCampaignsV2Client", "DeleteCampaignCommunicationTimeCommand")
1519
- .sc(DeleteCampaignCommunicationTime)
1531
+ .sc(DeleteCampaignCommunicationTime$)
1520
1532
  .build() {
1521
1533
  }
1522
1534
 
@@ -1528,7 +1540,7 @@ class DeleteConnectInstanceConfigCommand extends smithyClient.Command
1528
1540
  })
1529
1541
  .s("AmazonConnectCampaignServiceV2", "DeleteConnectInstanceConfig", {})
1530
1542
  .n("ConnectCampaignsV2Client", "DeleteConnectInstanceConfigCommand")
1531
- .sc(DeleteConnectInstanceConfig)
1543
+ .sc(DeleteConnectInstanceConfig$)
1532
1544
  .build() {
1533
1545
  }
1534
1546
 
@@ -1540,7 +1552,7 @@ class DeleteConnectInstanceIntegrationCommand extends smithyClient.Command
1540
1552
  })
1541
1553
  .s("AmazonConnectCampaignServiceV2", "DeleteConnectInstanceIntegration", {})
1542
1554
  .n("ConnectCampaignsV2Client", "DeleteConnectInstanceIntegrationCommand")
1543
- .sc(DeleteConnectInstanceIntegration)
1555
+ .sc(DeleteConnectInstanceIntegration$)
1544
1556
  .build() {
1545
1557
  }
1546
1558
 
@@ -1552,7 +1564,7 @@ class DeleteInstanceOnboardingJobCommand extends smithyClient.Command
1552
1564
  })
1553
1565
  .s("AmazonConnectCampaignServiceV2", "DeleteInstanceOnboardingJob", {})
1554
1566
  .n("ConnectCampaignsV2Client", "DeleteInstanceOnboardingJobCommand")
1555
- .sc(DeleteInstanceOnboardingJob)
1567
+ .sc(DeleteInstanceOnboardingJob$)
1556
1568
  .build() {
1557
1569
  }
1558
1570
 
@@ -1564,7 +1576,7 @@ class DescribeCampaignCommand extends smithyClient.Command
1564
1576
  })
1565
1577
  .s("AmazonConnectCampaignServiceV2", "DescribeCampaign", {})
1566
1578
  .n("ConnectCampaignsV2Client", "DescribeCampaignCommand")
1567
- .sc(DescribeCampaign)
1579
+ .sc(DescribeCampaign$)
1568
1580
  .build() {
1569
1581
  }
1570
1582
 
@@ -1576,7 +1588,7 @@ class GetCampaignStateBatchCommand extends smithyClient.Command
1576
1588
  })
1577
1589
  .s("AmazonConnectCampaignServiceV2", "GetCampaignStateBatch", {})
1578
1590
  .n("ConnectCampaignsV2Client", "GetCampaignStateBatchCommand")
1579
- .sc(GetCampaignStateBatch)
1591
+ .sc(GetCampaignStateBatch$)
1580
1592
  .build() {
1581
1593
  }
1582
1594
 
@@ -1588,7 +1600,7 @@ class GetCampaignStateCommand extends smithyClient.Command
1588
1600
  })
1589
1601
  .s("AmazonConnectCampaignServiceV2", "GetCampaignState", {})
1590
1602
  .n("ConnectCampaignsV2Client", "GetCampaignStateCommand")
1591
- .sc(GetCampaignState)
1603
+ .sc(GetCampaignState$)
1592
1604
  .build() {
1593
1605
  }
1594
1606
 
@@ -1600,7 +1612,7 @@ class GetConnectInstanceConfigCommand extends smithyClient.Command
1600
1612
  })
1601
1613
  .s("AmazonConnectCampaignServiceV2", "GetConnectInstanceConfig", {})
1602
1614
  .n("ConnectCampaignsV2Client", "GetConnectInstanceConfigCommand")
1603
- .sc(GetConnectInstanceConfig)
1615
+ .sc(GetConnectInstanceConfig$)
1604
1616
  .build() {
1605
1617
  }
1606
1618
 
@@ -1612,7 +1624,7 @@ class GetInstanceCommunicationLimitsCommand extends smithyClient.Command
1612
1624
  })
1613
1625
  .s("AmazonConnectCampaignServiceV2", "GetInstanceCommunicationLimits", {})
1614
1626
  .n("ConnectCampaignsV2Client", "GetInstanceCommunicationLimitsCommand")
1615
- .sc(GetInstanceCommunicationLimits)
1627
+ .sc(GetInstanceCommunicationLimits$)
1616
1628
  .build() {
1617
1629
  }
1618
1630
 
@@ -1624,7 +1636,7 @@ class GetInstanceOnboardingJobStatusCommand extends smithyClient.Command
1624
1636
  })
1625
1637
  .s("AmazonConnectCampaignServiceV2", "GetInstanceOnboardingJobStatus", {})
1626
1638
  .n("ConnectCampaignsV2Client", "GetInstanceOnboardingJobStatusCommand")
1627
- .sc(GetInstanceOnboardingJobStatus)
1639
+ .sc(GetInstanceOnboardingJobStatus$)
1628
1640
  .build() {
1629
1641
  }
1630
1642
 
@@ -1636,7 +1648,7 @@ class ListCampaignsCommand extends smithyClient.Command
1636
1648
  })
1637
1649
  .s("AmazonConnectCampaignServiceV2", "ListCampaigns", {})
1638
1650
  .n("ConnectCampaignsV2Client", "ListCampaignsCommand")
1639
- .sc(ListCampaigns)
1651
+ .sc(ListCampaigns$)
1640
1652
  .build() {
1641
1653
  }
1642
1654
 
@@ -1648,7 +1660,7 @@ class ListConnectInstanceIntegrationsCommand extends smithyClient.Command
1648
1660
  })
1649
1661
  .s("AmazonConnectCampaignServiceV2", "ListConnectInstanceIntegrations", {})
1650
1662
  .n("ConnectCampaignsV2Client", "ListConnectInstanceIntegrationsCommand")
1651
- .sc(ListConnectInstanceIntegrations)
1663
+ .sc(ListConnectInstanceIntegrations$)
1652
1664
  .build() {
1653
1665
  }
1654
1666
 
@@ -1660,7 +1672,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1660
1672
  })
1661
1673
  .s("AmazonConnectCampaignServiceV2", "ListTagsForResource", {})
1662
1674
  .n("ConnectCampaignsV2Client", "ListTagsForResourceCommand")
1663
- .sc(ListTagsForResource)
1675
+ .sc(ListTagsForResource$)
1664
1676
  .build() {
1665
1677
  }
1666
1678
 
@@ -1672,7 +1684,7 @@ class PauseCampaignCommand extends smithyClient.Command
1672
1684
  })
1673
1685
  .s("AmazonConnectCampaignServiceV2", "PauseCampaign", {})
1674
1686
  .n("ConnectCampaignsV2Client", "PauseCampaignCommand")
1675
- .sc(PauseCampaign)
1687
+ .sc(PauseCampaign$)
1676
1688
  .build() {
1677
1689
  }
1678
1690
 
@@ -1684,7 +1696,7 @@ class PutConnectInstanceIntegrationCommand extends smithyClient.Command
1684
1696
  })
1685
1697
  .s("AmazonConnectCampaignServiceV2", "PutConnectInstanceIntegration", {})
1686
1698
  .n("ConnectCampaignsV2Client", "PutConnectInstanceIntegrationCommand")
1687
- .sc(PutConnectInstanceIntegration)
1699
+ .sc(PutConnectInstanceIntegration$)
1688
1700
  .build() {
1689
1701
  }
1690
1702
 
@@ -1696,7 +1708,7 @@ class PutInstanceCommunicationLimitsCommand extends smithyClient.Command
1696
1708
  })
1697
1709
  .s("AmazonConnectCampaignServiceV2", "PutInstanceCommunicationLimits", {})
1698
1710
  .n("ConnectCampaignsV2Client", "PutInstanceCommunicationLimitsCommand")
1699
- .sc(PutInstanceCommunicationLimits)
1711
+ .sc(PutInstanceCommunicationLimits$)
1700
1712
  .build() {
1701
1713
  }
1702
1714
 
@@ -1708,7 +1720,7 @@ class PutOutboundRequestBatchCommand extends smithyClient.Command
1708
1720
  })
1709
1721
  .s("AmazonConnectCampaignServiceV2", "PutOutboundRequestBatch", {})
1710
1722
  .n("ConnectCampaignsV2Client", "PutOutboundRequestBatchCommand")
1711
- .sc(PutOutboundRequestBatch)
1723
+ .sc(PutOutboundRequestBatch$)
1712
1724
  .build() {
1713
1725
  }
1714
1726
 
@@ -1720,7 +1732,7 @@ class PutProfileOutboundRequestBatchCommand extends smithyClient.Command
1720
1732
  })
1721
1733
  .s("AmazonConnectCampaignServiceV2", "PutProfileOutboundRequestBatch", {})
1722
1734
  .n("ConnectCampaignsV2Client", "PutProfileOutboundRequestBatchCommand")
1723
- .sc(PutProfileOutboundRequestBatch)
1735
+ .sc(PutProfileOutboundRequestBatch$)
1724
1736
  .build() {
1725
1737
  }
1726
1738
 
@@ -1732,7 +1744,7 @@ class ResumeCampaignCommand extends smithyClient.Command
1732
1744
  })
1733
1745
  .s("AmazonConnectCampaignServiceV2", "ResumeCampaign", {})
1734
1746
  .n("ConnectCampaignsV2Client", "ResumeCampaignCommand")
1735
- .sc(ResumeCampaign)
1747
+ .sc(ResumeCampaign$)
1736
1748
  .build() {
1737
1749
  }
1738
1750
 
@@ -1744,7 +1756,7 @@ class StartCampaignCommand extends smithyClient.Command
1744
1756
  })
1745
1757
  .s("AmazonConnectCampaignServiceV2", "StartCampaign", {})
1746
1758
  .n("ConnectCampaignsV2Client", "StartCampaignCommand")
1747
- .sc(StartCampaign)
1759
+ .sc(StartCampaign$)
1748
1760
  .build() {
1749
1761
  }
1750
1762
 
@@ -1756,7 +1768,7 @@ class StartInstanceOnboardingJobCommand extends smithyClient.Command
1756
1768
  })
1757
1769
  .s("AmazonConnectCampaignServiceV2", "StartInstanceOnboardingJob", {})
1758
1770
  .n("ConnectCampaignsV2Client", "StartInstanceOnboardingJobCommand")
1759
- .sc(StartInstanceOnboardingJob)
1771
+ .sc(StartInstanceOnboardingJob$)
1760
1772
  .build() {
1761
1773
  }
1762
1774
 
@@ -1768,7 +1780,7 @@ class StopCampaignCommand extends smithyClient.Command
1768
1780
  })
1769
1781
  .s("AmazonConnectCampaignServiceV2", "StopCampaign", {})
1770
1782
  .n("ConnectCampaignsV2Client", "StopCampaignCommand")
1771
- .sc(StopCampaign)
1783
+ .sc(StopCampaign$)
1772
1784
  .build() {
1773
1785
  }
1774
1786
 
@@ -1780,7 +1792,7 @@ class TagResourceCommand extends smithyClient.Command
1780
1792
  })
1781
1793
  .s("AmazonConnectCampaignServiceV2", "TagResource", {})
1782
1794
  .n("ConnectCampaignsV2Client", "TagResourceCommand")
1783
- .sc(TagResource)
1795
+ .sc(TagResource$)
1784
1796
  .build() {
1785
1797
  }
1786
1798
 
@@ -1792,7 +1804,7 @@ class UntagResourceCommand extends smithyClient.Command
1792
1804
  })
1793
1805
  .s("AmazonConnectCampaignServiceV2", "UntagResource", {})
1794
1806
  .n("ConnectCampaignsV2Client", "UntagResourceCommand")
1795
- .sc(UntagResource)
1807
+ .sc(UntagResource$)
1796
1808
  .build() {
1797
1809
  }
1798
1810
 
@@ -1804,7 +1816,7 @@ class UpdateCampaignChannelSubtypeConfigCommand extends smithyClient.Command
1804
1816
  })
1805
1817
  .s("AmazonConnectCampaignServiceV2", "UpdateCampaignChannelSubtypeConfig", {})
1806
1818
  .n("ConnectCampaignsV2Client", "UpdateCampaignChannelSubtypeConfigCommand")
1807
- .sc(UpdateCampaignChannelSubtypeConfig)
1819
+ .sc(UpdateCampaignChannelSubtypeConfig$)
1808
1820
  .build() {
1809
1821
  }
1810
1822
 
@@ -1816,7 +1828,7 @@ class UpdateCampaignCommunicationLimitsCommand extends smithyClient.Command
1816
1828
  })
1817
1829
  .s("AmazonConnectCampaignServiceV2", "UpdateCampaignCommunicationLimits", {})
1818
1830
  .n("ConnectCampaignsV2Client", "UpdateCampaignCommunicationLimitsCommand")
1819
- .sc(UpdateCampaignCommunicationLimits)
1831
+ .sc(UpdateCampaignCommunicationLimits$)
1820
1832
  .build() {
1821
1833
  }
1822
1834
 
@@ -1828,7 +1840,7 @@ class UpdateCampaignCommunicationTimeCommand extends smithyClient.Command
1828
1840
  })
1829
1841
  .s("AmazonConnectCampaignServiceV2", "UpdateCampaignCommunicationTime", {})
1830
1842
  .n("ConnectCampaignsV2Client", "UpdateCampaignCommunicationTimeCommand")
1831
- .sc(UpdateCampaignCommunicationTime)
1843
+ .sc(UpdateCampaignCommunicationTime$)
1832
1844
  .build() {
1833
1845
  }
1834
1846
 
@@ -1840,7 +1852,7 @@ class UpdateCampaignFlowAssociationCommand extends smithyClient.Command
1840
1852
  })
1841
1853
  .s("AmazonConnectCampaignServiceV2", "UpdateCampaignFlowAssociation", {})
1842
1854
  .n("ConnectCampaignsV2Client", "UpdateCampaignFlowAssociationCommand")
1843
- .sc(UpdateCampaignFlowAssociation)
1855
+ .sc(UpdateCampaignFlowAssociation$)
1844
1856
  .build() {
1845
1857
  }
1846
1858
 
@@ -1852,7 +1864,7 @@ class UpdateCampaignNameCommand extends smithyClient.Command
1852
1864
  })
1853
1865
  .s("AmazonConnectCampaignServiceV2", "UpdateCampaignName", {})
1854
1866
  .n("ConnectCampaignsV2Client", "UpdateCampaignNameCommand")
1855
- .sc(UpdateCampaignName)
1867
+ .sc(UpdateCampaignName$)
1856
1868
  .build() {
1857
1869
  }
1858
1870
 
@@ -1864,7 +1876,7 @@ class UpdateCampaignScheduleCommand extends smithyClient.Command
1864
1876
  })
1865
1877
  .s("AmazonConnectCampaignServiceV2", "UpdateCampaignSchedule", {})
1866
1878
  .n("ConnectCampaignsV2Client", "UpdateCampaignScheduleCommand")
1867
- .sc(UpdateCampaignSchedule)
1879
+ .sc(UpdateCampaignSchedule$)
1868
1880
  .build() {
1869
1881
  }
1870
1882
 
@@ -1876,7 +1888,7 @@ class UpdateCampaignSourceCommand extends smithyClient.Command
1876
1888
  })
1877
1889
  .s("AmazonConnectCampaignServiceV2", "UpdateCampaignSource", {})
1878
1890
  .n("ConnectCampaignsV2Client", "UpdateCampaignSourceCommand")
1879
- .sc(UpdateCampaignSource)
1891
+ .sc(UpdateCampaignSource$)
1880
1892
  .build() {
1881
1893
  }
1882
1894
 
@@ -2030,71 +2042,229 @@ Object.defineProperty(exports, "__Client", {
2030
2042
  enumerable: true,
2031
2043
  get: function () { return smithyClient.Client; }
2032
2044
  });
2033
- exports.AccessDeniedException = AccessDeniedException$1;
2045
+ exports.AccessDeniedException = AccessDeniedException;
2046
+ exports.AccessDeniedException$ = AccessDeniedException$;
2034
2047
  exports.AgentAction = AgentAction;
2048
+ exports.AgentlessConfig$ = AgentlessConfig$;
2049
+ exports.AnswerMachineDetectionConfig$ = AnswerMachineDetectionConfig$;
2050
+ exports.Campaign$ = Campaign$;
2035
2051
  exports.CampaignDeletionPolicy = CampaignDeletionPolicy;
2052
+ exports.CampaignFilters$ = CampaignFilters$;
2036
2053
  exports.CampaignState = CampaignState;
2054
+ exports.CampaignSummary$ = CampaignSummary$;
2037
2055
  exports.ChannelSubtype = ChannelSubtype;
2056
+ exports.ChannelSubtypeConfig$ = ChannelSubtypeConfig$;
2057
+ exports.ChannelSubtypeParameters$ = ChannelSubtypeParameters$;
2058
+ exports.CommunicationLimit$ = CommunicationLimit$;
2038
2059
  exports.CommunicationLimitTimeUnit = CommunicationLimitTimeUnit;
2060
+ exports.CommunicationLimits$ = CommunicationLimits$;
2061
+ exports.CommunicationLimitsConfig$ = CommunicationLimitsConfig$;
2039
2062
  exports.CommunicationLimitsConfigType = CommunicationLimitsConfigType;
2063
+ exports.CommunicationTimeConfig$ = CommunicationTimeConfig$;
2040
2064
  exports.CommunicationTimeConfigType = CommunicationTimeConfigType;
2041
- exports.ConflictException = ConflictException$1;
2065
+ exports.ConflictException = ConflictException;
2066
+ exports.ConflictException$ = ConflictException$;
2042
2067
  exports.ConnectCampaignsV2 = ConnectCampaignsV2;
2043
2068
  exports.ConnectCampaignsV2Client = ConnectCampaignsV2Client;
2044
- exports.ConnectCampaignsV2ServiceException = ConnectCampaignsV2ServiceException$1;
2069
+ exports.ConnectCampaignsV2ServiceException = ConnectCampaignsV2ServiceException;
2070
+ exports.ConnectCampaignsV2ServiceException$ = ConnectCampaignsV2ServiceException$;
2071
+ exports.CreateCampaign$ = CreateCampaign$;
2045
2072
  exports.CreateCampaignCommand = CreateCampaignCommand;
2073
+ exports.CreateCampaignRequest$ = CreateCampaignRequest$;
2074
+ exports.CreateCampaignResponse$ = CreateCampaignResponse$;
2075
+ exports.CustomerProfilesIntegrationConfig$ = CustomerProfilesIntegrationConfig$;
2076
+ exports.CustomerProfilesIntegrationIdentifier$ = CustomerProfilesIntegrationIdentifier$;
2077
+ exports.CustomerProfilesIntegrationSummary$ = CustomerProfilesIntegrationSummary$;
2046
2078
  exports.DayOfWeek = DayOfWeek;
2079
+ exports.DeleteCampaign$ = DeleteCampaign$;
2080
+ exports.DeleteCampaignChannelSubtypeConfig$ = DeleteCampaignChannelSubtypeConfig$;
2047
2081
  exports.DeleteCampaignChannelSubtypeConfigCommand = DeleteCampaignChannelSubtypeConfigCommand;
2082
+ exports.DeleteCampaignChannelSubtypeConfigRequest$ = DeleteCampaignChannelSubtypeConfigRequest$;
2048
2083
  exports.DeleteCampaignCommand = DeleteCampaignCommand;
2084
+ exports.DeleteCampaignCommunicationLimits$ = DeleteCampaignCommunicationLimits$;
2049
2085
  exports.DeleteCampaignCommunicationLimitsCommand = DeleteCampaignCommunicationLimitsCommand;
2086
+ exports.DeleteCampaignCommunicationLimitsRequest$ = DeleteCampaignCommunicationLimitsRequest$;
2087
+ exports.DeleteCampaignCommunicationTime$ = DeleteCampaignCommunicationTime$;
2050
2088
  exports.DeleteCampaignCommunicationTimeCommand = DeleteCampaignCommunicationTimeCommand;
2089
+ exports.DeleteCampaignCommunicationTimeRequest$ = DeleteCampaignCommunicationTimeRequest$;
2090
+ exports.DeleteCampaignRequest$ = DeleteCampaignRequest$;
2091
+ exports.DeleteConnectInstanceConfig$ = DeleteConnectInstanceConfig$;
2051
2092
  exports.DeleteConnectInstanceConfigCommand = DeleteConnectInstanceConfigCommand;
2093
+ exports.DeleteConnectInstanceConfigRequest$ = DeleteConnectInstanceConfigRequest$;
2094
+ exports.DeleteConnectInstanceIntegration$ = DeleteConnectInstanceIntegration$;
2052
2095
  exports.DeleteConnectInstanceIntegrationCommand = DeleteConnectInstanceIntegrationCommand;
2096
+ exports.DeleteConnectInstanceIntegrationRequest$ = DeleteConnectInstanceIntegrationRequest$;
2097
+ exports.DeleteInstanceOnboardingJob$ = DeleteInstanceOnboardingJob$;
2053
2098
  exports.DeleteInstanceOnboardingJobCommand = DeleteInstanceOnboardingJobCommand;
2099
+ exports.DeleteInstanceOnboardingJobRequest$ = DeleteInstanceOnboardingJobRequest$;
2100
+ exports.DescribeCampaign$ = DescribeCampaign$;
2054
2101
  exports.DescribeCampaignCommand = DescribeCampaignCommand;
2102
+ exports.DescribeCampaignRequest$ = DescribeCampaignRequest$;
2103
+ exports.DescribeCampaignResponse$ = DescribeCampaignResponse$;
2104
+ exports.EmailChannelSubtypeConfig$ = EmailChannelSubtypeConfig$;
2105
+ exports.EmailChannelSubtypeParameters$ = EmailChannelSubtypeParameters$;
2106
+ exports.EmailOutboundConfig$ = EmailOutboundConfig$;
2107
+ exports.EmailOutboundMode$ = EmailOutboundMode$;
2108
+ exports.EncryptionConfig$ = EncryptionConfig$;
2055
2109
  exports.EncryptionType = EncryptionType;
2110
+ exports.EventTrigger$ = EventTrigger$;
2056
2111
  exports.EventType = EventType;
2057
2112
  exports.ExternalCampaignType = ExternalCampaignType;
2113
+ exports.FailedCampaignStateResponse$ = FailedCampaignStateResponse$;
2114
+ exports.FailedProfileOutboundRequest$ = FailedProfileOutboundRequest$;
2115
+ exports.FailedRequest$ = FailedRequest$;
2058
2116
  exports.FailureCode = FailureCode;
2117
+ exports.GetCampaignState$ = GetCampaignState$;
2118
+ exports.GetCampaignStateBatch$ = GetCampaignStateBatch$;
2059
2119
  exports.GetCampaignStateBatchCommand = GetCampaignStateBatchCommand;
2060
2120
  exports.GetCampaignStateBatchFailureCode = GetCampaignStateBatchFailureCode;
2121
+ exports.GetCampaignStateBatchRequest$ = GetCampaignStateBatchRequest$;
2122
+ exports.GetCampaignStateBatchResponse$ = GetCampaignStateBatchResponse$;
2061
2123
  exports.GetCampaignStateCommand = GetCampaignStateCommand;
2124
+ exports.GetCampaignStateRequest$ = GetCampaignStateRequest$;
2125
+ exports.GetCampaignStateResponse$ = GetCampaignStateResponse$;
2126
+ exports.GetConnectInstanceConfig$ = GetConnectInstanceConfig$;
2062
2127
  exports.GetConnectInstanceConfigCommand = GetConnectInstanceConfigCommand;
2128
+ exports.GetConnectInstanceConfigRequest$ = GetConnectInstanceConfigRequest$;
2129
+ exports.GetConnectInstanceConfigResponse$ = GetConnectInstanceConfigResponse$;
2130
+ exports.GetInstanceCommunicationLimits$ = GetInstanceCommunicationLimits$;
2063
2131
  exports.GetInstanceCommunicationLimitsCommand = GetInstanceCommunicationLimitsCommand;
2132
+ exports.GetInstanceCommunicationLimitsRequest$ = GetInstanceCommunicationLimitsRequest$;
2133
+ exports.GetInstanceCommunicationLimitsResponse$ = GetInstanceCommunicationLimitsResponse$;
2134
+ exports.GetInstanceOnboardingJobStatus$ = GetInstanceOnboardingJobStatus$;
2064
2135
  exports.GetInstanceOnboardingJobStatusCommand = GetInstanceOnboardingJobStatusCommand;
2136
+ exports.GetInstanceOnboardingJobStatusRequest$ = GetInstanceOnboardingJobStatusRequest$;
2137
+ exports.GetInstanceOnboardingJobStatusResponse$ = GetInstanceOnboardingJobStatusResponse$;
2138
+ exports.InstanceCommunicationLimitsConfig$ = InstanceCommunicationLimitsConfig$;
2139
+ exports.InstanceConfig$ = InstanceConfig$;
2140
+ exports.InstanceIdFilter$ = InstanceIdFilter$;
2065
2141
  exports.InstanceIdFilterOperator = InstanceIdFilterOperator;
2066
2142
  exports.InstanceLimitsHandling = InstanceLimitsHandling;
2067
2143
  exports.InstanceOnboardingJobFailureCode = InstanceOnboardingJobFailureCode;
2144
+ exports.InstanceOnboardingJobStatus$ = InstanceOnboardingJobStatus$;
2068
2145
  exports.InstanceOnboardingJobStatusCode = InstanceOnboardingJobStatusCode;
2069
- exports.InternalServerException = InternalServerException$1;
2070
- exports.InvalidCampaignStateException = InvalidCampaignStateException$1;
2071
- exports.InvalidStateException = InvalidStateException$1;
2146
+ exports.IntegrationConfig$ = IntegrationConfig$;
2147
+ exports.IntegrationIdentifier$ = IntegrationIdentifier$;
2148
+ exports.IntegrationSummary$ = IntegrationSummary$;
2149
+ exports.InternalServerException = InternalServerException;
2150
+ exports.InternalServerException$ = InternalServerException$;
2151
+ exports.InvalidCampaignStateException = InvalidCampaignStateException;
2152
+ exports.InvalidCampaignStateException$ = InvalidCampaignStateException$;
2153
+ exports.InvalidStateException = InvalidStateException;
2154
+ exports.InvalidStateException$ = InvalidStateException$;
2155
+ exports.LambdaIntegrationConfig$ = LambdaIntegrationConfig$;
2156
+ exports.LambdaIntegrationIdentifier$ = LambdaIntegrationIdentifier$;
2157
+ exports.LambdaIntegrationSummary$ = LambdaIntegrationSummary$;
2158
+ exports.ListCampaigns$ = ListCampaigns$;
2072
2159
  exports.ListCampaignsCommand = ListCampaignsCommand;
2160
+ exports.ListCampaignsRequest$ = ListCampaignsRequest$;
2161
+ exports.ListCampaignsResponse$ = ListCampaignsResponse$;
2162
+ exports.ListConnectInstanceIntegrations$ = ListConnectInstanceIntegrations$;
2073
2163
  exports.ListConnectInstanceIntegrationsCommand = ListConnectInstanceIntegrationsCommand;
2164
+ exports.ListConnectInstanceIntegrationsRequest$ = ListConnectInstanceIntegrationsRequest$;
2165
+ exports.ListConnectInstanceIntegrationsResponse$ = ListConnectInstanceIntegrationsResponse$;
2166
+ exports.ListTagsForResource$ = ListTagsForResource$;
2074
2167
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2168
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2169
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2170
+ exports.LocalTimeZoneConfig$ = LocalTimeZoneConfig$;
2075
2171
  exports.LocalTimeZoneDetectionType = LocalTimeZoneDetectionType;
2172
+ exports.OpenHours$ = OpenHours$;
2173
+ exports.OutboundRequest$ = OutboundRequest$;
2174
+ exports.PauseCampaign$ = PauseCampaign$;
2076
2175
  exports.PauseCampaignCommand = PauseCampaignCommand;
2176
+ exports.PauseCampaignRequest$ = PauseCampaignRequest$;
2177
+ exports.PredictiveConfig$ = PredictiveConfig$;
2178
+ exports.PreviewConfig$ = PreviewConfig$;
2179
+ exports.ProfileOutboundRequest$ = ProfileOutboundRequest$;
2077
2180
  exports.ProfileOutboundRequestFailureCode = ProfileOutboundRequestFailureCode;
2181
+ exports.ProgressiveConfig$ = ProgressiveConfig$;
2182
+ exports.PutConnectInstanceIntegration$ = PutConnectInstanceIntegration$;
2078
2183
  exports.PutConnectInstanceIntegrationCommand = PutConnectInstanceIntegrationCommand;
2184
+ exports.PutConnectInstanceIntegrationRequest$ = PutConnectInstanceIntegrationRequest$;
2185
+ exports.PutInstanceCommunicationLimits$ = PutInstanceCommunicationLimits$;
2079
2186
  exports.PutInstanceCommunicationLimitsCommand = PutInstanceCommunicationLimitsCommand;
2187
+ exports.PutInstanceCommunicationLimitsRequest$ = PutInstanceCommunicationLimitsRequest$;
2188
+ exports.PutOutboundRequestBatch$ = PutOutboundRequestBatch$;
2080
2189
  exports.PutOutboundRequestBatchCommand = PutOutboundRequestBatchCommand;
2190
+ exports.PutOutboundRequestBatchRequest$ = PutOutboundRequestBatchRequest$;
2191
+ exports.PutOutboundRequestBatchResponse$ = PutOutboundRequestBatchResponse$;
2192
+ exports.PutProfileOutboundRequestBatch$ = PutProfileOutboundRequestBatch$;
2081
2193
  exports.PutProfileOutboundRequestBatchCommand = PutProfileOutboundRequestBatchCommand;
2082
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
2194
+ exports.PutProfileOutboundRequestBatchRequest$ = PutProfileOutboundRequestBatchRequest$;
2195
+ exports.PutProfileOutboundRequestBatchResponse$ = PutProfileOutboundRequestBatchResponse$;
2196
+ exports.QConnectIntegrationConfig$ = QConnectIntegrationConfig$;
2197
+ exports.QConnectIntegrationIdentifier$ = QConnectIntegrationIdentifier$;
2198
+ exports.QConnectIntegrationSummary$ = QConnectIntegrationSummary$;
2199
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2200
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2201
+ exports.RestrictedPeriod$ = RestrictedPeriod$;
2202
+ exports.RestrictedPeriods$ = RestrictedPeriods$;
2203
+ exports.ResumeCampaign$ = ResumeCampaign$;
2083
2204
  exports.ResumeCampaignCommand = ResumeCampaignCommand;
2084
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
2205
+ exports.ResumeCampaignRequest$ = ResumeCampaignRequest$;
2206
+ exports.Schedule$ = Schedule$;
2207
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2208
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2209
+ exports.SmsChannelSubtypeConfig$ = SmsChannelSubtypeConfig$;
2210
+ exports.SmsChannelSubtypeParameters$ = SmsChannelSubtypeParameters$;
2211
+ exports.SmsOutboundConfig$ = SmsOutboundConfig$;
2212
+ exports.SmsOutboundMode$ = SmsOutboundMode$;
2213
+ exports.Source$ = Source$;
2214
+ exports.StartCampaign$ = StartCampaign$;
2085
2215
  exports.StartCampaignCommand = StartCampaignCommand;
2216
+ exports.StartCampaignRequest$ = StartCampaignRequest$;
2217
+ exports.StartInstanceOnboardingJob$ = StartInstanceOnboardingJob$;
2086
2218
  exports.StartInstanceOnboardingJobCommand = StartInstanceOnboardingJobCommand;
2219
+ exports.StartInstanceOnboardingJobRequest$ = StartInstanceOnboardingJobRequest$;
2220
+ exports.StartInstanceOnboardingJobResponse$ = StartInstanceOnboardingJobResponse$;
2221
+ exports.StopCampaign$ = StopCampaign$;
2087
2222
  exports.StopCampaignCommand = StopCampaignCommand;
2223
+ exports.StopCampaignRequest$ = StopCampaignRequest$;
2224
+ exports.SuccessfulCampaignStateResponse$ = SuccessfulCampaignStateResponse$;
2225
+ exports.SuccessfulProfileOutboundRequest$ = SuccessfulProfileOutboundRequest$;
2226
+ exports.SuccessfulRequest$ = SuccessfulRequest$;
2227
+ exports.TagResource$ = TagResource$;
2088
2228
  exports.TagResourceCommand = TagResourceCommand;
2089
- exports.ThrottlingException = ThrottlingException$1;
2229
+ exports.TagResourceRequest$ = TagResourceRequest$;
2230
+ exports.TelephonyChannelSubtypeConfig$ = TelephonyChannelSubtypeConfig$;
2231
+ exports.TelephonyChannelSubtypeParameters$ = TelephonyChannelSubtypeParameters$;
2232
+ exports.TelephonyOutboundConfig$ = TelephonyOutboundConfig$;
2233
+ exports.TelephonyOutboundMode$ = TelephonyOutboundMode$;
2234
+ exports.ThrottlingException = ThrottlingException;
2235
+ exports.ThrottlingException$ = ThrottlingException$;
2236
+ exports.TimeRange$ = TimeRange$;
2237
+ exports.TimeWindow$ = TimeWindow$;
2238
+ exports.TimeoutConfig$ = TimeoutConfig$;
2239
+ exports.UntagResource$ = UntagResource$;
2090
2240
  exports.UntagResourceCommand = UntagResourceCommand;
2241
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2242
+ exports.UpdateCampaignChannelSubtypeConfig$ = UpdateCampaignChannelSubtypeConfig$;
2091
2243
  exports.UpdateCampaignChannelSubtypeConfigCommand = UpdateCampaignChannelSubtypeConfigCommand;
2244
+ exports.UpdateCampaignChannelSubtypeConfigRequest$ = UpdateCampaignChannelSubtypeConfigRequest$;
2245
+ exports.UpdateCampaignCommunicationLimits$ = UpdateCampaignCommunicationLimits$;
2092
2246
  exports.UpdateCampaignCommunicationLimitsCommand = UpdateCampaignCommunicationLimitsCommand;
2247
+ exports.UpdateCampaignCommunicationLimitsRequest$ = UpdateCampaignCommunicationLimitsRequest$;
2248
+ exports.UpdateCampaignCommunicationTime$ = UpdateCampaignCommunicationTime$;
2093
2249
  exports.UpdateCampaignCommunicationTimeCommand = UpdateCampaignCommunicationTimeCommand;
2250
+ exports.UpdateCampaignCommunicationTimeRequest$ = UpdateCampaignCommunicationTimeRequest$;
2251
+ exports.UpdateCampaignFlowAssociation$ = UpdateCampaignFlowAssociation$;
2094
2252
  exports.UpdateCampaignFlowAssociationCommand = UpdateCampaignFlowAssociationCommand;
2253
+ exports.UpdateCampaignFlowAssociationRequest$ = UpdateCampaignFlowAssociationRequest$;
2254
+ exports.UpdateCampaignName$ = UpdateCampaignName$;
2095
2255
  exports.UpdateCampaignNameCommand = UpdateCampaignNameCommand;
2256
+ exports.UpdateCampaignNameRequest$ = UpdateCampaignNameRequest$;
2257
+ exports.UpdateCampaignSchedule$ = UpdateCampaignSchedule$;
2096
2258
  exports.UpdateCampaignScheduleCommand = UpdateCampaignScheduleCommand;
2259
+ exports.UpdateCampaignScheduleRequest$ = UpdateCampaignScheduleRequest$;
2260
+ exports.UpdateCampaignSource$ = UpdateCampaignSource$;
2097
2261
  exports.UpdateCampaignSourceCommand = UpdateCampaignSourceCommand;
2098
- exports.ValidationException = ValidationException$1;
2262
+ exports.UpdateCampaignSourceRequest$ = UpdateCampaignSourceRequest$;
2263
+ exports.ValidationException = ValidationException;
2264
+ exports.ValidationException$ = ValidationException$;
2265
+ exports.WhatsAppChannelSubtypeConfig$ = WhatsAppChannelSubtypeConfig$;
2266
+ exports.WhatsAppChannelSubtypeParameters$ = WhatsAppChannelSubtypeParameters$;
2267
+ exports.WhatsAppOutboundConfig$ = WhatsAppOutboundConfig$;
2268
+ exports.WhatsAppOutboundMode$ = WhatsAppOutboundMode$;
2099
2269
  exports.paginateListCampaigns = paginateListCampaigns;
2100
2270
  exports.paginateListConnectInstanceIntegrations = paginateListConnectInstanceIntegrations;