@aws-sdk/client-support-app 3.927.0 → 3.929.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/dist-cjs/index.js +353 -478
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/SupportAppClient.js +2 -0
  4. package/dist-es/commands/CreateSlackChannelConfigurationCommand.js +3 -9
  5. package/dist-es/commands/DeleteAccountAliasCommand.js +3 -9
  6. package/dist-es/commands/DeleteSlackChannelConfigurationCommand.js +3 -9
  7. package/dist-es/commands/DeleteSlackWorkspaceConfigurationCommand.js +3 -9
  8. package/dist-es/commands/GetAccountAliasCommand.js +3 -9
  9. package/dist-es/commands/ListSlackChannelConfigurationsCommand.js +3 -9
  10. package/dist-es/commands/ListSlackWorkspaceConfigurationsCommand.js +3 -9
  11. package/dist-es/commands/PutAccountAliasCommand.js +3 -9
  12. package/dist-es/commands/RegisterSlackWorkspaceForOrganizationCommand.js +3 -9
  13. package/dist-es/commands/UpdateSlackChannelConfigurationCommand.js +3 -9
  14. package/dist-es/runtimeConfig.shared.js +2 -0
  15. package/dist-es/schemas/schemas_0.js +313 -0
  16. package/dist-types/SupportAppClient.d.ts +10 -1
  17. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  18. package/dist-types/runtimeConfig.d.ts +1 -0
  19. package/dist-types/runtimeConfig.native.d.ts +1 -0
  20. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  21. package/dist-types/schemas/schemas_0.d.ts +42 -0
  22. package/dist-types/ts3.4/SupportAppClient.d.ts +4 -0
  23. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  24. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  25. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  26. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  27. package/dist-types/ts3.4/schemas/schemas_0.d.ts +47 -0
  28. package/package.json +5 -5
  29. package/dist-es/protocols/Aws_restJson1.js +0 -391
  30. package/dist-types/protocols/Aws_restJson1.d.ts +0 -92
  31. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -125
package/dist-cjs/index.js CHANGED
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
6
6
  var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
7
7
  var configResolver = require('@smithy/config-resolver');
8
8
  var core = require('@smithy/core');
9
+ var schema = require('@smithy/core/schema');
9
10
  var middlewareContentLength = require('@smithy/middleware-content-length');
10
11
  var middlewareEndpoint = require('@smithy/middleware-endpoint');
11
12
  var middlewareRetry = require('@smithy/middleware-retry');
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
14
15
  var runtimeConfig = require('./runtimeConfig');
15
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
16
17
  var protocolHttp = require('@smithy/protocol-http');
17
- var middlewareSerde = require('@smithy/middleware-serde');
18
- var core$1 = require('@aws-sdk/core');
19
18
 
20
19
  const resolveClientEndpointParameters = (options) => {
21
20
  return Object.assign(options, {
@@ -91,6 +90,7 @@ class SupportAppClient extends smithyClient.Client {
91
90
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
92
91
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
93
92
  this.config = _config_8;
93
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
94
94
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
95
95
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
96
96
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -110,14 +110,14 @@ class SupportAppClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- class SupportAppServiceException extends smithyClient.ServiceException {
113
+ let SupportAppServiceException$1 = class SupportAppServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, SupportAppServiceException.prototype);
117
117
  }
118
- }
118
+ };
119
119
 
120
- class AccessDeniedException extends SupportAppServiceException {
120
+ let AccessDeniedException$1 = class AccessDeniedException extends SupportAppServiceException$1 {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,12 +128,12 @@ class AccessDeniedException extends SupportAppServiceException {
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- }
131
+ };
132
132
  const AccountType = {
133
133
  MANAGEMENT: "management",
134
134
  MEMBER: "member",
135
135
  };
136
- class ConflictException extends SupportAppServiceException {
136
+ let ConflictException$1 = class ConflictException extends SupportAppServiceException$1 {
137
137
  name = "ConflictException";
138
138
  $fault = "client";
139
139
  constructor(opts) {
@@ -144,13 +144,13 @@ class ConflictException extends SupportAppServiceException {
144
144
  });
145
145
  Object.setPrototypeOf(this, ConflictException.prototype);
146
146
  }
147
- }
147
+ };
148
148
  const NotificationSeverityLevel = {
149
149
  ALL: "all",
150
150
  HIGH: "high",
151
151
  NONE: "none",
152
152
  };
153
- class InternalServerException extends SupportAppServiceException {
153
+ let InternalServerException$1 = class InternalServerException extends SupportAppServiceException$1 {
154
154
  name = "InternalServerException";
155
155
  $fault = "server";
156
156
  constructor(opts) {
@@ -161,8 +161,8 @@ class InternalServerException extends SupportAppServiceException {
161
161
  });
162
162
  Object.setPrototypeOf(this, InternalServerException.prototype);
163
163
  }
164
- }
165
- class ServiceQuotaExceededException extends SupportAppServiceException {
164
+ };
165
+ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends SupportAppServiceException$1 {
166
166
  name = "ServiceQuotaExceededException";
167
167
  $fault = "client";
168
168
  constructor(opts) {
@@ -173,8 +173,8 @@ class ServiceQuotaExceededException extends SupportAppServiceException {
173
173
  });
174
174
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
175
175
  }
176
- }
177
- class ValidationException extends SupportAppServiceException {
176
+ };
177
+ let ValidationException$1 = class ValidationException extends SupportAppServiceException$1 {
178
178
  name = "ValidationException";
179
179
  $fault = "client";
180
180
  constructor(opts) {
@@ -185,8 +185,8 @@ class ValidationException extends SupportAppServiceException {
185
185
  });
186
186
  Object.setPrototypeOf(this, ValidationException.prototype);
187
187
  }
