@aws-sdk/client-transcribe-streaming 3.928.0 → 3.930.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 +1514 -1228
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/TranscribeStreamingClient.js +2 -0
- package/dist-es/commands/GetMedicalScribeStreamCommand.js +3 -9
- package/dist-es/commands/StartCallAnalyticsStreamTranscriptionCommand.js +2 -7
- package/dist-es/commands/StartMedicalScribeStreamCommand.js +2 -7
- package/dist-es/commands/StartMedicalStreamTranscriptionCommand.js +2 -7
- package/dist-es/commands/StartStreamTranscriptionCommand.js +2 -7
- package/dist-es/models/models_0.js +0 -227
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1534 -0
- package/dist-types/TranscribeStreamingClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +24 -74
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +92 -0
- package/dist-types/ts3.4/TranscribeStreamingClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -61
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +99 -0
- package/package.json +40 -40
- package/dist-es/protocols/Aws_restJson1.js +0 -988
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -47
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -68
|
@@ -9,7 +9,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
9
9
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
10
10
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
11
11
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
12
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
12
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
13
13
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
14
14
|
import { GetMedicalScribeStreamCommandInput, GetMedicalScribeStreamCommandOutput } from "./commands/GetMedicalScribeStreamCommand";
|
|
15
15
|
import { StartCallAnalyticsStreamTranscriptionCommandInput, StartCallAnalyticsStreamTranscriptionCommandOutput } from "./commands/StartCallAnalyticsStreamTranscriptionCommand";
|
|
@@ -150,6 +150,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
150
150
|
* Optional extensions
|
|
151
151
|
*/
|
|
152
152
|
extensions?: RuntimeExtension[];
|
|
153
|
+
/**
|
|
154
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
155
|
+
* may be overridden. A default will always be set by the client.
|
|
156
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
157
|
+
* the client.
|
|
158
|
+
* @alpha
|
|
159
|
+
*
|
|
160
|
+
*/
|
|
161
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
153
162
|
/**
|
|
154
163
|
* The function that provides necessary utilities for generating and parsing event stream
|
|
155
164
|
*/
|
|
@@ -362,12 +362,15 @@ export declare namespace AudioStream {
|
|
|
362
362
|
ConfigurationEvent?: never;
|
|
363
363
|
$unknown: [string, any];
|
|
364
364
|
}
|
|
365
|
+
/**
|
|
366
|
+
* @deprecated unused in schema-serde mode.
|
|
367
|
+
*
|
|
368
|
+
*/
|
|
365
369
|
interface Visitor<T> {
|
|
366
370
|
AudioEvent: (value: AudioEvent) => T;
|
|
367
371
|
ConfigurationEvent: (value: ConfigurationEvent) => T;
|
|
368
372
|
_: (name: string, value: any) => T;
|
|
369
373
|
}
|
|
370
|
-
const visit: <T>(value: AudioStream, visitor: Visitor<T>) => T;
|
|
371
374
|
}
|
|
372
375
|
/**
|
|
373
376
|
* <p>One or more arguments to the <code>StartStreamTranscription</code>,
|
|
@@ -858,6 +861,10 @@ export declare namespace CallAnalyticsTranscriptResultStream {
|
|
|
858
861
|
ServiceUnavailableException?: never;
|
|
859
862
|
$unknown: [string, any];
|
|
860
863
|
}
|
|
864
|
+
/**
|
|
865
|
+
* @deprecated unused in schema-serde mode.
|
|
866
|
+
*
|
|
867
|
+
*/
|
|
861
868
|
interface Visitor<T> {
|
|
862
869
|
UtteranceEvent: (value: UtteranceEvent) => T;
|
|
863
870
|
CategoryEvent: (value: CategoryEvent) => T;
|
|
@@ -868,7 +875,6 @@ export declare namespace CallAnalyticsTranscriptResultStream {
|
|
|
868
875
|
ServiceUnavailableException: (value: ServiceUnavailableException) => T;
|
|
869
876
|
_: (name: string, value: any) => T;
|
|
870
877
|
}
|
|
871
|
-
const visit: <T>(value: CallAnalyticsTranscriptResultStream, visitor: Visitor<T>) => T;
|
|
872
878
|
}
|
|
873
879
|
/**
|
|
874
880
|
* @public
|
|
@@ -1844,13 +1850,16 @@ export declare namespace MedicalScribeInputStream {
|
|
|
1844
1850
|
ConfigurationEvent?: never;
|
|
1845
1851
|
$unknown: [string, any];
|
|
1846
1852
|
}
|
|
1853
|
+
/**
|
|
1854
|
+
* @deprecated unused in schema-serde mode.
|
|
1855
|
+
*
|
|
1856
|
+
*/
|
|
1847
1857
|
interface Visitor<T> {
|
|
1848
1858
|
AudioEvent: (value: MedicalScribeAudioEvent) => T;
|
|
1849
1859
|
SessionControlEvent: (value: MedicalScribeSessionControlEvent) => T;
|
|
1850
1860
|
ConfigurationEvent: (value: MedicalScribeConfigurationEvent) => T;
|
|
1851
1861
|
_: (name: string, value: any) => T;
|
|
1852
1862
|
}
|
|
1853
|
-
const visit: <T>(value: MedicalScribeInputStream, visitor: Visitor<T>) => T;
|
|
1854
1863
|
}
|
|
1855
1864
|
/**
|
|
1856
1865
|
* @public
|
|
@@ -2079,6 +2088,10 @@ export declare namespace MedicalScribeResultStream {
|
|
|
2079
2088
|
ServiceUnavailableException?: never;
|
|
2080
2089
|
$unknown: [string, any];
|
|
2081
2090
|
}
|
|
2091
|
+
/**
|
|
2092
|
+
* @deprecated unused in schema-serde mode.
|
|
2093
|
+
*
|
|
2094
|
+
*/
|
|
2082
2095
|
interface Visitor<T> {
|
|
2083
2096
|
TranscriptEvent: (value: MedicalScribeTranscriptEvent) => T;
|
|
2084
2097
|
BadRequestException: (value: BadRequestException) => T;
|
|
@@ -2088,7 +2101,6 @@ export declare namespace MedicalScribeResultStream {
|
|
|
2088
2101
|
ServiceUnavailableException: (value: ServiceUnavailableException) => T;
|
|
2089
2102
|
_: (name: string, value: any) => T;
|
|
2090
2103
|
}
|
|
2091
|
-
const visit: <T>(value: MedicalScribeResultStream, visitor: Visitor<T>) => T;
|
|
2092
2104
|
}
|
|
2093
2105
|
/**
|
|
2094
2106
|
* <p>The <code>MedicalTranscript</code> associated with a
|
|
@@ -2235,6 +2247,10 @@ export declare namespace MedicalTranscriptResultStream {
|
|
|
2235
2247
|
ServiceUnavailableException?: never;
|
|
2236
2248
|
$unknown: [string, any];
|
|
2237
2249
|
}
|
|
2250
|
+
/**
|
|
2251
|
+
* @deprecated unused in schema-serde mode.
|
|
2252
|
+
*
|
|
2253
|
+
*/
|
|
2238
2254
|
interface Visitor<T> {
|
|
2239
2255
|
TranscriptEvent: (value: MedicalTranscriptEvent) => T;
|
|
2240
2256
|
BadRequestException: (value: BadRequestException) => T;
|
|
@@ -2244,7 +2260,6 @@ export declare namespace MedicalTranscriptResultStream {
|
|
|
2244
2260
|
ServiceUnavailableException: (value: ServiceUnavailableException) => T;
|
|
2245
2261
|
_: (name: string, value: any) => T;
|
|
2246
2262
|
}
|
|
2247
|
-
const visit: <T>(value: MedicalTranscriptResultStream, visitor: Visitor<T>) => T;
|
|
2248
2263
|
}
|
|
2249
2264
|
/**
|
|
2250
2265
|
* @public
|
|
@@ -3372,6 +3387,10 @@ export declare namespace TranscriptResultStream {
|
|
|
3372
3387
|
ServiceUnavailableException?: never;
|
|
3373
3388
|
$unknown: [string, any];
|
|
3374
3389
|
}
|
|
3390
|
+
/**
|
|
3391
|
+
* @deprecated unused in schema-serde mode.
|
|
3392
|
+
*
|
|
3393
|
+
*/
|
|
3375
3394
|
interface Visitor<T> {
|
|
3376
3395
|
TranscriptEvent: (value: TranscriptEvent) => T;
|
|
3377
3396
|
BadRequestException: (value: BadRequestException) => T;
|
|
@@ -3381,7 +3400,6 @@ export declare namespace TranscriptResultStream {
|
|
|
3381
3400
|
ServiceUnavailableException: (value: ServiceUnavailableException) => T;
|
|
3382
3401
|
_: (name: string, value: any) => T;
|
|
3383
3402
|
}
|
|
3384
|
-
const visit: <T>(value: TranscriptResultStream, visitor: Visitor<T>) => T;
|
|
3385
3403
|
}
|
|
3386
3404
|
/**
|
|
3387
3405
|
* @public
|
|
@@ -3511,71 +3529,3 @@ export interface StartStreamTranscriptionResponse {
|
|
|
3511
3529
|
*/
|
|
3512
3530
|
VocabularyFilterNames?: string | undefined;
|
|
3513
3531
|
}
|
|
3514
|
-
/**
|
|
3515
|
-
* @internal
|
|
3516
|
-
*/
|
|
3517
|
-
export declare const AudioStreamFilterSensitiveLog: (obj: AudioStream) => any;
|
|
3518
|
-
/**
|
|
3519
|
-
* @internal
|
|
3520
|
-
*/
|
|
3521
|
-
export declare const CallAnalyticsTranscriptResultStreamFilterSensitiveLog: (obj: CallAnalyticsTranscriptResultStream) => any;
|
|
3522
|
-
/**
|
|
3523
|
-
* @internal
|
|
3524
|
-
*/
|
|
3525
|
-
export declare const MedicalScribePatientContextFilterSensitiveLog: (obj: MedicalScribePatientContext) => any;
|
|
3526
|
-
/**
|
|
3527
|
-
* @internal
|
|
3528
|
-
*/
|
|
3529
|
-
export declare const MedicalScribeContextFilterSensitiveLog: (obj: MedicalScribeContext) => any;
|
|
3530
|
-
/**
|
|
3531
|
-
* @internal
|
|
3532
|
-
*/
|
|
3533
|
-
export declare const MedicalScribeConfigurationEventFilterSensitiveLog: (obj: MedicalScribeConfigurationEvent) => any;
|
|
3534
|
-
/**
|
|
3535
|
-
* @internal
|
|
3536
|
-
*/
|
|
3537
|
-
export declare const MedicalScribeInputStreamFilterSensitiveLog: (obj: MedicalScribeInputStream) => any;
|
|
3538
|
-
/**
|
|
3539
|
-
* @internal
|
|
3540
|
-
*/
|
|
3541
|
-
export declare const MedicalScribeResultStreamFilterSensitiveLog: (obj: MedicalScribeResultStream) => any;
|
|
3542
|
-
/**
|
|
3543
|
-
* @internal
|
|
3544
|
-
*/
|
|
3545
|
-
export declare const MedicalTranscriptResultStreamFilterSensitiveLog: (obj: MedicalTranscriptResultStream) => any;
|
|
3546
|
-
/**
|
|
3547
|
-
* @internal
|
|
3548
|
-
*/
|
|
3549
|
-
export declare const StartCallAnalyticsStreamTranscriptionRequestFilterSensitiveLog: (obj: StartCallAnalyticsStreamTranscriptionRequest) => any;
|
|
3550
|
-
/**
|
|
3551
|
-
* @internal
|
|
3552
|
-
*/
|
|
3553
|
-
export declare const StartCallAnalyticsStreamTranscriptionResponseFilterSensitiveLog: (obj: StartCallAnalyticsStreamTranscriptionResponse) => any;
|
|
3554
|
-
/**
|
|
3555
|
-
* @internal
|
|
3556
|
-
*/
|
|
3557
|
-
export declare const StartMedicalScribeStreamRequestFilterSensitiveLog: (obj: StartMedicalScribeStreamRequest) => any;
|
|
3558
|
-
/**
|
|
3559
|
-
* @internal
|
|
3560
|
-
*/
|
|
3561
|
-
export declare const StartMedicalScribeStreamResponseFilterSensitiveLog: (obj: StartMedicalScribeStreamResponse) => any;
|
|
3562
|
-
/**
|
|
3563
|
-
* @internal
|
|
3564
|
-
*/
|
|
3565
|
-
export declare const StartMedicalStreamTranscriptionRequestFilterSensitiveLog: (obj: StartMedicalStreamTranscriptionRequest) => any;
|
|
3566
|
-
/**
|
|
3567
|
-
* @internal
|
|
3568
|
-
*/
|
|
3569
|
-
export declare const StartMedicalStreamTranscriptionResponseFilterSensitiveLog: (obj: StartMedicalStreamTranscriptionResponse) => any;
|
|
3570
|
-
/**
|
|
3571
|
-
* @internal
|
|
3572
|
-
*/
|
|
3573
|
-
export declare const StartStreamTranscriptionRequestFilterSensitiveLog: (obj: StartStreamTranscriptionRequest) => any;
|
|
3574
|
-
/**
|
|
3575
|
-
* @internal
|
|
3576
|
-
*/
|
|
3577
|
-
export declare const TranscriptResultStreamFilterSensitiveLog: (obj: TranscriptResultStream) => any;
|
|
3578
|
-
/**
|
|
3579
|
-
* @internal
|
|
3580
|
-
*/
|
|
3581
|
-
export declare const StartStreamTranscriptionResponseFilterSensitiveLog: (obj: StartStreamTranscriptionResponse) => any;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
36
37
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -33,6 +33,7 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
33
33
|
profile?: string;
|
|
34
34
|
logger: import("@smithy/types").Logger;
|
|
35
35
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
36
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
36
37
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
37
38
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
38
39
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
31
31
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
35
36
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
36
37
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TranscribeStreamingHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var Pronouns: StaticSimpleSchema;
|
|
3
|
+
export declare var Alternative: StaticStructureSchema;
|
|
4
|
+
export declare var AudioEvent: StaticStructureSchema;
|
|
5
|
+
export declare var BadRequestException: StaticErrorSchema;
|
|
6
|
+
export declare var CallAnalyticsEntity: StaticStructureSchema;
|
|
7
|
+
export declare var CallAnalyticsItem: StaticStructureSchema;
|
|
8
|
+
export declare var CallAnalyticsLanguageWithScore: StaticStructureSchema;
|
|
9
|
+
export declare var CategoryEvent: StaticStructureSchema;
|
|
10
|
+
export declare var ChannelDefinition: StaticStructureSchema;
|
|
11
|
+
export declare var CharacterOffsets: StaticStructureSchema;
|
|
12
|
+
export declare var ClinicalNoteGenerationResult: StaticStructureSchema;
|
|
13
|
+
export declare var ClinicalNoteGenerationSettings: StaticStructureSchema;
|
|
14
|
+
export declare var ConfigurationEvent: StaticStructureSchema;
|
|
15
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
16
|
+
export declare var Entity: StaticStructureSchema;
|
|
17
|
+
export declare var GetMedicalScribeStreamRequest: StaticStructureSchema;
|
|
18
|
+
export declare var GetMedicalScribeStreamResponse: StaticStructureSchema;
|
|
19
|
+
export declare var InternalFailureException: StaticErrorSchema;
|
|
20
|
+
export declare var IssueDetected: StaticStructureSchema;
|
|
21
|
+
export declare var Item: StaticStructureSchema;
|
|
22
|
+
export declare var LanguageWithScore: StaticStructureSchema;
|
|
23
|
+
export declare var LimitExceededException: StaticErrorSchema;
|
|
24
|
+
export declare var MedicalAlternative: StaticStructureSchema;
|
|
25
|
+
export declare var MedicalEntity: StaticStructureSchema;
|
|
26
|
+
export declare var MedicalItem: StaticStructureSchema;
|
|
27
|
+
export declare var MedicalResult: StaticStructureSchema;
|
|
28
|
+
export declare var MedicalScribeAudioEvent: StaticStructureSchema;
|
|
29
|
+
export declare var MedicalScribeChannelDefinition: StaticStructureSchema;
|
|
30
|
+
export declare var MedicalScribeConfigurationEvent: StaticStructureSchema;
|
|
31
|
+
export declare var MedicalScribeContext: StaticStructureSchema;
|
|
32
|
+
export declare var MedicalScribeEncryptionSettings: StaticStructureSchema;
|
|
33
|
+
export declare var MedicalScribePatientContext: StaticStructureSchema;
|
|
34
|
+
export declare var MedicalScribePostStreamAnalyticsResult: StaticStructureSchema;
|
|
35
|
+
export declare var MedicalScribePostStreamAnalyticsSettings: StaticStructureSchema;
|
|
36
|
+
export declare var MedicalScribeSessionControlEvent: StaticStructureSchema;
|
|
37
|
+
export declare var MedicalScribeStreamDetails: StaticStructureSchema;
|
|
38
|
+
export declare var MedicalScribeTranscriptEvent: StaticStructureSchema;
|
|
39
|
+
export declare var MedicalScribeTranscriptItem: StaticStructureSchema;
|
|
40
|
+
export declare var MedicalScribeTranscriptSegment: StaticStructureSchema;
|
|
41
|
+
export declare var MedicalTranscript: StaticStructureSchema;
|
|
42
|
+
export declare var MedicalTranscriptEvent: StaticStructureSchema;
|
|
43
|
+
export declare var PointsOfInterest: StaticStructureSchema;
|
|
44
|
+
export declare var PostCallAnalyticsSettings: StaticStructureSchema;
|
|
45
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
46
|
+
export declare var Result: StaticStructureSchema;
|
|
47
|
+
export declare var ServiceUnavailableException: StaticErrorSchema;
|
|
48
|
+
export declare var StartCallAnalyticsStreamTranscriptionRequest: StaticStructureSchema;
|
|
49
|
+
export declare var StartCallAnalyticsStreamTranscriptionResponse: StaticStructureSchema;
|
|
50
|
+
export declare var StartMedicalScribeStreamRequest: StaticStructureSchema;
|
|
51
|
+
export declare var StartMedicalScribeStreamResponse: StaticStructureSchema;
|
|
52
|
+
export declare var StartMedicalStreamTranscriptionRequest: StaticStructureSchema;
|
|
53
|
+
export declare var StartMedicalStreamTranscriptionResponse: StaticStructureSchema;
|
|
54
|
+
export declare var StartStreamTranscriptionRequest: StaticStructureSchema;
|
|
55
|
+
export declare var StartStreamTranscriptionResponse: StaticStructureSchema;
|
|
56
|
+
export declare var TimestampRange: StaticStructureSchema;
|
|
57
|
+
export declare var Transcript: StaticStructureSchema;
|
|
58
|
+
export declare var TranscriptEvent: StaticStructureSchema;
|
|
59
|
+
export declare var UtteranceEvent: StaticStructureSchema;
|
|
60
|
+
export declare var __Unit: "unit";
|
|
61
|
+
export declare var TranscribeStreamingServiceException: StaticErrorSchema;
|
|
62
|
+
export declare var AlternativeList: StaticListSchema;
|
|
63
|
+
export declare var CallAnalyticsEntityList: StaticListSchema;
|
|
64
|
+
export declare var CallAnalyticsItemList: StaticListSchema;
|
|
65
|
+
export declare var CallAnalyticsLanguageIdentification: StaticListSchema;
|
|
66
|
+
export declare var ChannelDefinitions: StaticListSchema;
|
|
67
|
+
export declare var EntityList: StaticListSchema;
|
|
68
|
+
export declare var IssuesDetected: StaticListSchema;
|
|
69
|
+
export declare var ItemList: StaticListSchema;
|
|
70
|
+
export declare var LanguageIdentification: StaticListSchema;
|
|
71
|
+
export declare var MedicalAlternativeList: StaticListSchema;
|
|
72
|
+
export declare var MedicalEntityList: StaticListSchema;
|
|
73
|
+
export declare var MedicalItemList: StaticListSchema;
|
|
74
|
+
export declare var MedicalResultList: StaticListSchema;
|
|
75
|
+
export declare var MedicalScribeChannelDefinitions: StaticListSchema;
|
|
76
|
+
export declare var MedicalScribeTranscriptItemList: StaticListSchema;
|
|
77
|
+
export declare var ResultList: StaticListSchema;
|
|
78
|
+
export declare var StringList: number;
|
|
79
|
+
export declare var TimestampRanges: StaticListSchema;
|
|
80
|
+
export declare var KMSEncryptionContextMap: number;
|
|
81
|
+
export declare var MatchedCategoryDetails: StaticMapSchema;
|
|
82
|
+
export declare var AudioStream: StaticStructureSchema;
|
|
83
|
+
export declare var CallAnalyticsTranscriptResultStream: StaticStructureSchema;
|
|
84
|
+
export declare var MedicalScribeInputStream: StaticStructureSchema;
|
|
85
|
+
export declare var MedicalScribeResultStream: StaticStructureSchema;
|
|
86
|
+
export declare var MedicalTranscriptResultStream: StaticStructureSchema;
|
|
87
|
+
export declare var TranscriptResultStream: StaticStructureSchema;
|
|
88
|
+
export declare var GetMedicalScribeStream: StaticOperationSchema;
|
|
89
|
+
export declare var StartCallAnalyticsStreamTranscription: StaticOperationSchema;
|
|
90
|
+
export declare var StartMedicalScribeStream: StaticOperationSchema;
|
|
91
|
+
export declare var StartMedicalStreamTranscription: StaticOperationSchema;
|
|
92
|
+
export declare var StartStreamTranscription: StaticOperationSchema;
|
|
@@ -43,11 +43,14 @@ import {
|
|
|
43
43
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
44
44
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
45
45
|
ChecksumConstructor as __ChecksumConstructor,
|
|
46
|
+
ClientProtocol,
|
|
46
47
|
Decoder as __Decoder,
|
|
47
48
|
Encoder as __Encoder,
|
|
48
49
|
EventStreamSerdeProvider as __EventStreamSerdeProvider,
|
|
49
50
|
HashConstructor as __HashConstructor,
|
|
50
51
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
52
|
+
HttpRequest,
|
|
53
|
+
HttpResponse,
|
|
51
54
|
Logger as __Logger,
|
|
52
55
|
Provider as __Provider,
|
|
53
56
|
Provider,
|
|
@@ -122,6 +125,7 @@ export interface ClientDefaults
|
|
|
122
125
|
retryMode?: string | __Provider<string>;
|
|
123
126
|
logger?: __Logger;
|
|
124
127
|
extensions?: RuntimeExtension[];
|
|
128
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
125
129
|
eventStreamSerdeProvider?: __EventStreamSerdeProvider;
|
|
126
130
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
127
131
|
eventStreamPayloadHandlerProvider?: __EventStreamPayloadHandlerProvider;
|
|
@@ -82,7 +82,6 @@ export declare namespace AudioStream {
|
|
|
82
82
|
ConfigurationEvent: (value: ConfigurationEvent) => T;
|
|
83
83
|
_: (name: string, value: any) => T;
|
|
84
84
|
}
|
|
85
|
-
const visit: <T>(value: AudioStream, visitor: Visitor<T>) => T;
|
|
86
85
|
}
|
|
87
86
|
export declare class BadRequestException extends __BaseException {
|
|
88
87
|
readonly name: "BadRequestException";
|
|
@@ -295,10 +294,6 @@ export declare namespace CallAnalyticsTranscriptResultStream {
|
|
|
295
294
|
ServiceUnavailableException: (value: ServiceUnavailableException) => T;
|
|
296
295
|
_: (name: string, value: any) => T;
|
|
297
296
|
}
|
|
298
|
-
const visit: <T>(
|
|
299
|
-
value: CallAnalyticsTranscriptResultStream,
|
|
300
|
-
visitor: Visitor<T>
|
|
301
|
-
) => T;
|
|
302
297
|
}
|
|
303
298
|
export declare const ClinicalNoteGenerationStatus: {
|
|
304
299
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -592,7 +587,6 @@ export declare namespace MedicalScribeInputStream {
|
|
|
592
587
|
ConfigurationEvent: (value: MedicalScribeConfigurationEvent) => T;
|
|
593
588
|
_: (name: string, value: any) => T;
|
|
594
589
|
}
|
|
595
|
-
const visit: <T>(value: MedicalScribeInputStream, visitor: Visitor<T>) => T;
|
|
596
590
|
}
|
|
597
591
|
export declare const MedicalScribeTranscriptItemType: {
|
|
598
592
|
readonly PRONUNCIATION: "pronunciation";
|
|
@@ -701,7 +695,6 @@ export declare namespace MedicalScribeResultStream {
|
|
|
701
695
|
ServiceUnavailableException: (value: ServiceUnavailableException) => T;
|
|
702
696
|
_: (name: string, value: any) => T;
|
|
703
697
|
}
|
|
704
|
-
const visit: <T>(value: MedicalScribeResultStream, visitor: Visitor<T>) => T;
|
|
705
698
|
}
|
|
706
699
|
export interface MedicalTranscript {
|
|
707
700
|
Results?: MedicalResult[] | undefined;
|
|
@@ -790,10 +783,6 @@ export declare namespace MedicalTranscriptResultStream {
|
|
|
790
783
|
ServiceUnavailableException: (value: ServiceUnavailableException) => T;
|
|
791
784
|
_: (name: string, value: any) => T;
|
|
792
785
|
}
|
|
793
|
-
const visit: <T>(
|
|
794
|
-
value: MedicalTranscriptResultStream,
|
|
795
|
-
visitor: Visitor<T>
|
|
796
|
-
) => T;
|
|
797
786
|
}
|
|
798
787
|
export declare const PartialResultsStability: {
|
|
799
788
|
readonly HIGH: "high";
|
|
@@ -1036,7 +1025,6 @@ export declare namespace TranscriptResultStream {
|
|
|
1036
1025
|
ServiceUnavailableException: (value: ServiceUnavailableException) => T;
|
|
1037
1026
|
_: (name: string, value: any) => T;
|
|
1038
1027
|
}
|
|
1039
|
-
const visit: <T>(value: TranscriptResultStream, visitor: Visitor<T>) => T;
|
|
1040
1028
|
}
|
|
1041
1029
|
export interface StartStreamTranscriptionResponse {
|
|
1042
1030
|
RequestId?: string | undefined;
|
|
@@ -1064,52 +1052,3 @@ export interface StartStreamTranscriptionResponse {
|
|
|
1064
1052
|
VocabularyNames?: string | undefined;
|
|
1065
1053
|
VocabularyFilterNames?: string | undefined;
|
|
1066
1054
|
}
|
|
1067
|
-
export declare const AudioStreamFilterSensitiveLog: (obj: AudioStream) => any;
|
|
1068
|
-
export declare const CallAnalyticsTranscriptResultStreamFilterSensitiveLog: (
|
|
1069
|
-
obj: CallAnalyticsTranscriptResultStream
|
|
1070
|
-
) => any;
|
|
1071
|
-
export declare const MedicalScribePatientContextFilterSensitiveLog: (
|
|
1072
|
-
obj: MedicalScribePatientContext
|
|
1073
|
-
) => any;
|
|
1074
|
-
export declare const MedicalScribeContextFilterSensitiveLog: (
|
|
1075
|
-
obj: MedicalScribeContext
|
|
1076
|
-
) => any;
|
|
1077
|
-
export declare const MedicalScribeConfigurationEventFilterSensitiveLog: (
|
|
1078
|
-
obj: MedicalScribeConfigurationEvent
|
|
1079
|
-
) => any;
|
|
1080
|
-
export declare const MedicalScribeInputStreamFilterSensitiveLog: (
|
|
1081
|
-
obj: MedicalScribeInputStream
|
|
1082
|
-
) => any;
|
|
1083
|
-
export declare const MedicalScribeResultStreamFilterSensitiveLog: (
|
|
1084
|
-
obj: MedicalScribeResultStream
|
|
1085
|
-
) => any;
|
|
1086
|
-
export declare const MedicalTranscriptResultStreamFilterSensitiveLog: (
|
|
1087
|
-
obj: MedicalTranscriptResultStream
|
|
1088
|
-
) => any;
|
|
1089
|
-
export declare const StartCallAnalyticsStreamTranscriptionRequestFilterSensitiveLog: (
|
|
1090
|
-
obj: StartCallAnalyticsStreamTranscriptionRequest
|
|
1091
|
-
) => any;
|
|
1092
|
-
export declare const StartCallAnalyticsStreamTranscriptionResponseFilterSensitiveLog: (
|
|
1093
|
-
obj: StartCallAnalyticsStreamTranscriptionResponse
|
|
1094
|
-
) => any;
|
|
1095
|
-
export declare const StartMedicalScribeStreamRequestFilterSensitiveLog: (
|
|
1096
|
-
obj: StartMedicalScribeStreamRequest
|
|
1097
|
-
) => any;
|
|
1098
|
-
export declare const StartMedicalScribeStreamResponseFilterSensitiveLog: (
|
|
1099
|
-
obj: StartMedicalScribeStreamResponse
|
|
1100
|
-
) => any;
|
|
1101
|
-
export declare const StartMedicalStreamTranscriptionRequestFilterSensitiveLog: (
|
|
1102
|
-
obj: StartMedicalStreamTranscriptionRequest
|
|
1103
|
-
) => any;
|
|
1104
|
-
export declare const StartMedicalStreamTranscriptionResponseFilterSensitiveLog: (
|
|
1105
|
-
obj: StartMedicalStreamTranscriptionResponse
|
|
1106
|
-
) => any;
|
|
1107
|
-
export declare const StartStreamTranscriptionRequestFilterSensitiveLog: (
|
|
1108
|
-
obj: StartStreamTranscriptionRequest
|
|
1109
|
-
) => any;
|
|
1110
|
-
export declare const TranscriptResultStreamFilterSensitiveLog: (
|
|
1111
|
-
obj: TranscriptResultStream
|
|
1112
|
-
) => any;
|
|
1113
|
-
export declare const StartStreamTranscriptionResponseFilterSensitiveLog: (
|
|
1114
|
-
obj: StartStreamTranscriptionResponse
|
|
1115
|
-
) => any;
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
userAgentAppId?:
|
|
45
49
|
| string
|
|
@@ -42,6 +42,10 @@ export declare const getRuntimeConfig: (
|
|
|
42
42
|
profile?: string;
|
|
43
43
|
logger: import("@smithy/types").Logger;
|
|
44
44
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
45
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
46
|
+
import("@smithy/types").HttpRequest,
|
|
47
|
+
import("@smithy/types").HttpResponse
|
|
48
|
+
>;
|
|
45
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
46
50
|
retryStrategy?:
|
|
47
51
|
| import("@smithy/types").RetryStrategy
|
|
@@ -52,6 +52,10 @@ export declare const getRuntimeConfig: (
|
|
|
52
52
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
53
53
|
logger: import("@smithy/types").Logger;
|
|
54
54
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
56
|
+
import("@smithy/types").HttpRequest,
|
|
57
|
+
import("@smithy/types").HttpResponse
|
|
58
|
+
>;
|
|
55
59
|
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
56
60
|
defaultsMode:
|
|
57
61
|
| import("@smithy/smithy-client").DefaultsMode
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TranscribeStreamingHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
serviceId: string;
|
|
20
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticMapSchema,
|
|
5
|
+
StaticOperationSchema,
|
|
6
|
+
StaticSimpleSchema,
|
|
7
|
+
StaticStructureSchema,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
export declare var Pronouns: StaticSimpleSchema;
|
|
10
|
+
export declare var Alternative: StaticStructureSchema;
|
|
11
|
+
export declare var AudioEvent: StaticStructureSchema;
|
|
12
|
+
export declare var BadRequestException: StaticErrorSchema;
|
|
13
|
+
export declare var CallAnalyticsEntity: StaticStructureSchema;
|
|
14
|
+
export declare var CallAnalyticsItem: StaticStructureSchema;
|
|
15
|
+
export declare var CallAnalyticsLanguageWithScore: StaticStructureSchema;
|
|
16
|
+
export declare var CategoryEvent: StaticStructureSchema;
|
|
17
|
+
export declare var ChannelDefinition: StaticStructureSchema;
|
|
18
|
+
export declare var CharacterOffsets: StaticStructureSchema;
|
|
19
|
+
export declare var ClinicalNoteGenerationResult: StaticStructureSchema;
|
|
20
|
+
export declare var ClinicalNoteGenerationSettings: StaticStructureSchema;
|
|
21
|
+
export declare var ConfigurationEvent: StaticStructureSchema;
|
|
22
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
23
|
+
export declare var Entity: StaticStructureSchema;
|
|
24
|
+
export declare var GetMedicalScribeStreamRequest: StaticStructureSchema;
|
|
25
|
+
export declare var GetMedicalScribeStreamResponse: StaticStructureSchema;
|
|
26
|
+
export declare var InternalFailureException: StaticErrorSchema;
|
|
27
|
+
export declare var IssueDetected: StaticStructureSchema;
|
|
28
|
+
export declare var Item: StaticStructureSchema;
|
|
29
|
+
export declare var LanguageWithScore: StaticStructureSchema;
|
|
30
|
+
export declare var LimitExceededException: StaticErrorSchema;
|
|
31
|
+
export declare var MedicalAlternative: StaticStructureSchema;
|
|
32
|
+
export declare var MedicalEntity: StaticStructureSchema;
|
|
33
|
+
export declare var MedicalItem: StaticStructureSchema;
|
|
34
|
+
export declare var MedicalResult: StaticStructureSchema;
|
|
35
|
+
export declare var MedicalScribeAudioEvent: StaticStructureSchema;
|
|
36
|
+
export declare var MedicalScribeChannelDefinition: StaticStructureSchema;
|
|
37
|
+
export declare var MedicalScribeConfigurationEvent: StaticStructureSchema;
|
|
38
|
+
export declare var MedicalScribeContext: StaticStructureSchema;
|
|
39
|
+
export declare var MedicalScribeEncryptionSettings: StaticStructureSchema;
|
|
40
|
+
export declare var MedicalScribePatientContext: StaticStructureSchema;
|
|
41
|
+
export declare var MedicalScribePostStreamAnalyticsResult: StaticStructureSchema;
|
|
42
|
+
export declare var MedicalScribePostStreamAnalyticsSettings: StaticStructureSchema;
|
|
43
|
+
export declare var MedicalScribeSessionControlEvent: StaticStructureSchema;
|
|
44
|
+
export declare var MedicalScribeStreamDetails: StaticStructureSchema;
|
|
45
|
+
export declare var MedicalScribeTranscriptEvent: StaticStructureSchema;
|
|
46
|
+
export declare var MedicalScribeTranscriptItem: StaticStructureSchema;
|
|
47
|
+
export declare var MedicalScribeTranscriptSegment: StaticStructureSchema;
|
|
48
|
+
export declare var MedicalTranscript: StaticStructureSchema;
|
|
49
|
+
export declare var MedicalTranscriptEvent: StaticStructureSchema;
|
|
50
|
+
export declare var PointsOfInterest: StaticStructureSchema;
|
|
51
|
+
export declare var PostCallAnalyticsSettings: StaticStructureSchema;
|
|
52
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
53
|
+
export declare var Result: StaticStructureSchema;
|
|
54
|
+
export declare var ServiceUnavailableException: StaticErrorSchema;
|
|
55
|
+
export declare var StartCallAnalyticsStreamTranscriptionRequest: StaticStructureSchema;
|
|
56
|
+
export declare var StartCallAnalyticsStreamTranscriptionResponse: StaticStructureSchema;
|
|
57
|
+
export declare var StartMedicalScribeStreamRequest: StaticStructureSchema;
|
|
58
|
+
export declare var StartMedicalScribeStreamResponse: StaticStructureSchema;
|
|
59
|
+
export declare var StartMedicalStreamTranscriptionRequest: StaticStructureSchema;
|
|
60
|
+
export declare var StartMedicalStreamTranscriptionResponse: StaticStructureSchema;
|
|
61
|
+
export declare var StartStreamTranscriptionRequest: StaticStructureSchema;
|
|
62
|
+
export declare var StartStreamTranscriptionResponse: StaticStructureSchema;
|
|
63
|
+
export declare var TimestampRange: StaticStructureSchema;
|
|
64
|
+
export declare var Transcript: StaticStructureSchema;
|
|
65
|
+
export declare var TranscriptEvent: StaticStructureSchema;
|
|
66
|
+
export declare var UtteranceEvent: StaticStructureSchema;
|
|
67
|
+
export declare var __Unit: "unit";
|
|
68
|
+
export declare var TranscribeStreamingServiceException: StaticErrorSchema;
|
|
69
|
+
export declare var AlternativeList: StaticListSchema;
|
|
70
|
+
export declare var CallAnalyticsEntityList: StaticListSchema;
|
|
71
|
+
export declare var CallAnalyticsItemList: StaticListSchema;
|
|
72
|
+
export declare var CallAnalyticsLanguageIdentification: StaticListSchema;
|
|
73
|
+
export declare var ChannelDefinitions: StaticListSchema;
|
|
74
|
+
export declare var EntityList: StaticListSchema;
|
|
75
|
+
export declare var IssuesDetected: StaticListSchema;
|
|
76
|
+
export declare var ItemList: StaticListSchema;
|
|
77
|
+
export declare var LanguageIdentification: StaticListSchema;
|
|
78
|
+
export declare var MedicalAlternativeList: StaticListSchema;
|
|
79
|
+
export declare var MedicalEntityList: StaticListSchema;
|
|
80
|
+
export declare var MedicalItemList: StaticListSchema;
|
|
81
|
+
export declare var MedicalResultList: StaticListSchema;
|
|
82
|
+
export declare var MedicalScribeChannelDefinitions: StaticListSchema;
|
|
83
|
+
export declare var MedicalScribeTranscriptItemList: StaticListSchema;
|
|
84
|
+
export declare var ResultList: StaticListSchema;
|
|
85
|
+
export declare var StringList: number;
|
|
86
|
+
export declare var TimestampRanges: StaticListSchema;
|
|
87
|
+
export declare var KMSEncryptionContextMap: number;
|
|
88
|
+
export declare var MatchedCategoryDetails: StaticMapSchema;
|
|
89
|
+
export declare var AudioStream: StaticStructureSchema;
|
|
90
|
+
export declare var CallAnalyticsTranscriptResultStream: StaticStructureSchema;
|
|
91
|
+
export declare var MedicalScribeInputStream: StaticStructureSchema;
|
|
92
|
+
export declare var MedicalScribeResultStream: StaticStructureSchema;
|
|
93
|
+
export declare var MedicalTranscriptResultStream: StaticStructureSchema;
|
|
94
|
+
export declare var TranscriptResultStream: StaticStructureSchema;
|
|
95
|
+
export declare var GetMedicalScribeStream: StaticOperationSchema;
|
|
96
|
+
export declare var StartCallAnalyticsStreamTranscription: StaticOperationSchema;
|
|
97
|
+
export declare var StartMedicalScribeStream: StaticOperationSchema;
|
|
98
|
+
export declare var StartMedicalStreamTranscription: StaticOperationSchema;
|
|
99
|
+
export declare var StartStreamTranscription: StaticOperationSchema;
|