@aws-sdk/client-support-app 3.428.0 → 3.429.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.
|
@@ -156,7 +156,7 @@ export interface CreateSlackChannelConfigurationRequest {
|
|
|
156
156
|
* <code>false</code>.</p>
|
|
157
157
|
* </note>
|
|
158
158
|
*/
|
|
159
|
-
notifyOnCaseSeverity: NotificationSeverityLevel |
|
|
159
|
+
notifyOnCaseSeverity: NotificationSeverityLevel | undefined;
|
|
160
160
|
/**
|
|
161
161
|
* @public
|
|
162
162
|
* <p>The Amazon Resource Name (ARN) of an IAM role that you want to
|
|
@@ -336,7 +336,7 @@ export interface SlackChannelConfiguration {
|
|
|
336
336
|
* @public
|
|
337
337
|
* <p>The case severity for a support case that you want to receive notifications.</p>
|
|
338
338
|
*/
|
|
339
|
-
notifyOnCaseSeverity?: NotificationSeverityLevel
|
|
339
|
+
notifyOnCaseSeverity?: NotificationSeverityLevel;
|
|
340
340
|
/**
|
|
341
341
|
* @public
|
|
342
342
|
* <p>The Amazon Resource Name (ARN) of an IAM role that you want to
|
|
@@ -458,7 +458,7 @@ export interface RegisterSlackWorkspaceForOrganizationResult {
|
|
|
458
458
|
* <p>Whether the Amazon Web Services account is a management or member account that's part of an organization
|
|
459
459
|
* in Organizations.</p>
|
|
460
460
|
*/
|
|
461
|
-
accountType?: AccountType
|
|
461
|
+
accountType?: AccountType;
|
|
462
462
|
}
|
|
463
463
|
/**
|
|
464
464
|
* @public
|
|
@@ -541,7 +541,7 @@ export interface UpdateSlackChannelConfigurationRequest {
|
|
|
541
541
|
* values by default.</p>
|
|
542
542
|
* </note>
|
|
543
543
|
*/
|
|
544
|
-
notifyOnCaseSeverity?: NotificationSeverityLevel
|
|
544
|
+
notifyOnCaseSeverity?: NotificationSeverityLevel;
|
|
545
545
|
/**
|
|
546
546
|
* @public
|
|
547
547
|
* <p>The Amazon Resource Name (ARN) of an IAM role that you want to
|
|
@@ -589,7 +589,7 @@ export interface UpdateSlackChannelConfigurationResult {
|
|
|
589
589
|
* @public
|
|
590
590
|
* <p>The case severity for a support case that you want to receive notifications.</p>
|
|
591
591
|
*/
|
|
592
|
-
notifyOnCaseSeverity?: NotificationSeverityLevel
|
|
592
|
+
notifyOnCaseSeverity?: NotificationSeverityLevel;
|
|
593
593
|
/**
|
|
594
594
|
* @public
|
|
595
595
|
* <p>The Amazon Resource Name (ARN) of an IAM role that you want to
|
|
@@ -31,7 +31,7 @@ export interface CreateSlackChannelConfigurationRequest {
|
|
|
31
31
|
notifyOnCreateOrReopenCase?: boolean;
|
|
32
32
|
notifyOnAddCorrespondenceToCase?: boolean;
|
|
33
33
|
notifyOnResolveCase?: boolean;
|
|
34
|
-
notifyOnCaseSeverity: NotificationSeverityLevel |
|
|
34
|
+
notifyOnCaseSeverity: NotificationSeverityLevel | undefined;
|
|
35
35
|
channelRoleArn: string | undefined;
|
|
36
36
|
}
|
|
37
37
|
export interface CreateSlackChannelConfigurationResult {}
|
|
@@ -88,7 +88,7 @@ export interface SlackChannelConfiguration {
|
|
|
88
88
|
notifyOnCreateOrReopenCase?: boolean;
|
|
89
89
|
notifyOnAddCorrespondenceToCase?: boolean;
|
|
90
90
|
notifyOnResolveCase?: boolean;
|
|
91
|
-
notifyOnCaseSeverity?: NotificationSeverityLevel
|
|
91
|
+
notifyOnCaseSeverity?: NotificationSeverityLevel;
|
|
92
92
|
channelRoleArn?: string;
|
|
93
93
|
}
|
|
94
94
|
export interface ListSlackChannelConfigurationsResult {
|
|
@@ -117,7 +117,7 @@ export interface RegisterSlackWorkspaceForOrganizationRequest {
|
|
|
117
117
|
export interface RegisterSlackWorkspaceForOrganizationResult {
|
|
118
118
|
teamId?: string;
|
|
119
119
|
teamName?: string;
|
|
120
|
-
accountType?: AccountType
|
|
120
|
+
accountType?: AccountType;
|
|
121
121
|
}
|
|
122
122
|
export interface UpdateSlackChannelConfigurationRequest {
|
|
123
123
|
teamId: string | undefined;
|
|
@@ -126,7 +126,7 @@ export interface UpdateSlackChannelConfigurationRequest {
|
|
|
126
126
|
notifyOnCreateOrReopenCase?: boolean;
|
|
127
127
|
notifyOnAddCorrespondenceToCase?: boolean;
|
|
128
128
|
notifyOnResolveCase?: boolean;
|
|
129
|
-
notifyOnCaseSeverity?: NotificationSeverityLevel
|
|
129
|
+
notifyOnCaseSeverity?: NotificationSeverityLevel;
|
|
130
130
|
channelRoleArn?: string;
|
|
131
131
|
}
|
|
132
132
|
export interface UpdateSlackChannelConfigurationResult {
|
|
@@ -136,6 +136,6 @@ export interface UpdateSlackChannelConfigurationResult {
|
|
|
136
136
|
notifyOnCreateOrReopenCase?: boolean;
|
|
137
137
|
notifyOnAddCorrespondenceToCase?: boolean;
|
|
138
138
|
notifyOnResolveCase?: boolean;
|
|
139
|
-
notifyOnCaseSeverity?: NotificationSeverityLevel
|
|
139
|
+
notifyOnCaseSeverity?: NotificationSeverityLevel;
|
|
140
140
|
channelRoleArn?: string;
|
|
141
141
|
}
|
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.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|