188
- }
189
- class ResourceNotFoundException extends SupportAppServiceException {
188
+ };
189
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends SupportAppServiceException$1 {
190
190
  name = "ResourceNotFoundException";
191
191
  $fault = "client";
192
192
  constructor(opts) {
@@ -197,408 +197,328 @@ class ResourceNotFoundException extends SupportAppServiceException {
197
197
  });
198
198
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
199
199
  }
200
- }
201
-
202
- const se_CreateSlackChannelConfigurationCommand = async (input, context) => {
203
- const b = core.requestBuilder(input, context);
204
- const headers = {
205
- "content-type": "application/json",
206
- };
207
- b.bp("/control/create-slack-channel-configuration");
208
- let body;
209
- body = JSON.stringify(smithyClient.take(input, {
210
- channelId: [],
211
- channelName: [],
212
- channelRoleArn: [],
213
- notifyOnAddCorrespondenceToCase: [],
214
- notifyOnCaseSeverity: [],
215
- notifyOnCreateOrReopenCase: [],
216
- notifyOnResolveCase: [],
217
- teamId: [],
218
- }));
219
- b.m("POST").h(headers).b(body);
220
- return b.build();
221
- };
222
- const se_DeleteAccountAliasCommand = async (input, context) => {
223
- const b = core.requestBuilder(input, context);
224
- const headers = {};
225
- b.bp("/control/delete-account-alias");
226
- let body;
227
- b.m("POST").h(headers).b(body);
228
- return b.build();
229
- };
230
- const se_DeleteSlackChannelConfigurationCommand = async (input, context) => {
231
- const b = core.requestBuilder(input, context);
232
- const headers = {
233
- "content-type": "application/json",
234
- };
235
- b.bp("/control/delete-slack-channel-configuration");
236
- let body;
237
- body = JSON.stringify(smithyClient.take(input, {
238
- channelId: [],
239
- teamId: [],
240
- }));
241
- b.m("POST").h(headers).b(body);
242
- return b.build();
243
- };
244
- const se_DeleteSlackWorkspaceConfigurationCommand = async (input, context) => {
245
- const b = core.requestBuilder(input, context);
246
- const headers = {
247
- "content-type": "application/json",
248
- };
249
- b.bp("/control/delete-slack-workspace-configuration");
250
- let body;
251
- body = JSON.stringify(smithyClient.take(input, {
252
- teamId: [],
253
- }));
254
- b.m("POST").h(headers).b(body);
255
- return b.build();
256
- };
257
- const se_GetAccountAliasCommand = async (input, context) => {
258
- const b = core.requestBuilder(input, context);
259
- const headers = {};
260
- b.bp("/control/get-account-alias");
261
- let body;
262
- b.m("POST").h(headers).b(body);
263
- return b.build();
264
- };
265
- const se_ListSlackChannelConfigurationsCommand = async (input, context) => {
266
- const b = core.requestBuilder(input, context);
267
- const headers = {
268
- "content-type": "application/json",
269
- };
270
- b.bp("/control/list-slack-channel-configurations");
271
- let body;
272
- body = JSON.stringify(smithyClient.take(input, {
273
- nextToken: [],
274
- }));
275
- b.m("POST").h(headers).b(body);
276
- return b.build();
277
200
  };
