@aws-sdk/client-chime-sdk-messaging 3.51.0 → 3.54.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ChimeSDKMessagingServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +139 -3
- package/dist-cjs/protocols/Aws_restJson1.js +561 -2318
- package/dist-es/index.js +1 -0
- package/dist-es/models/ChimeSDKMessagingServiceException.js +12 -0
- package/dist-es/models/models_0.js +128 -1
- package/dist-es/protocols/Aws_restJson1.js +1201 -2508
- package/dist-types/ChimeSDKMessagingClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ChimeSDKMessagingServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +65 -28
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ChimeSDKMessagingClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ChimeSDKMessagingServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +47 -28
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateChannelFlowCommandInput, AssociateChannelFlowCommandOutput } from "./commands/AssociateChannelFlowCommand";
|
|
10
10
|
import { BatchCreateChannelMembershipCommandInput, BatchCreateChannelMembershipCommandOutput } from "./commands/BatchCreateChannelMembershipCommand";
|
|
11
11
|
import { ChannelFlowCallbackCommandInput, ChannelFlowCallbackCommandOutput } from "./commands/ChannelFlowCallbackCommand";
|
|
@@ -73,7 +73,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
73
73
|
* A function that can calculate the length of a request body.
|
|
74
74
|
* @internal
|
|
75
75
|
*/
|
|
76
|
-
bodyLengthChecker?:
|
|
76
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
77
77
|
/**
|
|
78
78
|
* A function that converts a stream into an array of bytes.
|
|
79
79
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from ChimeSDKMessaging service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class ChimeSDKMessagingServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ChimeSDKMessagingServiceException as __BaseException } from "./ChimeSDKMessagingServiceException";
|
|
2
3
|
export declare enum AllowNotifications {
|
|
3
4
|
ALL = "ALL",
|
|
4
5
|
FILTERED = "FILTERED",
|
|
@@ -67,75 +68,107 @@ export declare enum ErrorCode {
|
|
|
67
68
|
/**
|
|
68
69
|
* <p>The input parameters don't match the service's restrictions.</p>
|
|
69
70
|
*/
|
|
70
|
-
export
|
|
71
|
-
name: "BadRequestException";
|
|
72
|
-
$fault: "client";
|
|
71
|
+
export declare class BadRequestException extends __BaseException {
|
|
72
|
+
readonly name: "BadRequestException";
|
|
73
|
+
readonly $fault: "client";
|
|
73
74
|
Code?: ErrorCode | string;
|
|
74
75
|
Message?: string;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
79
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
75
80
|
}
|
|
76
81
|
/**
|
|
77
82
|
* <p>The request could not be processed because of conflict in the current state of the
|
|
78
83
|
* resource.</p>
|
|
79
84
|
*/
|
|
80
|
-
export
|
|
81
|
-
name: "ConflictException";
|
|
82
|
-
$fault: "client";
|
|
85
|
+
export declare class ConflictException extends __BaseException {
|
|
86
|
+
readonly name: "ConflictException";
|
|
87
|
+
readonly $fault: "client";
|
|
83
88
|
Code?: ErrorCode | string;
|
|
84
89
|
Message?: string;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
93
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
85
94
|
}
|
|
86
95
|
/**
|
|
87
96
|
* <p>The client is permanently forbidden from making the request.</p>
|
|
88
97
|
*/
|
|
89
|
-
export
|
|
90
|
-
name: "ForbiddenException";
|
|
91
|
-
$fault: "client";
|
|
98
|
+
export declare class ForbiddenException extends __BaseException {
|
|
99
|
+
readonly name: "ForbiddenException";
|
|
100
|
+
readonly $fault: "client";
|
|
92
101
|
Code?: ErrorCode | string;
|
|
93
102
|
Message?: string;
|
|
103
|
+
/**
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
106
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
94
107
|
}
|
|
95
108
|
/**
|
|
96
109
|
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
97
110
|
*/
|
|
98
|
-
export
|
|
99
|
-
name: "NotFoundException";
|
|
100
|
-
$fault: "client";
|
|
111
|
+
export declare class NotFoundException extends __BaseException {
|
|
112
|
+
readonly name: "NotFoundException";
|
|
113
|
+
readonly $fault: "client";
|
|
101
114
|
Code?: ErrorCode | string;
|
|
102
115
|
Message?: string;
|
|
116
|
+
/**
|
|
117
|
+
* @internal
|
|
118
|
+
*/
|
|
119
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
103
120
|
}
|
|
104
121
|
/**
|
|
105
122
|
* <p>The service encountered an unexpected error.</p>
|
|
106
123
|
*/
|
|
107
|
-
export
|
|
108
|
-
name: "ServiceFailureException";
|
|
109
|
-
$fault: "server";
|
|
124
|
+
export declare class ServiceFailureException extends __BaseException {
|
|
125
|
+
readonly name: "ServiceFailureException";
|
|
126
|
+
readonly $fault: "server";
|
|
110
127
|
Code?: ErrorCode | string;
|
|
111
128
|
Message?: string;
|
|
129
|
+
/**
|
|
130
|
+
* @internal
|
|
131
|
+
*/
|
|
132
|
+
constructor(opts: __ExceptionOptionType<ServiceFailureException, __BaseException>);
|
|
112
133
|
}
|
|
113
134
|
/**
|
|
114
135
|
* <p>The service is currently unavailable.</p>
|
|
115
136
|
*/
|
|
116
|
-
export
|
|
117
|
-
name: "ServiceUnavailableException";
|
|
118
|
-
$fault: "server";
|
|
137
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
138
|
+
readonly name: "ServiceUnavailableException";
|
|
139
|
+
readonly $fault: "server";
|
|
119
140
|
Code?: ErrorCode | string;
|
|
120
141
|
Message?: string;
|
|
142
|
+
/**
|
|
143
|
+
* @internal
|
|
144
|
+
*/
|
|
145
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
121
146
|
}
|
|
122
147
|
/**
|
|
123
148
|
* <p>The client exceeded its request rate limit.</p>
|
|
124
149
|
*/
|
|
125
|
-
export
|
|
126
|
-
name: "ThrottledClientException";
|
|
127
|
-
$fault: "client";
|
|
150
|
+
export declare class ThrottledClientException extends __BaseException {
|
|
151
|
+
readonly name: "ThrottledClientException";
|
|
152
|
+
readonly $fault: "client";
|
|
128
153
|
Code?: ErrorCode | string;
|
|
129
154
|
Message?: string;
|
|
155
|
+
/**
|
|
156
|
+
* @internal
|
|
157
|
+
*/
|
|
158
|
+
constructor(opts: __ExceptionOptionType<ThrottledClientException, __BaseException>);
|
|
130
159
|
}
|
|
131
160
|
/**
|
|
132
161
|
* <p>The client is not currently authorized to make the request.</p>
|
|
133
162
|
*/
|
|
134
|
-
export
|
|
135
|
-
name: "UnauthorizedClientException";
|
|
136
|
-
$fault: "client";
|
|
163
|
+
export declare class UnauthorizedClientException extends __BaseException {
|
|
164
|
+
readonly name: "UnauthorizedClientException";
|
|
165
|
+
readonly $fault: "client";
|
|
137
166
|
Code?: ErrorCode | string;
|
|
138
167
|
Message?: string;
|
|
168
|
+
/**
|
|
169
|
+
* @internal
|
|
170
|
+
*/
|
|
171
|
+
constructor(opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>);
|
|
139
172
|
}
|
|
140
173
|
/**
|
|
141
174
|
* <p>The details of a user.</p>
|
|
@@ -1057,11 +1090,15 @@ export declare namespace CreateChannelResponse {
|
|
|
1057
1090
|
/**
|
|
1058
1091
|
* <p>The request exceeds the resource limit.</p>
|
|
1059
1092
|
*/
|
|
1060
|
-
export
|
|
1061
|
-
name: "ResourceLimitExceededException";
|
|
1062
|
-
$fault: "client";
|
|
1093
|
+
export declare class ResourceLimitExceededException extends __BaseException {
|
|
1094
|
+
readonly name: "ResourceLimitExceededException";
|
|
1095
|
+
readonly $fault: "client";
|
|
1063
1096
|
Code?: ErrorCode | string;
|
|
1064
1097
|
Message?: string;
|
|
1098
|
+
/**
|
|
1099
|
+
* @internal
|
|
1100
|
+
*/
|
|
1101
|
+
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
1065
1102
|
}
|
|
1066
1103
|
export interface CreateChannelBanRequest {
|
|
1067
1104
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMessagingClientConfig) =
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMessagingClientConfig) =
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMessagingClientConfig) =
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateChannelFlowCommandInput, AssociateChannelFlowCommandOutput } from "./commands/AssociateChannelFlowCommand";
|
|
10
10
|
import { BatchCreateChannelMembershipCommandInput, BatchCreateChannelMembershipCommandOutput } from "./commands/BatchCreateChannelMembershipCommand";
|
|
11
11
|
import { ChannelFlowCallbackCommandInput, ChannelFlowCallbackCommandOutput } from "./commands/ChannelFlowCallbackCommand";
|
|
@@ -61,7 +61,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
61
61
|
|
|
62
62
|
urlParser?: __UrlParser;
|
|
63
63
|
|
|
64
|
-
bodyLengthChecker?:
|
|
64
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
65
65
|
|
|
66
66
|
streamCollector?: __StreamCollector;
|
|
67
67
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class ChimeSDKMessagingServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ChimeSDKMessagingServiceException as __BaseException } from "./ChimeSDKMessagingServiceException";
|
|
2
3
|
export declare enum AllowNotifications {
|
|
3
4
|
ALL = "ALL",
|
|
4
5
|
FILTERED = "FILTERED",
|
|
@@ -49,60 +50,76 @@ export declare enum ErrorCode {
|
|
|
49
50
|
VoiceConnectorGroupAssociationsExist = "VoiceConnectorGroupAssociationsExist"
|
|
50
51
|
}
|
|
51
52
|
|
|
52
|
-
export
|
|
53
|
-
name: "BadRequestException";
|
|
54
|
-
$fault: "client";
|
|
53
|
+
export declare class BadRequestException extends __BaseException {
|
|
54
|
+
readonly name: "BadRequestException";
|
|
55
|
+
readonly $fault: "client";
|
|
55
56
|
Code?: ErrorCode | string;
|
|
56
57
|
Message?: string;
|
|
58
|
+
|
|
59
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
57
60
|
}
|
|
58
61
|
|
|
59
|
-
export
|
|
60
|
-
name: "ConflictException";
|
|
61
|
-
$fault: "client";
|
|
62
|
+
export declare class ConflictException extends __BaseException {
|
|
63
|
+
readonly name: "ConflictException";
|
|
64
|
+
readonly $fault: "client";
|
|
62
65
|
Code?: ErrorCode | string;
|
|
63
66
|
Message?: string;
|
|
67
|
+
|
|
68
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
64
69
|
}
|
|
65
70
|
|
|
66
|
-
export
|
|
67
|
-
name: "ForbiddenException";
|
|
68
|
-
$fault: "client";
|
|
71
|
+
export declare class ForbiddenException extends __BaseException {
|
|
72
|
+
readonly name: "ForbiddenException";
|
|
73
|
+
readonly $fault: "client";
|
|
69
74
|
Code?: ErrorCode | string;
|
|
70
75
|
Message?: string;
|
|
76
|
+
|
|
77
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
71
78
|
}
|
|
72
79
|
|
|
73
|
-
export
|
|
74
|
-
name: "NotFoundException";
|
|
75
|
-
$fault: "client";
|
|
80
|
+
export declare class NotFoundException extends __BaseException {
|
|
81
|
+
readonly name: "NotFoundException";
|
|
82
|
+
readonly $fault: "client";
|
|
76
83
|
Code?: ErrorCode | string;
|
|
77
84
|
Message?: string;
|
|
85
|
+
|
|
86
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
78
87
|
}
|
|
79
88
|
|
|
80
|
-
export
|
|
81
|
-
name: "ServiceFailureException";
|
|
82
|
-
$fault: "server";
|
|
89
|
+
export declare class ServiceFailureException extends __BaseException {
|
|
90
|
+
readonly name: "ServiceFailureException";
|
|
91
|
+
readonly $fault: "server";
|
|
83
92
|
Code?: ErrorCode | string;
|
|
84
93
|
Message?: string;
|
|
94
|
+
|
|
95
|
+
constructor(opts: __ExceptionOptionType<ServiceFailureException, __BaseException>);
|
|
85
96
|
}
|
|
86
97
|
|
|
87
|
-
export
|
|
88
|
-
name: "ServiceUnavailableException";
|
|
89
|
-
$fault: "server";
|
|
98
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
99
|
+
readonly name: "ServiceUnavailableException";
|
|
100
|
+
readonly $fault: "server";
|
|
90
101
|
Code?: ErrorCode | string;
|
|
91
102
|
Message?: string;
|
|
103
|
+
|
|
104
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
92
105
|
}
|
|
93
106
|
|
|
94
|
-
export
|
|
95
|
-
name: "ThrottledClientException";
|
|
96
|
-
$fault: "client";
|
|
107
|
+
export declare class ThrottledClientException extends __BaseException {
|
|
108
|
+
readonly name: "ThrottledClientException";
|
|
109
|
+
readonly $fault: "client";
|
|
97
110
|
Code?: ErrorCode | string;
|
|
98
111
|
Message?: string;
|
|
112
|
+
|
|
113
|
+
constructor(opts: __ExceptionOptionType<ThrottledClientException, __BaseException>);
|
|
99
114
|
}
|
|
100
115
|
|
|
101
|
-
export
|
|
102
|
-
name: "UnauthorizedClientException";
|
|
103
|
-
$fault: "client";
|
|
116
|
+
export declare class UnauthorizedClientException extends __BaseException {
|
|
117
|
+
readonly name: "UnauthorizedClientException";
|
|
118
|
+
readonly $fault: "client";
|
|
104
119
|
Code?: ErrorCode | string;
|
|
105
120
|
Message?: string;
|
|
121
|
+
|
|
122
|
+
constructor(opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>);
|
|
106
123
|
}
|
|
107
124
|
|
|
108
125
|
export interface Identity {
|
|
@@ -628,11 +645,13 @@ export declare namespace CreateChannelResponse {
|
|
|
628
645
|
const filterSensitiveLog: (obj: CreateChannelResponse) => any;
|
|
629
646
|
}
|
|
630
647
|
|
|
631
|
-
export
|
|
632
|
-
name: "ResourceLimitExceededException";
|
|
633
|
-
$fault: "client";
|
|
648
|
+
export declare class ResourceLimitExceededException extends __BaseException {
|
|
649
|
+
readonly name: "ResourceLimitExceededException";
|
|
650
|
+
readonly $fault: "client";
|
|
634
651
|
Code?: ErrorCode | string;
|
|
635
652
|
Message?: string;
|
|
653
|
+
|
|
654
|
+
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
636
655
|
}
|
|
637
656
|
export interface CreateChannelBanRequest {
|
|
638
657
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMessagingClientConfig) =
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMessagingClientConfig) =
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMessagingClientConfig) =
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-messaging",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Messaging Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.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",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,41 +18,41 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.0",
|
|
39
|
+
"@aws-sdk/types": "3.54.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0",
|
|
52
52
|
"uuid": "^8.3.2"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
56
56
|
"@tsconfig/recommended": "1.0.1",
|
|
57
57
|
"@types/node": "^12.7.5",
|
|
58
58
|
"@types/uuid": "^8.3.0",
|