@aws-sdk/client-support-app 3.936.0 → 3.939.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.
- package/dist-cjs/index.js +12 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +9 -0
- package/dist-es/models/models_0.js +1 -9
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +25 -0
- package/dist-types/models/models_0.d.ts +1 -25
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -12
- package/package.json +2 -2
package/dist-cjs/index.js
CHANGED
|
@@ -641,6 +641,16 @@ const paginateListSlackChannelConfigurations = core.createPaginator(SupportAppCl
|
|
|
641
641
|
|
|
642
642
|
const paginateListSlackWorkspaceConfigurations = core.createPaginator(SupportAppClient, ListSlackWorkspaceConfigurationsCommand, "nextToken", "nextToken", "");
|
|
643
643
|
|
|
644
|
+
const AccountType = {
|
|
645
|
+
MANAGEMENT: "management",
|
|
646
|
+
MEMBER: "member",
|
|
647
|
+
};
|
|
648
|
+
const NotificationSeverityLevel = {
|
|
649
|
+
ALL: "all",
|
|
650
|
+
HIGH: "high",
|
|
651
|
+
NONE: "none",
|
|
652
|
+
};
|
|
653
|
+
|
|
644
654
|
Object.defineProperty(exports, "$Command", {
|
|
645
655
|
enumerable: true,
|
|
646
656
|
get: function () { return smithyClient.Command; }
|
|
@@ -650,6 +660,7 @@ Object.defineProperty(exports, "__Client", {
|
|
|
650
660
|
get: function () { return smithyClient.Client; }
|
|
651
661
|
});
|
|
652
662
|
exports.AccessDeniedException = AccessDeniedException$1;
|
|
663
|
+
exports.AccountType = AccountType;
|
|
653
664
|
exports.ConflictException = ConflictException$1;
|
|
654
665
|
exports.CreateSlackChannelConfigurationCommand = CreateSlackChannelConfigurationCommand;
|
|
655
666
|
exports.DeleteAccountAliasCommand = DeleteAccountAliasCommand;
|
|
@@ -659,6 +670,7 @@ exports.GetAccountAliasCommand = GetAccountAliasCommand;
|
|
|
659
670
|
exports.InternalServerException = InternalServerException$1;
|
|
660
671
|
exports.ListSlackChannelConfigurationsCommand = ListSlackChannelConfigurationsCommand;
|
|
661
672
|
exports.ListSlackWorkspaceConfigurationsCommand = ListSlackWorkspaceConfigurationsCommand;
|
|
673
|
+
exports.NotificationSeverityLevel = NotificationSeverityLevel;
|
|
662
674
|
exports.PutAccountAliasCommand = PutAccountAliasCommand;
|
|
663
675
|
exports.RegisterSlackWorkspaceForOrganizationCommand = RegisterSlackWorkspaceForOrganizationCommand;
|
|
664
676
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./SupportAppClient";
|
|
|
2
2
|
export * from "./SupportApp";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
+
export * from "./models/enums";
|
|
5
6
|
export * from "./models/errors";
|
|
6
7
|
export { SupportAppServiceException } from "./models/SupportAppServiceException";
|
package/dist-types/index.d.ts
CHANGED
|
@@ -63,6 +63,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
63
63
|
export type { SupportAppExtensionConfiguration } from "./extensionConfiguration";
|
|
64
64
|
export * from "./commands";
|
|
65
65
|
export * from "./pagination";
|
|
66
|
+
export * from "./models/enums";
|
|
66
67
|
export * from "./models/errors";
|
|
67
68
|
export type * from "./models/models_0";
|
|
68
69
|
export { SupportAppServiceException } from "./models/SupportAppServiceException";
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const AccountType: {
|
|
6
|
+
readonly MANAGEMENT: "management";
|
|
7
|
+
readonly MEMBER: "member";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type AccountType = (typeof AccountType)[keyof typeof AccountType];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const NotificationSeverityLevel: {
|
|
18
|
+
readonly ALL: "all";
|
|
19
|
+
readonly HIGH: "high";
|
|
20
|
+
readonly NONE: "none";
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export type NotificationSeverityLevel = (typeof NotificationSeverityLevel)[keyof typeof NotificationSeverityLevel];
|
|
@@ -1,28 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
* @public
|
|
3
|
-
* @enum
|
|
4
|
-
*/
|
|
5
|
-
export declare const AccountType: {
|
|
6
|
-
readonly MANAGEMENT: "management";
|
|
7
|
-
readonly MEMBER: "member";
|
|
8
|
-
};
|
|
9
|
-
/**
|
|
10
|
-
* @public
|
|
11
|
-
*/
|
|
12
|
-
export type AccountType = (typeof AccountType)[keyof typeof AccountType];
|
|
13
|
-
/**
|
|
14
|
-
* @public
|
|
15
|
-
* @enum
|
|
16
|
-
*/
|
|
17
|
-
export declare const NotificationSeverityLevel: {
|
|
18
|
-
readonly ALL: "all";
|
|
19
|
-
readonly HIGH: "high";
|
|
20
|
-
readonly NONE: "none";
|
|
21
|
-
};
|
|
22
|
-
/**
|
|
23
|
-
* @public
|
|
24
|
-
*/
|
|
25
|
-
export type NotificationSeverityLevel = (typeof NotificationSeverityLevel)[keyof typeof NotificationSeverityLevel];
|
|
1
|
+
import { AccountType, NotificationSeverityLevel } from "./enums";
|
|
26
2
|
/**
|
|
27
3
|
* @public
|
|
28
4
|
*/
|
|
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { SupportAppExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
+
export * from "./models/enums";
|
|
8
9
|
export * from "./models/errors";
|
|
9
10
|
export * from "./models/models_0";
|
|
10
11
|
export { SupportAppServiceException } from "./models/SupportAppServiceException";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const AccountType: {
|
|
2
|
+
readonly MANAGEMENT: "management";
|
|
3
|
+
readonly MEMBER: "member";
|
|
4
|
+
};
|
|
5
|
+
export type AccountType = (typeof AccountType)[keyof typeof AccountType];
|
|
6
|
+
export declare const NotificationSeverityLevel: {
|
|
7
|
+
readonly ALL: "all";
|
|
8
|
+
readonly HIGH: "high";
|
|
9
|
+
readonly NONE: "none";
|
|
10
|
+
};
|
|
11
|
+
export type NotificationSeverityLevel =
|
|
12
|
+
(typeof NotificationSeverityLevel)[keyof typeof NotificationSeverityLevel];
|
|
@@ -1,15 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
readonly MANAGEMENT: "management";
|
|
3
|
-
readonly MEMBER: "member";
|
|
4
|
-
};
|
|
5
|
-
export type AccountType = (typeof AccountType)[keyof typeof AccountType];
|
|
6
|
-
export declare const NotificationSeverityLevel: {
|
|
7
|
-
readonly ALL: "all";
|
|
8
|
-
readonly HIGH: "high";
|
|
9
|
-
readonly NONE: "none";
|
|
10
|
-
};
|
|
11
|
-
export type NotificationSeverityLevel =
|
|
12
|
-
(typeof NotificationSeverityLevel)[keyof typeof NotificationSeverityLevel];
|
|
1
|
+
import { AccountType, NotificationSeverityLevel } from "./enums";
|
|
13
2
|
export interface CreateSlackChannelConfigurationRequest {
|
|
14
3
|
teamId: string | undefined;
|
|
15
4
|
channelId: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-support-app",
|
|
3
3
|
"description": "AWS SDK for JavaScript Support App Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.939.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-support-app",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.936.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.939.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|