278
- const se_ListSlackWorkspaceConfigurationsCommand = async (input, context) => {
279
- const b = core.requestBuilder(input, context);
280
- const headers = {
281
- "content-type": "application/json",
282
- };
283
- b.bp("/control/list-slack-workspace-configurations");
284
- let body;
285
- body = JSON.stringify(smithyClient.take(input, {
286
- nextToken: [],
287
- }));
288
- b.m("POST").h(headers).b(body);
289
- return b.build();
290
- };
291
- const se_PutAccountAliasCommand = async (input, context) => {
292
- const b = core.requestBuilder(input, context);
293
- const headers = {
294
- "content-type": "application/json",
295
- };
296
- b.bp("/control/put-account-alias");
297
- let body;
298
- body = JSON.stringify(smithyClient.take(input, {
299
- accountAlias: [],
300
- }));
301
- b.m("POST").h(headers).b(body);
302
- return b.build();
303
- };
304
- const se_RegisterSlackWorkspaceForOrganizationCommand = async (input, context) => {
305
- const b = core.requestBuilder(input, context);
306
- const headers = {
307
- "content-type": "application/json",
308
- };
309
- b.bp("/control/register-slack-workspace-for-organization");
310
- let body;
311
- body = JSON.stringify(smithyClient.take(input, {
312
- teamId: [],
313
- }));
314
- b.m("POST").h(headers).b(body);
315
- return b.build();
316
- };
317
- const se_UpdateSlackChannelConfigurationCommand = async (input, context) => {
318
- const b = core.requestBuilder(input, context);
319
- const headers = {
320
- "content-type": "application/json",
321
- };
322
- b.bp("/control/update-slack-channel-configuration");
323
- let body;
324
- body = JSON.stringify(smithyClient.take(input, {
325
- channelId: [],
326
- channelName: [],
327
- channelRoleArn: [],
328
- notifyOnAddCorrespondenceToCase: [],
329
- notifyOnCaseSeverity: [],
330
- notifyOnCreateOrReopenCase: [],
331
- notifyOnResolveCase: [],
332
- teamId: [],
333
- }));
334
- b.m("POST").h(headers).b(body);
335
- return b.build();
336
- };
337
- const de_CreateSlackChannelConfigurationCommand = async (output, context) => {
338
- if (output.statusCode !== 200 && output.statusCode >= 300) {
339
- return de_CommandError(output, context);
340
- }
341
- const contents = smithyClient.map({
342
- $metadata: deserializeMetadata(output),
343
- });
344
- await smithyClient.collectBody(output.body, context);
345
- return contents;
346
- };
347
- const de_DeleteAccountAliasCommand = async (output, context) => {
348
- if (output.statusCode !== 200 && output.statusCode >= 300) {
349
- return de_CommandError(output, context);
350
- }
351
- const contents = smithyClient.map({
352
- $metadata: deserializeMetadata(output),
353
- });
354
- await smithyClient.collectBody(output.body, context);
355
- return contents;
356
- };
357
- const de_DeleteSlackChannelConfigurationCommand = async (output, context) => {
358
- if (output.statusCode !== 200 && output.statusCode >= 300) {
359
- return de_CommandError(output, context);
360
- }
361
- const contents = smithyClient.map({
362
- $metadata: deserializeMetadata(output),
363
- });
364
- await smithyClient.collectBody(output.body, context);
365
- return contents;
366
- };
367
- const de_DeleteSlackWorkspaceConfigurationCommand = async (output, context) => {
368
- if (output.statusCode !== 200 && output.statusCode >= 300) {
369
- return de_CommandError(output, context);
370
- }
371
- const contents = smithyClient.map({
372
- $metadata: deserializeMetadata(output),
373
- });
374
- await smithyClient.collectBody(output.body, context);
375
- return contents;
376
- };
377
- const de_GetAccountAliasCommand = async (output, context) => {
378
- if (output.statusCode !== 200 && output.statusCode >= 300) {
379
- return de_CommandError(output, context);
380
- }
381
- const contents = smithyClient.map({
382
- $metadata: deserializeMetadata(output),
383
- });
384
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
385
- const doc = smithyClient.take(data, {
386
- accountAlias: smithyClient.expectString,
387
- });
388
- Object.assign(contents, doc);
389
- return contents;
390
- };
391
- const de_ListSlackChannelConfigurationsCommand = async (output, context) => {
392
- if (output.statusCode !== 200 && output.statusCode >= 300) {
393
- return de_CommandError(output, context);
394
- }
395
- const contents = smithyClient.map({
396
- $metadata: deserializeMetadata(output),
397
- });
398
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
399
- const doc = smithyClient.take(data, {
400
- nextToken: smithyClient.expectString,
401
- slackChannelConfigurations: smithyClient._json,
402
- });
403
- Object.assign(contents, doc);
404
- return contents;
405
- };
406
- const de_ListSlackWorkspaceConfigurationsCommand = async (output, context) => {
407
- if (output.statusCode !== 200 && output.statusCode >= 300) {
408
- return de_CommandError(output, context);
409
- }
410
- const contents = smithyClient.map({
411
- $metadata: deserializeMetadata(output),
412
- });
413
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
414
- const doc = smithyClient.take(data, {
415
- nextToken: smithyClient.expectString,
416
- slackWorkspaceConfigurations: smithyClient._json,
417
- });
418
- Object.assign(contents, doc);
419
- return contents;
420
- };
421
- const de_PutAccountAliasCommand = async (output, context) => {
422
- if (output.statusCode !== 200 && output.statusCode >= 300) {
423
- return de_CommandError(output, context);
424
- }
425
- const contents = smithyClient.map({
426
- $metadata: deserializeMetadata(output),
427
- });
428
- await smithyClient.collectBody(output.body, context);
429
- return contents;
430
- };
431
- const de_RegisterSlackWorkspaceForOrganizationCommand = async (output, context) => {
432
- if (output.statusCode !== 200 && output.statusCode >= 300) {
433
- return de_CommandError(output, context);
434
- }
435
- const contents = smithyClient.map({
436
- $metadata: deserializeMetadata(output),
437
- });
438
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
439
- const doc = smithyClient.take(data, {
440
- accountType: smithyClient.expectString,
441
- teamId: smithyClient.expectString,
442
- teamName: smithyClient.expectString,
443
- });
444
- Object.assign(contents, doc);
445
- return contents;
446
- };
447
- const de_UpdateSlackChannelConfigurationCommand = async (output, context) => {
448
- if (output.statusCode !== 200 && output.statusCode >= 300) {
449
- return de_CommandError(output, context);
450
- }
451
- const contents = smithyClient.map({
452
- $metadata: deserializeMetadata(output),
453
- });
454
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
455
- const doc = smithyClient.take(data, {
456
- channelId: smithyClient.expectString,
457
- channelName: smithyClient.expectString,
458
- channelRoleArn: smithyClient.expectString,
459
- notifyOnAddCorrespondenceToCase: smithyClient.expectBoolean,
460
- notifyOnCaseSeverity: smithyClient.expectString,
461
- notifyOnCreateOrReopenCase: smithyClient.expectBoolean,
462
- notifyOnResolveCase: smithyClient.expectBoolean,
463
- teamId: smithyClient.expectString,
464
- });
465
- Object.assign(contents, doc);
466
- return contents;
467
- };
468
- const de_CommandError = async (output, context) => {
469
- const parsedOutput = {
470
- ...output,
471
- body: await core$1.parseJsonErrorBody(output.body, context),
472
- };
473
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
474
- switch (errorCode) {
475
- case "AccessDeniedException":
476
- case "com.amazonaws.supportapp#AccessDeniedException":
477
- throw await de_AccessDeniedExceptionRes(parsedOutput);
478
- case "ConflictException":
479
- case "com.amazonaws.supportapp#ConflictException":
480
- throw await de_ConflictExceptionRes(parsedOutput);
481
- case "InternalServerException":
482
- case "com.amazonaws.supportapp#InternalServerException":
483
- throw await de_InternalServerExceptionRes(parsedOutput);
484
- case "ServiceQuotaExceededException":
485
- case "com.amazonaws.supportapp#ServiceQuotaExceededException":
486
- throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
487
- case "ValidationException":
488
- case "com.amazonaws.supportapp#ValidationException":
489
- throw await de_ValidationExceptionRes(parsedOutput);
490
- case "ResourceNotFoundException":
491
- case "com.amazonaws.supportapp#ResourceNotFoundException":
492
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
493
- default:
494
- const parsedBody = parsedOutput.body;
495
- return throwDefaultError({
496
- output,
497
- parsedBody,
498
- errorCode,
499
- });
500
- }
501
- };
502
- const throwDefaultError = smithyClient.withBaseException(SupportAppServiceException);
503
- const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
504
- const contents = smithyClient.map({});
505
- const data = parsedOutput.body;
506
- const doc = smithyClient.take(data, {
507
- message: smithyClient.expectString,
508
- });
509
- Object.assign(contents, doc);
510
- const exception = new AccessDeniedException({
511
- $metadata: deserializeMetadata(parsedOutput),
512
- ...contents,
513
- });
514
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
515
- };
516
- const de_ConflictExceptionRes = async (parsedOutput, context) => {
517
- const contents = smithyClient.map({});
518
- const data = parsedOutput.body;
519
- const doc = smithyClient.take(data, {
520
- message: smithyClient.expectString,
521
- });
522
- Object.assign(contents, doc);
523
- const exception = new ConflictException({
524
- $metadata: deserializeMetadata(parsedOutput),
525
- ...contents,
526
- });
527
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
528
- };
529
- const de_InternalServerExceptionRes = async (parsedOutput, context) => {
530
- const contents = smithyClient.map({});
531
- const data = parsedOutput.body;
532
- const doc = smithyClient.take(data, {
533
- message: smithyClient.expectString,
534
- });
535
- Object.assign(contents, doc);
536
- const exception = new InternalServerException({
537
- $metadata: deserializeMetadata(parsedOutput),
538
- ...contents,
539
- });
540
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
541
- };
542
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
543
- const contents = smithyClient.map({});
544
- const data = parsedOutput.body;
545
- const doc = smithyClient.take(data, {
546
- message: smithyClient.expectString,
547
- });
548
- Object.assign(contents, doc);
549
- const exception = new ResourceNotFoundException({
550
- $metadata: deserializeMetadata(parsedOutput),
551
- ...contents,
552
- });
553
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
554
- };
555
- const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
556
- const contents = smithyClient.map({});
557
- const data = parsedOutput.body;
558
- const doc = smithyClient.take(data, {
559
- message: smithyClient.expectString,
560
- });
561
- Object.assign(contents, doc);
562
- const exception = new ServiceQuotaExceededException({
563
- $metadata: deserializeMetadata(parsedOutput),
564
- ...contents,
565
- });
566
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
567
- };
568
- const de_ValidationExceptionRes = async (parsedOutput, context) => {
569
- const contents = smithyClient.map({});
570
- const data = parsedOutput.body;
571
- const doc = smithyClient.take(data, {
572
- message: smithyClient.expectString,
573
- });
574
- Object.assign(contents, doc);
575
- const exception = new ValidationException({
576
- $metadata: deserializeMetadata(parsedOutput),
577
- ...contents,
578
- });
579
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
580
- };
581
- const deserializeMetadata = (output) => ({
582
- httpStatusCode: output.statusCode,
583
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
584
- extendedRequestId: output.headers["x-amz-id-2"],
585
- cfId: output.headers["x-amz-cf-id"],
586
- });
201
+
202
+ const _ADE = "AccessDeniedException";
203
+ const _CE = "ConflictException";
204
+ const _CSCC = "CreateSlackChannelConfiguration";
205
+ const _CSCCR = "CreateSlackChannelConfigurationRequest";
206
+ const _CSCCRr = "CreateSlackChannelConfigurationResult";
207
+ const _DAA = "DeleteAccountAlias";
208
+ const _DAAR = "DeleteAccountAliasRequest";
209
+ const _DAARe = "DeleteAccountAliasResult";
210
+ const _DSCC = "DeleteSlackChannelConfiguration";
211
+ const _DSCCR = "DeleteSlackChannelConfigurationRequest";
212
+ const _DSCCRe = "DeleteSlackChannelConfigurationResult";
213
+ const _DSWC = "DeleteSlackWorkspaceConfiguration";
214
+ const _DSWCR = "DeleteSlackWorkspaceConfigurationRequest";
215
+ const _DSWCRe = "DeleteSlackWorkspaceConfigurationResult";
216
+ const _GAA = "GetAccountAlias";
217
+ const _GAAR = "GetAccountAliasRequest";
218
+ const _GAARe = "GetAccountAliasResult";
219
+ const _ISE = "InternalServerException";
220
+ const _LSCC = "ListSlackChannelConfigurations";
221
+ const _LSCCR = "ListSlackChannelConfigurationsRequest";
222
+ const _LSCCRi = "ListSlackChannelConfigurationsResult";
223
+ const _LSWC = "ListSlackWorkspaceConfigurations";
224
+ const _LSWCR = "ListSlackWorkspaceConfigurationsRequest";
225
+ const _LSWCRi = "ListSlackWorkspaceConfigurationsResult";
226
+ const _PAA = "PutAccountAlias";
227
+ const _PAAR = "PutAccountAliasRequest";
228
+ const _PAARu = "PutAccountAliasResult";
229
+ const _RNFE = "ResourceNotFoundException";
230
+ const _RSWFO = "RegisterSlackWorkspaceForOrganization";
231
+ const _RSWFOR = "RegisterSlackWorkspaceForOrganizationRequest";
232
+ const _RSWFORe = "RegisterSlackWorkspaceForOrganizationResult";
233
+ const _SCC = "SlackChannelConfiguration";
234
+ const _SQEE = "ServiceQuotaExceededException";
235
+ const _SWC = "SlackWorkspaceConfiguration";
236
+ const _SWCL = "SlackWorkspaceConfigurationList";
237
+ const _USCC = "UpdateSlackChannelConfiguration";
238
+ const _USCCR = "UpdateSlackChannelConfigurationRequest";
239
+ const _USCCRp = "UpdateSlackChannelConfigurationResult";
240
+ const _VE = "ValidationException";
241
+ const _aA = "accountAlias";
242
+ const _aOMA = "allowOrganizationMemberAccount";
243
+ const _aT = "accountType";
244
+ const _c = "client";
245
+ const _cI = "channelId";
246
+ const _cN = "channelName";
247
+ const _cRA = "channelRoleArn";
248
+ const _e = "error";
249
+ const _h = "http";
250
+ const _hE = "httpError";
251
+ const _m = "message";
252
+ const _nOACTC = "notifyOnAddCorrespondenceToCase";
253
+ const _nOCORC = "notifyOnCreateOrReopenCase";
254
+ const _nOCS = "notifyOnCaseSeverity";
255
+ const _nORC = "notifyOnResolveCase";
256
+ const _nT = "nextToken";
257
+ const _s = "server";
258
+ const _sCC = "slackChannelConfigurations";
259
+ const _sCCL = "slackChannelConfigurationList";
260
+ const _sWC = "slackWorkspaceConfigurations";
261
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.supportapp";
262
+ const _tI = "teamId";
263
+ const _tN = "teamName";
264
+ const n0 = "com.amazonaws.supportapp";
265
+ var AccessDeniedException = [
266
+ -3,
267
+ n0,
268
+ _ADE,
269
+ {
270
+ [_e]: _c,
271
+ [_hE]: 403,
272
+ },
273
+ [_m],
274
+ [0],
275
+ ];
276
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
277
+ var ConflictException = [
278
+ -3,
279
+ n0,
280
+ _CE,
281
+ {
282
+ [_e]: _c,
283
+ [_hE]: 409,
284
+ },
285
+ [_m],
286
+ [0],
287
+ ];
288
+ schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
289
+ var CreateSlackChannelConfigurationRequest = [
290
+ 3,
291
+ n0,
292
+ _CSCCR,
293
+ 0,
294
+ [_tI, _cI, _cN, _nOCORC, _nOACTC, _nORC, _nOCS, _cRA],
295
+ [0, 0, 0, 2, 2, 2, 0, 0],
296
+ ];
297
+ var CreateSlackChannelConfigurationResult = [3, n0, _CSCCRr, 0, [], []];
298
+ var DeleteAccountAliasRequest = [3, n0, _DAAR, 0, [], []];
299
+ var DeleteAccountAliasResult = [3, n0, _DAARe, 0, [], []];
300
+ var DeleteSlackChannelConfigurationRequest = [3, n0, _DSCCR, 0, [_tI, _cI], [0, 0]];
301
+ var DeleteSlackChannelConfigurationResult = [3, n0, _DSCCRe, 0, [], []];
302
+ var DeleteSlackWorkspaceConfigurationRequest = [3, n0, _DSWCR, 0, [_tI], [0]];
303
+ var DeleteSlackWorkspaceConfigurationResult = [3, n0, _DSWCRe, 0, [], []];
304
+ var GetAccountAliasRequest = [3, n0, _GAAR, 0, [], []];
305
+ var GetAccountAliasResult = [3, n0, _GAARe, 0, [_aA], [0]];
306
+ var InternalServerException = [
307
+ -3,
308
+ n0,
309
+ _ISE,
310
+ {
311
+ [_e]: _s,
312
+ [_hE]: 500,
313
+ },
314
+ [_m],
315
+ [0],
316
+ ];
317
+ schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
318
+ var ListSlackChannelConfigurationsRequest = [3, n0, _LSCCR, 0, [_nT], [0]];
319
+ var ListSlackChannelConfigurationsResult = [
320
+ 3,
321
+ n0,
322
+ _LSCCRi,
323
+ 0,
324
+ [_nT, _sCC],
325
+ [0, () => slackChannelConfigurationList],
326
+ ];
327
+ var ListSlackWorkspaceConfigurationsRequest = [3, n0, _LSWCR, 0, [_nT], [0]];
328
+ var ListSlackWorkspaceConfigurationsResult = [
329
+ 3,
330
+ n0,
331
+ _LSWCRi,
332
+ 0,
333
+ [_nT, _sWC],
334
+ [0, () => SlackWorkspaceConfigurationList],
335
+ ];
336
+ var PutAccountAliasRequest = [3, n0, _PAAR, 0, [_aA], [0]];
337
+ var PutAccountAliasResult = [3, n0, _PAARu, 0, [], []];
338
+ var RegisterSlackWorkspaceForOrganizationRequest = [3, n0, _RSWFOR, 0, [_tI], [0]];
339
+ var RegisterSlackWorkspaceForOrganizationResult = [
340
+ 3,
341
+ n0,
342
+ _RSWFORe,
343
+ 0,
344
+ [_tI, _tN, _aT],
345
+ [0, 0, 0],
346
+ ];
347
+ var ResourceNotFoundException = [
348
+ -3,
349
+ n0,
350
+ _RNFE,
351
+ {
352
+ [_e]: _c,
353
+ [_hE]: 404,
354
+ },
355
+ [_m],
356
+ [0],
357
+ ];
358
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
359
+ var ServiceQuotaExceededException = [
360
+ -3,
361
+ n0,
362
+ _SQEE,
363
+ {
364
+ [_e]: _c,
365
+ [_hE]: 402,
366
+ },
367
+ [_m],
368
+ [0],
369
+ ];
370
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
371
+ var SlackChannelConfiguration = [
372
+ 3,
373
+ n0,
374
+ _SCC,
375
+ 0,
376
+ [_tI, _cI, _cN, _nOCORC, _nOACTC, _nORC, _nOCS, _cRA],
377
+ [0, 0, 0, 2, 2, 2, 0, 0],
378
+ ];
379
+ var SlackWorkspaceConfiguration = [3, n0, _SWC, 0, [_tI, _tN, _aOMA], [0, 0, 2]];
380
+ var UpdateSlackChannelConfigurationRequest = [
381
+ 3,
382
+ n0,
383
+ _USCCR,
384
+ 0,
385
+ [_tI, _cI, _cN, _nOCORC, _nOACTC, _nORC, _nOCS, _cRA],
386
+ [0, 0, 0, 2, 2, 2, 0, 0],
387
+ ];
388
+ var UpdateSlackChannelConfigurationResult = [
389
+ 3,
390
+ n0,
391
+ _USCCRp,
392
+ 0,
393
+ [_tI, _cI, _cN, _nOCORC, _nOACTC, _nORC, _nOCS, _cRA],
394
+ [0, 0, 0, 2, 2, 2, 0, 0],
395
+ ];
396
+ var ValidationException = [
397
+ -3,
398
+ n0,
399
+ _VE,
400
+ {
401
+ [_e]: _c,
402
+ [_hE]: 400,
403
+ },
404
+ [_m],
405
+ [0],
406
+ ];
407
+ schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
408
+ var SupportAppServiceException = [-3, _sm, "SupportAppServiceException", 0, [], []];
409
+ schema.TypeRegistry.for(_sm).registerError(SupportAppServiceException, SupportAppServiceException$1);
410
+ var slackChannelConfigurationList = [1, n0, _sCCL, 0, () => SlackChannelConfiguration];
411
+ var SlackWorkspaceConfigurationList = [1, n0, _SWCL, 0, () => SlackWorkspaceConfiguration];
412
+ var CreateSlackChannelConfiguration = [
413
+ 9,
414
+ n0,
415
+ _CSCC,
416
+ {
417
+ [_h]: ["POST", "/control/create-slack-channel-configuration", 200],
418
+ },
419
+ () => CreateSlackChannelConfigurationRequest,
420
+ () => CreateSlackChannelConfigurationResult,
421
+ ];
422
+ var DeleteAccountAlias = [
423
+ 9,
424
+ n0,
425
+ _DAA,
426
+ {
427
+ [_h]: ["POST", "/control/delete-account-alias", 200],
428
+ },
429
+ () => DeleteAccountAliasRequest,
430
+ () => DeleteAccountAliasResult,
431
+ ];
432
+ var DeleteSlackChannelConfiguration = [
433
+ 9,
434
+ n0,
435
+ _DSCC,
436
+ {
437
+ [_h]: ["POST", "/control/delete-slack-channel-configuration", 200],
438
+ },
439
+ () => DeleteSlackChannelConfigurationRequest,
440
+ () => DeleteSlackChannelConfigurationResult,
441
+ ];
442
+ var DeleteSlackWorkspaceConfiguration = [
443
+ 9,
444
+ n0,
445
+ _DSWC,
446
+ {
447
+ [_h]: ["POST", "/control/delete-slack-workspace-configuration", 200],
448
+ },
449
+ () => DeleteSlackWorkspaceConfigurationRequest,
450
+ () => DeleteSlackWorkspaceConfigurationResult,
451
+ ];
452
+ var GetAccountAlias = [
453
+ 9,
454
+ n0,
455
+ _GAA,
456
+ {
457
+ [_h]: ["POST", "/control/get-account-alias", 200],
458
+ },
459
+ () => GetAccountAliasRequest,
460
+ () => GetAccountAliasResult,
461
+ ];
462
+ var ListSlackChannelConfigurations = [
463
+ 9,
464
+ n0,
465
+ _LSCC,
466
+ {
467
+ [_h]: ["POST", "/control/list-slack-channel-configurations", 200],
468
+ },
469
+ () => ListSlackChannelConfigurationsRequest,
470
+ () => ListSlackChannelConfigurationsResult,
471
+ ];
472
+ var ListSlackWorkspaceConfigurations = [
473
+ 9,
474
+ n0,
475
+ _LSWC,
476
+ {
477
+ [_h]: ["POST", "/control/list-slack-workspace-configurations", 200],
478
+ },
479
+ () => ListSlackWorkspaceConfigurationsRequest,
480
+ () => ListSlackWorkspaceConfigurationsResult,
481
+ ];
482
+ var PutAccountAlias = [
483
+ 9,
484
+ n0,
485
+ _PAA,
486
+ {
487
+ [_h]: ["POST", "/control/put-account-alias", 200],
488
+ },
489
+ () => PutAccountAliasRequest,
490
+ () => PutAccountAliasResult,
491
+ ];
492
+ var RegisterSlackWorkspaceForOrganization = [
493
+ 9,
494
+ n0,
495
+ _RSWFO,
496
+ {
497
+ [_h]: ["POST", "/control/register-slack-workspace-for-organization", 200],
498
+ },
499
+ () => RegisterSlackWorkspaceForOrganizationRequest,
500
+ () => RegisterSlackWorkspaceForOrganizationResult,
501
+ ];
502
+ var UpdateSlackChannelConfiguration = [
503
+ 9,
504
+ n0,
505
+ _USCC,
506
+ {
507
+ [_h]: ["POST", "/control/update-slack-channel-configuration", 200],
508
+ },
509
+ () => UpdateSlackChannelConfigurationRequest,
510
+ () => UpdateSlackChannelConfigurationResult,
511
+ ];
587
512
 
