@aws-sdk/client-transcribe-streaming 3.306.0 → 3.310.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/commands/StartCallAnalyticsStreamTranscriptionCommand.js +2 -2
- package/dist-cjs/commands/StartMedicalStreamTranscriptionCommand.js +2 -2
- package/dist-cjs/commands/StartStreamTranscriptionCommand.js +2 -2
- package/dist-cjs/protocols/Aws_restJson1.js +166 -178
- package/dist-es/commands/StartCallAnalyticsStreamTranscriptionCommand.js +3 -3
- package/dist-es/commands/StartMedicalStreamTranscriptionCommand.js +3 -3
- package/dist-es/commands/StartStreamTranscriptionCommand.js +3 -3
- package/dist-es/protocols/Aws_restJson1.js +159 -171
- package/dist-types/protocols/Aws_restJson1.d.ts +24 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -6
- package/package.json +42 -42
|
@@ -41,10 +41,10 @@ class StartCallAnalyticsStreamTranscriptionCommand extends smithy_client_1.Comma
|
|
|
41
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
42
42
|
}
|
|
43
43
|
serialize(input, context) {
|
|
44
|
-
return (0, Aws_restJson1_1.
|
|
44
|
+
return (0, Aws_restJson1_1.se_StartCallAnalyticsStreamTranscriptionCommand)(input, context);
|
|
45
45
|
}
|
|
46
46
|
deserialize(output, context) {
|
|
47
|
-
return (0, Aws_restJson1_1.
|
|
47
|
+
return (0, Aws_restJson1_1.de_StartCallAnalyticsStreamTranscriptionCommand)(output, context);
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
exports.StartCallAnalyticsStreamTranscriptionCommand = StartCallAnalyticsStreamTranscriptionCommand;
|
|
@@ -41,10 +41,10 @@ class StartMedicalStreamTranscriptionCommand extends smithy_client_1.Command {
|
|
|
41
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
42
42
|
}
|
|
43
43
|
serialize(input, context) {
|
|
44
|
-
return (0, Aws_restJson1_1.
|
|
44
|
+
return (0, Aws_restJson1_1.se_StartMedicalStreamTranscriptionCommand)(input, context);
|
|
45
45
|
}
|
|
46
46
|
deserialize(output, context) {
|
|
47
|
-
return (0, Aws_restJson1_1.
|
|
47
|
+
return (0, Aws_restJson1_1.de_StartMedicalStreamTranscriptionCommand)(output, context);
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
exports.StartMedicalStreamTranscriptionCommand = StartMedicalStreamTranscriptionCommand;
|
|
@@ -41,10 +41,10 @@ class StartStreamTranscriptionCommand extends smithy_client_1.Command {
|
|
|
41
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
42
42
|
}
|
|
43
43
|
serialize(input, context) {
|
|
44
|
-
return (0, Aws_restJson1_1.
|
|
44
|
+
return (0, Aws_restJson1_1.se_StartStreamTranscriptionCommand)(input, context);
|
|
45
45
|
}
|
|
46
46
|
deserialize(output, context) {
|
|
47
|
-
return (0, Aws_restJson1_1.
|
|
47
|
+
return (0, Aws_restJson1_1.de_StartStreamTranscriptionCommand)(output, context);
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
exports.StartStreamTranscriptionCommand = StartStreamTranscriptionCommand;
|