@aws-sdk/client-appflow 3.952.0 → 3.954.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 (45) hide show
  1. package/dist-cjs/index.js +785 -535
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CancelFlowExecutionsCommand.js +2 -2
  4. package/dist-es/commands/CreateConnectorProfileCommand.js +2 -2
  5. package/dist-es/commands/CreateFlowCommand.js +2 -2
  6. package/dist-es/commands/DeleteConnectorProfileCommand.js +2 -2
  7. package/dist-es/commands/DeleteFlowCommand.js +2 -2
  8. package/dist-es/commands/DescribeConnectorCommand.js +2 -2
  9. package/dist-es/commands/DescribeConnectorEntityCommand.js +2 -2
  10. package/dist-es/commands/DescribeConnectorProfilesCommand.js +2 -2
  11. package/dist-es/commands/DescribeConnectorsCommand.js +2 -2
  12. package/dist-es/commands/DescribeFlowCommand.js +2 -2
  13. package/dist-es/commands/DescribeFlowExecutionRecordsCommand.js +2 -2
  14. package/dist-es/commands/ListConnectorEntitiesCommand.js +2 -2
  15. package/dist-es/commands/ListConnectorsCommand.js +2 -2
  16. package/dist-es/commands/ListFlowsCommand.js +2 -2
  17. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  18. package/dist-es/commands/RegisterConnectorCommand.js +2 -2
  19. package/dist-es/commands/ResetConnectorMetadataCacheCommand.js +2 -2
  20. package/dist-es/commands/StartFlowCommand.js +2 -2
  21. package/dist-es/commands/StopFlowCommand.js +2 -2
  22. package/dist-es/commands/TagResourceCommand.js +2 -2
  23. package/dist-es/commands/UnregisterConnectorCommand.js +2 -2
  24. package/dist-es/commands/UntagResourceCommand.js +2 -2
  25. package/dist-es/commands/UpdateConnectorProfileCommand.js +2 -2
  26. package/dist-es/commands/UpdateConnectorRegistrationCommand.js +2 -2
  27. package/dist-es/commands/UpdateFlowCommand.js +2 -2
  28. package/dist-es/index.js +1 -0
  29. package/dist-es/runtimeConfig.shared.js +6 -1
  30. package/dist-es/schemas/schemas_0.js +534 -520
  31. package/dist-types/AppflowClient.d.ts +1 -10
  32. package/dist-types/index.d.ts +1 -0
  33. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  34. package/dist-types/runtimeConfig.d.ts +6 -2
  35. package/dist-types/runtimeConfig.native.d.ts +6 -2
  36. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  37. package/dist-types/schemas/schemas_0.d.ts +237 -294
  38. package/dist-types/ts3.4/AppflowClient.d.ts +0 -4
  39. package/dist-types/ts3.4/index.d.ts +1 -0
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  44. package/dist-types/ts3.4/schemas/schemas_0.d.ts +236 -296
  45. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class AppflowClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let AppflowServiceException$1 = class AppflowServiceException extends smithyClient.ServiceException {
113
+ class AppflowServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, AppflowServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends AppflowServiceException$1 {
120
+ class AccessDeniedException extends AppflowServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends AppflowService
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- };
132
- let InternalServerException$1 = class InternalServerException extends AppflowServiceException$1 {
131
+ }
132
+ class InternalServerException extends AppflowServiceException {
133
133
  name = "InternalServerException";
134
134
  $fault = "server";
135
135
  constructor(opts) {
@@ -140,8 +140,8 @@ let InternalServerException$1 = class InternalServerException extends AppflowSer
140
140
  });
141
141
  Object.setPrototypeOf(this, InternalServerException.prototype);
142
142
  }
143
- };
144
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends AppflowServiceException$1 {
143
+ }
144
+ class ResourceNotFoundException extends AppflowServiceException {
145
145
  name = "ResourceNotFoundException";
146
146
  $fault = "client";
147
147
  constructor(opts) {
@@ -152,8 +152,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Appflo
152
152
  });
153
153
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
154
154
  }
155
- };
156
- let ThrottlingException$1 = class ThrottlingException extends AppflowServiceException$1 {
155
+ }
156
+ class ThrottlingException extends AppflowServiceException {
157
157
  name = "ThrottlingException";
158
158
  $fault = "client";
159
159
  constructor(opts) {
@@ -164,8 +164,8 @@ let ThrottlingException$1 = class ThrottlingException extends AppflowServiceExce
164
164
  });
165
165
  Object.setPrototypeOf(this, ThrottlingException.prototype);
166
166
  }
167
- };
168
- let ValidationException$1 = class ValidationException extends AppflowServiceException$1 {
167
+ }
168
+ class ValidationException extends AppflowServiceException {
169
169
  name = "ValidationException";
170
170
  $fault = "client";
171
171
  constructor(opts) {
@@ -176,8 +176,8 @@ let ValidationException$1 = class ValidationException extends AppflowServiceExce
176
176
  });
177
177
  Object.setPrototypeOf(this, ValidationException.prototype);
178
178
  }
179
- };
180
- let ConflictException$1 = class ConflictException extends AppflowServiceException$1 {
179
+ }
180
+ class ConflictException extends AppflowServiceException {
181
181
  name = "ConflictException";
182
182
  $fault = "client";
183
183
  constructor(opts) {
@@ -188,8 +188,8 @@ let ConflictException$1 = class ConflictException extends AppflowServiceExceptio
188
188
  });
189
189
  Object.setPrototypeOf(this, ConflictException.prototype);
190
190
  }
191
- };
192
- let ConnectorAuthenticationException$1 = class ConnectorAuthenticationException extends AppflowServiceException$1 {
191
+ }
192
+ class ConnectorAuthenticationException extends AppflowServiceException {
193
193
  name = "ConnectorAuthenticationException";
194
194
  $fault = "client";
195
195
  constructor(opts) {
@@ -200,8 +200,8 @@ let ConnectorAuthenticationException$1 = class ConnectorAuthenticationException
200
200
  });
201
201
  Object.setPrototypeOf(this, ConnectorAuthenticationException.prototype);
202
202
  }
203
- };
204
- let ConnectorServerException$1 = class ConnectorServerException extends AppflowServiceException$1 {
203
+ }
204
+ class ConnectorServerException extends AppflowServiceException {
205
205
  name = "ConnectorServerException";
206
206
  $fault = "client";
207
207
  constructor(opts) {
@@ -212,8 +212,8 @@ let ConnectorServerException$1 = class ConnectorServerException extends AppflowS
212
212
  });
213
213
  Object.setPrototypeOf(this, ConnectorServerException.prototype);
214
214
  }
215
- };
216
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends AppflowServiceException$1 {
215
+ }
216
+ class ServiceQuotaExceededException extends AppflowServiceException {
217
217
  name = "ServiceQuotaExceededException";
218
218
  $fault = "client";
219
219
  constructor(opts) {
@@ -224,8 +224,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
224
224
  });
225
225
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
226
226
  }
227
- };
228
- let UnsupportedOperationException$1 = class UnsupportedOperationException extends AppflowServiceException$1 {
227
+ }
228
+ class UnsupportedOperationException extends AppflowServiceException {
229
229
  name = "UnsupportedOperationException";
230
230
  $fault = "client";
231
231
  constructor(opts) {
@@ -236,7 +236,7 @@ let UnsupportedOperationException$1 = class UnsupportedOperationException extend
236
236
  });
237
237
  Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
238
238
  }
239
- };
239
+ }
240
240
 
241
241
  const _A = "Amplitude";
242
242
  const _AC = "AggregationConfig";
@@ -824,10 +824,10 @@ var CredentialsMapValue = [0, n0, _CMV, 8, 0];
824
824
  var JwtToken = [0, n0, _JT, 8, 0];
825
825
  var Password = [0, n0, _P, 8, 0];
826
826
  var SecretKey = [0, n0, _SK, 8, 0];