588
513
  class CreateSlackChannelConfigurationCommand extends smithyClient.Command
589
514
  .classBuilder()
590
515
  .ep(commonParams)
591
516
  .m(function (Command, cs, config, o) {
592
- return [
593
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
594
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
595
- ];
517
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
596
518
  })
597
519
  .s("SupportApp", "CreateSlackChannelConfiguration", {})
598
520
  .n("SupportAppClient", "CreateSlackChannelConfigurationCommand")
599
- .f(void 0, void 0)
600
- .ser(se_CreateSlackChannelConfigurationCommand)
601
- .de(de_CreateSlackChannelConfigurationCommand)
521
+ .sc(CreateSlackChannelConfiguration)
602
522
  .build() {
603
523
  }
604
524
 
@@ -606,16 +526,11 @@ class DeleteAccountAliasCommand extends smithyClient.Command
606
526
  .classBuilder()
607
527
  .ep(commonParams)
608
528
  .m(function (Command, cs, config, o) {
609
- return [
610
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
611
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
612
- ];
529
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
613
530
  })
614
531
  .s("SupportApp", "DeleteAccountAlias", {})
615
532
  .n("SupportAppClient", "DeleteAccountAliasCommand")
616
- .f(void 0, void 0)
617
- .ser(se_DeleteAccountAliasCommand)
618
- .de(de_DeleteAccountAliasCommand)
533
+ .sc(DeleteAccountAlias)
619
534
  .build() {
620
535
  }
