@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
|
@@ -4,7 +4,7 @@ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
|
4
4
|
import { getWebSocketPlugin } from "@aws-sdk/middleware-websocket";
|
|
5
5
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
6
6
|
import { StartCallAnalyticsStreamTranscriptionRequestFilterSensitiveLog, StartCallAnalyticsStreamTranscriptionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
7
|
-
import {
|
|
7
|
+
import { de_StartCallAnalyticsStreamTranscriptionCommand, se_StartCallAnalyticsStreamTranscriptionCommand, } from "../protocols/Aws_restJson1";
|
|
8
8
|
export class StartCallAnalyticsStreamTranscriptionCommand extends $Command {
|
|
9
9
|
static getEndpointParameterInstructions() {
|
|
10
10
|
return {
|
|
@@ -38,9 +38,9 @@ export class StartCallAnalyticsStreamTranscriptionCommand extends $Command {
|
|
|
38
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
39
39
|
}
|
|
40
40
|
serialize(input, context) {
|
|
41
|
-
return
|
|
41
|
+
return se_StartCallAnalyticsStreamTranscriptionCommand(input, context);
|
|
42
42
|
}
|
|
43
43
|
deserialize(output, context) {
|
|
44
|
-
return
|
|
44
|
+
return de_StartCallAnalyticsStreamTranscriptionCommand(output, context);
|
|
45
45
|
}
|
|
46
46
|
}
|
|
@@ -4,7 +4,7 @@ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
|
4
4
|
import { getWebSocketPlugin } from "@aws-sdk/middleware-websocket";
|
|
5
5
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
6
6
|
import { StartMedicalStreamTranscriptionRequestFilterSensitiveLog, StartMedicalStreamTranscriptionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
7
|
-
import {
|
|
7
|
+
import { de_StartMedicalStreamTranscriptionCommand, se_StartMedicalStreamTranscriptionCommand, } from "../protocols/Aws_restJson1";
|
|
8
8
|
export class StartMedicalStreamTranscriptionCommand extends $Command {
|
|
9
9
|
static getEndpointParameterInstructions() {
|
|
10
10
|
return {
|
|
@@ -38,9 +38,9 @@ export class StartMedicalStreamTranscriptionCommand extends $Command {
|
|
|
38
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
39
39
|
}
|
|
40
40
|
serialize(input, context) {
|
|
41
|
-
return
|
|
41
|
+
return se_StartMedicalStreamTranscriptionCommand(input, context);
|
|
42
42
|
}
|
|
43
43
|
deserialize(output, context) {
|
|
44
|
-
return
|
|
44
|
+
return de_StartMedicalStreamTranscriptionCommand(output, context);
|
|
45
45
|
}
|
|
46
46
|
}
|
|
@@ -4,7 +4,7 @@ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
|
4
4
|
import { getWebSocketPlugin } from "@aws-sdk/middleware-websocket";
|
|
5
5
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
6
6
|
import { StartStreamTranscriptionRequestFilterSensitiveLog, StartStreamTranscriptionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
7
|
-
import {
|
|
7
|
+
import { de_StartStreamTranscriptionCommand, se_StartStreamTranscriptionCommand } from "../protocols/Aws_restJson1";
|
|
8
8
|
export class StartStreamTranscriptionCommand extends $Command {
|
|
9
9
|
static getEndpointParameterInstructions() {
|
|
10
10
|
return {
|
|
@@ -38,9 +38,9 @@ export class StartStreamTranscriptionCommand extends $Command {
|
|
|
38
38
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
39
39
|
}
|
|
40
40
|
serialize(input, context) {
|
|
41
|
-
return
|
|
41
|
+
return se_StartStreamTranscriptionCommand(input, context);
|
|
42
42
|
}
|
|
43
43
|
deserialize(output, context) {
|
|
44
|
-
return
|
|
44
|
+
return de_StartStreamTranscriptionCommand(output, context);
|
|
45
45
|
}
|
|
46
46
|
}
|