827
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
828
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
829
- var AggregationConfig = [3, n0, _AC, 0, [_aT, _tFS], [0, 1]];
830
- var AmplitudeConnectorProfileCredentials = [
827
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
828
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
829
+ var AggregationConfig$ = [3, n0, _AC, 0, [_aT, _tFS], [0, 1]];
830
+ var AmplitudeConnectorProfileCredentials$ = [
831
831
  3,
832
832
  n0,
833
833
  _ACPC,
@@ -838,10 +838,10 @@ var AmplitudeConnectorProfileCredentials = [
838
838
  [() => SecretKey, 0],
839
839
  ],
840
840
  ];
841
- var AmplitudeConnectorProfileProperties = [3, n0, _ACPP, 0, [], []];
842
- var AmplitudeMetadata = [3, n0, _AM, 0, [], []];
843
- var AmplitudeSourceProperties = [3, n0, _ASP, 0, [_o], [0]];
844
- var ApiKeyCredentials = [
841
+ var AmplitudeConnectorProfileProperties$ = [3, n0, _ACPP, 0, [], []];
842
+ var AmplitudeMetadata$ = [3, n0, _AM, 0, [], []];
843
+ var AmplitudeSourceProperties$ = [3, n0, _ASP, 0, [_o], [0]];
844
+ var ApiKeyCredentials$ = [
845
845
  3,
846
846
  n0,
847
847
  _AKC,
@@ -852,15 +852,15 @@ var ApiKeyCredentials = [
852
852
  [() => ApiSecretKey, 0],
853
853
  ],
854
854
  ];
855
- var AuthenticationConfig = [
855
+ var AuthenticationConfig$ = [
856
856
  3,
857
857
  n0,
858
858
  _ACu,
859
859
  0,
860
860
  [_iBAS, _iAKAS, _iOAS, _iCAS, _oAD, _cAC],
861
- [2, 2, 2, 2, () => OAuth2Defaults, () => CustomAuthConfigList],
861
+ [2, 2, 2, 2, () => OAuth2Defaults$, () => CustomAuthConfigList],
862
862
  ];
863
- var AuthParameter = [
863
+ var AuthParameter$ = [
864
864
  3,
865
865
  n0,
866
866
  _AP,
@@ -868,14 +868,14 @@ var AuthParameter = [
868
868
  [_k, _iR, _l, _d, _iSF, _cSV],
869
869
  [0, 2, 0, 0, 2, 64 | 0],
870
870
  ];
871
- var BasicAuthCredentials = [3, n0, _BAC, 0, [_u, _p], [0, [() => Password, 0]]];
872
- var CancelFlowExecutionsRequest = [3, n0, _CFER, 0, [_fN, _eI], [0, 64 | 0]];
873
- var CancelFlowExecutionsResponse = [3, n0, _CFERa, 0, [_iE], [64 | 0]];
874
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
875
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
876
- var ConnectorAuthenticationException = [-3, n0, _CAE, { [_e]: _c, [_hE]: 401 }, [_m], [0]];
877
- schema.TypeRegistry.for(n0).registerError(ConnectorAuthenticationException, ConnectorAuthenticationException$1);
878
- var ConnectorConfiguration = [
871
+ var BasicAuthCredentials$ = [3, n0, _BAC, 0, [_u, _p], [0, [() => Password, 0]]];
872
+ var CancelFlowExecutionsRequest$ = [3, n0, _CFER, 0, [_fN, _eI], [0, 64 | 0]];
873
+ var CancelFlowExecutionsResponse$ = [3, n0, _CFERa, 0, [_iE], [64 | 0]];
874
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
875
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
876
+ var ConnectorAuthenticationException$ = [-3, n0, _CAE, { [_e]: _c, [_hE]: 401 }, [_m], [0]];
877
+ schema.TypeRegistry.for(n0).registerError(ConnectorAuthenticationException$, ConnectorAuthenticationException);
878
+ var ConnectorConfiguration$ = [
879
879
  3,
880
880
  n0,
881
881
  _CC,
@@ -918,7 +918,7 @@ var ConnectorConfiguration = [
918
918
  2,
919
919
  2,
920
920
  64 | 0,
921
- () => ConnectorMetadata,
921
+ () => ConnectorMetadata$,
922
922
  0,
923
923
  0,
924
924
  0,
@@ -927,13 +927,13 @@ var ConnectorConfiguration = [
927
927
  0,
928
928
  0,
929
929
  64 | 0,
930
- () => AuthenticationConfig,
930
+ () => AuthenticationConfig$,
931
931
  () => ConnectorRuntimeSettingList,
932
932
  64 | 0,
933
933
  64 | 0,
934
934
  64 | 0,
935
935
  0,
936
- () => ConnectorProvisioningConfig,
936
+ () => ConnectorProvisioningConfig$,
937
937
  0,
938
938
  4,
939
939
  0,
@@ -941,7 +941,7 @@ var ConnectorConfiguration = [
941
941
  () => SupportedDataTransferApis,
942
942
  ],
943
943
  ];
944
- var ConnectorDetail = [
944
+ var ConnectorDetail$ = [
945
945
  3,
946
946
  n0,
947
947
  _CD,
@@ -949,8 +949,8 @@ var ConnectorDetail = [
949
949
  [_cD, _cN, _cO, _cV, _aTp, _cT, _cL, _rA, _rB, _cPT, _cMo, _sDTT],
950
950
  [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 64 | 0, 64 | 0],
951
951
  ];
952
- var ConnectorEntity = [3, n0, _CEo, 0, [_n, _l, _hNE], [0, 0, 2]];
953
- var ConnectorEntityField = [
952
+ var ConnectorEntity$ = [3, n0, _CEo, 0, [_n, _l, _hNE], [0, 0, 2]];
953
+ var ConnectorEntityField$ = [
954
954
  3,
955
955
  n0,
956
956
  _CEF,
@@ -963,46 +963,46 @@ var ConnectorEntityField = [
963
963
  2,
964
964
  0,
965
965
  2,
966
- () => SupportedFieldTypeDetails,
966
+ () => SupportedFieldTypeDetails$,
967
967
  0,
968
- () => SourceFieldProperties,
969
- () => DestinationFieldProperties,
968
+ () => SourceFieldProperties$,
969
+ () => DestinationFieldProperties$,
970
970
  128 | 0,
971
971
  ],
972
972
  ];
973
- var ConnectorMetadata = [
973
+ var ConnectorMetadata$ = [
974
974
  3,
975
975
  n0,
976
976
  _CM,
977
977
  0,
978
978
  [_A, _D, _Dy, _GA, _IN, _M, _R, _S, _Sa, _SN, _Si, _Sl, _Sn, _T, _V, _Z, _EB, _U, _CP, _H, _SAPOD, _Pa],
979
979
  [
980
- () => AmplitudeMetadata,
981
- () => DatadogMetadata,
982
- () => DynatraceMetadata,
983
- () => GoogleAnalyticsMetadata,
984
- () => InforNexusMetadata,
985
- () => MarketoMetadata,
986
- () => RedshiftMetadata,
987
- () => S3Metadata,
988
- () => SalesforceMetadata,
989
- () => ServiceNowMetadata,
990
- () => SingularMetadata,
991
- () => SlackMetadata,
992
- () => SnowflakeMetadata,
993
- () => TrendmicroMetadata,
994
- () => VeevaMetadata,
995
- () => ZendeskMetadata,
996
- () => EventBridgeMetadata,
997
- () => UpsolverMetadata,
998
- () => CustomerProfilesMetadata,
999
- () => HoneycodeMetadata,
1000
- () => SAPODataMetadata,
1001
- () => PardotMetadata,
980
+ () => AmplitudeMetadata$,
981
+ () => DatadogMetadata$,
982
+ () => DynatraceMetadata$,
983
+ () => GoogleAnalyticsMetadata$,
984
+ () => InforNexusMetadata$,
985
+ () => MarketoMetadata$,
986
+ () => RedshiftMetadata$,
987
+ () => S3Metadata$,
988
+ () => SalesforceMetadata$,
989
+ () => ServiceNowMetadata$,
990
+ () => SingularMetadata$,
991
+ () => SlackMetadata$,
992
+ () => SnowflakeMetadata$,
993
+ () => TrendmicroMetadata$,
994
+ () => VeevaMetadata$,
995
+ () => ZendeskMetadata$,
996
+ () => EventBridgeMetadata$,
997
+ () => UpsolverMetadata$,
998
+ () => CustomerProfilesMetadata$,
999
+ () => HoneycodeMetadata$,
1000
+ () => SAPODataMetadata$,
1001
+ () => PardotMetadata$,
1002
1002
  ],
1003
1003
  ];
1004
- var ConnectorOAuthRequest = [3, n0, _COAR, 0, [_aCu, _rU], [0, 0]];
1005
- var ConnectorOperator = [
1004
+ var ConnectorOAuthRequest$ = [3, n0, _COAR, 0, [_aCu, _rU], [0, 0]];
1005
+ var ConnectorOperator$ = [
1006
1006
  3,
1007
1007
  n0,
1008
1008
  _CO,
@@ -1010,87 +1010,87 @@ var ConnectorOperator = [
1010
1010
  [_A, _D, _Dy, _GA, _IN, _M, _S, _Sa, _SN, _Si, _Sl, _T, _V, _Z, _SAPOD, _CCu, _Pa],
1011
1011
  [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
1012
1012
  ];
1013
- var ConnectorProfile = [
1013
+ var ConnectorProfile$ = [
1014
1014
  3,
1015
1015
  n0,
1016
1016
  _CPo,
1017
1017
  0,
1018
1018
  [_cPA, _cPN, _cT, _cL, _cMon, _cAr, _cPP, _cAre, _lUA, _pCPS],
1019
- [0, 0, 0, 0, 0, 0, () => ConnectorProfileProperties, 4, 4, () => PrivateConnectionProvisioningState],
1019
+ [0, 0, 0, 0, 0, 0, () => ConnectorProfileProperties$, 4, 4, () => PrivateConnectionProvisioningState$],
1020
1020
  ];
1021
- var ConnectorProfileConfig = [
1021
+ var ConnectorProfileConfig$ = [
1022
1022
  3,
1023
1023
  n0,
1024
1024
  _CPC,
1025
1025
  0,
1026
1026
  [_cPP, _cPCo],
1027
- [() => ConnectorProfileProperties, [() => ConnectorProfileCredentials, 0]],
1027
+ [() => ConnectorProfileProperties$, [() => ConnectorProfileCredentials$, 0]],
1028
1028
  ];
1029
- var ConnectorProfileCredentials = [
1029
+ var ConnectorProfileCredentials$ = [
1030
1030
  3,
1031
1031
  n0,
1032
1032
  _CPCo,
1033
1033
  0,
1034
1034
  [_A, _D, _Dy, _GA, _H, _IN, _M, _R, _Sa, _SN, _Si, _Sl, _Sn, _T, _V, _Z, _SAPOD, _CCu, _Pa],
1035
1035
  [
1036
- [() => AmplitudeConnectorProfileCredentials, 0],
1037
- [() => DatadogConnectorProfileCredentials, 0],
1038
- () => DynatraceConnectorProfileCredentials,
1039
- [() => GoogleAnalyticsConnectorProfileCredentials, 0],
1040
- [() => HoneycodeConnectorProfileCredentials, 0],
1041
- [() => InforNexusConnectorProfileCredentials, 0],
1042
- [() => MarketoConnectorProfileCredentials, 0],
1043
- [() => RedshiftConnectorProfileCredentials, 0],
1044
- [() => SalesforceConnectorProfileCredentials, 0],
1045
- [() => ServiceNowConnectorProfileCredentials, 0],
1046
- [() => SingularConnectorProfileCredentials, 0],
1047
- [() => SlackConnectorProfileCredentials, 0],
1048
- [() => SnowflakeConnectorProfileCredentials, 0],
1049
- [() => TrendmicroConnectorProfileCredentials, 0],
1050
- [() => VeevaConnectorProfileCredentials, 0],
1051
- [() => ZendeskConnectorProfileCredentials, 0],
1052
- [() => SAPODataConnectorProfileCredentials, 0],
1053
- [() => CustomConnectorProfileCredentials, 0],
1054
- [() => PardotConnectorProfileCredentials, 0],
1036
+ [() => AmplitudeConnectorProfileCredentials$, 0],
1037
+ [() => DatadogConnectorProfileCredentials$, 0],
1038
+ () => DynatraceConnectorProfileCredentials$,
1039
+ [() => GoogleAnalyticsConnectorProfileCredentials$, 0],
1040
+ [() => HoneycodeConnectorProfileCredentials$, 0],
1041
+ [() => InforNexusConnectorProfileCredentials$, 0],
1042
+ [() => MarketoConnectorProfileCredentials$, 0],
1043
+ [() => RedshiftConnectorProfileCredentials$, 0],
1044
+ [() => SalesforceConnectorProfileCredentials$, 0],
1045
+ [() => ServiceNowConnectorProfileCredentials$, 0],
1046
+ [() => SingularConnectorProfileCredentials$, 0],
1047
+ [() => SlackConnectorProfileCredentials$, 0],
1048
+ [() => SnowflakeConnectorProfileCredentials$, 0],
1049
+ [() => TrendmicroConnectorProfileCredentials$, 0],
1050
+ [() => VeevaConnectorProfileCredentials$, 0],
1051
+ [() => ZendeskConnectorProfileCredentials$, 0],
1052
+ [() => SAPODataConnectorProfileCredentials$, 0],
1053
+ [() => CustomConnectorProfileCredentials$, 0],
1054
+ [() => PardotConnectorProfileCredentials$, 0],
1055
1055
  ],
1056
1056
  ];
1057
- var ConnectorProfileProperties = [
1057
+ var ConnectorProfileProperties$ = [
1058
1058
  3,
1059
1059
  n0,
1060
1060
  _CPP,
1061
1061
  0,
1062
1062
  [_A, _D, _Dy, _GA, _H, _IN, _M, _R, _Sa, _SN, _Si, _Sl, _Sn, _T, _V, _Z, _SAPOD, _CCu, _Pa],
1063
1063
  [
1064
- () => AmplitudeConnectorProfileProperties,
1065
- () => DatadogConnectorProfileProperties,
1066
- () => DynatraceConnectorProfileProperties,
1067
- () => GoogleAnalyticsConnectorProfileProperties,
1068
- () => HoneycodeConnectorProfileProperties,
1069
- () => InforNexusConnectorProfileProperties,
1070
- () => MarketoConnectorProfileProperties,
1071
- () => RedshiftConnectorProfileProperties,
1072
- () => SalesforceConnectorProfileProperties,
1073
- () => ServiceNowConnectorProfileProperties,
1074
- () => SingularConnectorProfileProperties,
1075
- () => SlackConnectorProfileProperties,
1076
- () => SnowflakeConnectorProfileProperties,
1077
- () => TrendmicroConnectorProfileProperties,
1078
- () => VeevaConnectorProfileProperties,
1079
- () => ZendeskConnectorProfileProperties,
1080
- () => SAPODataConnectorProfileProperties,
1081
- () => CustomConnectorProfileProperties,
1082
- () => PardotConnectorProfileProperties,
1064
+ () => AmplitudeConnectorProfileProperties$,
1065
+ () => DatadogConnectorProfileProperties$,
1066
+ () => DynatraceConnectorProfileProperties$,
1067
+ () => GoogleAnalyticsConnectorProfileProperties$,
1068
+ () => HoneycodeConnectorProfileProperties$,
1069
+ () => InforNexusConnectorProfileProperties$,
1070
+ () => MarketoConnectorProfileProperties$,
1071
+ () => RedshiftConnectorProfileProperties$,
1072
+ () => SalesforceConnectorProfileProperties$,
1073
+ () => ServiceNowConnectorProfileProperties$,
1074
+ () => SingularConnectorProfileProperties$,
1075
+ () => SlackConnectorProfileProperties$,
1076
+ () => SnowflakeConnectorProfileProperties$,
1077
+ () => TrendmicroConnectorProfileProperties$,
1078
+ () => VeevaConnectorProfileProperties$,
1079
+ () => ZendeskConnectorProfileProperties$,
1080
+ () => SAPODataConnectorProfileProperties$,
1081
+ () => CustomConnectorProfileProperties$,
1082
+ () => PardotConnectorProfileProperties$,
1083
1083
  ],
1084
1084
  ];
1085
- var ConnectorProvisioningConfig = [
1085
+ var ConnectorProvisioningConfig$ = [
1086
1086
  3,
1087
1087
  n0,
1088
1088
  _CPCon,
1089
1089
  0,
1090
1090
  [_la],
1091
- [() => LambdaConnectorProvisioningConfig],
1091
+ [() => LambdaConnectorProvisioningConfig$],
1092
1092
  ];
1093
- var ConnectorRuntimeSetting = [
1093
+ var ConnectorRuntimeSetting$ = [
1094
1094
  3,
1095
1095
  n0,
1096
1096
  _CRS,
@@ -1098,18 +1098,18 @@ var ConnectorRuntimeSetting = [
1098
1098
  [_k, _dT, _iR, _l, _d, _s, _cSVO],
1099
1099
  [0, 0, 2, 0, 0, 0, 64 | 0],
1100
1100
  ];
1101
- var ConnectorServerException = [-3, n0, _CSE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1102
- schema.TypeRegistry.for(n0).registerError(ConnectorServerException, ConnectorServerException$1);
1103
- var CreateConnectorProfileRequest = [
1101
+ var ConnectorServerException$ = [-3, n0, _CSE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1102
+ schema.TypeRegistry.for(n0).registerError(ConnectorServerException$, ConnectorServerException);
1103
+ var CreateConnectorProfileRequest$ = [
1104
1104
  3,
1105
1105
  n0,
1106
1106
  _CCPR,
1107
1107
  0,
1108
1108
  [_cPN, _kA, _cT, _cL, _cMon, _cPCon, _cTl],
1109
- [0, 0, 0, 0, 0, [() => ConnectorProfileConfig, 0], [0, 4]],
1109
+ [0, 0, 0, 0, 0, [() => ConnectorProfileConfig$, 0], [0, 4]],
1110
1110
  ];
1111
- var CreateConnectorProfileResponse = [3, n0, _CCPRr, 0, [_cPA], [0]];
1112
- var CreateFlowRequest = [
1111
+ var CreateConnectorProfileResponse$ = [3, n0, _CCPRr, 0, [_cPA], [0]];
1112
+ var CreateFlowRequest$ = [
1113
1113
  3,
1114
1114
  n0,
1115
1115
  _CFR,
@@ -1119,18 +1119,18 @@ var CreateFlowRequest = [
1119
1119
  0,
1120
1120
  0,
1121
1121
  0,
1122
- () => TriggerConfig,
1123
- () => SourceFlowConfig,
1122
+ () => TriggerConfig$,
1123
+ () => SourceFlowConfig$,
1124
1124
  () => DestinationFlowConfigList,
1125
1125
  () => Tasks,
1126
1126
  128 | 0,
1127
- () => MetadataCatalogConfig,
1127
+ () => MetadataCatalogConfig$,
1128
1128
  [0, 4],
1129
1129
  ],
1130
1130
  ];
1131
- var CreateFlowResponse = [3, n0, _CFRr, 0, [_fA, _fS], [0, 0]];
1132
- var CustomAuthConfig = [3, n0, _CAC, 0, [_cAT, _aP], [0, () => AuthParameterList]];
1133
- var CustomAuthCredentials = [
1131
+ var CreateFlowResponse$ = [3, n0, _CFRr, 0, [_fA, _fS], [0, 0]];
1132
+ var CustomAuthConfig$ = [3, n0, _CAC, 0, [_cAT, _aP], [0, () => AuthParameterList]];
1133
+ var CustomAuthCredentials$ = [
1134
1134
  3,
1135
1135
  n0,
1136
1136
  _CACu,
@@ -1138,15 +1138,15 @@ var CustomAuthCredentials = [
1138
1138
  [_cAT, _cMr],
1139
1139
  [0, [() => CredentialsMap, 0]],
1140
1140
  ];
1141
- var CustomConnectorDestinationProperties = [
1141
+ var CustomConnectorDestinationProperties$ = [
1142
1142
  3,
1143
1143
  n0,
1144
1144
  _CCDP,
1145
1145
  0,
1146
1146
  [_eN, _eHC, _wOT, _iFN, _cP],
1147
- [0, () => ErrorHandlingConfig, 0, 64 | 0, 128 | 0],
1147
+ [0, () => ErrorHandlingConfig$, 0, 64 | 0, 128 | 0],
1148
1148
  ];
1149
- var CustomConnectorProfileCredentials = [
1149
+ var CustomConnectorProfileCredentials$ = [
1150
1150
  3,
1151
1151
  n0,
1152
1152
  _CCPC,
@@ -1154,31 +1154,31 @@ var CustomConnectorProfileCredentials = [
1154
1154
  [_aTu, _b, _oa, _aK, _cu],
1155
1155
  [
1156
1156
  0,
1157
- [() => BasicAuthCredentials, 0],
1158
- [() => OAuth2Credentials, 0],
1159
- [() => ApiKeyCredentials, 0],
1160
- [() => CustomAuthCredentials, 0],
1157
+ [() => BasicAuthCredentials$, 0],
1158
+ [() => OAuth2Credentials$, 0],
1159
+ [() => ApiKeyCredentials$, 0],
1160
+ [() => CustomAuthCredentials$, 0],
1161
1161
  ],
1162
1162
  ];
1163
- var CustomConnectorProfileProperties = [
1163
+ var CustomConnectorProfileProperties$ = [
1164
1164
  3,
1165
1165
  n0,
1166
1166
  _CCPP,
1167
1167
  0,
1168
1168
  [_pP, _oAP],
1169
- [128 | 0, () => OAuth2Properties],
1169
+ [128 | 0, () => OAuth2Properties$],
1170
1170
  ];
1171
- var CustomConnectorSourceProperties = [
1171
+ var CustomConnectorSourceProperties$ = [
1172
1172
  3,
1173
1173
  n0,
1174
1174
  _CCSP,
1175
1175
  0,
1176
1176
  [_eN, _cP, _dTA],
1177
- [0, 128 | 0, () => DataTransferApi],
1177
+ [0, 128 | 0, () => DataTransferApi$],
1178
1178
  ];
1179
- var CustomerProfilesDestinationProperties = [3, n0, _CPDP, 0, [_dN, _oTN], [0, 0]];
1180
- var CustomerProfilesMetadata = [3, n0, _CPM, 0, [], []];
1181
- var DatadogConnectorProfileCredentials = [
1179
+ var CustomerProfilesDestinationProperties$ = [3, n0, _CPDP, 0, [_dN, _oTN], [0, 0]];
1180
+ var CustomerProfilesMetadata$ = [3, n0, _CPM, 0, [], []];
1181
+ var DatadogConnectorProfileCredentials$ = [
1182
1182
  3,
1183
1183
  n0,
1184
1184
  _DCPC,
@@ -1186,15 +1186,15 @@ var DatadogConnectorProfileCredentials = [
1186
1186
  [_aK, _aKp],
1187
1187
  [[() => ApiKey, 0], 0],
1188
1188
  ];
1189
- var DatadogConnectorProfileProperties = [3, n0, _DCPP, 0, [_iU], [0]];
1190
- var DatadogMetadata = [3, n0, _DM, 0, [], []];
1191
- var DatadogSourceProperties = [3, n0, _DSP, 0, [_o], [0]];
1192
- var DataTransferApi = [3, n0, _DTA, 0, [_N, _Ty], [0, 0]];
1193
- var DeleteConnectorProfileRequest = [3, n0, _DCPR, 0, [_cPN, _fD], [0, 2]];
1194
- var DeleteConnectorProfileResponse = [3, n0, _DCPRe, 0, [], []];
1195
- var DeleteFlowRequest = [3, n0, _DFR, 0, [_fN, _fD], [0, 2]];
1196
- var DeleteFlowResponse = [3, n0, _DFRe, 0, [], []];
1197
- var DescribeConnectorEntityRequest = [
1189
+ var DatadogConnectorProfileProperties$ = [3, n0, _DCPP, 0, [_iU], [0]];
1190
+ var DatadogMetadata$ = [3, n0, _DM, 0, [], []];
1191
+ var DatadogSourceProperties$ = [3, n0, _DSP, 0, [_o], [0]];
1192
+ var DataTransferApi$ = [3, n0, _DTA, 0, [_N, _Ty], [0, 0]];
1193
+ var DeleteConnectorProfileRequest$ = [3, n0, _DCPR, 0, [_cPN, _fD], [0, 2]];
1194
+ var DeleteConnectorProfileResponse$ = [3, n0, _DCPRe, 0, [], []];
1195
+ var DeleteFlowRequest$ = [3, n0, _DFR, 0, [_fN, _fD], [0, 2]];
1196
+ var DeleteFlowResponse$ = [3, n0, _DFRe, 0, [], []];
1197
+ var DescribeConnectorEntityRequest$ = [
1198
1198
  3,
1199
1199
  n0,
1200
1200
  _DCER,
@@ -1202,7 +1202,7 @@ var DescribeConnectorEntityRequest = [
1202
1202
  [_cEN, _cT, _cPN, _aV],
1203
1203
  [0, 0, 0, 0],
1204
1204
  ];
1205
- var DescribeConnectorEntityResponse = [
1205
+ var DescribeConnectorEntityResponse$ = [
1206
1206
  3,
1207
1207
  n0,
1208
1208
  _DCERe,
@@ -1210,7 +1210,7 @@ var DescribeConnectorEntityResponse = [
1210
1210
  [_cEF],
1211
1211
  [() => ConnectorEntityFieldList],
1212
1212
  ];
1213
- var DescribeConnectorProfilesRequest = [
1213
+ var DescribeConnectorProfilesRequest$ = [
1214
1214
  3,
1215
1215
  n0,
1216
1216
  _DCPRes,
@@ -1218,7 +1218,7 @@ var DescribeConnectorProfilesRequest = [
1218
1218
  [_cPNo, _cT, _cL, _mR, _nT],
1219
1219
  [64 | 0, 0, 0, 1, 0],
1220
1220
  ];
1221
- var DescribeConnectorProfilesResponse = [
1221
+ var DescribeConnectorProfilesResponse$ = [
1222
1222
  3,
1223
1223
  n0,
1224
1224
  _DCPResc,
@@ -1226,10 +1226,17 @@ var DescribeConnectorProfilesResponse = [
1226
1226
  [_cPD, _nT],
1227
1227
  [() => ConnectorProfileDetailList, 0],
1228
1228
  ];
1229
- var DescribeConnectorRequest = [3, n0, _DCR, 0, [_cT, _cL], [0, 0]];
1230
- var DescribeConnectorResponse = [3, n0, _DCRe, 0, [_cC], [() => ConnectorConfiguration]];
1231
- var DescribeConnectorsRequest = [3, n0, _DCRes, 0, [_cTo, _mR, _nT], [64 | 0, 1, 0]];
1232
- var DescribeConnectorsResponse = [
1229
+ var DescribeConnectorRequest$ = [3, n0, _DCR, 0, [_cT, _cL], [0, 0]];
1230
+ var DescribeConnectorResponse$ = [
1231
+ 3,
1232
+ n0,
1233
+ _DCRe,
1234
+ 0,
1235
+ [_cC],
1236
+ [() => ConnectorConfiguration$],
1237
+ ];
1238
+ var DescribeConnectorsRequest$ = [3, n0, _DCRes, 0, [_cTo, _mR, _nT], [64 | 0, 1, 0]];
1239
+ var DescribeConnectorsResponse$ = [
1233
1240
  3,
1234
1241
  n0,
1235
1242
  _DCResc,
@@ -1237,8 +1244,8 @@ var DescribeConnectorsResponse = [
1237
1244
  [_cCo, _co, _nT],
1238
1245
  [() => ConnectorConfigurationsMap, () => ConnectorList, 0],
1239
1246
  ];
1240
- var DescribeFlowExecutionRecordsRequest = [3, n0, _DFERR, 0, [_fN, _mR, _nT], [0, 1, 0]];
1241
- var DescribeFlowExecutionRecordsResponse = [
1247
+ var DescribeFlowExecutionRecordsRequest$ = [3, n0, _DFERR, 0, [_fN, _mR, _nT], [0, 1, 0]];
1248
+ var DescribeFlowExecutionRecordsResponse$ = [
1242
1249
  3,
1243
1250
  n0,
1244
1251
  _DFERRe,
@@ -1246,8 +1253,8 @@ var DescribeFlowExecutionRecordsResponse = [
1246
1253
  [_fE, _nT],
1247
1254
  [() => FlowExecutionList, 0],
1248
1255
  ];
1249
- var DescribeFlowRequest = [3, n0, _DFRes, 0, [_fN], [0]];
1250
- var DescribeFlowResponse = [
1256
+ var DescribeFlowRequest$ = [3, n0, _DFRes, 0, [_fN], [0]];
1257
+ var DescribeFlowResponse$ = [
1251
1258
  3,
1252
1259
  n0,
1253
1260
  _DFResc,
@@ -1260,44 +1267,44 @@ var DescribeFlowResponse = [
1260
1267
  0,
1261
1268
  0,
1262
1269
  0,
1263
- () => SourceFlowConfig,
1270
+ () => SourceFlowConfig$,
1264
1271
  () => DestinationFlowConfigList,
1265
- () => ExecutionDetails,
1266
- () => TriggerConfig,
1272
+ () => ExecutionDetails$,
1273
+ () => TriggerConfig$,
1267
1274
  () => Tasks,
1268
1275
  4,
1269
1276
  4,
1270
1277
  0,
1271
1278
  0,
1272
1279
  128 | 0,
1273
- () => MetadataCatalogConfig,
1280
+ () => MetadataCatalogConfig$,
1274
1281
  () => MetadataCatalogDetails,
1275
1282
  1,
1276
1283
  ],
1277
1284
  ];
1278
- var DestinationConnectorProperties = [
1285
+ var DestinationConnectorProperties$ = [
1279
1286
  3,
1280
1287
  n0,
1281
1288
  _DCP,
1282
1289
  0,
1283
1290
  [_R, _S, _Sa, _Sn, _EB, _LM, _U, _H, _CP, _Z, _M, _CCu, _SAPOD],
1284
1291
  [
1285
- () => RedshiftDestinationProperties,
1286
- () => S3DestinationProperties,
1287
- () => SalesforceDestinationProperties,
1288
- () => SnowflakeDestinationProperties,
1289
- () => EventBridgeDestinationProperties,
1290
- () => LookoutMetricsDestinationProperties,
1291
- () => UpsolverDestinationProperties,
1292
- () => HoneycodeDestinationProperties,
1293
- () => CustomerProfilesDestinationProperties,
1294
- () => ZendeskDestinationProperties,
1295
- () => MarketoDestinationProperties,
1296
- () => CustomConnectorDestinationProperties,
1297
- () => SAPODataDestinationProperties,
1292
+ () => RedshiftDestinationProperties$,
1293
+ () => S3DestinationProperties$,
1294
+ () => SalesforceDestinationProperties$,
1295
+ () => SnowflakeDestinationProperties$,
1296
+ () => EventBridgeDestinationProperties$,
1297
+ () => LookoutMetricsDestinationProperties$,
1298
+ () => UpsolverDestinationProperties$,
1299
+ () => HoneycodeDestinationProperties$,
1300
+ () => CustomerProfilesDestinationProperties$,
1301
+ () => ZendeskDestinationProperties$,
1302
+ () => MarketoDestinationProperties$,
1303
+ () => CustomConnectorDestinationProperties$,
1304
+ () => SAPODataDestinationProperties$,
1298
1305
  ],
1299
1306
  ];
1300
- var DestinationFieldProperties = [
1307
+ var DestinationFieldProperties$ = [
1301
1308
  3,
1302
1309
  n0,
1303
1310
  _DFP,
@@ -1305,94 +1312,94 @@ var DestinationFieldProperties = [
1305
1312
  [_iC, _iN, _iUs, _iUsp, _iDOC, _sWO],
1306
1313
  [2, 2, 2, 2, 2, 64 | 0],
1307
1314
  ];
1308
- var DestinationFlowConfig = [
1315
+ var DestinationFlowConfig$ = [
1309
1316
  3,
1310
1317
  n0,
1311
1318
  _DFC,
1312
1319
  0,
1313
1320
  [_cT, _aV, _cPN, _dCP],
1314
- [0, 0, 0, () => DestinationConnectorProperties],
1321
+ [0, 0, 0, () => DestinationConnectorProperties$],
1315
1322
  ];
1316
- var DynatraceConnectorProfileCredentials = [3, n0, _DCPCy, 0, [_aTpi], [0]];
1317
- var DynatraceConnectorProfileProperties = [3, n0, _DCPPy, 0, [_iU], [0]];
1318
- var DynatraceMetadata = [3, n0, _DMy, 0, [], []];
1319
- var DynatraceSourceProperties = [3, n0, _DSPy, 0, [_o], [0]];
1320
- var ErrorHandlingConfig = [3, n0, _EHC, 0, [_fOFDE, _bP, _bN], [2, 0, 0]];
1321
- var ErrorInfo = [3, n0, _EI, 0, [_pFC, _eM], [1, 0]];
1322
- var EventBridgeDestinationProperties = [
1323
+ var DynatraceConnectorProfileCredentials$ = [3, n0, _DCPCy, 0, [_aTpi], [0]];
1324
+ var DynatraceConnectorProfileProperties$ = [3, n0, _DCPPy, 0, [_iU], [0]];
1325
+ var DynatraceMetadata$ = [3, n0, _DMy, 0, [], []];
1326
+ var DynatraceSourceProperties$ = [3, n0, _DSPy, 0, [_o], [0]];
1327
+ var ErrorHandlingConfig$ = [3, n0, _EHC, 0, [_fOFDE, _bP, _bN], [2, 0, 0]];
1328
+ var ErrorInfo$ = [3, n0, _EI, 0, [_pFC, _eM], [1, 0]];
1329
+ var EventBridgeDestinationProperties$ = [
1323
1330
  3,
1324
1331
  n0,
1325
1332
  _EBDP,
1326
1333
  0,
1327
1334
  [_o, _eHC],
1328
- [0, () => ErrorHandlingConfig],
1335
+ [0, () => ErrorHandlingConfig$],
1329
1336
  ];
1330
- var EventBridgeMetadata = [3, n0, _EBM, 0, [], []];
1331
- var ExecutionDetails = [3, n0, _ED, 0, [_mREM, _mRET, _mRES], [0, 4, 0]];
1332
- var ExecutionRecord = [
1337
+ var EventBridgeMetadata$ = [3, n0, _EBM, 0, [], []];
1338
+ var ExecutionDetails$ = [3, n0, _ED, 0, [_mREM, _mRET, _mRES], [0, 4, 0]];
1339
+ var ExecutionRecord$ = [
1333
1340
  3,
1334
1341
  n0,
1335
1342
  _ER,
1336
1343
  0,
1337
1344
  [_eIx, _eS, _eR, _sA, _lUA, _dPST, _dPET, _mCD],
1338
- [0, 0, () => ExecutionResult, 4, 4, 4, 4, () => MetadataCatalogDetails],
1345
+ [0, 0, () => ExecutionResult$, 4, 4, 4, 4, () => MetadataCatalogDetails],
1339
1346
  ];
1340
- var ExecutionResult = [
1347
+ var ExecutionResult$ = [
1341
1348
  3,
1342
1349
  n0,
1343
1350
  _ERx,
1344
1351
  0,
1345
1352
  [_eIr, _bPy, _bW, _rP, _nPP, _mPS],
1346
- [() => ErrorInfo, 1, 1, 1, 1, 1],
1353
+ [() => ErrorInfo$, 1, 1, 1, 1, 1],
1347
1354
  ];
1348
- var FieldTypeDetails = [
1355
+ var FieldTypeDetails$ = [
1349
1356
  3,
1350
1357
  n0,
1351
1358
  _FTD,
1352
1359
  0,
1353
1360
  [_fT, _fO, _sVu, _vRP, _sDF, _fVR, _fLR],
1354
- [0, 64 | 0, 64 | 0, 0, 0, () => Range, () => Range],
1361
+ [0, 64 | 0, 64 | 0, 0, 0, () => Range$, () => Range$],
1355
1362
  ];
1356
- var FlowDefinition = [
1363
+ var FlowDefinition$ = [
1357
1364
  3,
1358
1365
  n0,
1359
1366
  _FD,
1360
1367
  0,
1361
1368
  [_fA, _d, _fN, _fS, _sCT, _sCL, _dCT, _dCL, _tT, _cAre, _lUA, _cB, _lUB, _ta, _lRED],
1362
- [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 128 | 0, () => ExecutionDetails],
1369
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 128 | 0, () => ExecutionDetails$],
1363
1370
  ];
1364
- var GlueDataCatalogConfig = [3, n0, _GDCC, 0, [_rAo, _dNa, _tP], [0, 0, 0]];
1365
- var GoogleAnalyticsConnectorProfileCredentials = [
1371
+ var GlueDataCatalogConfig$ = [3, n0, _GDCC, 0, [_rAo, _dNa, _tP], [0, 0, 0]];
1372
+ var GoogleAnalyticsConnectorProfileCredentials$ = [
1366
1373
  3,
1367
1374
  n0,
1368
1375
  _GACPC,
1369
1376
  0,
1370
1377
  [_cI, _cS, _aTc, _rT, _oAR],
1371
- [0, [() => ClientSecret, 0], [() => AccessToken, 0], 0, () => ConnectorOAuthRequest],
1378
+ [0, [() => ClientSecret, 0], [() => AccessToken, 0], 0, () => ConnectorOAuthRequest$],
1372
1379
  ];
1373
- var GoogleAnalyticsConnectorProfileProperties = [3, n0, _GACPP, 0, [], []];
1374
- var GoogleAnalyticsMetadata = [3, n0, _GAM, 0, [_oAS], [64 | 0]];
1375
- var GoogleAnalyticsSourceProperties = [3, n0, _GASP, 0, [_o], [0]];
1376
- var HoneycodeConnectorProfileCredentials = [
1380
+ var GoogleAnalyticsConnectorProfileProperties$ = [3, n0, _GACPP, 0, [], []];
1381
+ var GoogleAnalyticsMetadata$ = [3, n0, _GAM, 0, [_oAS], [64 | 0]];
1382
+ var GoogleAnalyticsSourceProperties$ = [3, n0, _GASP, 0, [_o], [0]];
1383
+ var HoneycodeConnectorProfileCredentials$ = [
1377
1384
  3,
1378
1385
  n0,
1379
1386
  _HCPC,
1380
1387
  0,
1381
1388
  [_aTc, _rT, _oAR],
1382
- [[() => AccessToken, 0], 0, () => ConnectorOAuthRequest],
1389
+ [[() => AccessToken, 0], 0, () => ConnectorOAuthRequest$],
1383
1390
  ];
1384
- var HoneycodeConnectorProfileProperties = [3, n0, _HCPP, 0, [], []];
1385
- var HoneycodeDestinationProperties = [
1391
+ var HoneycodeConnectorProfileProperties$ = [3, n0, _HCPP, 0, [], []];
1392
+ var HoneycodeDestinationProperties$ = [
1386
1393
  3,
1387
1394
  n0,
1388
1395
  _HDP,
1389
1396
  0,
1390
1397
  [_o, _eHC],
1391
- [0, () => ErrorHandlingConfig],
1398
+ [0, () => ErrorHandlingConfig$],
1392
1399
  ];
1393
- var HoneycodeMetadata = [3, n0, _HM, 0, [_oAS], [64 | 0]];
1394
- var IncrementalPullConfig = [3, n0, _IPC, 0, [_dTFN], [0]];
1395
- var InforNexusConnectorProfileCredentials = [
1400
+ var HoneycodeMetadata$ = [3, n0, _HM, 0, [_oAS], [64 | 0]];
1401
+ var IncrementalPullConfig$ = [3, n0, _IPC, 0, [_dTFN], [0]];
1402
+ var InforNexusConnectorProfileCredentials$ = [
1396
1403
  3,
1397
1404
  n0,
1398
1405
  _INCPC,
@@ -1400,13 +1407,13 @@ var InforNexusConnectorProfileCredentials = [
1400
1407
  [_aKI, _uI, _sAK, _da],
1401
1408
  [[() => AccessKeyId, 0], 0, 0, 0],
1402
1409
  ];
1403
- var InforNexusConnectorProfileProperties = [3, n0, _INCPP, 0, [_iU], [0]];
1404
- var InforNexusMetadata = [3, n0, _INM, 0, [], []];
1405
- var InforNexusSourceProperties = [3, n0, _INSP, 0, [_o], [0]];
1406
- var InternalServerException = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
1407
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
1408
- var LambdaConnectorProvisioningConfig = [3, n0, _LCPC, 0, [_lA], [0]];
1409
- var ListConnectorEntitiesRequest = [
1410
+ var InforNexusConnectorProfileProperties$ = [3, n0, _INCPP, 0, [_iU], [0]];
1411
+ var InforNexusMetadata$ = [3, n0, _INM, 0, [], []];
1412
+ var InforNexusSourceProperties$ = [3, n0, _INSP, 0, [_o], [0]];
1413
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
1414
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
1415
+ var LambdaConnectorProvisioningConfig$ = [3, n0, _LCPC, 0, [_lA], [0]];
1416
+ var ListConnectorEntitiesRequest$ = [
1410
1417
  3,
1411
1418
  n0,
1412
1419
  _LCER,
@@ -1414,7 +1421,7 @@ var ListConnectorEntitiesRequest = [
1414
1421
  [_cPN, _cT, _eP, _aV, _mR, _nT],
1415
1422
  [0, 0, 0, 0, 1, 0],
1416
1423
  ];
1417
- var ListConnectorEntitiesResponse = [
1424
+ var ListConnectorEntitiesResponse$ = [
1418
1425
  3,
1419
1426
  n0,
1420
1427
  _LCERi,
@@ -1422,50 +1429,50 @@ var ListConnectorEntitiesResponse = [
1422
1429
  [_cEM, _nT],
1423
1430
  [() => ConnectorEntityMap, 0],
1424
1431
  ];
1425
- var ListConnectorsRequest = [3, n0, _LCR, 0, [_mR, _nT], [1, 0]];
1426
- var ListConnectorsResponse = [3, n0, _LCRi, 0, [_co, _nT], [() => ConnectorList, 0]];
1427
- var ListFlowsRequest = [3, n0, _LFR, 0, [_mR, _nT], [1, 0]];
1428
- var ListFlowsResponse = [3, n0, _LFRi, 0, [_f, _nT], [() => FlowList, 0]];
1429
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
1430
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
1431
- var LookoutMetricsDestinationProperties = [3, n0, _LMDP, 0, [], []];
1432
- var MarketoConnectorProfileCredentials = [
1432
+ var ListConnectorsRequest$ = [3, n0, _LCR, 0, [_mR, _nT], [1, 0]];
1433
+ var ListConnectorsResponse$ = [3, n0, _LCRi, 0, [_co, _nT], [() => ConnectorList, 0]];
1434
+ var ListFlowsRequest$ = [3, n0, _LFR, 0, [_mR, _nT], [1, 0]];
1435
+ var ListFlowsResponse$ = [3, n0, _LFRi, 0, [_f, _nT], [() => FlowList, 0]];
1436
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
1437
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
1438
+ var LookoutMetricsDestinationProperties$ = [3, n0, _LMDP, 0, [], []];
1439
+ var MarketoConnectorProfileCredentials$ = [
1433
1440
  3,
1434
1441
  n0,
1435
1442
  _MCPC,
1436
1443
  0,
1437
1444
  [_cI, _cS, _aTc, _oAR],
1438
- [0, [() => ClientSecret, 0], [() => AccessToken, 0], () => ConnectorOAuthRequest],
1445
+ [0, [() => ClientSecret, 0], [() => AccessToken, 0], () => ConnectorOAuthRequest$],
1439
1446
  ];
1440
- var MarketoConnectorProfileProperties = [3, n0, _MCPP, 0, [_iU], [0]];
1441
- var MarketoDestinationProperties = [
1447
+ var MarketoConnectorProfileProperties$ = [3, n0, _MCPP, 0, [_iU], [0]];
1448
+ var MarketoDestinationProperties$ = [
1442
1449
  3,
1443
1450
  n0,
1444
1451
  _MDP,
1445
1452
  0,
1446
1453
  [_o, _eHC],
1447
- [0, () => ErrorHandlingConfig],
1454
+ [0, () => ErrorHandlingConfig$],
1448
1455
  ];
1449
- var MarketoMetadata = [3, n0, _MM, 0, [], []];
1450
- var MarketoSourceProperties = [3, n0, _MSP, 0, [_o], [0]];
1451
- var MetadataCatalogConfig = [3, n0, _MCC, 0, [_gDC], [() => GlueDataCatalogConfig]];
1452
- var MetadataCatalogDetail = [
1456
+ var MarketoMetadata$ = [3, n0, _MM, 0, [], []];
1457
+ var MarketoSourceProperties$ = [3, n0, _MSP, 0, [_o], [0]];
1458
+ var MetadataCatalogConfig$ = [3, n0, _MCC, 0, [_gDC], [() => GlueDataCatalogConfig$]];
1459
+ var MetadataCatalogDetail$ = [
1453
1460
  3,
1454
1461
  n0,
1455
1462
  _MCD,
1456
1463
  0,
1457
1464
  [_cTa, _tN, _tRO, _pRO],
1458
- [0, 0, () => RegistrationOutput, () => RegistrationOutput],
1465
+ [0, 0, () => RegistrationOutput$, () => RegistrationOutput$],
1459
1466
  ];
1460
- var OAuth2Credentials = [
1467
+ var OAuth2Credentials$ = [
1461
1468
  3,
1462
1469
  n0,
1463
1470
  _OAC,
1464
1471
  0,
1465
1472
  [_cI, _cS, _aTc, _rT, _oAR],
1466
- [0, [() => ClientSecret, 0], [() => AccessToken, 0], 0, () => ConnectorOAuthRequest],
1473
+ [0, [() => ClientSecret, 0], [() => AccessToken, 0], 0, () => ConnectorOAuthRequest$],
1467
1474
  ];
1468
- var OAuth2CustomParameter = [
1475
+ var OAuth2CustomParameter$ = [
1469
1476
  3,
1470
1477
  n0,
1471
1478
  _OACP,
@@ -1473,7 +1480,7 @@ var OAuth2CustomParameter = [
1473
1480
  [_k, _iR, _l, _d, _iSF, _cSV, _ty],
1474
1481
  [0, 2, 0, 0, 2, 64 | 0, 0],
1475
1482
  ];
1476
- var OAuth2Defaults = [
1483
+ var OAuth2Defaults$ = [
1477
1484
  3,
1478
1485
  n0,
1479
1486
  _OAD,
@@ -1481,31 +1488,31 @@ var OAuth2Defaults = [
1481
1488
  [_oS, _tU, _aCU, _oGTS, _oCP],
1482
1489
  [64 | 0, 64 | 0, 64 | 0, 64 | 0, () => OAuth2CustomPropertiesList],
1483
1490
  ];
1484
- var OAuth2Properties = [3, n0, _OAP, 0, [_tUo, _oAGT, _tUCP], [0, 0, 128 | 0]];
1485
- var OAuthCredentials = [
1491
+ var OAuth2Properties$ = [3, n0, _OAP, 0, [_tUo, _oAGT, _tUCP], [0, 0, 128 | 0]];
1492
+ var OAuthCredentials$ = [
1486
1493
  3,
1487
1494
  n0,
1488
1495
  _OACu,
1489
1496
  0,
1490
1497
  [_cI, _cS, _aTc, _rT, _oAR],
1491
- [0, [() => ClientSecret, 0], [() => AccessToken, 0], 0, () => ConnectorOAuthRequest],
1498
+ [0, [() => ClientSecret, 0], [() => AccessToken, 0], 0, () => ConnectorOAuthRequest$],
1492
1499
  ];
1493
- var OAuthProperties = [3, n0, _OAPu, 0, [_tUo, _aCUu, _oAS], [0, 0, 64 | 0]];
1494
- var PardotConnectorProfileCredentials = [
1500
+ var OAuthProperties$ = [3, n0, _OAPu, 0, [_tUo, _aCUu, _oAS], [0, 0, 64 | 0]];
1501
+ var PardotConnectorProfileCredentials$ = [
1495
1502
  3,
1496
1503
  n0,
1497
1504
  _PCPC,
1498
1505
  0,
1499
1506
  [_aTc, _rT, _oAR, _cCA],
1500
- [[() => AccessToken, 0], 0, () => ConnectorOAuthRequest, [() => ClientCredentialsArn, 0]],
1507
+ [[() => AccessToken, 0], 0, () => ConnectorOAuthRequest$, [() => ClientCredentialsArn, 0]],
1501
1508
  ];
1502
- var PardotConnectorProfileProperties = [3, n0, _PCPP, 0, [_iU, _iSE, _bUI], [0, 2, 0]];
1503
- var PardotMetadata = [3, n0, _PM, 0, [], []];
1504
- var PardotSourceProperties = [3, n0, _PSP, 0, [_o], [0]];
1505
- var PrefixConfig = [3, n0, _PC, 0, [_pT, _pF, _pPH], [0, 0, 64 | 0]];
1506
- var PrivateConnectionProvisioningState = [3, n0, _PCPS, 0, [_st, _fM, _fC], [0, 0, 0]];
1507
- var Range = [3, n0, _Ra, 0, [_ma, _mi], [1, 1]];
1508
- var RedshiftConnectorProfileCredentials = [
1509
+ var PardotConnectorProfileProperties$ = [3, n0, _PCPP, 0, [_iU, _iSE, _bUI], [0, 2, 0]];
1510
+ var PardotMetadata$ = [3, n0, _PM, 0, [], []];
1511
+ var PardotSourceProperties$ = [3, n0, _PSP, 0, [_o], [0]];
1512
+ var PrefixConfig$ = [3, n0, _PC, 0, [_pT, _pF, _pPH], [0, 0, 64 | 0]];
1513
+ var PrivateConnectionProvisioningState$ = [3, n0, _PCPS, 0, [_st, _fM, _fC], [0, 0, 0]];
1514
+ var Range$ = [3, n0, _Ra, 0, [_ma, _mi], [1, 1]];
1515
+ var RedshiftConnectorProfileCredentials$ = [
1509
1516
  3,
1510
1517
  n0,
1511
1518
  _RCPC,
@@ -1513,7 +1520,7 @@ var RedshiftConnectorProfileCredentials = [
1513
1520
  [_u, _p],
1514
1521
  [0, [() => Password, 0]],
1515
1522
  ];
1516
- var RedshiftConnectorProfileProperties = [
1523
+ var RedshiftConnectorProfileProperties$ = [
1517
1524
  3,
1518
1525
  n0,
1519
1526
  _RCPP,
@@ -1521,26 +1528,26 @@ var RedshiftConnectorProfileProperties = [
1521
1528
  [_dU, _bN, _bP, _rAo, _dARA, _iRS, _cIl, _wN, _dNa],
1522
1529
  [0, 0, 0, 0, 0, 2, 0, 0, 0],
1523
1530
  ];
1524
- var RedshiftDestinationProperties = [
1531
+ var RedshiftDestinationProperties$ = [
1525
1532
  3,
1526
1533
  n0,
1527
1534
  _RDP,
1528
1535
  0,
1529
1536
  [_o, _iBN, _bP, _eHC],
1530
- [0, 0, 0, () => ErrorHandlingConfig],
1537
+ [0, 0, 0, () => ErrorHandlingConfig$],
1531
1538
  ];
1532
- var RedshiftMetadata = [3, n0, _RM, 0, [], []];
1533
- var RegisterConnectorRequest = [
1539
+ var RedshiftMetadata$ = [3, n0, _RM, 0, [], []];
1540
+ var RegisterConnectorRequest$ = [
1534
1541
  3,
1535
1542
  n0,
1536
1543
  _RCR,
1537
1544
  0,
1538
1545
  [_cL, _d, _cPT, _cPC, _cTl],
1539
- [0, 0, 0, () => ConnectorProvisioningConfig, [0, 4]],
1546
+ [0, 0, 0, () => ConnectorProvisioningConfig$, [0, 4]],
1540
1547
  ];
1541
- var RegisterConnectorResponse = [3, n0, _RCRe, 0, [_cA], [0]];
1542
- var RegistrationOutput = [3, n0, _RO, 0, [_m, _r, _st], [0, 0, 0]];
1543
- var ResetConnectorMetadataCacheRequest = [
1548
+ var RegisterConnectorResponse$ = [3, n0, _RCRe, 0, [_cA], [0]];
1549
+ var RegistrationOutput$ = [3, n0, _RO, 0, [_m, _r, _st], [0, 0, 0]];
1550
+ var ResetConnectorMetadataCacheRequest$ = [
1544
1551
  3,
1545
1552
  n0,
1546
1553
  _RCMCR,
@@ -1548,44 +1555,44 @@ var ResetConnectorMetadataCacheRequest = [
1548
1555
  [_cPN, _cT, _cEN, _eP, _aV],
1549
1556
  [0, 0, 0, 0, 0],
1550
1557
  ];
1551
- var ResetConnectorMetadataCacheResponse = [3, n0, _RCMCRe, 0, [], []];
1552
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
1553
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
1554
- var S3DestinationProperties = [
1558
+ var ResetConnectorMetadataCacheResponse$ = [3, n0, _RCMCRe, 0, [], []];
1559
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
1560
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
1561
+ var S3DestinationProperties$ = [
1555
1562
  3,
1556
1563
  n0,
1557
1564
  _SDP,
1558
1565
  0,
1559
1566
  [_bN, _bP, _sOFC],
1560
- [0, 0, () => S3OutputFormatConfig],
1567
+ [0, 0, () => S3OutputFormatConfig$],
1561
1568
  ];
1562
- var S3InputFormatConfig = [3, n0, _SIFC, 0, [_sIFT], [0]];
1563
- var S3Metadata = [3, n0, _SM, 0, [], []];
1564
- var S3OutputFormatConfig = [
1569
+ var S3InputFormatConfig$ = [3, n0, _SIFC, 0, [_sIFT], [0]];
1570
+ var S3Metadata$ = [3, n0, _SM, 0, [], []];
1571
+ var S3OutputFormatConfig$ = [
1565
1572
  3,
1566
1573
  n0,
1567
1574
  _SOFC,
1568
1575
  0,
1569
1576
  [_fTi, _pC, _aCg, _pSDT],
1570
- [0, () => PrefixConfig, () => AggregationConfig, 2],
1577
+ [0, () => PrefixConfig$, () => AggregationConfig$, 2],
1571
1578
  ];
1572
- var S3SourceProperties = [
1579
+ var S3SourceProperties$ = [
1573
1580
  3,
1574
1581
  n0,
1575
1582
  _SSP,
1576
1583
  0,
1577
1584
  [_bN, _bP, _sIFC],
1578
- [0, 0, () => S3InputFormatConfig],
1585
+ [0, 0, () => S3InputFormatConfig$],
1579
1586
  ];
1580
- var SalesforceConnectorProfileCredentials = [
1587
+ var SalesforceConnectorProfileCredentials$ = [
1581
1588
  3,
1582
1589
  n0,
1583
1590
  _SCPC,
1584
1591
  0,
1585
1592
  [_aTc, _rT, _oAR, _cCA, _oAGT, _jT],
1586
- [[() => AccessToken, 0], 0, () => ConnectorOAuthRequest, [() => ClientCredentialsArn, 0], 0, [() => JwtToken, 0]],
1593
+ [[() => AccessToken, 0], 0, () => ConnectorOAuthRequest$, [() => ClientCredentialsArn, 0], 0, [() => JwtToken, 0]],
1587
1594
  ];
1588
- var SalesforceConnectorProfileProperties = [
1595
+ var SalesforceConnectorProfileProperties$ = [
1589
1596
  3,
1590
1597
  n0,
1591
1598
  _SCPP,
@@ -1593,55 +1600,69 @@ var SalesforceConnectorProfileProperties = [
1593
1600
  [_iU, _iSE, _uPLFMAA],
1594
1601
  [0, 2, 2],
1595
1602
  ];
1596
- var SalesforceDestinationProperties = [
1603
+ var SalesforceDestinationProperties$ = [
1597
1604
  3,
1598
1605
  n0,
1599
1606
  _SDPa,
1600
1607
  0,
1601
1608
  [_o, _iFN, _eHC, _wOT, _dTA],
1602
- [0, 64 | 0, () => ErrorHandlingConfig, 0, 0],
1609
+ [0, 64 | 0, () => ErrorHandlingConfig$, 0, 0],
1610
+ ];
1611
+ var SalesforceMetadata$ = [
1612
+ 3,
1613
+ n0,
1614
+ _SMa,
1615
+ 0,
1616
+ [_oAS, _dTAa, _oGTS],
1617
+ [64 | 0, 64 | 0, 64 | 0],
1603
1618
  ];
1604
- var SalesforceMetadata = [3, n0, _SMa, 0, [_oAS, _dTAa, _oGTS], [64 | 0, 64 | 0, 64 | 0]];
1605
- var SalesforceSourceProperties = [3, n0, _SSPa, 0, [_o, _eDFU, _iDR, _dTA], [0, 2, 2, 0]];
1606
- var SAPODataConnectorProfileCredentials = [
1619
+ var SalesforceSourceProperties$ = [
1620
+ 3,
1621
+ n0,
1622
+ _SSPa,
1623
+ 0,
1624
+ [_o, _eDFU, _iDR, _dTA],
1625
+ [0, 2, 2, 0],
1626
+ ];
1627
+ var SAPODataConnectorProfileCredentials$ = [
1607
1628
  3,
1608
1629
  n0,
1609
1630
  _SAPODCPC,
1610
1631
  0,
1611
1632
  [_bAC, _oAC],
1612
1633
  [
1613
- [() => BasicAuthCredentials, 0],
1614
- [() => OAuthCredentials, 0],
1634
+ [() => BasicAuthCredentials$, 0],
1635
+ [() => OAuthCredentials$, 0],
1615
1636
  ],
1616
1637
  ];
1617
- var SAPODataConnectorProfileProperties = [
1638
+ var SAPODataConnectorProfileProperties$ = [
1618
1639
  3,
1619
1640
  n0,
1620
1641
  _SAPODCPP,
1621
1642
  0,
1622
1643
  [_aHU, _aSP, _pN, _cNl, _lL, _pLSN, _oAPu, _dSSO],
1623
- [0, 0, 1, 0, 0, 0, () => OAuthProperties, 2],
1644
+ [0, 0, 1, 0, 0, 0, () => OAuthProperties$, 2],
1624
1645
  ];
1625
- var SAPODataDestinationProperties = [
1646
+ var SAPODataDestinationProperties$ = [
1626
1647
  3,
1627
1648
  n0,
1628
1649
  _SAPODDP,
1629
1650
  0,
1630
1651
  [_oP, _sRHC, _iFN, _eHC, _wOT],
1631
- [0, () => SuccessResponseHandlingConfig, 64 | 0, () => ErrorHandlingConfig, 0],
1652
+ [0, () => SuccessResponseHandlingConfig$, 64 | 0, () => ErrorHandlingConfig$, 0],
1632
1653
  ];
1633
- var SAPODataMetadata = [3, n0, _SAPODM, 0, [], []];
1634
- var SAPODataPaginationConfig = [3, n0, _SAPODPC, 0, [_mPS], [1]];
1635
- var SAPODataParallelismConfig = [3, n0, _SAPODPCa, 0, [_mP], [1]];
1636
- var SAPODataSourceProperties = [
1654
+ var SAPODataMetadata$ = [3, n0, _SAPODM, 0, [], []];
1655
+ var SAPODataPaginationConfig$ = [3, n0, _SAPODPC, 0, [_mPS], [1]];
1656
+ var SAPODataParallelismConfig$ = [3, n0, _SAPODPCa, 0, [_mP], [1]];
1657
+ var SAPODataSourceProperties$ = [
1637
1658
  3,
1638
1659
  n0,
1639
1660
  _SAPODSP,
1640
1661
  0,
1641
1662
  [_oP, _pCa, _pCag],
1642
- [0, () => SAPODataParallelismConfig, () => SAPODataPaginationConfig],
1663
+ [0, () => SAPODataParallelismConfig$, () => SAPODataPaginationConfig$],
1643
1664
  ];
1644
- var ScheduledTriggerProperties = [
1665
+ var ScheduledTriggerProperties$ = [
1645
1666
  3,
1646
1667
  n0,
1647
1668
  _STP,
@@ -1649,35 +1670,35 @@ var ScheduledTriggerProperties = [
1649
1670
  [_sE, _dPM, _sST, _sET, _ti, _sOc, _fEF, _fEDT],
1650
1671
  [0, 0, 4, 4, 0, 1, 4, 1],
1651
1672
  ];
1652
- var ServiceNowConnectorProfileCredentials = [
1673
+ var ServiceNowConnectorProfileCredentials$ = [
1653
1674
  3,
1654
1675
  n0,
1655
1676
  _SNCPC,
1656
1677
  0,
1657
1678
  [_u, _p, _oACu],
1658
- [0, [() => Password, 0], [() => OAuth2Credentials, 0]],
1679
+ [0, [() => Password, 0], [() => OAuth2Credentials$, 0]],
1659
1680
  ];
1660
- var ServiceNowConnectorProfileProperties = [3, n0, _SNCPP, 0, [_iU], [0]];
1661
- var ServiceNowMetadata = [3, n0, _SNM, 0, [], []];
1662
- var ServiceNowSourceProperties = [3, n0, _SNSP, 0, [_o], [0]];
1663
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
1664
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1665
- var SingularConnectorProfileCredentials = [3, n0, _SCPCi, 0, [_aK], [[() => ApiKey, 0]]];
1666
- var SingularConnectorProfileProperties = [3, n0, _SCPPi, 0, [], []];
1667
- var SingularMetadata = [3, n0, _SMi, 0, [], []];
1668
- var SingularSourceProperties = [3, n0, _SSPi, 0, [_o], [0]];
1669
- var SlackConnectorProfileCredentials = [
1681
+ var ServiceNowConnectorProfileProperties$ = [3, n0, _SNCPP, 0, [_iU], [0]];
1682
+ var ServiceNowMetadata$ = [3, n0, _SNM, 0, [], []];
1683
+ var ServiceNowSourceProperties$ = [3, n0, _SNSP, 0, [_o], [0]];
1684
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
1685
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
1686
+ var SingularConnectorProfileCredentials$ = [3, n0, _SCPCi, 0, [_aK], [[() => ApiKey, 0]]];
1687
+ var SingularConnectorProfileProperties$ = [3, n0, _SCPPi, 0, [], []];
1688
+ var SingularMetadata$ = [3, n0, _SMi, 0, [], []];
1689
+ var SingularSourceProperties$ = [3, n0, _SSPi, 0, [_o], [0]];
1690
+ var SlackConnectorProfileCredentials$ = [
1670
1691
  3,
1671
1692
  n0,
1672
1693
  _SCPCl,
1673
1694
  0,
1674
1695
  [_cI, _cS, _aTc, _oAR],
1675
- [0, [() => ClientSecret, 0], [() => AccessToken, 0], () => ConnectorOAuthRequest],
1696
+ [0, [() => ClientSecret, 0], [() => AccessToken, 0], () => ConnectorOAuthRequest$],
1676
1697
  ];
1677
- var SlackConnectorProfileProperties = [3, n0, _SCPPl, 0, [_iU], [0]];
1678
- var SlackMetadata = [3, n0, _SMl, 0, [_oAS], [64 | 0]];
1679
- var SlackSourceProperties = [3, n0, _SSPl, 0, [_o], [0]];
1680
- var SnowflakeConnectorProfileCredentials = [
1698
+ var SlackConnectorProfileProperties$ = [3, n0, _SCPPl, 0, [_iU], [0]];
1699
+ var SlackMetadata$ = [3, n0, _SMl, 0, [_oAS], [64 | 0]];
1700
+ var SlackSourceProperties$ = [3, n0, _SSPl, 0, [_o], [0]];
1701
+ var SnowflakeConnectorProfileCredentials$ = [
1681
1702
  3,
1682
1703
  n0,
1683
1704
  _SCPCn,
@@ -1685,7 +1706,7 @@ var SnowflakeConnectorProfileCredentials = [
1685
1706
  [_u, _p],
1686
1707
  [0, [() => Password, 0]],
1687
1708
  ];
1688
- var SnowflakeConnectorProfileProperties = [
1709
+ var SnowflakeConnectorProfileProperties$ = [
1689
1710
  3,
1690
1711
  n0,
1691
1712
  _SCPPn,
@@ -1693,69 +1714,69 @@ var SnowflakeConnectorProfileProperties = [
1693
1714
  [_w, _sta, _bN, _bP, _pLSN, _aN, _re],
1694
1715
  [0, 0, 0, 0, 0, 0, 0],
1695
1716
  ];
1696
- var SnowflakeDestinationProperties = [
1717
+ var SnowflakeDestinationProperties$ = [
1697
1718
  3,
1698
1719
  n0,
1699
1720
  _SDPn,
1700
1721
  0,
1701
1722
  [_o, _iBN, _bP, _eHC],
1702
- [0, 0, 0, () => ErrorHandlingConfig],
1723
+ [0, 0, 0, () => ErrorHandlingConfig$],
1703
1724
  ];
1704
- var SnowflakeMetadata = [3, n0, _SMn, 0, [_sR], [64 | 0]];
1705
- var SourceConnectorProperties = [
1725
+ var SnowflakeMetadata$ = [3, n0, _SMn, 0, [_sR], [64 | 0]];
1726
+ var SourceConnectorProperties$ = [
1706
1727
  3,
1707
1728
  n0,
1708
1729
  _SCP,
1709
1730
  0,
1710
1731
  [_A, _D, _Dy, _GA, _IN, _M, _S, _Sa, _SN, _Si, _Sl, _T, _V, _Z, _SAPOD, _CCu, _Pa],
1711
1732
  [
1712
- () => AmplitudeSourceProperties,
1713
- () => DatadogSourceProperties,
1714
- () => DynatraceSourceProperties,
1715
- () => GoogleAnalyticsSourceProperties,
1716
- () => InforNexusSourceProperties,
1717
- () => MarketoSourceProperties,
1718
- () => S3SourceProperties,
1719
- () => SalesforceSourceProperties,
1720
- () => ServiceNowSourceProperties,
1721
- () => SingularSourceProperties,
1722
- () => SlackSourceProperties,
1723
- () => TrendmicroSourceProperties,
1724
- () => VeevaSourceProperties,
1725
- () => ZendeskSourceProperties,
1726
- () => SAPODataSourceProperties,
1727
- () => CustomConnectorSourceProperties,
1728
- () => PardotSourceProperties,
1733
+ () => AmplitudeSourceProperties$,
1734
+ () => DatadogSourceProperties$,
1735
+ () => DynatraceSourceProperties$,
1736
+ () => GoogleAnalyticsSourceProperties$,
1737
+ () => InforNexusSourceProperties$,
1738
+ () => MarketoSourceProperties$,
1739
+ () => S3SourceProperties$,
1740
+ () => SalesforceSourceProperties$,
1741
+ () => ServiceNowSourceProperties$,
1742
+ () => SingularSourceProperties$,
1743
+ () => SlackSourceProperties$,
1744
+ () => TrendmicroSourceProperties$,
1745
+ () => VeevaSourceProperties$,
1746
+ () => ZendeskSourceProperties$,
1747
+ () => SAPODataSourceProperties$,
1748
+ () => CustomConnectorSourceProperties$,
1749
+ () => PardotSourceProperties$,
1729
1750
  ],
1730
1751
  ];
1731
- var SourceFieldProperties = [3, n0, _SFP, 0, [_iRs, _iQ, _iTFFIQ], [2, 2, 2]];
1732
- var SourceFlowConfig = [
1752
+ var SourceFieldProperties$ = [3, n0, _SFP, 0, [_iRs, _iQ, _iTFFIQ], [2, 2, 2]];
1753
+ var SourceFlowConfig$ = [
1733
1754
  3,
1734
1755
  n0,
1735
1756
  _SFC,
1736
1757
  0,
1737
1758
  [_cT, _aV, _cPN, _sCP, _iPC],
1738
- [0, 0, 0, () => SourceConnectorProperties, () => IncrementalPullConfig],
1759
+ [0, 0, 0, () => SourceConnectorProperties$, () => IncrementalPullConfig$],
1739
1760
  ];
1740
- var StartFlowRequest = [3, n0, _SFR, 0, [_fN, _cTl], [0, [0, 4]]];
1741
- var StartFlowResponse = [3, n0, _SFRt, 0, [_fA, _fS, _eIx], [0, 0, 0]];
1742
- var StopFlowRequest = [3, n0, _SFRto, 0, [_fN], [0]];
1743
- var StopFlowResponse = [3, n0, _SFRtop, 0, [_fA, _fS], [0, 0]];
1744
- var SuccessResponseHandlingConfig = [3, n0, _SRHC, 0, [_bP, _bN], [0, 0]];
1745
- var SupportedFieldTypeDetails = [3, n0, _SFTD, 0, [_v], [() => FieldTypeDetails]];
1746
- var TagResourceRequest = [3, n0, _TRR, 0, [_rAe, _ta], [[0, 1], 128 | 0]];
1747
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
1748
- var Task = [
1761
+ var StartFlowRequest$ = [3, n0, _SFR, 0, [_fN, _cTl], [0, [0, 4]]];
1762
+ var StartFlowResponse$ = [3, n0, _SFRt, 0, [_fA, _fS, _eIx], [0, 0, 0]];
1763
+ var StopFlowRequest$ = [3, n0, _SFRto, 0, [_fN], [0]];
1764
+ var StopFlowResponse$ = [3, n0, _SFRtop, 0, [_fA, _fS], [0, 0]];
1765
+ var SuccessResponseHandlingConfig$ = [3, n0, _SRHC, 0, [_bP, _bN], [0, 0]];
1766
+ var SupportedFieldTypeDetails$ = [3, n0, _SFTD, 0, [_v], [() => FieldTypeDetails$]];
1767
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rAe, _ta], [[0, 1], 128 | 0]];
1768
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
1769
+ var Task$ = [
1749
1770
  3,
1750
1771
  n0,
1751
1772
  _Ta,
1752
1773
  0,
1753
1774
  [_sF, _cOo, _dF, _tTa, _tPa],
1754
- [64 | 0, () => ConnectorOperator, 0, 0, 128 | 0],
1775
+ [64 | 0, () => ConnectorOperator$, 0, 0, 128 | 0],
1755
1776
  ];
1756
- var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
1757
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
1758
- var TrendmicroConnectorProfileCredentials = [
1777
+ var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
1778
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
1779
+ var TrendmicroConnectorProfileCredentials$ = [
1759
1780
  3,
1760
1781
  n0,
1761
1782
  _TCPC,
@@ -1763,16 +1784,16 @@ var TrendmicroConnectorProfileCredentials = [
1763
1784
  [_aSK],
1764
1785
  [[() => ApiSecretKey, 0]],
1765
1786
  ];
1766
- var TrendmicroConnectorProfileProperties = [3, n0, _TCPP, 0, [], []];
1767
- var TrendmicroMetadata = [3, n0, _TM, 0, [], []];
1768
- var TrendmicroSourceProperties = [3, n0, _TSP, 0, [_o], [0]];
1769
- var TriggerConfig = [3, n0, _TC, 0, [_tT, _tPr], [0, () => TriggerProperties]];
1770
- var TriggerProperties = [3, n0, _TP, 0, [_Sc], [() => ScheduledTriggerProperties]];
1771
- var UnregisterConnectorRequest = [3, n0, _UCR, 0, [_cL, _fD], [0, 2]];
1772
- var UnregisterConnectorResponse = [3, n0, _UCRn, 0, [], []];
1773
- var UnsupportedOperationException = [-3, n0, _UOE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1774
- schema.TypeRegistry.for(n0).registerError(UnsupportedOperationException, UnsupportedOperationException$1);
1775
- var UntagResourceRequest = [
1787
+ var TrendmicroConnectorProfileProperties$ = [3, n0, _TCPP, 0, [], []];
1788
+ var TrendmicroMetadata$ = [3, n0, _TM, 0, [], []];
1789
+ var TrendmicroSourceProperties$ = [3, n0, _TSP, 0, [_o], [0]];
1790
+ var TriggerConfig$ = [3, n0, _TC, 0, [_tT, _tPr], [0, () => TriggerProperties$]];
1791
+ var TriggerProperties$ = [3, n0, _TP, 0, [_Sc], [() => ScheduledTriggerProperties$]];
1792
+ var UnregisterConnectorRequest$ = [3, n0, _UCR, 0, [_cL, _fD], [0, 2]];
1793
+ var UnregisterConnectorResponse$ = [3, n0, _UCRn, 0, [], []];
1794
+ var UnsupportedOperationException$ = [-3, n0, _UOE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1795
+ schema.TypeRegistry.for(n0).registerError(UnsupportedOperationException$, UnsupportedOperationException);
1796
+ var UntagResourceRequest$ = [
1776
1797
  3,
1777
1798
  n0,
1778
1799
  _URR,
@@ -1783,26 +1804,26 @@ var UntagResourceRequest = [
1783
1804
  [64 | 0, { [_hQ]: _tK }],
1784
1805
  ],
1785
1806
  ];
1786
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
1787
- var UpdateConnectorProfileRequest = [
1807
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
1808
+ var UpdateConnectorProfileRequest$ = [
1788
1809
  3,
1789
1810
  n0,
1790
1811
  _UCPR,
1791
1812
  0,
1792
1813
  [_cPN, _cMon, _cPCon, _cTl],
1793
- [0, 0, [() => ConnectorProfileConfig, 0], [0, 4]],
1814
+ [0, 0, [() => ConnectorProfileConfig$, 0], [0, 4]],
1794
1815
  ];
1795
- var UpdateConnectorProfileResponse = [3, n0, _UCPRp, 0, [_cPA], [0]];
1796
- var UpdateConnectorRegistrationRequest = [
1816
+ var UpdateConnectorProfileResponse$ = [3, n0, _UCPRp, 0, [_cPA], [0]];
1817
+ var UpdateConnectorRegistrationRequest$ = [
1797
1818
  3,
1798
1819
  n0,
1799
1820
  _UCRR,
1800
1821
  0,
1801
1822
  [_cL, _d, _cPC, _cTl],
1802
- [0, 0, () => ConnectorProvisioningConfig, [0, 4]],
1823
+ [0, 0, () => ConnectorProvisioningConfig$, [0, 4]],
1803
1824
  ];
1804
- var UpdateConnectorRegistrationResponse = [3, n0, _UCRRp, 0, [_cA], [0]];
1805
- var UpdateFlowRequest = [
1825
+ var UpdateConnectorRegistrationResponse$ = [3, n0, _UCRRp, 0, [_cA], [0]];
1826
+ var UpdateFlowRequest$ = [
1806
1827
  3,
1807
1828
  n0,
1808
1829
  _UFR,
@@ -1811,35 +1832,35 @@ var UpdateFlowRequest = [
1811
1832
  [
1812
1833
  0,
1813
1834
  0,
1814
- () => TriggerConfig,
1815
- () => SourceFlowConfig,
1835
+ () => TriggerConfig$,
1836
+ () => SourceFlowConfig$,
1816
1837
  () => DestinationFlowConfigList,
1817
1838
  () => Tasks,
1818
- () => MetadataCatalogConfig,
1839
+ () => MetadataCatalogConfig$,
1819
1840
  [0, 4],
1820
1841
  ],
1821
1842
  ];
1822
- var UpdateFlowResponse = [3, n0, _UFRp, 0, [_fS], [0]];
1823
- var UpsolverDestinationProperties = [
1843
+ var UpdateFlowResponse$ = [3, n0, _UFRp, 0, [_fS], [0]];
1844
+ var UpsolverDestinationProperties$ = [
1824
1845
  3,
1825
1846
  n0,
1826
1847
  _UDP,
1827
1848
  0,
1828
1849
  [_bN, _bP, _sOFC],
1829
- [0, 0, () => UpsolverS3OutputFormatConfig],
1850
+ [0, 0, () => UpsolverS3OutputFormatConfig$],
1830
1851
  ];
1831
- var UpsolverMetadata = [3, n0, _UM, 0, [], []];
1832
- var UpsolverS3OutputFormatConfig = [
1852
+ var UpsolverMetadata$ = [3, n0, _UM, 0, [], []];
1853
+ var UpsolverS3OutputFormatConfig$ = [
1833
1854
  3,
1834
1855
  n0,
1835
1856
  _USOFC,
1836
1857
  0,
1837
1858
  [_fTi, _pC, _aCg],
1838
- [0, () => PrefixConfig, () => AggregationConfig],
1859
+ [0, () => PrefixConfig$, () => AggregationConfig$],
1839
1860
  ];
1840
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1841
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1842
- var VeevaConnectorProfileCredentials = [
1861
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1862
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1863
+ var VeevaConnectorProfileCredentials$ = [
1843
1864
  3,
1844
1865
  n0,
1845
1866
  _VCPC,
@@ -1847,9 +1868,9 @@ var VeevaConnectorProfileCredentials = [
1847
1868
  [_u, _p],
1848
1869
  [0, [() => Password, 0]],
1849
1870
  ];
1850
- var VeevaConnectorProfileProperties = [3, n0, _VCPP, 0, [_iU], [0]];
1851
- var VeevaMetadata = [3, n0, _VM, 0, [], []];
1852
- var VeevaSourceProperties = [
1871
+ var VeevaConnectorProfileProperties$ = [3, n0, _VCPP, 0, [_iU], [0]];
1872
+ var VeevaMetadata$ = [3, n0, _VM, 0, [], []];
1873
+ var VeevaSourceProperties$ = [
1853
1874
  3,
1854
1875
  n0,
1855
1876
  _VSP,
@@ -1857,250 +1878,243 @@ var VeevaSourceProperties = [
1857
1878
  [_o, _dTo, _iSFn, _iRn, _iAV],
1858
1879
  [0, 0, 2, 2, 2],
1859
1880
  ];
1860
- var ZendeskConnectorProfileCredentials = [
1881
+ var ZendeskConnectorProfileCredentials$ = [
1861
1882
  3,
1862
1883
  n0,
1863
1884
  _ZCPC,
1864
1885
  0,
1865
1886
  [_cI, _cS, _aTc, _oAR],
1866
- [0, [() => ClientSecret, 0], [() => AccessToken, 0], () => ConnectorOAuthRequest],
1887
+ [0, [() => ClientSecret, 0], [() => AccessToken, 0], () => ConnectorOAuthRequest$],
1867
1888
  ];
1868
- var ZendeskConnectorProfileProperties = [3, n0, _ZCPP, 0, [_iU], [0]];
1869
- var ZendeskDestinationProperties = [
1889
+ var ZendeskConnectorProfileProperties$ = [3, n0, _ZCPP, 0, [_iU], [0]];
1890
+ var ZendeskDestinationProperties$ = [
1870
1891
  3,
1871
1892
  n0,
1872
1893
  _ZDP,
1873
1894
  0,
1874
1895
  [_o, _iFN, _eHC, _wOT],
1875
- [0, 64 | 0, () => ErrorHandlingConfig, 0],
1876
- ];
1877
- var ZendeskMetadata = [3, n0, _ZM, 0, [_oAS], [64 | 0]];
1878
- var ZendeskSourceProperties = [3, n0, _ZSP, 0, [_o], [0]];
1879
- var AppflowServiceException = [-3, _sm, "AppflowServiceException", 0, [], []];
1880
- schema.TypeRegistry.for(_sm).registerError(AppflowServiceException, AppflowServiceException$1);
1881
- var AuthParameterList = [1, n0, _APL, 0, () => AuthParameter];
1882
- var ConnectorEntityFieldList = [1, n0, _CEFL, 0, () => ConnectorEntityField];
1883
- var ConnectorEntityList = [1, n0, _CEL, 0, () => ConnectorEntity];
1884
- var ConnectorList = [1, n0, _CL, 0, () => ConnectorDetail];
1885
- var ConnectorProfileDetailList = [1, n0, _CPDL, 0, () => ConnectorProfile];
1886
- var ConnectorRuntimeSettingList = [1, n0, _CRSL, 0, () => ConnectorRuntimeSetting];
1887
- var CustomAuthConfigList = [1, n0, _CACL, 0, () => CustomAuthConfig];
1888
- var DestinationFlowConfigList = [1, n0, _DFCL, 0, () => DestinationFlowConfig];
1889
- var FlowExecutionList = [1, n0, _FEL, 0, () => ExecutionRecord];
1890
- var FlowList = [1, n0, _FL, 0, () => FlowDefinition];
1891
- var MetadataCatalogDetails = [1, n0, _MCDe, 0, () => MetadataCatalogDetail];
1892
- var OAuth2CustomPropertiesList = [1, n0, _OACPL, 0, () => OAuth2CustomParameter];
1893
- var SupportedDataTransferApis = [1, n0, _SDTA, 0, () => DataTransferApi];
1894
- var Tasks = [1, n0, _Tas, 0, () => Task];
1895
- var ConnectorConfigurationsMap = [2, n0, _CCM, 0, 0, () => ConnectorConfiguration];
1896
+ [0, 64 | 0, () => ErrorHandlingConfig$, 0],
1897
+ ];
1898
+ var ZendeskMetadata$ = [3, n0, _ZM, 0, [_oAS], [64 | 0]];
1899
+ var ZendeskSourceProperties$ = [3, n0, _ZSP, 0, [_o], [0]];
1900
+ var AppflowServiceException$ = [-3, _sm, "AppflowServiceException", 0, [], []];
1901
+ schema.TypeRegistry.for(_sm).registerError(AppflowServiceException$, AppflowServiceException);
1902
+ var AuthParameterList = [1, n0, _APL, 0, () => AuthParameter$];
1903
+ var ConnectorEntityFieldList = [1, n0, _CEFL, 0, () => ConnectorEntityField$];
1904
+ var ConnectorEntityList = [1, n0, _CEL, 0, () => ConnectorEntity$];
1905
+ var ConnectorList = [1, n0, _CL, 0, () => ConnectorDetail$];
1906
+ var ConnectorProfileDetailList = [1, n0, _CPDL, 0, () => ConnectorProfile$];
1907
+ var ConnectorRuntimeSettingList = [1, n0, _CRSL, 0, () => ConnectorRuntimeSetting$];
1908
+ var CustomAuthConfigList = [1, n0, _CACL, 0, () => CustomAuthConfig$];
1909
+ var DestinationFlowConfigList = [1, n0, _DFCL, 0, () => DestinationFlowConfig$];
1910
+ var FlowExecutionList = [1, n0, _FEL, 0, () => ExecutionRecord$];
1911
+ var FlowList = [1, n0, _FL, 0, () => FlowDefinition$];
1912
+ var MetadataCatalogDetails = [1, n0, _MCDe, 0, () => MetadataCatalogDetail$];
1913
+ var OAuth2CustomPropertiesList = [1, n0, _OACPL, 0, () => OAuth2CustomParameter$];
1914
+ var SupportedDataTransferApis = [1, n0, _SDTA, 0, () => DataTransferApi$];
1915
+ var Tasks = [1, n0, _Tas, 0, () => Task$];
1916
+ var ConnectorConfigurationsMap = [2, n0, _CCM, 0, 0, () => ConnectorConfiguration$];
1896
1917
  var ConnectorEntityMap = [2, n0, _CEM, 0, 0, () => ConnectorEntityList];
1897
- var CredentialsMap = [
1898
- 2,
1899
- n0,
1900
- _CMr,
1901
- 0,
1902
- [() => CredentialsMapKey, 0],
1903
- [() => CredentialsMapValue, 0],
1904
- ];
1905
- var CancelFlowExecutions = [
1918
+ var CredentialsMap = [2, n0, _CMr, 0, [() => CredentialsMapKey, 0], [() => CredentialsMapValue, 0]];
1919
+ var CancelFlowExecutions$ = [
1906
1920
  9,
1907
1921
  n0,
1908
1922
  _CFE,
1909
1923
  { [_h]: ["POST", "/cancel-flow-executions", 200] },
1910
- () => CancelFlowExecutionsRequest,
1911
- () => CancelFlowExecutionsResponse,
1924
+ () => CancelFlowExecutionsRequest$,
1925
+ () => CancelFlowExecutionsResponse$,
1912
1926
  ];
1913
- var CreateConnectorProfile = [
1927
+ var CreateConnectorProfile$ = [
1914
1928
  9,
1915
1929
  n0,
1916
1930
  _CCP,
1917
1931
  { [_h]: ["POST", "/create-connector-profile", 200] },
1918
- () => CreateConnectorProfileRequest,
1919
- () => CreateConnectorProfileResponse,
1932
+ () => CreateConnectorProfileRequest$,
1933
+ () => CreateConnectorProfileResponse$,
1920
1934
  ];
1921
- var CreateFlow = [
1935
+ var CreateFlow$ = [
1922
1936
  9,
1923
1937
  n0,
1924
1938
  _CF,
1925
1939
  { [_h]: ["POST", "/create-flow", 200] },
1926
- () => CreateFlowRequest,
1927
- () => CreateFlowResponse,
1940
+ () => CreateFlowRequest$,
1941
+ () => CreateFlowResponse$,
1928
1942
  ];
1929
- var DeleteConnectorProfile = [
1943
+ var DeleteConnectorProfile$ = [
1930
1944
  9,
1931
1945
  n0,
1932
1946
  _DCPe,
1933
1947
  { [_h]: ["POST", "/delete-connector-profile", 200] },
1934
- () => DeleteConnectorProfileRequest,
1935
- () => DeleteConnectorProfileResponse,
1948
+ () => DeleteConnectorProfileRequest$,
1949
+ () => DeleteConnectorProfileResponse$,
1936
1950
  ];
1937
- var DeleteFlow = [
1951
+ var DeleteFlow$ = [
1938
1952
  9,
1939
1953
  n0,
1940
1954
  _DF,
1941
1955
  { [_h]: ["POST", "/delete-flow", 200] },
1942
- () => DeleteFlowRequest,
1943
- () => DeleteFlowResponse,
1956
+ () => DeleteFlowRequest$,
1957
+ () => DeleteFlowResponse$,
1944
1958
  ];
1945
- var DescribeConnector = [
1959
+ var DescribeConnector$ = [
1946
1960
  9,
1947
1961
  n0,
1948
1962
  _DC,
1949
1963
  { [_h]: ["POST", "/describe-connector", 200] },
1950
- () => DescribeConnectorRequest,
1951
- () => DescribeConnectorResponse,
1964
+ () => DescribeConnectorRequest$,
1965
+ () => DescribeConnectorResponse$,
1952
1966
  ];
1953
- var DescribeConnectorEntity = [
1967
+ var DescribeConnectorEntity$ = [
1954
1968
  9,
1955
1969
  n0,
1956
1970
  _DCE,
1957
1971
  { [_h]: ["POST", "/describe-connector-entity", 200] },
1958
- () => DescribeConnectorEntityRequest,
1959
- () => DescribeConnectorEntityResponse,
1972
+ () => DescribeConnectorEntityRequest$,
1973
+ () => DescribeConnectorEntityResponse$,
1960
1974
  ];
1961
- var DescribeConnectorProfiles = [
1975
+ var DescribeConnectorProfiles$ = [
1962
1976
  9,
1963
1977
  n0,
1964
1978
  _DCPes,
1965
1979
  { [_h]: ["POST", "/describe-connector-profiles", 200] },
1966
- () => DescribeConnectorProfilesRequest,
1967
- () => DescribeConnectorProfilesResponse,
1980
+ () => DescribeConnectorProfilesRequest$,
1981
+ () => DescribeConnectorProfilesResponse$,
1968
1982
  ];
1969
- var DescribeConnectors = [
1983
+ var DescribeConnectors$ = [
1970
1984
  9,
1971
1985
  n0,
1972
1986
  _DCe,
1973
1987
  { [_h]: ["POST", "/describe-connectors", 200] },
1974
- () => DescribeConnectorsRequest,
1975
- () => DescribeConnectorsResponse,
1988
+ () => DescribeConnectorsRequest$,
1989
+ () => DescribeConnectorsResponse$,
1976
1990
  ];
1977
- var DescribeFlow = [
1991
+ var DescribeFlow$ = [
1978
1992
  9,
1979
1993
  n0,
1980
1994
  _DFe,
1981
1995
  { [_h]: ["POST", "/describe-flow", 200] },
1982
- () => DescribeFlowRequest,
1983
- () => DescribeFlowResponse,
1996
+ () => DescribeFlowRequest$,
1997
+ () => DescribeFlowResponse$,
1984
1998
  ];
1985
- var DescribeFlowExecutionRecords = [
1999
+ var DescribeFlowExecutionRecords$ = [
1986
2000
  9,
1987
2001
  n0,
1988
2002
  _DFER,
1989
2003
  { [_h]: ["POST", "/describe-flow-execution-records", 200] },
1990
- () => DescribeFlowExecutionRecordsRequest,
1991
- () => DescribeFlowExecutionRecordsResponse,
2004
+ () => DescribeFlowExecutionRecordsRequest$,
2005
+ () => DescribeFlowExecutionRecordsResponse$,
1992
2006
  ];
1993
- var ListConnectorEntities = [
2007
+ var ListConnectorEntities$ = [
1994
2008
  9,
1995
2009
  n0,
1996
2010
  _LCE,
1997
2011
  { [_h]: ["POST", "/list-connector-entities", 200] },
1998
- () => ListConnectorEntitiesRequest,
1999
- () => ListConnectorEntitiesResponse,
2012
+ () => ListConnectorEntitiesRequest$,
2013
+ () => ListConnectorEntitiesResponse$,
2000
2014
  ];
2001
- var ListConnectors = [
2015
+ var ListConnectors$ = [
2002
2016
  9,
2003
2017
  n0,
2004
2018
  _LC,
2005
2019
  { [_h]: ["POST", "/list-connectors", 200] },
2006
- () => ListConnectorsRequest,
2007
- () => ListConnectorsResponse,
2020
+ () => ListConnectorsRequest$,
2021
+ () => ListConnectorsResponse$,
2008
2022
  ];
2009
- var ListFlows = [
2023
+ var ListFlows$ = [
2010
2024
  9,
2011
2025
  n0,
2012
2026
  _LF,
2013
2027
  { [_h]: ["POST", "/list-flows", 200] },
2014
- () => ListFlowsRequest,
2015
- () => ListFlowsResponse,
2028
+ () => ListFlowsRequest$,
2029
+ () => ListFlowsResponse$,
2016
2030
  ];
2017
- var ListTagsForResource = [
2031
+ var ListTagsForResource$ = [
2018
2032
  9,
2019
2033
  n0,
2020
2034
  _LTFR,
2021
2035
  { [_h]: ["GET", "/tags/{resourceArn}", 200] },
2022
- () => ListTagsForResourceRequest,
2023
- () => ListTagsForResourceResponse,
2036
+ () => ListTagsForResourceRequest$,
2037
+ () => ListTagsForResourceResponse$,
2024
2038
  ];
2025
- var RegisterConnector = [
2039
+ var RegisterConnector$ = [
2026
2040
  9,
2027
2041
  n0,
2028
2042
  _RC,
2029
2043
  { [_h]: ["POST", "/register-connector", 200] },
2030
- () => RegisterConnectorRequest,
2031
- () => RegisterConnectorResponse,
2044
+ () => RegisterConnectorRequest$,
2045
+ () => RegisterConnectorResponse$,
2032
2046
  ];
2033
- var ResetConnectorMetadataCache = [
2047
+ var ResetConnectorMetadataCache$ = [
2034
2048
  9,
2035
2049
  n0,
2036
2050
  _RCMC,
2037
2051
  { [_h]: ["POST", "/reset-connector-metadata-cache", 200] },
2038
- () => ResetConnectorMetadataCacheRequest,
2039
- () => ResetConnectorMetadataCacheResponse,
2052
+ () => ResetConnectorMetadataCacheRequest$,
2053
+ () => ResetConnectorMetadataCacheResponse$,
2040
2054
  ];
2041
- var StartFlow = [
2055
+ var StartFlow$ = [
2042
2056
  9,
2043
2057
  n0,
2044
2058
  _SF,
2045
2059
  { [_h]: ["POST", "/start-flow", 200] },
2046
- () => StartFlowRequest,
2047
- () => StartFlowResponse,
2060
+ () => StartFlowRequest$,
2061
+ () => StartFlowResponse$,
2048
2062
  ];
2049
- var StopFlow = [
2063
+ var StopFlow$ = [
2050
2064
  9,
2051
2065
  n0,
2052
2066
  _SFt,
2053
2067
  { [_h]: ["POST", "/stop-flow", 200] },
2054
- () => StopFlowRequest,
2055
- () => StopFlowResponse,
2068
+ () => StopFlowRequest$,
2069
+ () => StopFlowResponse$,
2056
2070
  ];
2057
- var TagResource = [
2071
+ var TagResource$ = [
2058
2072
  9,
2059
2073
  n0,
2060
2074
  _TR,
2061
2075
  { [_h]: ["POST", "/tags/{resourceArn}", 200] },
2062
- () => TagResourceRequest,
2063
- () => TagResourceResponse,
2076
+ () => TagResourceRequest$,
2077
+ () => TagResourceResponse$,
2064
2078
  ];
2065
- var UnregisterConnector = [
2079
+ var UnregisterConnector$ = [
2066
2080
  9,
2067
2081
  n0,
2068
2082
  _UC,
2069
2083
  { [_h]: ["POST", "/unregister-connector", 200] },
2070
- () => UnregisterConnectorRequest,
2071
- () => UnregisterConnectorResponse,
2084
+ () => UnregisterConnectorRequest$,
2085
+ () => UnregisterConnectorResponse$,
2072
2086
  ];
2073
- var UntagResource = [
2087
+ var UntagResource$ = [
2074
2088
  9,
2075
2089
  n0,
2076
2090
  _UR,
2077
2091
  { [_h]: ["DELETE", "/tags/{resourceArn}", 200] },
2078
- () => UntagResourceRequest,
2079
- () => UntagResourceResponse,
2092
+ () => UntagResourceRequest$,
2093
+ () => UntagResourceResponse$,
2080
2094
  ];
2081
- var UpdateConnectorProfile = [
2095
+ var UpdateConnectorProfile$ = [
2082
2096
  9,
2083
2097
  n0,
2084
2098
  _UCP,
2085
2099
  { [_h]: ["POST", "/update-connector-profile", 200] },
2086
- () => UpdateConnectorProfileRequest,
2087
- () => UpdateConnectorProfileResponse,
2100
+ () => UpdateConnectorProfileRequest$,
2101
+ () => UpdateConnectorProfileResponse$,
2088
2102
  ];
2089
- var UpdateConnectorRegistration = [
2103
+ var UpdateConnectorRegistration$ = [
2090
2104
  9,
2091
2105
  n0,
2092
2106
  _UCRp,
2093
2107
  { [_h]: ["POST", "/update-connector-registration", 200] },
2094
- () => UpdateConnectorRegistrationRequest,
2095
- () => UpdateConnectorRegistrationResponse,
2108
+ () => UpdateConnectorRegistrationRequest$,
2109
+ () => UpdateConnectorRegistrationResponse$,
2096
2110
  ];
2097
- var UpdateFlow = [
2111
+ var UpdateFlow$ = [
2098
2112
  9,
2099
2113
  n0,
2100
2114
  _UF,
2101
2115
  { [_h]: ["POST", "/update-flow", 200] },
2102
- () => UpdateFlowRequest,
2103
- () => UpdateFlowResponse,
2116
+ () => UpdateFlowRequest$,
2117
+ () => UpdateFlowResponse$,
2104
2118
  ];
2105
2119
 
2106
2120
  class CancelFlowExecutionsCommand extends smithyClient.Command
@@ -2111,7 +2125,7 @@ class CancelFlowExecutionsCommand extends smithyClient.Command
2111
2125
  })
2112
2126
  .s("SandstoneConfigurationServiceLambda", "CancelFlowExecutions", {})
2113
2127
  .n("AppflowClient", "CancelFlowExecutionsCommand")
2114
- .sc(CancelFlowExecutions)
2128
+ .sc(CancelFlowExecutions$)
2115
2129
  .build() {
2116
2130
  }
2117
2131
 
@@ -2123,7 +2137,7 @@ class CreateConnectorProfileCommand extends smithyClient.Command
2123
2137
  })
2124
2138
  .s("SandstoneConfigurationServiceLambda", "CreateConnectorProfile", {})
2125
2139
  .n("AppflowClient", "CreateConnectorProfileCommand")
2126
- .sc(CreateConnectorProfile)
2140
+ .sc(CreateConnectorProfile$)
2127
2141
  .build() {
2128
2142
  }
2129
2143
 
@@ -2135,7 +2149,7 @@ class CreateFlowCommand extends smithyClient.Command
2135
2149
  })
2136
2150
  .s("SandstoneConfigurationServiceLambda", "CreateFlow", {})
2137
2151
  .n("AppflowClient", "CreateFlowCommand")
2138
- .sc(CreateFlow)
2152
+ .sc(CreateFlow$)
2139
2153
  .build() {
2140
2154
  }
2141
2155
 
@@ -2147,7 +2161,7 @@ class DeleteConnectorProfileCommand extends smithyClient.Command
2147
2161
  })
2148
2162
  .s("SandstoneConfigurationServiceLambda", "DeleteConnectorProfile", {})
2149
2163
  .n("AppflowClient", "DeleteConnectorProfileCommand")
2150
- .sc(DeleteConnectorProfile)
2164
+ .sc(DeleteConnectorProfile$)
2151
2165
  .build() {
2152
2166
  }
2153
2167
 
@@ -2159,7 +2173,7 @@ class DeleteFlowCommand extends smithyClient.Command
2159
2173
  })
2160
2174
  .s("SandstoneConfigurationServiceLambda", "DeleteFlow", {})
2161
2175
  .n("AppflowClient", "DeleteFlowCommand")
2162
- .sc(DeleteFlow)
2176
+ .sc(DeleteFlow$)
2163
2177
  .build() {
2164
2178
  }
2165
2179
 
@@ -2171,7 +2185,7 @@ class DescribeConnectorCommand extends smithyClient.Command
2171
2185
  })
2172
2186
  .s("SandstoneConfigurationServiceLambda", "DescribeConnector", {})
2173
2187
  .n("AppflowClient", "DescribeConnectorCommand")
2174
- .sc(DescribeConnector)
2188
+ .sc(DescribeConnector$)
2175
2189
  .build() {
2176
2190
  }
2177
2191
 
@@ -2183,7 +2197,7 @@ class DescribeConnectorEntityCommand extends smithyClient.Command
2183
2197
  })
2184
2198
  .s("SandstoneConfigurationServiceLambda", "DescribeConnectorEntity", {})
2185
2199
  .n("AppflowClient", "DescribeConnectorEntityCommand")
2186
- .sc(DescribeConnectorEntity)
2200
+ .sc(DescribeConnectorEntity$)
2187
2201
  .build() {
2188
2202
  }
2189
2203
 
@@ -2195,7 +2209,7 @@ class DescribeConnectorProfilesCommand extends smithyClient.Command
2195
2209
  })
2196
2210
  .s("SandstoneConfigurationServiceLambda", "DescribeConnectorProfiles", {})
2197
2211
  .n("AppflowClient", "DescribeConnectorProfilesCommand")
2198
- .sc(DescribeConnectorProfiles)
2212
+ .sc(DescribeConnectorProfiles$)
2199
2213
  .build() {
2200
2214
  }
2201
2215
 
@@ -2207,7 +2221,7 @@ class DescribeConnectorsCommand extends smithyClient.Command
2207
2221
  })
2208
2222
  .s("SandstoneConfigurationServiceLambda", "DescribeConnectors", {})
2209
2223
  .n("AppflowClient", "DescribeConnectorsCommand")
2210
- .sc(DescribeConnectors)
2224
+ .sc(DescribeConnectors$)
2211
2225
  .build() {
2212
2226
  }
2213
2227
 
@@ -2219,7 +2233,7 @@ class DescribeFlowCommand extends smithyClient.Command
2219
2233
  })
2220
2234
  .s("SandstoneConfigurationServiceLambda", "DescribeFlow", {})
2221
2235
  .n("AppflowClient", "DescribeFlowCommand")
2222
- .sc(DescribeFlow)
2236
+ .sc(DescribeFlow$)
2223
2237
  .build() {
2224
2238
  }
2225
2239
 
@@ -2231,7 +2245,7 @@ class DescribeFlowExecutionRecordsCommand extends smithyClient.Command
2231
2245
  })
2232
2246
  .s("SandstoneConfigurationServiceLambda", "DescribeFlowExecutionRecords", {})
2233
2247
  .n("AppflowClient", "DescribeFlowExecutionRecordsCommand")
2234
- .sc(DescribeFlowExecutionRecords)
2248
+ .sc(DescribeFlowExecutionRecords$)
2235
2249
  .build() {
2236
2250
  }
2237
2251
 
@@ -2243,7 +2257,7 @@ class ListConnectorEntitiesCommand extends smithyClient.Command
2243
2257
  })
2244
2258
  .s("SandstoneConfigurationServiceLambda", "ListConnectorEntities", {})
2245
2259
  .n("AppflowClient", "ListConnectorEntitiesCommand")
2246
- .sc(ListConnectorEntities)
2260
+ .sc(ListConnectorEntities$)
2247
2261
  .build() {
2248
2262
  }
2249
2263
 
@@ -2255,7 +2269,7 @@ class ListConnectorsCommand extends smithyClient.Command
2255
2269
  })
2256
2270
  .s("SandstoneConfigurationServiceLambda", "ListConnectors", {})
2257
2271
  .n("AppflowClient", "ListConnectorsCommand")
2258
- .sc(ListConnectors)
2272
+ .sc(ListConnectors$)
2259
2273
  .build() {
2260
2274
  }
2261
2275
 
@@ -2267,7 +2281,7 @@ class ListFlowsCommand extends smithyClient.Command
2267
2281
  })
2268
2282
  .s("SandstoneConfigurationServiceLambda", "ListFlows", {})
2269
2283
  .n("AppflowClient", "ListFlowsCommand")
2270
- .sc(ListFlows)
2284
+ .sc(ListFlows$)
2271
2285
  .build() {
2272
2286
  }
2273
2287
 
@@ -2279,7 +2293,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
2279
2293
  })
2280
2294
  .s("SandstoneConfigurationServiceLambda", "ListTagsForResource", {})
2281
2295
  .n("AppflowClient", "ListTagsForResourceCommand")
2282
- .sc(ListTagsForResource)
2296
+ .sc(ListTagsForResource$)
2283
2297
  .build() {
2284
2298
  }
2285
2299
 
@@ -2291,7 +2305,7 @@ class RegisterConnectorCommand extends smithyClient.Command
2291
2305
  })
2292
2306
  .s("SandstoneConfigurationServiceLambda", "RegisterConnector", {})
2293
2307
  .n("AppflowClient", "RegisterConnectorCommand")
2294
- .sc(RegisterConnector)
2308
+ .sc(RegisterConnector$)
2295
2309
  .build() {
2296
2310
  }
2297
2311
 
@@ -2303,7 +2317,7 @@ class ResetConnectorMetadataCacheCommand extends smithyClient.Command
2303
2317
  })
2304
2318
  .s("SandstoneConfigurationServiceLambda", "ResetConnectorMetadataCache", {})
2305
2319
  .n("AppflowClient", "ResetConnectorMetadataCacheCommand")
2306
- .sc(ResetConnectorMetadataCache)
2320
+ .sc(ResetConnectorMetadataCache$)
2307
2321
  .build() {
2308
2322
  }
2309
2323
 
@@ -2315,7 +2329,7 @@ class StartFlowCommand extends smithyClient.Command
2315
2329
  })
2316
2330
  .s("SandstoneConfigurationServiceLambda", "StartFlow", {})
2317
2331
  .n("AppflowClient", "StartFlowCommand")
2318
- .sc(StartFlow)
2332
+ .sc(StartFlow$)
2319
2333
  .build() {
2320
2334
  }
2321
2335
 
@@ -2327,7 +2341,7 @@ class StopFlowCommand extends smithyClient.Command
2327
2341
  })
2328
2342
  .s("SandstoneConfigurationServiceLambda", "StopFlow", {})
2329
2343
  .n("AppflowClient", "StopFlowCommand")
2330
- .sc(StopFlow)
2344
+ .sc(StopFlow$)
2331
2345
  .build() {
2332
2346
  }
2333
2347
 
@@ -2339,7 +2353,7 @@ class TagResourceCommand extends smithyClient.Command
2339
2353
  })
2340
2354
  .s("SandstoneConfigurationServiceLambda", "TagResource", {})
2341
2355
  .n("AppflowClient", "TagResourceCommand")
2342
- .sc(TagResource)
2356
+ .sc(TagResource$)
2343
2357
  .build() {
2344
2358
  }
2345
2359
 
@@ -2351,7 +2365,7 @@ class UnregisterConnectorCommand extends smithyClient.Command
2351
2365
  })
2352
2366
  .s("SandstoneConfigurationServiceLambda", "UnregisterConnector", {})
2353
2367
  .n("AppflowClient", "UnregisterConnectorCommand")
2354
- .sc(UnregisterConnector)
2368
+ .sc(UnregisterConnector$)
2355
2369
  .build() {
2356
2370
  }
2357
2371
 
@@ -2363,7 +2377,7 @@ class UntagResourceCommand extends smithyClient.Command
2363
2377
  })
2364
2378
  .s("SandstoneConfigurationServiceLambda", "UntagResource", {})
2365
2379
  .n("AppflowClient", "UntagResourceCommand")
2366
- .sc(UntagResource)
2380
+ .sc(UntagResource$)
2367
2381
  .build() {
2368
2382
  }
2369
2383
 
@@ -2375,7 +2389,7 @@ class UpdateConnectorProfileCommand extends smithyClient.Command
2375
2389
  })
2376
2390
  .s("SandstoneConfigurationServiceLambda", "UpdateConnectorProfile", {})
2377
2391
  .n("AppflowClient", "UpdateConnectorProfileCommand")
2378
- .sc(UpdateConnectorProfile)
2392
+ .sc(UpdateConnectorProfile$)
2379
2393
  .build() {
2380
2394
  }
2381
2395
 
@@ -2387,7 +2401,7 @@ class UpdateConnectorRegistrationCommand extends smithyClient.Command
2387
2401
  })
2388
2402
  .s("SandstoneConfigurationServiceLambda", "UpdateConnectorRegistration", {})
2389
2403
  .n("AppflowClient", "UpdateConnectorRegistrationCommand")
2390
- .sc(UpdateConnectorRegistration)
2404
+ .sc(UpdateConnectorRegistration$)
2391
2405
  .build() {
2392
2406
  }
2393
2407
 
@@ -2399,7 +2413,7 @@ class UpdateFlowCommand extends smithyClient.Command
2399
2413
  })
2400
2414
  .s("SandstoneConfigurationServiceLambda", "UpdateFlow", {})
2401
2415
  .n("AppflowClient", "UpdateFlowCommand")
2402
- .sc(UpdateFlow)
2416
+ .sc(UpdateFlow$)
2403
2417
  .build() {
2404
2418
  }
2405
2419
 
@@ -2949,88 +2963,324 @@ Object.defineProperty(exports, "__Client", {
2949
2963
  enumerable: true,
2950
2964
  get: function () { return smithyClient.Client; }
2951
2965
  });
2952
- exports.AccessDeniedException = AccessDeniedException$1;
2966
+ exports.AccessDeniedException = AccessDeniedException;
2967
+ exports.AccessDeniedException$ = AccessDeniedException$;
2968
+ exports.AggregationConfig$ = AggregationConfig$;
2953
2969
  exports.AggregationType = AggregationType;
2954
2970
  exports.AmplitudeConnectorOperator = AmplitudeConnectorOperator;
2971
+ exports.AmplitudeConnectorProfileCredentials$ = AmplitudeConnectorProfileCredentials$;
2972
+ exports.AmplitudeConnectorProfileProperties$ = AmplitudeConnectorProfileProperties$;
2973
+ exports.AmplitudeMetadata$ = AmplitudeMetadata$;
2974
+ exports.AmplitudeSourceProperties$ = AmplitudeSourceProperties$;
2975
+ exports.ApiKeyCredentials$ = ApiKeyCredentials$;
2955
2976
  exports.Appflow = Appflow;
2956
2977
  exports.AppflowClient = AppflowClient;
2957
- exports.AppflowServiceException = AppflowServiceException$1;
2978
+ exports.AppflowServiceException = AppflowServiceException;
2979
+ exports.AppflowServiceException$ = AppflowServiceException$;
2980
+ exports.AuthParameter$ = AuthParameter$;
2981
+ exports.AuthenticationConfig$ = AuthenticationConfig$;
2958
2982
  exports.AuthenticationType = AuthenticationType;
2983
+ exports.BasicAuthCredentials$ = BasicAuthCredentials$;
2984
+ exports.CancelFlowExecutions$ = CancelFlowExecutions$;
2959
2985
  exports.CancelFlowExecutionsCommand = CancelFlowExecutionsCommand;
2986
+ exports.CancelFlowExecutionsRequest$ = CancelFlowExecutionsRequest$;
2987
+ exports.CancelFlowExecutionsResponse$ = CancelFlowExecutionsResponse$;
2960
2988
  exports.CatalogType = CatalogType;
2961
- exports.ConflictException = ConflictException$1;
2989
+ exports.ConflictException = ConflictException;
2990
+ exports.ConflictException$ = ConflictException$;
2962
2991
  exports.ConnectionMode = ConnectionMode;
2963
- exports.ConnectorAuthenticationException = ConnectorAuthenticationException$1;
2992
+ exports.ConnectorAuthenticationException = ConnectorAuthenticationException;
2993
+ exports.ConnectorAuthenticationException$ = ConnectorAuthenticationException$;
2994
+ exports.ConnectorConfiguration$ = ConnectorConfiguration$;
2995
+ exports.ConnectorDetail$ = ConnectorDetail$;
2996
+ exports.ConnectorEntity$ = ConnectorEntity$;
2997
+ exports.ConnectorEntityField$ = ConnectorEntityField$;
2998
+ exports.ConnectorMetadata$ = ConnectorMetadata$;
2999
+ exports.ConnectorOAuthRequest$ = ConnectorOAuthRequest$;
3000
+ exports.ConnectorOperator$ = ConnectorOperator$;
3001
+ exports.ConnectorProfile$ = ConnectorProfile$;
3002
+ exports.ConnectorProfileConfig$ = ConnectorProfileConfig$;
3003
+ exports.ConnectorProfileCredentials$ = ConnectorProfileCredentials$;
3004
+ exports.ConnectorProfileProperties$ = ConnectorProfileProperties$;
3005
+ exports.ConnectorProvisioningConfig$ = ConnectorProvisioningConfig$;
2964
3006
  exports.ConnectorProvisioningType = ConnectorProvisioningType;
2965
- exports.ConnectorServerException = ConnectorServerException$1;
3007
+ exports.ConnectorRuntimeSetting$ = ConnectorRuntimeSetting$;
3008
+ exports.ConnectorServerException = ConnectorServerException;
3009
+ exports.ConnectorServerException$ = ConnectorServerException$;
2966
3010
  exports.ConnectorType = ConnectorType;
3011
+ exports.CreateConnectorProfile$ = CreateConnectorProfile$;
2967
3012
  exports.CreateConnectorProfileCommand = CreateConnectorProfileCommand;
3013
+ exports.CreateConnectorProfileRequest$ = CreateConnectorProfileRequest$;
3014
+ exports.CreateConnectorProfileResponse$ = CreateConnectorProfileResponse$;
3015
+ exports.CreateFlow$ = CreateFlow$;
2968
3016
  exports.CreateFlowCommand = CreateFlowCommand;
3017
+ exports.CreateFlowRequest$ = CreateFlowRequest$;
3018
+ exports.CreateFlowResponse$ = CreateFlowResponse$;
3019
+ exports.CustomAuthConfig$ = CustomAuthConfig$;
3020
+ exports.CustomAuthCredentials$ = CustomAuthCredentials$;
3021
+ exports.CustomConnectorDestinationProperties$ = CustomConnectorDestinationProperties$;
3022
+ exports.CustomConnectorProfileCredentials$ = CustomConnectorProfileCredentials$;
3023
+ exports.CustomConnectorProfileProperties$ = CustomConnectorProfileProperties$;
3024
+ exports.CustomConnectorSourceProperties$ = CustomConnectorSourceProperties$;
3025
+ exports.CustomerProfilesDestinationProperties$ = CustomerProfilesDestinationProperties$;
3026
+ exports.CustomerProfilesMetadata$ = CustomerProfilesMetadata$;
2969
3027
  exports.DataPullMode = DataPullMode;
3028
+ exports.DataTransferApi$ = DataTransferApi$;
2970
3029
  exports.DataTransferApiType = DataTransferApiType;
2971
3030
  exports.DatadogConnectorOperator = DatadogConnectorOperator;
3031
+ exports.DatadogConnectorProfileCredentials$ = DatadogConnectorProfileCredentials$;
3032
+ exports.DatadogConnectorProfileProperties$ = DatadogConnectorProfileProperties$;
3033
+ exports.DatadogMetadata$ = DatadogMetadata$;
3034
+ exports.DatadogSourceProperties$ = DatadogSourceProperties$;
3035
+ exports.DeleteConnectorProfile$ = DeleteConnectorProfile$;
2972
3036
  exports.DeleteConnectorProfileCommand = DeleteConnectorProfileCommand;
3037
+ exports.DeleteConnectorProfileRequest$ = DeleteConnectorProfileRequest$;
3038
+ exports.DeleteConnectorProfileResponse$ = DeleteConnectorProfileResponse$;
3039
+ exports.DeleteFlow$ = DeleteFlow$;
2973
3040
  exports.DeleteFlowCommand = DeleteFlowCommand;
3041
+ exports.DeleteFlowRequest$ = DeleteFlowRequest$;
3042
+ exports.DeleteFlowResponse$ = DeleteFlowResponse$;
3043
+ exports.DescribeConnector$ = DescribeConnector$;
2974
3044
  exports.DescribeConnectorCommand = DescribeConnectorCommand;
3045
+ exports.DescribeConnectorEntity$ = DescribeConnectorEntity$;
2975
3046
  exports.DescribeConnectorEntityCommand = DescribeConnectorEntityCommand;
3047
+ exports.DescribeConnectorEntityRequest$ = DescribeConnectorEntityRequest$;
3048
+ exports.DescribeConnectorEntityResponse$ = DescribeConnectorEntityResponse$;
3049
+ exports.DescribeConnectorProfiles$ = DescribeConnectorProfiles$;
2976
3050
  exports.DescribeConnectorProfilesCommand = DescribeConnectorProfilesCommand;
3051
+ exports.DescribeConnectorProfilesRequest$ = DescribeConnectorProfilesRequest$;
3052
+ exports.DescribeConnectorProfilesResponse$ = DescribeConnectorProfilesResponse$;
3053
+ exports.DescribeConnectorRequest$ = DescribeConnectorRequest$;
3054
+ exports.DescribeConnectorResponse$ = DescribeConnectorResponse$;
3055
+ exports.DescribeConnectors$ = DescribeConnectors$;
2977
3056
  exports.DescribeConnectorsCommand = DescribeConnectorsCommand;
3057
+ exports.DescribeConnectorsRequest$ = DescribeConnectorsRequest$;
3058
+ exports.DescribeConnectorsResponse$ = DescribeConnectorsResponse$;
3059
+ exports.DescribeFlow$ = DescribeFlow$;
2978
3060
  exports.DescribeFlowCommand = DescribeFlowCommand;
3061
+ exports.DescribeFlowExecutionRecords$ = DescribeFlowExecutionRecords$;
2979
3062
  exports.DescribeFlowExecutionRecordsCommand = DescribeFlowExecutionRecordsCommand;
3063
+ exports.DescribeFlowExecutionRecordsRequest$ = DescribeFlowExecutionRecordsRequest$;
3064
+ exports.DescribeFlowExecutionRecordsResponse$ = DescribeFlowExecutionRecordsResponse$;
3065
+ exports.DescribeFlowRequest$ = DescribeFlowRequest$;
3066
+ exports.DescribeFlowResponse$ = DescribeFlowResponse$;
3067
+ exports.DestinationConnectorProperties$ = DestinationConnectorProperties$;
3068
+ exports.DestinationFieldProperties$ = DestinationFieldProperties$;
3069
+ exports.DestinationFlowConfig$ = DestinationFlowConfig$;
2980
3070
  exports.DynatraceConnectorOperator = DynatraceConnectorOperator;
3071
+ exports.DynatraceConnectorProfileCredentials$ = DynatraceConnectorProfileCredentials$;
3072
+ exports.DynatraceConnectorProfileProperties$ = DynatraceConnectorProfileProperties$;
3073
+ exports.DynatraceMetadata$ = DynatraceMetadata$;
3074
+ exports.DynatraceSourceProperties$ = DynatraceSourceProperties$;
3075
+ exports.ErrorHandlingConfig$ = ErrorHandlingConfig$;
3076
+ exports.ErrorInfo$ = ErrorInfo$;
3077
+ exports.EventBridgeDestinationProperties$ = EventBridgeDestinationProperties$;
3078
+ exports.EventBridgeMetadata$ = EventBridgeMetadata$;
3079
+ exports.ExecutionDetails$ = ExecutionDetails$;
3080
+ exports.ExecutionRecord$ = ExecutionRecord$;
3081
+ exports.ExecutionResult$ = ExecutionResult$;
2981
3082
  exports.ExecutionStatus = ExecutionStatus;
3083
+ exports.FieldTypeDetails$ = FieldTypeDetails$;
2982
3084
  exports.FileType = FileType;
3085
+ exports.FlowDefinition$ = FlowDefinition$;
2983
3086
  exports.FlowStatus = FlowStatus;
3087
+ exports.GlueDataCatalogConfig$ = GlueDataCatalogConfig$;
2984
3088
  exports.GoogleAnalyticsConnectorOperator = GoogleAnalyticsConnectorOperator;
3089
+ exports.GoogleAnalyticsConnectorProfileCredentials$ = GoogleAnalyticsConnectorProfileCredentials$;
3090
+ exports.GoogleAnalyticsConnectorProfileProperties$ = GoogleAnalyticsConnectorProfileProperties$;
3091
+ exports.GoogleAnalyticsMetadata$ = GoogleAnalyticsMetadata$;
3092
+ exports.GoogleAnalyticsSourceProperties$ = GoogleAnalyticsSourceProperties$;
3093
+ exports.HoneycodeConnectorProfileCredentials$ = HoneycodeConnectorProfileCredentials$;
3094
+ exports.HoneycodeConnectorProfileProperties$ = HoneycodeConnectorProfileProperties$;
3095
+ exports.HoneycodeDestinationProperties$ = HoneycodeDestinationProperties$;
3096
+ exports.HoneycodeMetadata$ = HoneycodeMetadata$;
3097
+ exports.IncrementalPullConfig$ = IncrementalPullConfig$;
2985
3098
  exports.InforNexusConnectorOperator = InforNexusConnectorOperator;
2986
- exports.InternalServerException = InternalServerException$1;
3099
+ exports.InforNexusConnectorProfileCredentials$ = InforNexusConnectorProfileCredentials$;
3100
+ exports.InforNexusConnectorProfileProperties$ = InforNexusConnectorProfileProperties$;
3101
+ exports.InforNexusMetadata$ = InforNexusMetadata$;
3102
+ exports.InforNexusSourceProperties$ = InforNexusSourceProperties$;
3103
+ exports.InternalServerException = InternalServerException;
3104
+ exports.InternalServerException$ = InternalServerException$;
3105
+ exports.LambdaConnectorProvisioningConfig$ = LambdaConnectorProvisioningConfig$;
3106
+ exports.ListConnectorEntities$ = ListConnectorEntities$;
2987
3107
  exports.ListConnectorEntitiesCommand = ListConnectorEntitiesCommand;
3108
+ exports.ListConnectorEntitiesRequest$ = ListConnectorEntitiesRequest$;
3109
+ exports.ListConnectorEntitiesResponse$ = ListConnectorEntitiesResponse$;
3110
+ exports.ListConnectors$ = ListConnectors$;
2988
3111
  exports.ListConnectorsCommand = ListConnectorsCommand;
3112
+ exports.ListConnectorsRequest$ = ListConnectorsRequest$;
3113
+ exports.ListConnectorsResponse$ = ListConnectorsResponse$;
3114
+ exports.ListFlows$ = ListFlows$;
2989
3115
  exports.ListFlowsCommand = ListFlowsCommand;
3116
+ exports.ListFlowsRequest$ = ListFlowsRequest$;
3117
+ exports.ListFlowsResponse$ = ListFlowsResponse$;
3118
+ exports.ListTagsForResource$ = ListTagsForResource$;
2990
3119
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
3120
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
3121
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
3122
+ exports.LookoutMetricsDestinationProperties$ = LookoutMetricsDestinationProperties$;
2991
3123
  exports.MarketoConnectorOperator = MarketoConnectorOperator;
3124
+ exports.MarketoConnectorProfileCredentials$ = MarketoConnectorProfileCredentials$;
3125
+ exports.MarketoConnectorProfileProperties$ = MarketoConnectorProfileProperties$;
3126
+ exports.MarketoDestinationProperties$ = MarketoDestinationProperties$;
3127
+ exports.MarketoMetadata$ = MarketoMetadata$;
3128
+ exports.MarketoSourceProperties$ = MarketoSourceProperties$;
3129
+ exports.MetadataCatalogConfig$ = MetadataCatalogConfig$;
3130
+ exports.MetadataCatalogDetail$ = MetadataCatalogDetail$;
3131
+ exports.OAuth2Credentials$ = OAuth2Credentials$;
3132
+ exports.OAuth2CustomParameter$ = OAuth2CustomParameter$;
2992
3133
  exports.OAuth2CustomPropType = OAuth2CustomPropType;
3134
+ exports.OAuth2Defaults$ = OAuth2Defaults$;
2993
3135
  exports.OAuth2GrantType = OAuth2GrantType;
3136
+ exports.OAuth2Properties$ = OAuth2Properties$;
3137
+ exports.OAuthCredentials$ = OAuthCredentials$;
3138
+ exports.OAuthProperties$ = OAuthProperties$;
2994
3139
  exports.Operator = Operator;
2995
3140
  exports.OperatorPropertiesKeys = OperatorPropertiesKeys;
2996
3141
  exports.Operators = Operators;
2997
3142
  exports.PardotConnectorOperator = PardotConnectorOperator;
3143
+ exports.PardotConnectorProfileCredentials$ = PardotConnectorProfileCredentials$;
3144
+ exports.PardotConnectorProfileProperties$ = PardotConnectorProfileProperties$;
3145
+ exports.PardotMetadata$ = PardotMetadata$;
3146
+ exports.PardotSourceProperties$ = PardotSourceProperties$;
2998
3147
  exports.PathPrefix = PathPrefix;
3148
+ exports.PrefixConfig$ = PrefixConfig$;
2999
3149
  exports.PrefixFormat = PrefixFormat;
3000
3150
  exports.PrefixType = PrefixType;
3001
3151
  exports.PrivateConnectionProvisioningFailureCause = PrivateConnectionProvisioningFailureCause;
3152
+ exports.PrivateConnectionProvisioningState$ = PrivateConnectionProvisioningState$;
3002
3153
  exports.PrivateConnectionProvisioningStatus = PrivateConnectionProvisioningStatus;
3154
+ exports.Range$ = Range$;
3155
+ exports.RedshiftConnectorProfileCredentials$ = RedshiftConnectorProfileCredentials$;
3156
+ exports.RedshiftConnectorProfileProperties$ = RedshiftConnectorProfileProperties$;
3157
+ exports.RedshiftDestinationProperties$ = RedshiftDestinationProperties$;
3158
+ exports.RedshiftMetadata$ = RedshiftMetadata$;
3159
+ exports.RegisterConnector$ = RegisterConnector$;
3003
3160
  exports.RegisterConnectorCommand = RegisterConnectorCommand;
3161
+ exports.RegisterConnectorRequest$ = RegisterConnectorRequest$;
3162
+ exports.RegisterConnectorResponse$ = RegisterConnectorResponse$;
3163
+ exports.RegistrationOutput$ = RegistrationOutput$;
3164
+ exports.ResetConnectorMetadataCache$ = ResetConnectorMetadataCache$;
3004
3165
  exports.ResetConnectorMetadataCacheCommand = ResetConnectorMetadataCacheCommand;
3005
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
3166
+ exports.ResetConnectorMetadataCacheRequest$ = ResetConnectorMetadataCacheRequest$;
3167
+ exports.ResetConnectorMetadataCacheResponse$ = ResetConnectorMetadataCacheResponse$;
3168
+ exports.ResourceNotFoundException = ResourceNotFoundException;
3169
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
3006
3170
  exports.S3ConnectorOperator = S3ConnectorOperator;
3171
+ exports.S3DestinationProperties$ = S3DestinationProperties$;
3007
3172
  exports.S3InputFileType = S3InputFileType;
3173
+ exports.S3InputFormatConfig$ = S3InputFormatConfig$;
3174
+ exports.S3Metadata$ = S3Metadata$;
3175
+ exports.S3OutputFormatConfig$ = S3OutputFormatConfig$;
3176
+ exports.S3SourceProperties$ = S3SourceProperties$;
3008
3177
  exports.SAPODataConnectorOperator = SAPODataConnectorOperator;
3178
+ exports.SAPODataConnectorProfileCredentials$ = SAPODataConnectorProfileCredentials$;
3179
+ exports.SAPODataConnectorProfileProperties$ = SAPODataConnectorProfileProperties$;
3180
+ exports.SAPODataDestinationProperties$ = SAPODataDestinationProperties$;
3181
+ exports.SAPODataMetadata$ = SAPODataMetadata$;
3182
+ exports.SAPODataPaginationConfig$ = SAPODataPaginationConfig$;
3183
+ exports.SAPODataParallelismConfig$ = SAPODataParallelismConfig$;
3184
+ exports.SAPODataSourceProperties$ = SAPODataSourceProperties$;
3009
3185
  exports.SalesforceConnectorOperator = SalesforceConnectorOperator;
3186
+ exports.SalesforceConnectorProfileCredentials$ = SalesforceConnectorProfileCredentials$;
3187
+ exports.SalesforceConnectorProfileProperties$ = SalesforceConnectorProfileProperties$;
3010
3188
  exports.SalesforceDataTransferApi = SalesforceDataTransferApi;
3189
+ exports.SalesforceDestinationProperties$ = SalesforceDestinationProperties$;
3190
+ exports.SalesforceMetadata$ = SalesforceMetadata$;
3191
+ exports.SalesforceSourceProperties$ = SalesforceSourceProperties$;
3011
3192
  exports.ScheduleFrequencyType = ScheduleFrequencyType;
3193
+ exports.ScheduledTriggerProperties$ = ScheduledTriggerProperties$;
3012
3194
  exports.ServiceNowConnectorOperator = ServiceNowConnectorOperator;
3013
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
3195
+ exports.ServiceNowConnectorProfileCredentials$ = ServiceNowConnectorProfileCredentials$;
3196
+ exports.ServiceNowConnectorProfileProperties$ = ServiceNowConnectorProfileProperties$;
3197
+ exports.ServiceNowMetadata$ = ServiceNowMetadata$;
3198
+ exports.ServiceNowSourceProperties$ = ServiceNowSourceProperties$;
3199
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
3200
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
3014
3201
  exports.SingularConnectorOperator = SingularConnectorOperator;
3202
+ exports.SingularConnectorProfileCredentials$ = SingularConnectorProfileCredentials$;
3203
+ exports.SingularConnectorProfileProperties$ = SingularConnectorProfileProperties$;
3204
+ exports.SingularMetadata$ = SingularMetadata$;
3205
+ exports.SingularSourceProperties$ = SingularSourceProperties$;
3015
3206
  exports.SlackConnectorOperator = SlackConnectorOperator;
3207
+ exports.SlackConnectorProfileCredentials$ = SlackConnectorProfileCredentials$;
3208
+ exports.SlackConnectorProfileProperties$ = SlackConnectorProfileProperties$;
3209
+ exports.SlackMetadata$ = SlackMetadata$;
3210
+ exports.SlackSourceProperties$ = SlackSourceProperties$;
3211
+ exports.SnowflakeConnectorProfileCredentials$ = SnowflakeConnectorProfileCredentials$;
3212
+ exports.SnowflakeConnectorProfileProperties$ = SnowflakeConnectorProfileProperties$;
3213
+ exports.SnowflakeDestinationProperties$ = SnowflakeDestinationProperties$;
3214
+ exports.SnowflakeMetadata$ = SnowflakeMetadata$;
3215
+ exports.SourceConnectorProperties$ = SourceConnectorProperties$;
3216
+ exports.SourceFieldProperties$ = SourceFieldProperties$;
3217
+ exports.SourceFlowConfig$ = SourceFlowConfig$;
3218
+ exports.StartFlow$ = StartFlow$;
3016
3219
  exports.StartFlowCommand = StartFlowCommand;
3220
+ exports.StartFlowRequest$ = StartFlowRequest$;
3221
+ exports.StartFlowResponse$ = StartFlowResponse$;
3222
+ exports.StopFlow$ = StopFlow$;
3017
3223
  exports.StopFlowCommand = StopFlowCommand;
3224
+ exports.StopFlowRequest$ = StopFlowRequest$;
3225
+ exports.StopFlowResponse$ = StopFlowResponse$;
3226
+ exports.SuccessResponseHandlingConfig$ = SuccessResponseHandlingConfig$;
3018
3227
  exports.SupportedDataTransferType = SupportedDataTransferType;
3228
+ exports.SupportedFieldTypeDetails$ = SupportedFieldTypeDetails$;
3229
+ exports.TagResource$ = TagResource$;
3019
3230
  exports.TagResourceCommand = TagResourceCommand;
3231
+ exports.TagResourceRequest$ = TagResourceRequest$;
3232
+ exports.TagResourceResponse$ = TagResourceResponse$;
3233
+ exports.Task$ = Task$;
3020
3234
  exports.TaskType = TaskType;
3021
- exports.ThrottlingException = ThrottlingException$1;
3235
+ exports.ThrottlingException = ThrottlingException;
3236
+ exports.ThrottlingException$ = ThrottlingException$;
3022
3237
  exports.TrendmicroConnectorOperator = TrendmicroConnectorOperator;
3238
+ exports.TrendmicroConnectorProfileCredentials$ = TrendmicroConnectorProfileCredentials$;
3239
+ exports.TrendmicroConnectorProfileProperties$ = TrendmicroConnectorProfileProperties$;
3240
+ exports.TrendmicroMetadata$ = TrendmicroMetadata$;
3241
+ exports.TrendmicroSourceProperties$ = TrendmicroSourceProperties$;
3242
+ exports.TriggerConfig$ = TriggerConfig$;
3243
+ exports.TriggerProperties$ = TriggerProperties$;
3023
3244
  exports.TriggerType = TriggerType;
3245
+ exports.UnregisterConnector$ = UnregisterConnector$;
3024
3246
  exports.UnregisterConnectorCommand = UnregisterConnectorCommand;
3025
- exports.UnsupportedOperationException = UnsupportedOperationException$1;
3247
+ exports.UnregisterConnectorRequest$ = UnregisterConnectorRequest$;
3248
+ exports.UnregisterConnectorResponse$ = UnregisterConnectorResponse$;
3249
+ exports.UnsupportedOperationException = UnsupportedOperationException;
3250
+ exports.UnsupportedOperationException$ = UnsupportedOperationException$;
3251
+ exports.UntagResource$ = UntagResource$;
3026
3252
  exports.UntagResourceCommand = UntagResourceCommand;
3253
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
3254
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
3255
+ exports.UpdateConnectorProfile$ = UpdateConnectorProfile$;
3027
3256
  exports.UpdateConnectorProfileCommand = UpdateConnectorProfileCommand;
3257
+ exports.UpdateConnectorProfileRequest$ = UpdateConnectorProfileRequest$;
3258
+ exports.UpdateConnectorProfileResponse$ = UpdateConnectorProfileResponse$;
3259
+ exports.UpdateConnectorRegistration$ = UpdateConnectorRegistration$;
3028
3260
  exports.UpdateConnectorRegistrationCommand = UpdateConnectorRegistrationCommand;
3261
+ exports.UpdateConnectorRegistrationRequest$ = UpdateConnectorRegistrationRequest$;
3262
+ exports.UpdateConnectorRegistrationResponse$ = UpdateConnectorRegistrationResponse$;
3263
+ exports.UpdateFlow$ = UpdateFlow$;
3029
3264
  exports.UpdateFlowCommand = UpdateFlowCommand;
3030
- exports.ValidationException = ValidationException$1;
3265
+ exports.UpdateFlowRequest$ = UpdateFlowRequest$;
3266
+ exports.UpdateFlowResponse$ = UpdateFlowResponse$;
3267
+ exports.UpsolverDestinationProperties$ = UpsolverDestinationProperties$;
3268
+ exports.UpsolverMetadata$ = UpsolverMetadata$;
3269
+ exports.UpsolverS3OutputFormatConfig$ = UpsolverS3OutputFormatConfig$;
3270
+ exports.ValidationException = ValidationException;
3271
+ exports.ValidationException$ = ValidationException$;
3031
3272
  exports.VeevaConnectorOperator = VeevaConnectorOperator;
3273
+ exports.VeevaConnectorProfileCredentials$ = VeevaConnectorProfileCredentials$;
3274
+ exports.VeevaConnectorProfileProperties$ = VeevaConnectorProfileProperties$;
3275
+ exports.VeevaMetadata$ = VeevaMetadata$;
3276
+ exports.VeevaSourceProperties$ = VeevaSourceProperties$;
3032
3277
  exports.WriteOperationType = WriteOperationType;
3033
3278
  exports.ZendeskConnectorOperator = ZendeskConnectorOperator;
3279
+ exports.ZendeskConnectorProfileCredentials$ = ZendeskConnectorProfileCredentials$;
3280
+ exports.ZendeskConnectorProfileProperties$ = ZendeskConnectorProfileProperties$;
3281
+ exports.ZendeskDestinationProperties$ = ZendeskDestinationProperties$;
3282
+ exports.ZendeskMetadata$ = ZendeskMetadata$;
3283
+ exports.ZendeskSourceProperties$ = ZendeskSourceProperties$;
3034
3284
  exports.paginateDescribeConnectorProfiles = paginateDescribeConnectorProfiles;
3035
3285
  exports.paginateDescribeConnectors = paginateDescribeConnectors;
3036
3286
  exports.paginateDescribeFlowExecutionRecords = paginateDescribeFlowExecutionRecords;