621
536
 
@@ -623,16 +538,11 @@ class DeleteSlackChannelConfigurationCommand extends smithyClient.Command
623
538
  .classBuilder()
624
539
  .ep(commonParams)
625
540
  .m(function (Command, cs, config, o) {
626
- return [
627
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
628
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
629
- ];
541
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
630
542
  })
631
543
  .s("SupportApp", "DeleteSlackChannelConfiguration", {})
632
544
  .n("SupportAppClient", "DeleteSlackChannelConfigurationCommand")
633
- .f(void 0, void 0)
634
- .ser(se_DeleteSlackChannelConfigurationCommand)
635
- .de(de_DeleteSlackChannelConfigurationCommand)
545
+ .sc(DeleteSlackChannelConfiguration)
636
546
  .build() {
637
547
  }
638
548
 
@@ -640,16 +550,11 @@ class DeleteSlackWorkspaceConfigurationCommand extends smithyClient.Command
640
550
  .classBuilder()
641
551
  .ep(commonParams)
642
552
  .m(function (Command, cs, config, o) {
643
- return [
644
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
645
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
646
- ];
553
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
647
554
  })
648
555
  .s("SupportApp", "DeleteSlackWorkspaceConfiguration", {})
649
556
  .n("SupportAppClient", "DeleteSlackWorkspaceConfigurationCommand")
