@aws-sdk/client-transcribe 3.948.0 → 3.953.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 +570 -383
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/CreateCallAnalyticsCategoryCommand.js +2 -2
- package/dist-es/commands/CreateLanguageModelCommand.js +2 -2
- package/dist-es/commands/CreateMedicalVocabularyCommand.js +2 -2
- package/dist-es/commands/CreateVocabularyCommand.js +2 -2
- package/dist-es/commands/CreateVocabularyFilterCommand.js +2 -2
- package/dist-es/commands/DeleteCallAnalyticsCategoryCommand.js +2 -2
- package/dist-es/commands/DeleteCallAnalyticsJobCommand.js +2 -2
- package/dist-es/commands/DeleteLanguageModelCommand.js +2 -2
- package/dist-es/commands/DeleteMedicalScribeJobCommand.js +2 -2
- package/dist-es/commands/DeleteMedicalTranscriptionJobCommand.js +2 -2
- package/dist-es/commands/DeleteMedicalVocabularyCommand.js +2 -2
- package/dist-es/commands/DeleteTranscriptionJobCommand.js +2 -2
- package/dist-es/commands/DeleteVocabularyCommand.js +2 -2
- package/dist-es/commands/DeleteVocabularyFilterCommand.js +2 -2
- package/dist-es/commands/DescribeLanguageModelCommand.js +2 -2
- package/dist-es/commands/GetCallAnalyticsCategoryCommand.js +2 -2
- package/dist-es/commands/GetCallAnalyticsJobCommand.js +2 -2
- package/dist-es/commands/GetMedicalScribeJobCommand.js +2 -2
- package/dist-es/commands/GetMedicalTranscriptionJobCommand.js +2 -2
- package/dist-es/commands/GetMedicalVocabularyCommand.js +2 -2
- package/dist-es/commands/GetTranscriptionJobCommand.js +2 -2
- package/dist-es/commands/GetVocabularyCommand.js +2 -2
- package/dist-es/commands/GetVocabularyFilterCommand.js +2 -2
- package/dist-es/commands/ListCallAnalyticsCategoriesCommand.js +2 -2
- package/dist-es/commands/ListCallAnalyticsJobsCommand.js +2 -2
- package/dist-es/commands/ListLanguageModelsCommand.js +2 -2
- package/dist-es/commands/ListMedicalScribeJobsCommand.js +2 -2
- package/dist-es/commands/ListMedicalTranscriptionJobsCommand.js +2 -2
- package/dist-es/commands/ListMedicalVocabulariesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListTranscriptionJobsCommand.js +2 -2
- package/dist-es/commands/ListVocabulariesCommand.js +2 -2
- package/dist-es/commands/ListVocabularyFiltersCommand.js +2 -2
- package/dist-es/commands/StartCallAnalyticsJobCommand.js +2 -2
- package/dist-es/commands/StartMedicalScribeJobCommand.js +2 -2
- package/dist-es/commands/StartMedicalTranscriptionJobCommand.js +2 -2
- package/dist-es/commands/StartTranscriptionJobCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateCallAnalyticsCategoryCommand.js +2 -2
- package/dist-es/commands/UpdateMedicalVocabularyCommand.js +2 -2
- package/dist-es/commands/UpdateVocabularyCommand.js +2 -2
- package/dist-es/commands/UpdateVocabularyFilterCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +351 -337
- package/dist-types/TranscribeClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +174 -203
- package/dist-types/ts3.4/TranscribeClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +173 -205
- package/package.json +34 -34
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartMedicalTranscriptionJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StartMedicalTranscriptionJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartMedicalTranscriptionJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartMedicalTranscriptionJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "StartMedicalTranscriptionJob", {})
|
|
13
13
|
.n("TranscribeClient", "StartMedicalTranscriptionJobCommand")
|
|
14
|
-
.sc(StartMedicalTranscriptionJob)
|
|
14
|
+
.sc(StartMedicalTranscriptionJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartTranscriptionJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StartTranscriptionJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartTranscriptionJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartTranscriptionJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "StartTranscriptionJob", {})
|
|
13
13
|
.n("TranscribeClient", "StartTranscriptionJobCommand")
|
|
14
|
-
.sc(StartTranscriptionJob)
|
|
14
|
+
.sc(StartTranscriptionJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "TagResource", {})
|
|
13
13
|
.n("TranscribeClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "UntagResource", {})
|
|
13
13
|
.n("TranscribeClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateCallAnalyticsCategory } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateCallAnalyticsCategory$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateCallAnalyticsCategoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateCallAnalyticsCategoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "UpdateCallAnalyticsCategory", {})
|
|
13
13
|
.n("TranscribeClient", "UpdateCallAnalyticsCategoryCommand")
|
|
14
|
-
.sc(UpdateCallAnalyticsCategory)
|
|
14
|
+
.sc(UpdateCallAnalyticsCategory$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateMedicalVocabulary } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateMedicalVocabulary$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateMedicalVocabularyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateMedicalVocabularyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "UpdateMedicalVocabulary", {})
|
|
13
13
|
.n("TranscribeClient", "UpdateMedicalVocabularyCommand")
|
|
14
|
-
.sc(UpdateMedicalVocabulary)
|
|
14
|
+
.sc(UpdateMedicalVocabulary$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateVocabulary } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateVocabulary$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateVocabularyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateVocabularyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "UpdateVocabulary", {})
|
|
13
13
|
.n("TranscribeClient", "UpdateVocabularyCommand")
|
|
14
|
-
.sc(UpdateVocabulary)
|
|
14
|
+
.sc(UpdateVocabulary$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateVocabularyFilter } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateVocabularyFilter$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateVocabularyFilterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateVocabularyFilterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "UpdateVocabularyFilter", {})
|
|
13
13
|
.n("TranscribeClient", "UpdateVocabularyFilterCommand")
|
|
14
|
-
.sc(UpdateVocabularyFilter)
|
|
14
|
+
.sc(UpdateVocabularyFilter$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.transcribe",
|
|
29
|
+
version: "2017-10-26",
|
|
30
|
+
serviceTarget: "Transcribe",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "Transcribe",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|