@aws-sdk/client-support-app 3.489.0 → 3.495.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 (26) hide show
  1. package/dist-cjs/SupportApp.js +1 -31
  2. package/dist-cjs/SupportAppClient.js +1 -43
  3. package/dist-cjs/commands/CreateSlackChannelConfigurationCommand.js +1 -28
  4. package/dist-cjs/commands/DeleteAccountAliasCommand.js +1 -28
  5. package/dist-cjs/commands/DeleteSlackChannelConfigurationCommand.js +1 -28
  6. package/dist-cjs/commands/DeleteSlackWorkspaceConfigurationCommand.js +1 -28
  7. package/dist-cjs/commands/GetAccountAliasCommand.js +1 -28
  8. package/dist-cjs/commands/ListSlackChannelConfigurationsCommand.js +1 -28
  9. package/dist-cjs/commands/ListSlackWorkspaceConfigurationsCommand.js +1 -28
  10. package/dist-cjs/commands/PutAccountAliasCommand.js +1 -28
  11. package/dist-cjs/commands/RegisterSlackWorkspaceForOrganizationCommand.js +1 -28
  12. package/dist-cjs/commands/UpdateSlackChannelConfigurationCommand.js +1 -28
  13. package/dist-cjs/commands/index.js +1 -13
  14. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  15. package/dist-cjs/extensionConfiguration.js +1 -2
  16. package/dist-cjs/index.js +1180 -11
  17. package/dist-cjs/models/SupportAppServiceException.js +1 -12
  18. package/dist-cjs/models/index.js +1 -4
  19. package/dist-cjs/models/models_0.js +1 -91
  20. package/dist-cjs/pagination/Interfaces.js +1 -2
  21. package/dist-cjs/pagination/ListSlackChannelConfigurationsPaginator.js +1 -7
  22. package/dist-cjs/pagination/ListSlackWorkspaceConfigurationsPaginator.js +1 -7
  23. package/dist-cjs/pagination/index.js +1 -6
  24. package/dist-cjs/protocols/Aws_restJson1.js +1 -698
  25. package/dist-cjs/runtimeExtensions.js +1 -22
  26. package/package.json +40 -40
@@ -1,12 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SupportAppServiceException = exports.__ServiceException = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
- class SupportAppServiceException extends smithy_client_1.ServiceException {
7
- constructor(options) {
8
- super(options);
9
- Object.setPrototypeOf(this, SupportAppServiceException.prototype);
10
- }
11
- }
12
- exports.SupportAppServiceException = SupportAppServiceException;
1
+ module.exports = require("../index.js");
@@ -1,4 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./models_0"), exports);
1
+ module.exports = require("../index.js");
@@ -1,91 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ResourceNotFoundException = exports.ValidationException = exports.ServiceQuotaExceededException = exports.InternalServerException = exports.NotificationSeverityLevel = exports.ConflictException = exports.AccountType = exports.AccessDeniedException = void 0;
4
- const SupportAppServiceException_1 = require("./SupportAppServiceException");
5
- class AccessDeniedException extends SupportAppServiceException_1.SupportAppServiceException {
6
- constructor(opts) {
7
- super({
8
- name: "AccessDeniedException",
9
- $fault: "client",
10
- ...opts,
11
- });
12
- this.name = "AccessDeniedException";
13
- this.$fault = "client";
14
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
15
- }
16
- }
17
- exports.AccessDeniedException = AccessDeniedException;
18
- exports.AccountType = {
19
- MANAGEMENT: "management",
20
- MEMBER: "member",
21
- };
22
- class ConflictException extends SupportAppServiceException_1.SupportAppServiceException {
23
- constructor(opts) {
24
- super({
25
- name: "ConflictException",
26
- $fault: "client",
27
- ...opts,
28
- });
29
- this.name = "ConflictException";
30
- this.$fault = "client";
31
- Object.setPrototypeOf(this, ConflictException.prototype);
32
- }
33
- }
34
- exports.ConflictException = ConflictException;
35
- exports.NotificationSeverityLevel = {
36
- ALL: "all",
37
- HIGH: "high",
38
- NONE: "none",
39
- };
40
- class InternalServerException extends SupportAppServiceException_1.SupportAppServiceException {
41
- constructor(opts) {
42
- super({
43
- name: "InternalServerException",
44
- $fault: "server",
45
- ...opts,
46
- });
47
- this.name = "InternalServerException";
48
- this.$fault = "server";
49
- Object.setPrototypeOf(this, InternalServerException.prototype);
50
- }
51
- }
52
- exports.InternalServerException = InternalServerException;
53
- class ServiceQuotaExceededException extends SupportAppServiceException_1.SupportAppServiceException {
54
- constructor(opts) {
55
- super({
56
- name: "ServiceQuotaExceededException",
57
- $fault: "client",
58
- ...opts,
59
- });
60
- this.name = "ServiceQuotaExceededException";
61
- this.$fault = "client";
62
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
63
- }
64
- }
65
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
66
- class ValidationException extends SupportAppServiceException_1.SupportAppServiceException {
67
- constructor(opts) {
68
- super({
69
- name: "ValidationException",
70
- $fault: "client",
71
- ...opts,
72
- });
73
- this.name = "ValidationException";
74
- this.$fault = "client";
75
- Object.setPrototypeOf(this, ValidationException.prototype);
76
- }
77
- }
78
- exports.ValidationException = ValidationException;
79
- class ResourceNotFoundException extends SupportAppServiceException_1.SupportAppServiceException {
80
- constructor(opts) {
81
- super({
82
- name: "ResourceNotFoundException",
83
- $fault: "client",
84
- ...opts,
85
- });
86
- this.name = "ResourceNotFoundException";
87
- this.$fault = "client";
88
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
89
- }
90
- }
91
- exports.ResourceNotFoundException = ResourceNotFoundException;
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListSlackChannelConfigurations = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListSlackChannelConfigurationsCommand_1 = require("../commands/ListSlackChannelConfigurationsCommand");
6
- const SupportAppClient_1 = require("../SupportAppClient");
7
- exports.paginateListSlackChannelConfigurations = (0, core_1.createPaginator)(SupportAppClient_1.SupportAppClient, ListSlackChannelConfigurationsCommand_1.ListSlackChannelConfigurationsCommand, "nextToken", "nextToken", "");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListSlackWorkspaceConfigurations = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListSlackWorkspaceConfigurationsCommand_1 = require("../commands/ListSlackWorkspaceConfigurationsCommand");
6
- const SupportAppClient_1 = require("../SupportAppClient");
7
- exports.paginateListSlackWorkspaceConfigurations = (0, core_1.createPaginator)(SupportAppClient_1.SupportAppClient, ListSlackWorkspaceConfigurationsCommand_1.ListSlackWorkspaceConfigurationsCommand, "nextToken", "nextToken", "");
1
+ module.exports = require("../index.js");
@@ -1,6 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./Interfaces"), exports);
5
- tslib_1.__exportStar(require("./ListSlackChannelConfigurationsPaginator"), exports);
6
- tslib_1.__exportStar(require("./ListSlackWorkspaceConfigurationsPaginator"), exports);
1
+ module.exports = require("../index.js");