650
- .f(void 0, void 0)
651
- .ser(se_DeleteSlackWorkspaceConfigurationCommand)
652
- .de(de_DeleteSlackWorkspaceConfigurationCommand)
557
+ .sc(DeleteSlackWorkspaceConfiguration)
653
558
  .build() {
654
559
  }
655
560
 
@@ -657,16 +562,11 @@ class GetAccountAliasCommand extends smithyClient.Command
657
562
  .classBuilder()
658
563
  .ep(commonParams)
659
564
  .m(function (Command, cs, config, o) {
660
- return [
661
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
662
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
663
- ];
565
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
664
566
  })
665
567
  .s("SupportApp", "GetAccountAlias", {})
666
568
  .n("SupportAppClient", "GetAccountAliasCommand")
667
- .f(void 0, void 0)
668
- .ser(se_GetAccountAliasCommand)
669
- .de(de_GetAccountAliasCommand)
569
+ .sc(GetAccountAlias)
670
570
  .build() {
671
571
  }
672
572
 
@@ -674,16 +574,11 @@ class ListSlackChannelConfigurationsCommand extends smithyClient.Command
674
574
  .classBuilder()
675
575
  .ep(commonParams)
676
576
  .m(function (Command, cs, config, o) {
677
- return [
678
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
679
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
680
- ];
577
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
681
578
  })
