@aws-sdk/client-chime-sdk-messaging 3.645.0 → 3.650.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 (61) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +6 -2
  2. package/dist-cjs/index.js +51 -153
  3. package/dist-es/commands/AssociateChannelFlowCommand.js +1 -3
  4. package/dist-es/commands/BatchCreateChannelMembershipCommand.js +1 -3
  5. package/dist-es/commands/ChannelFlowCallbackCommand.js +1 -3
  6. package/dist-es/commands/CreateChannelBanCommand.js +1 -3
  7. package/dist-es/commands/CreateChannelCommand.js +1 -3
  8. package/dist-es/commands/CreateChannelFlowCommand.js +1 -3
  9. package/dist-es/commands/CreateChannelMembershipCommand.js +1 -3
  10. package/dist-es/commands/CreateChannelModeratorCommand.js +1 -3
  11. package/dist-es/commands/DeleteChannelBanCommand.js +1 -3
  12. package/dist-es/commands/DeleteChannelCommand.js +1 -3
  13. package/dist-es/commands/DeleteChannelFlowCommand.js +1 -3
  14. package/dist-es/commands/DeleteChannelMembershipCommand.js +1 -3
  15. package/dist-es/commands/DeleteChannelMessageCommand.js +1 -3
  16. package/dist-es/commands/DeleteChannelModeratorCommand.js +1 -3
  17. package/dist-es/commands/DeleteMessagingStreamingConfigurationsCommand.js +1 -3
  18. package/dist-es/commands/DescribeChannelBanCommand.js +1 -3
  19. package/dist-es/commands/DescribeChannelCommand.js +1 -3
  20. package/dist-es/commands/DescribeChannelFlowCommand.js +1 -3
  21. package/dist-es/commands/DescribeChannelMembershipCommand.js +1 -3
  22. package/dist-es/commands/DescribeChannelMembershipForAppInstanceUserCommand.js +1 -3
  23. package/dist-es/commands/DescribeChannelModeratedByAppInstanceUserCommand.js +1 -3
  24. package/dist-es/commands/DescribeChannelModeratorCommand.js +1 -3
  25. package/dist-es/commands/DisassociateChannelFlowCommand.js +1 -3
  26. package/dist-es/commands/GetChannelMembershipPreferencesCommand.js +1 -3
  27. package/dist-es/commands/GetChannelMessageCommand.js +1 -3
  28. package/dist-es/commands/GetChannelMessageStatusCommand.js +1 -3
  29. package/dist-es/commands/GetMessagingSessionEndpointCommand.js +1 -3
  30. package/dist-es/commands/GetMessagingStreamingConfigurationsCommand.js +1 -3
  31. package/dist-es/commands/ListChannelBansCommand.js +1 -3
  32. package/dist-es/commands/ListChannelFlowsCommand.js +1 -3
  33. package/dist-es/commands/ListChannelMembershipsCommand.js +1 -3
  34. package/dist-es/commands/ListChannelMembershipsForAppInstanceUserCommand.js +1 -3
  35. package/dist-es/commands/ListChannelMessagesCommand.js +1 -3
  36. package/dist-es/commands/ListChannelModeratorsCommand.js +1 -3
  37. package/dist-es/commands/ListChannelsAssociatedWithChannelFlowCommand.js +1 -3
  38. package/dist-es/commands/ListChannelsCommand.js +1 -3
  39. package/dist-es/commands/ListChannelsModeratedByAppInstanceUserCommand.js +1 -3
  40. package/dist-es/commands/ListSubChannelsCommand.js +1 -3
  41. package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
  42. package/dist-es/commands/PutChannelExpirationSettingsCommand.js +1 -3
  43. package/dist-es/commands/PutChannelMembershipPreferencesCommand.js +1 -3
  44. package/dist-es/commands/PutMessagingStreamingConfigurationsCommand.js +1 -3
  45. package/dist-es/commands/RedactChannelMessageCommand.js +1 -3
  46. package/dist-es/commands/SearchChannelsCommand.js +1 -3
  47. package/dist-es/commands/SendChannelMessageCommand.js +1 -3
  48. package/dist-es/commands/TagResourceCommand.js +1 -3
  49. package/dist-es/commands/UntagResourceCommand.js +1 -3
  50. package/dist-es/commands/UpdateChannelCommand.js +1 -3
  51. package/dist-es/commands/UpdateChannelFlowCommand.js +1 -3
  52. package/dist-es/commands/UpdateChannelMessageCommand.js +1 -3
  53. package/dist-es/commands/UpdateChannelReadMarkerCommand.js +1 -3
  54. package/dist-es/endpoint/endpointResolver.js +7 -3
  55. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  56. package/dist-types/runtimeConfig.d.ts +2 -0
  57. package/dist-types/runtimeConfig.native.d.ts +2 -0
  58. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  59. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  60. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  61. package/package.json +35 -35
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
4
4
  const util_endpoints_1 = require("@aws-sdk/util-endpoints");
