@aws-sdk/client-voice-id 3.52.0 → 3.54.1
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/VoiceIDServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +103 -2
- package/dist-cjs/protocols/Aws_json1_0.js +235 -947
- package/dist-es/index.js +1 -0
- package/dist-es/models/VoiceIDServiceException.js +12 -0
- package/dist-es/models/models_0.js +95 -1
- package/dist-es/protocols/Aws_json1_0.js +520 -1018
- package/dist-types/VoiceIDClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/VoiceIDServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -22
- 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/VoiceIDClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/VoiceIDServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -22
- 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 +27 -27
|
@@ -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 { CreateDomainCommandInput, CreateDomainCommandOutput } from "./commands/CreateDomainCommand";
|
|
10
10
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
11
11
|
import { DeleteFraudsterCommandInput, DeleteFraudsterCommandOutput } from "./commands/DeleteFraudsterCommand";
|
|
@@ -49,7 +49,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
49
49
|
* A function that can calculate the length of a request body.
|
|
50
50
|
* @internal
|
|
51
51
|
*/
|
|
52
|
-
bodyLengthChecker?:
|
|
52
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
53
53
|
/**
|
|
54
54
|
* A function that converts a stream into an array of bytes.
|
|
55
55
|
* @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 VoiceID service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class VoiceIDServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,12 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { VoiceIDServiceException as __BaseException } from "./VoiceIDServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>You do not have sufficient permissions to perform this action. Check the error message and try
|
|
4
5
|
* again.</p>
|
|
5
6
|
*/
|
|
6
|
-
export
|
|
7
|
-
name: "AccessDeniedException";
|
|
8
|
-
$fault: "client";
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
9
10
|
Message?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
15
|
}
|
|
11
16
|
/**
|
|
12
17
|
* <p>The configuration used to authenticate a speaker during a session.</p>
|
|
@@ -95,9 +100,9 @@ export declare enum ConflictType {
|
|
|
95
100
|
* <p>The request failed due to a conflict. Check the <code>ConflictType</code> and error message for
|
|
96
101
|
* more details.</p>
|
|
97
102
|
*/
|
|
98
|
-
export
|
|
99
|
-
name: "ConflictException";
|
|
100
|
-
$fault: "client";
|
|
103
|
+
export declare class ConflictException extends __BaseException {
|
|
104
|
+
readonly name: "ConflictException";
|
|
105
|
+
readonly $fault: "client";
|
|
101
106
|
Message?: string;
|
|
102
107
|
/**
|
|
103
108
|
* <p>The type of conflict which caused a ConflictException. Possible types and the corresponding error messages
|
|
@@ -130,6 +135,10 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
130
135
|
* </ul>
|
|
131
136
|
*/
|
|
132
137
|
ConflictType?: ConflictType | string;
|
|
138
|
+
/**
|
|
139
|
+
* @internal
|
|
140
|
+
*/
|
|
141
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
133
142
|
}
|
|
134
143
|
/**
|
|
135
144
|
* <p>The configuration containing information about the customer-managed KMS Key used for encrypting
|
|
@@ -266,10 +275,14 @@ export declare namespace CreateDomainResponse {
|
|
|
266
275
|
/**
|
|
267
276
|
* <p>The request failed due to an unknown error on the server side.</p>
|
|
268
277
|
*/
|
|
269
|
-
export
|
|
270
|
-
name: "InternalServerException";
|
|
271
|
-
$fault: "server";
|
|
278
|
+
export declare class InternalServerException extends __BaseException {
|
|
279
|
+
readonly name: "InternalServerException";
|
|
280
|
+
readonly $fault: "server";
|
|
272
281
|
Message?: string;
|
|
282
|
+
/**
|
|
283
|
+
* @internal
|
|
284
|
+
*/
|
|
285
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
273
286
|
}
|
|
274
287
|
export declare enum ResourceType {
|
|
275
288
|
BATCH_JOB = "BATCH_JOB",
|
|
@@ -283,24 +296,32 @@ export declare enum ResourceType {
|
|
|
283
296
|
* <p>The specified resource cannot be found. Check the <code>ResourceType</code> and error message for
|
|
284
297
|
* more details.</p>
|
|
285
298
|
*/
|
|
286
|
-
export
|
|
287
|
-
name: "ResourceNotFoundException";
|
|
288
|
-
$fault: "client";
|
|
299
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
300
|
+
readonly name: "ResourceNotFoundException";
|
|
301
|
+
readonly $fault: "client";
|
|
289
302
|
Message?: string;
|
|
290
303
|
/**
|
|
291
304
|
* <p>The type of resource which cannot not be found. Possible types are <code>BATCH_JOB</code>, <code>COMPLIANCE_CONSENT</code>,
|
|
292
305
|
* <code>DOMAIN</code>, <code>FRAUDSTER</code>, <code>SESSION</code> and <code>SPEAKER</code>.</p>
|
|
293
306
|
*/
|
|
294
307
|
ResourceType?: ResourceType | string;
|
|
308
|
+
/**
|
|
309
|
+
* @internal
|
|
310
|
+
*/
|
|
311
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
295
312
|
}
|
|
296
313
|
/**
|
|
297
314
|
* <p>The request exceeded the service quota. Refer to <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#voiceid-quotas">Voice ID Service
|
|
298
315
|
* Quotas</a> and try your request again.</p>
|
|
299
316
|
*/
|
|
300
|
-
export
|
|
301
|
-
name: "ServiceQuotaExceededException";
|
|
302
|
-
$fault: "client";
|
|
317
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
318
|
+
readonly name: "ServiceQuotaExceededException";
|
|
319
|
+
readonly $fault: "client";
|
|
303
320
|
Message?: string;
|
|
321
|
+
/**
|
|
322
|
+
* @internal
|
|
323
|
+
*/
|
|
324
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
304
325
|
}
|
|
305
326
|
/**
|
|
306
327
|
* <p>The request was denied due to request throttling. Please slow down your request rate. Refer to
|
|
@@ -308,18 +329,26 @@ export interface ServiceQuotaExceededException extends __SmithyException, $Metad
|
|
|
308
329
|
* Amazon Connect Voice ID Service API throttling quotas
|
|
309
330
|
* </a> and try your request again.</p>
|
|
310
331
|
*/
|
|
311
|
-
export
|
|
312
|
-
name: "ThrottlingException";
|
|
313
|
-
$fault: "client";
|
|
332
|
+
export declare class ThrottlingException extends __BaseException {
|
|
333
|
+
readonly name: "ThrottlingException";
|
|
334
|
+
readonly $fault: "client";
|
|
314
335
|
Message?: string;
|
|
336
|
+
/**
|
|
337
|
+
* @internal
|
|
338
|
+
*/
|
|
339
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
315
340
|
}
|
|
316
341
|
/**
|
|
317
342
|
* <p>The request failed one or more validations; check the error message for more details.</p>
|
|
318
343
|
*/
|
|
319
|
-
export
|
|
320
|
-
name: "ValidationException";
|
|
321
|
-
$fault: "client";
|
|
344
|
+
export declare class ValidationException extends __BaseException {
|
|
345
|
+
readonly name: "ValidationException";
|
|
346
|
+
readonly $fault: "client";
|
|
322
347
|
Message?: string;
|
|
348
|
+
/**
|
|
349
|
+
* @internal
|
|
350
|
+
*/
|
|
351
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
323
352
|
}
|
|
324
353
|
export interface DeleteDomainRequest {
|
|
325
354
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: VoiceIDClientConfig) => {
|
|
|
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: VoiceIDClientConfig) => {
|
|
|
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: VoiceIDClientConfig) => {
|
|
|
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 { CreateDomainCommandInput, CreateDomainCommandOutput } from "./commands/CreateDomainCommand";
|
|
10
10
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
11
11
|
import { DeleteFraudsterCommandInput, DeleteFraudsterCommandOutput } from "./commands/DeleteFraudsterCommand";
|
|
@@ -37,7 +37,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
37
37
|
|
|
38
38
|
urlParser?: __UrlParser;
|
|
39
39
|
|
|
40
|
-
bodyLengthChecker?:
|
|
40
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
41
41
|
|
|
42
42
|
streamCollector?: __StreamCollector;
|
|
43
43
|
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { VoiceIDServiceException as __BaseException } from "./VoiceIDServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
Message?: string;
|
|
8
|
+
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
10
|
}
|
|
8
11
|
|
|
9
12
|
export interface AuthenticationConfiguration {
|
|
@@ -55,12 +58,14 @@ export declare enum ConflictType {
|
|
|
55
58
|
SPEAKER_OPTED_OUT = "SPEAKER_OPTED_OUT"
|
|
56
59
|
}
|
|
57
60
|
|
|
58
|
-
export
|
|
59
|
-
name: "ConflictException";
|
|
60
|
-
$fault: "client";
|
|
61
|
+
export declare class ConflictException extends __BaseException {
|
|
62
|
+
readonly name: "ConflictException";
|
|
63
|
+
readonly $fault: "client";
|
|
61
64
|
Message?: string;
|
|
62
65
|
|
|
63
66
|
ConflictType?: ConflictType | string;
|
|
67
|
+
|
|
68
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
64
69
|
}
|
|
65
70
|
|
|
66
71
|
export interface ServerSideEncryptionConfiguration {
|
|
@@ -135,10 +140,12 @@ export declare namespace CreateDomainResponse {
|
|
|
135
140
|
const filterSensitiveLog: (obj: CreateDomainResponse) => any;
|
|
136
141
|
}
|
|
137
142
|
|
|
138
|
-
export
|
|
139
|
-
name: "InternalServerException";
|
|
140
|
-
$fault: "server";
|
|
143
|
+
export declare class InternalServerException extends __BaseException {
|
|
144
|
+
readonly name: "InternalServerException";
|
|
145
|
+
readonly $fault: "server";
|
|
141
146
|
Message?: string;
|
|
147
|
+
|
|
148
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
142
149
|
}
|
|
143
150
|
export declare enum ResourceType {
|
|
144
151
|
BATCH_JOB = "BATCH_JOB",
|
|
@@ -149,30 +156,38 @@ export declare enum ResourceType {
|
|
|
149
156
|
SPEAKER = "SPEAKER"
|
|
150
157
|
}
|
|
151
158
|
|
|
152
|
-
export
|
|
153
|
-
name: "ResourceNotFoundException";
|
|
154
|
-
$fault: "client";
|
|
159
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
160
|
+
readonly name: "ResourceNotFoundException";
|
|
161
|
+
readonly $fault: "client";
|
|
155
162
|
Message?: string;
|
|
156
163
|
|
|
157
164
|
ResourceType?: ResourceType | string;
|
|
165
|
+
|
|
166
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
158
167
|
}
|
|
159
168
|
|
|
160
|
-
export
|
|
161
|
-
name: "ServiceQuotaExceededException";
|
|
162
|
-
$fault: "client";
|
|
169
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
170
|
+
readonly name: "ServiceQuotaExceededException";
|
|
171
|
+
readonly $fault: "client";
|
|
163
172
|
Message?: string;
|
|
173
|
+
|
|
174
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
164
175
|
}
|
|
165
176
|
|
|
166
|
-
export
|
|
167
|
-
name: "ThrottlingException";
|
|
168
|
-
$fault: "client";
|
|
177
|
+
export declare class ThrottlingException extends __BaseException {
|
|
178
|
+
readonly name: "ThrottlingException";
|
|
179
|
+
readonly $fault: "client";
|
|
169
180
|
Message?: string;
|
|
181
|
+
|
|
182
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
170
183
|
}
|
|
171
184
|
|
|
172
|
-
export
|
|
173
|
-
name: "ValidationException";
|
|
174
|
-
$fault: "client";
|
|
185
|
+
export declare class ValidationException extends __BaseException {
|
|
186
|
+
readonly name: "ValidationException";
|
|
187
|
+
readonly $fault: "client";
|
|
175
188
|
Message?: string;
|
|
189
|
+
|
|
190
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
176
191
|
}
|
|
177
192
|
export interface DeleteDomainRequest {
|
|
178
193
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: VoiceIDClientConfig) => {
|
|
|
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: VoiceIDClientConfig) => {
|
|
|
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: VoiceIDClientConfig) => {
|
|
|
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-voice-id",
|
|
3
3
|
"description": "AWS SDK for JavaScript Voice Id Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.1",
|
|
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",
|
|
@@ -18,34 +18,34 @@
|
|
|
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.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.1",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.1",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.1",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.1",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.1",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.1",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.1",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.1",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.1",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.1",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.1",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.1",
|
|
39
|
+
"@aws-sdk/types": "3.54.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.1",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
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.
|
|
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.1",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.1",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.1",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0",
|