682
579
  .s("SupportApp", "ListSlackChannelConfigurations", {})
683
580
  .n("SupportAppClient", "ListSlackChannelConfigurationsCommand")
684
- .f(void 0, void 0)
685
- .ser(se_ListSlackChannelConfigurationsCommand)
686
- .de(de_ListSlackChannelConfigurationsCommand)
581
+ .sc(ListSlackChannelConfigurations)
687
582
  .build() {
688
583
  }
689
584
 
@@ -691,16 +586,11 @@ class ListSlackWorkspaceConfigurationsCommand extends smithyClient.Command
691
586
  .classBuilder()
692
587
  .ep(commonParams)
693
588
  .m(function (Command, cs, config, o) {
694
- return [
695
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
696
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
697
- ];
589
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
698
590
  })
699
591
  .s("SupportApp", "ListSlackWorkspaceConfigurations", {})
700
592
  .n("SupportAppClient", "ListSlackWorkspaceConfigurationsCommand")
701
- .f(void 0, void 0)
702
- .ser(se_ListSlackWorkspaceConfigurationsCommand)
703
- .de(de_ListSlackWorkspaceConfigurationsCommand)
593
+ .sc(ListSlackWorkspaceConfigurations)
704
594
  .build() {
705
595
  }
706
596
 