5
5
  const util_endpoints_2 = require("@smithy/util-endpoints");
6
6
  const ruleset_1 = require("./ruleset");
7
+ const cache = new util_endpoints_2.EndpointCache({
8
+ size: 50,
9
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
10
+ });
7
11
  const defaultEndpointResolver = (endpointParams, context = {}) => {
8
- return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
12
+ return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
9
13
  endpointParams: endpointParams,
10
14
  logger: context.logger,
11
- });
15
+ }));
12
16
  };
13
17
  exports.defaultEndpointResolver = defaultEndpointResolver;
14
18
  util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
package/dist-cjs/index.js CHANGED
@@ -2833,9 +2833,7 @@ var _t = "type";
2833
2833
  var _xacb = "x-amz-chime-bearer";
2834
2834
 
2835
2835
  // src/commands/AssociateChannelFlowCommand.ts
2836
- var _AssociateChannelFlowCommand = class _AssociateChannelFlowCommand extends import_smithy_client.Command.classBuilder().ep({
2837
- ...commonParams
2838
- }).m(function(Command, cs, config, o) {
2836
+ var _AssociateChannelFlowCommand = class _AssociateChannelFlowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2839
2837
  return [
2840
2838
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2841
2839
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2849,9 +2847,7 @@ var AssociateChannelFlowCommand = _AssociateChannelFlowCommand;
2849
2847
 
2850
2848
 
2851
2849
 
2852
- var _BatchCreateChannelMembershipCommand = class _BatchCreateChannelMembershipCommand extends import_smithy_client.Command.classBuilder().ep({
2853
- ...commonParams
2854
- }).m(function(Command, cs, config, o) {
2850
+ var _BatchCreateChannelMembershipCommand = class _BatchCreateChannelMembershipCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2855
2851
  return [
2856
2852
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2857
2853
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2865,9 +2861,7 @@ var BatchCreateChannelMembershipCommand = _BatchCreateChannelMembershipCommand;
2865
2861
 
2866
2862
 
2867
2863
 
2868
- var _ChannelFlowCallbackCommand = class _ChannelFlowCallbackCommand extends import_smithy_client.Command.classBuilder().ep({
2869
- ...commonParams
2870
- }).m(function(Command, cs, config, o) {
2864
+ var _ChannelFlowCallbackCommand = class _ChannelFlowCallbackCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2871
2865
  return [
2872
2866
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2873
2867
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2881,9 +2875,7 @@ var ChannelFlowCallbackCommand = _ChannelFlowCallbackCommand;
2881
2875
 
2882
2876
 
2883
2877
 
2884
- var _CreateChannelBanCommand = class _CreateChannelBanCommand extends import_smithy_client.Command.classBuilder().ep({
2885
- ...commonParams
2886
- }).m(function(Command, cs, config, o) {
2878
+ var _CreateChannelBanCommand = class _CreateChannelBanCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2887
2879
  return [
2888
2880
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2889
2881
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2897,9 +2889,7 @@ var CreateChannelBanCommand = _CreateChannelBanCommand;
2897
2889
 
2898
2890
 
2899
2891
 
2900
- var _CreateChannelCommand = class _CreateChannelCommand extends import_smithy_client.Command.classBuilder().ep({
2901
- ...commonParams
2902
- }).m(function(Command, cs, config, o) {
2892
+ var _CreateChannelCommand = class _CreateChannelCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2903
2893
  return [
2904
2894
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2905
2895
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2913,9 +2903,7 @@ var CreateChannelCommand = _CreateChannelCommand;
2913
2903
 
2914
2904
 
2915
2905
 
2916
- var _CreateChannelFlowCommand = class _CreateChannelFlowCommand extends import_smithy_client.Command.classBuilder().ep({
2917
- ...commonParams
2918
- }).m(function(Command, cs, config, o) {
2906
+ var _CreateChannelFlowCommand = class _CreateChannelFlowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2919
2907
  return [
2920
2908
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2921
2909
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2929,9 +2917,7 @@ var CreateChannelFlowCommand = _CreateChannelFlowCommand;
2929
2917
 
2930
2918
 
2931
2919
 
2932
- var _CreateChannelMembershipCommand = class _CreateChannelMembershipCommand extends import_smithy_client.Command.classBuilder().ep({
2933
- ...commonParams
2934
- }).m(function(Command, cs, config, o) {
2920
+ var _CreateChannelMembershipCommand = class _CreateChannelMembershipCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2935
2921
  return [
2936
2922
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2937
2923
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2945,9 +2931,7 @@ var CreateChannelMembershipCommand = _CreateChannelMembershipCommand;
2945
2931
 
2946
2932
 
2947
2933
 
2948
- var _CreateChannelModeratorCommand = class _CreateChannelModeratorCommand extends import_smithy_client.Command.classBuilder().ep({
2949
- ...commonParams
2950
- }).m(function(Command, cs, config, o) {
2934
+ var _CreateChannelModeratorCommand = class _CreateChannelModeratorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2951
2935
  return [
2952
2936
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2953
2937
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2961,9 +2945,7 @@ var CreateChannelModeratorCommand = _CreateChannelModeratorCommand;
2961
2945
 
2962
2946
 
2963
2947
 
2964
- var _DeleteChannelBanCommand = class _DeleteChannelBanCommand extends import_smithy_client.Command.classBuilder().ep({
2965
- ...commonParams
2966
- }).m(function(Command, cs, config, o) {
2948
+ var _DeleteChannelBanCommand = class _DeleteChannelBanCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2967
2949
  return [
2968
2950
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2969
2951
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2977,9 +2959,7 @@ var DeleteChannelBanCommand = _DeleteChannelBanCommand;
2977
2959
 
2978
2960
 
2979
2961
 
2980
- var _DeleteChannelCommand = class _DeleteChannelCommand extends import_smithy_client.Command.classBuilder().ep({
2981
- ...commonParams
2982
- }).m(function(Command, cs, config, o) {
2962
+ var _DeleteChannelCommand = class _DeleteChannelCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2983
2963
  return [
2984
2964
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2985
2965
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2993,9 +2973,7 @@ var DeleteChannelCommand = _DeleteChannelCommand;
2993
2973
 
2994
2974
 
2995
2975
 
2996
- var _DeleteChannelFlowCommand = class _DeleteChannelFlowCommand extends import_smithy_client.Command.classBuilder().ep({
2997
- ...commonParams
2998
- }).m(function(Command, cs, config, o) {
2976
+ var _DeleteChannelFlowCommand = class _DeleteChannelFlowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2999
2977
  return [
3000
2978
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3001
2979
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3009,9 +2987,7 @@ var DeleteChannelFlowCommand = _DeleteChannelFlowCommand;
3009
2987
 
3010
2988
 
3011
2989
 
3012
- var _DeleteChannelMembershipCommand = class _DeleteChannelMembershipCommand extends import_smithy_client.Command.classBuilder().ep({
3013
- ...commonParams
3014
- }).m(function(Command, cs, config, o) {
2990
+ var _DeleteChannelMembershipCommand = class _DeleteChannelMembershipCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3015
2991
  return [
3016
2992
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3017
2993
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3025,9 +3001,7 @@ var DeleteChannelMembershipCommand = _DeleteChannelMembershipCommand;
3025
3001
 
3026
3002
 
3027
3003
 
3028
- var _DeleteChannelMessageCommand = class _DeleteChannelMessageCommand extends import_smithy_client.Command.classBuilder().ep({
3029
- ...commonParams
3030
- }).m(function(Command, cs, config, o) {
3004
+ var _DeleteChannelMessageCommand = class _DeleteChannelMessageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3031
3005
  return [
3032
3006
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3033
3007
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3041,9 +3015,7 @@ var DeleteChannelMessageCommand = _DeleteChannelMessageCommand;
3041
3015
 
3042
3016
 
3043
3017
 
3044
- var _DeleteChannelModeratorCommand = class _DeleteChannelModeratorCommand extends import_smithy_client.Command.classBuilder().ep({
3045
- ...commonParams
3046
- }).m(function(Command, cs, config, o) {
3018
+ var _DeleteChannelModeratorCommand = class _DeleteChannelModeratorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3047
3019
  return [
3048
3020
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3049
3021
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3057,9 +3029,7 @@ var DeleteChannelModeratorCommand = _DeleteChannelModeratorCommand;
3057
3029
 
3058
3030
 
3059
3031
 
3060
- var _DeleteMessagingStreamingConfigurationsCommand = class _DeleteMessagingStreamingConfigurationsCommand extends import_smithy_client.Command.classBuilder().ep({
3061
- ...commonParams
3062
- }).m(function(Command, cs, config, o) {
3032
+ var _DeleteMessagingStreamingConfigurationsCommand = class _DeleteMessagingStreamingConfigurationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3063
3033
  return [
3064
3034
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3065
3035
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3073,9 +3043,7 @@ var DeleteMessagingStreamingConfigurationsCommand = _DeleteMessagingStreamingCon
3073
3043
 
3074
3044
 
3075
3045
 
3076
- var _DescribeChannelBanCommand = class _DescribeChannelBanCommand extends import_smithy_client.Command.classBuilder().ep({
3077
- ...commonParams
3078
- }).m(function(Command, cs, config, o) {
3046
+ var _DescribeChannelBanCommand = class _DescribeChannelBanCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3079
3047
  return [
3080
3048
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3081
3049
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3089,9 +3057,7 @@ var DescribeChannelBanCommand = _DescribeChannelBanCommand;
3089
3057
 
3090
3058
 
3091
3059
 
3092
- var _DescribeChannelCommand = class _DescribeChannelCommand extends import_smithy_client.Command.classBuilder().ep({
3093
- ...commonParams
3094
- }).m(function(Command, cs, config, o) {
3060
+ var _DescribeChannelCommand = class _DescribeChannelCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3095
3061
  return [
3096
3062
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3097
3063
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3105,9 +3071,7 @@ var DescribeChannelCommand = _DescribeChannelCommand;
3105
3071
 
3106
3072
 
3107
3073
 
3108
- var _DescribeChannelFlowCommand = class _DescribeChannelFlowCommand extends import_smithy_client.Command.classBuilder().ep({
3109
- ...commonParams
3110
- }).m(function(Command, cs, config, o) {
3074
+ var _DescribeChannelFlowCommand = class _DescribeChannelFlowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3111
3075
  return [
3112
3076
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3113
3077
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3121,9 +3085,7 @@ var DescribeChannelFlowCommand = _DescribeChannelFlowCommand;
3121
3085
 
3122
3086
 
3123
3087
 
3124
- var _DescribeChannelMembershipCommand = class _DescribeChannelMembershipCommand extends import_smithy_client.Command.classBuilder().ep({
3125
- ...commonParams
3126
- }).m(function(Command, cs, config, o) {
3088
+ var _DescribeChannelMembershipCommand = class _DescribeChannelMembershipCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3127
3089
  return [
3128
3090
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3129
3091
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3137,9 +3099,7 @@ var DescribeChannelMembershipCommand = _DescribeChannelMembershipCommand;
3137
3099
 
3138
3100
 
3139
3101
 
3140
- var _DescribeChannelMembershipForAppInstanceUserCommand = class _DescribeChannelMembershipForAppInstanceUserCommand extends import_smithy_client.Command.classBuilder().ep({
3141
- ...commonParams
3142
- }).m(function(Command, cs, config, o) {
3102
+ var _DescribeChannelMembershipForAppInstanceUserCommand = class _DescribeChannelMembershipForAppInstanceUserCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3143
3103
  return [
3144
3104
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3145
3105
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3153,9 +3113,7 @@ var DescribeChannelMembershipForAppInstanceUserCommand = _DescribeChannelMembers
3153
3113
 
3154
3114
 
3155
3115
 
3156
- var _DescribeChannelModeratedByAppInstanceUserCommand = class _DescribeChannelModeratedByAppInstanceUserCommand extends import_smithy_client.Command.classBuilder().ep({
3157
- ...commonParams
3158
- }).m(function(Command, cs, config, o) {
3116
+ var _DescribeChannelModeratedByAppInstanceUserCommand = class _DescribeChannelModeratedByAppInstanceUserCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3159
3117
  return [
3160
3118
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3161
3119
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3169,9 +3127,7 @@ var DescribeChannelModeratedByAppInstanceUserCommand = _DescribeChannelModerated
3169
3127
 
3170
3128
 
3171
3129
 
3172
- var _DescribeChannelModeratorCommand = class _DescribeChannelModeratorCommand extends import_smithy_client.Command.classBuilder().ep({
3173
- ...commonParams
3174
- }).m(function(Command, cs, config, o) {
3130
+ var _DescribeChannelModeratorCommand = class _DescribeChannelModeratorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3175
3131
  return [
3176
3132
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3177
3133
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3185,9 +3141,7 @@ var DescribeChannelModeratorCommand = _DescribeChannelModeratorCommand;
3185
3141
 
3186
3142
 
3187
3143
 
3188
- var _DisassociateChannelFlowCommand = class _DisassociateChannelFlowCommand extends import_smithy_client.Command.classBuilder().ep({
3189
- ...commonParams
3190
- }).m(function(Command, cs, config, o) {
3144
+ var _DisassociateChannelFlowCommand = class _DisassociateChannelFlowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3191
3145
  return [
3192
3146
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3193
3147
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3201,9 +3155,7 @@ var DisassociateChannelFlowCommand = _DisassociateChannelFlowCommand;
3201
3155
 
3202
3156
 
3203
3157
 
3204
- var _GetChannelMembershipPreferencesCommand = class _GetChannelMembershipPreferencesCommand extends import_smithy_client.Command.classBuilder().ep({
3205
- ...commonParams
3206
- }).m(function(Command, cs, config, o) {
3158
+ var _GetChannelMembershipPreferencesCommand = class _GetChannelMembershipPreferencesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3207
3159
  return [
3208
3160
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3209
3161
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3217,9 +3169,7 @@ var GetChannelMembershipPreferencesCommand = _GetChannelMembershipPreferencesCom
3217
3169
 
3218
3170
 
3219
3171
 
3220
- var _GetChannelMessageCommand = class _GetChannelMessageCommand extends import_smithy_client.Command.classBuilder().ep({
3221
- ...commonParams
3222
- }).m(function(Command, cs, config, o) {
3172
+ var _GetChannelMessageCommand = class _GetChannelMessageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3223
3173
  return [
3224
3174
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3225
3175
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3233,9 +3183,7 @@ var GetChannelMessageCommand = _GetChannelMessageCommand;
3233
3183
 
3234
3184
 
3235
3185
 
3236
- var _GetChannelMessageStatusCommand = class _GetChannelMessageStatusCommand extends import_smithy_client.Command.classBuilder().ep({
3237
- ...commonParams
3238
- }).m(function(Command, cs, config, o) {
3186
+ var _GetChannelMessageStatusCommand = class _GetChannelMessageStatusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3239
3187
  return [
3240
3188
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3241
3189
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3249,9 +3197,7 @@ var GetChannelMessageStatusCommand = _GetChannelMessageStatusCommand;
3249
3197
 
3250
3198
 
3251
3199
 
3252
- var _GetMessagingSessionEndpointCommand = class _GetMessagingSessionEndpointCommand extends import_smithy_client.Command.classBuilder().ep({
3253
- ...commonParams
3254
- }).m(function(Command, cs, config, o) {
3200
+ var _GetMessagingSessionEndpointCommand = class _GetMessagingSessionEndpointCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3255
3201
  return [
3256
3202
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3257
3203
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3265,9 +3211,7 @@ var GetMessagingSessionEndpointCommand = _GetMessagingSessionEndpointCommand;
3265
3211
 
3266
3212
 
3267
3213
 
3268
- var _GetMessagingStreamingConfigurationsCommand = class _GetMessagingStreamingConfigurationsCommand extends import_smithy_client.Command.classBuilder().ep({
3269
- ...commonParams
3270
- }).m(function(Command, cs, config, o) {
3214
+ var _GetMessagingStreamingConfigurationsCommand = class _GetMessagingStreamingConfigurationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3271
3215
  return [
3272
3216
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3273
3217
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3281,9 +3225,7 @@ var GetMessagingStreamingConfigurationsCommand = _GetMessagingStreamingConfigura
3281
3225
 
3282
3226
 
3283
3227
 
3284
- var _ListChannelBansCommand = class _ListChannelBansCommand extends import_smithy_client.Command.classBuilder().ep({
3285
- ...commonParams
3286
- }).m(function(Command, cs, config, o) {
3228
+ var _ListChannelBansCommand = class _ListChannelBansCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3287
3229
  return [
3288
3230
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3289
3231
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3297,9 +3239,7 @@ var ListChannelBansCommand = _ListChannelBansCommand;
3297
3239
 
3298
3240
 
3299
3241
 
3300
- var _ListChannelFlowsCommand = class _ListChannelFlowsCommand extends import_smithy_client.Command.classBuilder().ep({
3301
- ...commonParams
3302
- }).m(function(Command, cs, config, o) {
3242
+ var _ListChannelFlowsCommand = class _ListChannelFlowsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3303
3243
  return [
3304
3244
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3305
3245
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3313,9 +3253,7 @@ var ListChannelFlowsCommand = _ListChannelFlowsCommand;
3313
3253
 
3314
3254
 
3315
3255
 
3316
- var _ListChannelMembershipsCommand = class _ListChannelMembershipsCommand extends import_smithy_client.Command.classBuilder().ep({
3317
- ...commonParams
3318
- }).m(function(Command, cs, config, o) {
3256
+ var _ListChannelMembershipsCommand = class _ListChannelMembershipsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3319
3257
  return [
3320
3258
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3321
3259
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3329,9 +3267,7 @@ var ListChannelMembershipsCommand = _ListChannelMembershipsCommand;
3329
3267
 
3330
3268
 
3331
3269
 
3332
- var _ListChannelMembershipsForAppInstanceUserCommand = class _ListChannelMembershipsForAppInstanceUserCommand extends import_smithy_client.Command.classBuilder().ep({
3333
- ...commonParams
3334
- }).m(function(Command, cs, config, o) {
3270
+ var _ListChannelMembershipsForAppInstanceUserCommand = class _ListChannelMembershipsForAppInstanceUserCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3335
3271
  return [
3336
3272
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3337
3273
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3348,9 +3284,7 @@ var ListChannelMembershipsForAppInstanceUserCommand = _ListChannelMembershipsFor
3348
3284
 
3349
3285
 
3350
3286
 
3351
- var _ListChannelMessagesCommand = class _ListChannelMessagesCommand extends import_smithy_client.Command.classBuilder().ep({
3352
- ...commonParams
3353
- }).m(function(Command, cs, config, o) {
3287
+ var _ListChannelMessagesCommand = class _ListChannelMessagesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3354
3288
  return [
3355
3289
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3356
3290
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3364,9 +3298,7 @@ var ListChannelMessagesCommand = _ListChannelMessagesCommand;
3364
3298
 
3365
3299
 
3366
3300
 
3367
- var _ListChannelModeratorsCommand = class _ListChannelModeratorsCommand extends import_smithy_client.Command.classBuilder().ep({
3368
- ...commonParams
3369
- }).m(function(Command, cs, config, o) {
3301
+ var _ListChannelModeratorsCommand = class _ListChannelModeratorsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3370
3302
  return [
3371
3303
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3372
3304
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3380,9 +3312,7 @@ var ListChannelModeratorsCommand = _ListChannelModeratorsCommand;
3380
3312
 
3381
3313
 
3382
3314
 
3383
- var _ListChannelsAssociatedWithChannelFlowCommand = class _ListChannelsAssociatedWithChannelFlowCommand extends import_smithy_client.Command.classBuilder().ep({
3384
- ...commonParams
3385
- }).m(function(Command, cs, config, o) {
3315
+ var _ListChannelsAssociatedWithChannelFlowCommand = class _ListChannelsAssociatedWithChannelFlowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3386
3316
  return [
3387
3317
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3388
3318
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3399,9 +3329,7 @@ var ListChannelsAssociatedWithChannelFlowCommand = _ListChannelsAssociatedWithCh
3399
3329
 
3400
3330
 
3401
3331
 
3402
- var _ListChannelsCommand = class _ListChannelsCommand extends import_smithy_client.Command.classBuilder().ep({
3403
- ...commonParams
3404
- }).m(function(Command, cs, config, o) {
3332
+ var _ListChannelsCommand = class _ListChannelsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3405
3333
  return [
3406
3334
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3407
3335
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3415,9 +3343,7 @@ var ListChannelsCommand = _ListChannelsCommand;
3415
3343
 
3416
3344
 
3417
3345
 
3418
- var _ListChannelsModeratedByAppInstanceUserCommand = class _ListChannelsModeratedByAppInstanceUserCommand extends import_smithy_client.Command.classBuilder().ep({
3419
- ...commonParams
3420
- }).m(function(Command, cs, config, o) {
3346
+ var _ListChannelsModeratedByAppInstanceUserCommand = class _ListChannelsModeratedByAppInstanceUserCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3421
3347
  return [
3422
3348
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3423
3349
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3434,9 +3360,7 @@ var ListChannelsModeratedByAppInstanceUserCommand = _ListChannelsModeratedByAppI
3434
3360
 
3435
3361
 
3436
3362
 
3437
- var _ListSubChannelsCommand = class _ListSubChannelsCommand extends import_smithy_client.Command.classBuilder().ep({
3438
- ...commonParams
3439
- }).m(function(Command, cs, config, o) {
3363
+ var _ListSubChannelsCommand = class _ListSubChannelsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3440
3364
  return [
3441
3365
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3442
3366
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3450,9 +3374,7 @@ var ListSubChannelsCommand = _ListSubChannelsCommand;
3450
3374
 
3451
3375
 
3452
3376
 
3453
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
3454
- ...commonParams
3455
- }).m(function(Command, cs, config, o) {
3377
+ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3456
3378
  return [
3457
3379
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3458
3380
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3466,9 +3388,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
3466
3388
 
3467
3389
 
3468
3390
 
3469
- var _PutChannelExpirationSettingsCommand = class _PutChannelExpirationSettingsCommand extends import_smithy_client.Command.classBuilder().ep({
3470
- ...commonParams
3471
- }).m(function(Command, cs, config, o) {
3391
+ var _PutChannelExpirationSettingsCommand = class _PutChannelExpirationSettingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3472
3392
  return [
3473
3393
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3474
3394
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3482,9 +3402,7 @@ var PutChannelExpirationSettingsCommand = _PutChannelExpirationSettingsCommand;
3482
3402
 
3483
3403
 
3484
3404
 
3485
- var _PutChannelMembershipPreferencesCommand = class _PutChannelMembershipPreferencesCommand extends import_smithy_client.Command.classBuilder().ep({
3486
- ...commonParams
3487
- }).m(function(Command, cs, config, o) {
3405
+ var _PutChannelMembershipPreferencesCommand = class _PutChannelMembershipPreferencesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3488
3406
  return [
3489
3407
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3490
3408
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3501,9 +3419,7 @@ var PutChannelMembershipPreferencesCommand = _PutChannelMembershipPreferencesCom
3501
3419
 
3502
3420
 
3503
3421
 
3504
- var _PutMessagingStreamingConfigurationsCommand = class _PutMessagingStreamingConfigurationsCommand extends import_smithy_client.Command.classBuilder().ep({
3505
- ...commonParams
3506
- }).m(function(Command, cs, config, o) {
3422
+ var _PutMessagingStreamingConfigurationsCommand = class _PutMessagingStreamingConfigurationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3507
3423
  return [
3508
3424
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3509
3425
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3517,9 +3433,7 @@ var PutMessagingStreamingConfigurationsCommand = _PutMessagingStreamingConfigura
3517
3433
 
3518
3434
 
3519
3435
 
3520
- var _RedactChannelMessageCommand = class _RedactChannelMessageCommand extends import_smithy_client.Command.classBuilder().ep({
3521
- ...commonParams
3522
- }).m(function(Command, cs, config, o) {
3436
+ var _RedactChannelMessageCommand = class _RedactChannelMessageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3523
3437
  return [
3524
3438
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3525
3439
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3533,9 +3447,7 @@ var RedactChannelMessageCommand = _RedactChannelMessageCommand;
3533
3447
 
3534
3448
 
3535
3449
 
3536
- var _SearchChannelsCommand = class _SearchChannelsCommand extends import_smithy_client.Command.classBuilder().ep({
3537
- ...commonParams
3538
- }).m(function(Command, cs, config, o) {
3450
+ var _SearchChannelsCommand = class _SearchChannelsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3539
3451
  return [
3540
3452
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3541
3453
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3549,9 +3461,7 @@ var SearchChannelsCommand = _SearchChannelsCommand;
3549
3461
 
3550
3462
 
3551
3463
 
3552
- var _SendChannelMessageCommand = class _SendChannelMessageCommand extends import_smithy_client.Command.classBuilder().ep({
3553
- ...commonParams
3554
- }).m(function(Command, cs, config, o) {
3464
+ var _SendChannelMessageCommand = class _SendChannelMessageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3555
3465
  return [
3556
3466
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3557
3467
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3565,9 +3475,7 @@ var SendChannelMessageCommand = _SendChannelMessageCommand;
3565
3475
 
3566
3476
 
3567
3477
 
3568
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
3569
- ...commonParams
3570
- }).m(function(Command, cs, config, o) {
3478
+ var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3571
3479
  return [
3572
3480
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3573
3481
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3581,9 +3489,7 @@ var TagResourceCommand = _TagResourceCommand;
3581
3489
 
3582
3490
 
3583
3491
 
3584
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
3585
- ...commonParams
3586
- }).m(function(Command, cs, config, o) {
3492
+ var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3587
3493
  return [
3588
3494
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3589
3495
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3597,9 +3503,7 @@ var UntagResourceCommand = _UntagResourceCommand;
3597
3503
 
3598
3504
 
3599
3505
 
3600
- var _UpdateChannelCommand = class _UpdateChannelCommand extends import_smithy_client.Command.classBuilder().ep({
3601
- ...commonParams
3602
- }).m(function(Command, cs, config, o) {
3506
+ var _UpdateChannelCommand = class _UpdateChannelCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3603
3507
  return [
3604
3508
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3605
3509
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3613,9 +3517,7 @@ var UpdateChannelCommand = _UpdateChannelCommand;
3613
3517
 
3614
3518
 
3615
3519
 
3616
- var _UpdateChannelFlowCommand = class _UpdateChannelFlowCommand extends import_smithy_client.Command.classBuilder().ep({
3617
- ...commonParams
3618
- }).m(function(Command, cs, config, o) {
3520
+ var _UpdateChannelFlowCommand = class _UpdateChannelFlowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3619
3521
  return [
3620
3522
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3621
3523
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3629,9 +3531,7 @@ var UpdateChannelFlowCommand = _UpdateChannelFlowCommand;
3629
3531
 
3630
3532
 
3631
3533
 
3632
- var _UpdateChannelMessageCommand = class _UpdateChannelMessageCommand extends import_smithy_client.Command.classBuilder().ep({
3633
- ...commonParams
3634
- }).m(function(Command, cs, config, o) {
3534
+ var _UpdateChannelMessageCommand = class _UpdateChannelMessageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3635
3535
  return [
3636
3536
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3637
3537
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3645,9 +3545,7 @@ var UpdateChannelMessageCommand = _UpdateChannelMessageCommand;
3645
3545
 
3646
3546
 
3647
3547
 
3648
- var _UpdateChannelReadMarkerCommand = class _UpdateChannelReadMarkerCommand extends import_smithy_client.Command.classBuilder().ep({
3649
- ...commonParams
3650
- }).m(function(Command, cs, config, o) {
3548
+ var _UpdateChannelReadMarkerCommand = class _UpdateChannelReadMarkerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3651
3549
  return [
3652
3550
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3653
3551
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -6,9 +6,7 @@ import { de_AssociateChannelFlowCommand, se_AssociateChannelFlowCommand } from "
6
6
  export { $Command };
7
7
  export class AssociateChannelFlowCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_BatchCreateChannelMembershipCommand, se_BatchCreateChannelMembership
7
7
  export { $Command };
8
8
  export class BatchCreateChannelMembershipCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_ChannelFlowCallbackCommand, se_ChannelFlowCallbackCommand } from "..
7
7
  export { $Command };
8
8
  export class ChannelFlowCallbackCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_CreateChannelBanCommand, se_CreateChannelBanCommand } from "../proto
7
7
  export { $Command };
8
8
  export class CreateChannelBanCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_CreateChannelCommand, se_CreateChannelCommand } from "../protocols/A
7
7
  export { $Command };
8
8
  export class CreateChannelCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_CreateChannelFlowCommand, se_CreateChannelFlowCommand } from "../pro
7
7
  export { $Command };
8
8
  export class CreateChannelFlowCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_CreateChannelMembershipCommand, se_CreateChannelMembershipCommand }
7
7
  export { $Command };
8
8
  export class CreateChannelMembershipCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),