@@ -708,16 +598,11 @@ class PutAccountAliasCommand extends smithyClient.Command
708
598
  .classBuilder()
709
599
  .ep(commonParams)
710
600
  .m(function (Command, cs, config, o) {
711
- return [
712
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
713
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
714
- ];
601
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
715
602
  })
716
603
  .s("SupportApp", "PutAccountAlias", {})
717
604
  .n("SupportAppClient", "PutAccountAliasCommand")
718
- .f(void 0, void 0)
719
- .ser(se_PutAccountAliasCommand)
720
- .de(de_PutAccountAliasCommand)
605
+ .sc(PutAccountAlias)
721
606
  .build() {
722
607
  }
723
608
 
@@ -725,16 +610,11 @@ class RegisterSlackWorkspaceForOrganizationCommand extends smithyClient.Command
725
610
  .classBuilder()
726
611
  .ep(commonParams)
727
612
  .m(function (Command, cs, config, o) {
728
- return [
729
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
730
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
731
- ];
613
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
732
614
  })
733
615
  .s("SupportApp", "RegisterSlackWorkspaceForOrganization", {})
734
616
  .n("SupportAppClient", "RegisterSlackWorkspaceForOrganizationCommand")
735
- .f(void 0, void 0)
736
- .ser(se_RegisterSlackWorkspaceForOrganizationCommand)
737
- .de(de_RegisterSlackWorkspaceForOrganizationCommand)
617
+ .sc(RegisterSlackWorkspaceForOrganization)
738
618
  .build() {
739
619
  }
740
620
 
@@ -742,16 +622,11 @@ class UpdateSlackChannelConfigurationCommand extends smithyClient.Command
742
622
  .classBuilder()
743
623
  .ep(commonParams)
744
624
  .m(function (Command, cs, config, o) {
745
- return [
746
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
747
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
748
- ];
625
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
749
626
  })
750
627
  .s("SupportApp", "UpdateSlackChannelConfiguration", {})
751
628
  .n("SupportAppClient", "UpdateSlackChannelConfigurationCommand")
752
- .f(void 0, void 0)
753
- .ser(se_UpdateSlackChannelConfigurationCommand)
754
- .de(de_UpdateSlackChannelConfigurationCommand)
629
+ .sc(UpdateSlackChannelConfiguration)
755
630
  .build() {
756
631
  }
757
632
 
@@ -783,26 +658,26 @@ Object.defineProperty(exports, "__Client", {
783
658
  enumerable: true,
784
659
  get: function () { return smithyClient.Client; }
785
660
  });
786
- exports.AccessDeniedException = AccessDeniedException;
661
+ exports.AccessDeniedException = AccessDeniedException$1;
787
662
  exports.AccountType = AccountType;
788
- exports.ConflictException = ConflictException;
663
+ exports.ConflictException = ConflictException$1;
789
664
  exports.CreateSlackChannelConfigurationCommand = CreateSlackChannelConfigurationCommand;
790
665
  exports.DeleteAccountAliasCommand = DeleteAccountAliasCommand;
791
666
  exports.DeleteSlackChannelConfigurationCommand = DeleteSlackChannelConfigurationCommand;
792
667
  exports.DeleteSlackWorkspaceConfigurationCommand = DeleteSlackWorkspaceConfigurationCommand;
793
668
  exports.GetAccountAliasCommand = GetAccountAliasCommand;
794
- exports.InternalServerException = InternalServerException;
669
+ exports.InternalServerException = InternalServerException$1;
795
670
  exports.ListSlackChannelConfigurationsCommand = ListSlackChannelConfigurationsCommand;
796
671
  exports.ListSlackWorkspaceConfigurationsCommand = ListSlackWorkspaceConfigurationsCommand;
797
672
  exports.NotificationSeverityLevel = NotificationSeverityLevel;
798
673
  exports.PutAccountAliasCommand = PutAccountAliasCommand;
799
674
  exports.RegisterSlackWorkspaceForOrganizationCommand = RegisterSlackWorkspaceForOrganizationCommand;
800
- exports.ResourceNotFoundException = ResourceNotFoundException;
801
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
675
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
676
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
802
677
  exports.SupportApp = SupportApp;
803
678
  exports.SupportAppClient = SupportAppClient;
804
- exports.SupportAppServiceException = SupportAppServiceException;
679
+ exports.SupportAppServiceException = SupportAppServiceException$1;
805
680
  exports.UpdateSlackChannelConfigurationCommand = UpdateSlackChannelConfigurationCommand;
806
- exports.ValidationException = ValidationException;
681
+ exports.ValidationException = ValidationException$1;
807
682
  exports.paginateListSlackChannelConfigurations = paginateListSlackChannelConfigurations;
808
683
  exports.paginateListSlackWorkspaceConfigurations = paginateListSlackWorkspaceConfigurations;