@aws-sdk/client-transcribe-streaming 3.1019.0 → 3.1021.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.
@@ -1,9 +1,9 @@
1
1
  import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
- import { GetMedicalScribeStreamCommandInput, GetMedicalScribeStreamCommandOutput } from "./commands/GetMedicalScribeStreamCommand";
3
- import { StartCallAnalyticsStreamTranscriptionCommandInput, StartCallAnalyticsStreamTranscriptionCommandOutput } from "./commands/StartCallAnalyticsStreamTranscriptionCommand";
4
- import { StartMedicalScribeStreamCommandInput, StartMedicalScribeStreamCommandOutput } from "./commands/StartMedicalScribeStreamCommand";
5
- import { StartMedicalStreamTranscriptionCommandInput, StartMedicalStreamTranscriptionCommandOutput } from "./commands/StartMedicalStreamTranscriptionCommand";
6
- import { StartStreamTranscriptionCommandInput, StartStreamTranscriptionCommandOutput } from "./commands/StartStreamTranscriptionCommand";
2
+ import { type GetMedicalScribeStreamCommandInput, type GetMedicalScribeStreamCommandOutput } from "./commands/GetMedicalScribeStreamCommand";
3
+ import { type StartCallAnalyticsStreamTranscriptionCommandInput, type StartCallAnalyticsStreamTranscriptionCommandOutput } from "./commands/StartCallAnalyticsStreamTranscriptionCommand";
4
+ import { type StartMedicalScribeStreamCommandInput, type StartMedicalScribeStreamCommandOutput } from "./commands/StartMedicalScribeStreamCommand";
5
+ import { type StartMedicalStreamTranscriptionCommandInput, type StartMedicalStreamTranscriptionCommandOutput } from "./commands/StartMedicalStreamTranscriptionCommand";
6
+ import { type StartStreamTranscriptionCommandInput, type StartStreamTranscriptionCommandOutput } from "./commands/StartStreamTranscriptionCommand";
7
7
  import { TranscribeStreamingClient } from "./TranscribeStreamingClient";
8
8
  export interface TranscribeStreaming {
9
9
  /**
@@ -9,14 +9,14 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
9
9
  import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
10
10
  import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
11
11
  import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
12
- import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type EventStreamSerdeProvider as __EventStreamSerdeProvider, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
12
+ import type { 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, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
13
13
  import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
14
- import { GetMedicalScribeStreamCommandInput, GetMedicalScribeStreamCommandOutput } from "./commands/GetMedicalScribeStreamCommand";
15
- import { StartCallAnalyticsStreamTranscriptionCommandInput, StartCallAnalyticsStreamTranscriptionCommandOutput } from "./commands/StartCallAnalyticsStreamTranscriptionCommand";
16
- import { StartMedicalScribeStreamCommandInput, StartMedicalScribeStreamCommandOutput } from "./commands/StartMedicalScribeStreamCommand";
17
- import { StartMedicalStreamTranscriptionCommandInput, StartMedicalStreamTranscriptionCommandOutput } from "./commands/StartMedicalStreamTranscriptionCommand";
18
- import { StartStreamTranscriptionCommandInput, StartStreamTranscriptionCommandOutput } from "./commands/StartStreamTranscriptionCommand";
19
- import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
14
+ import type { GetMedicalScribeStreamCommandInput, GetMedicalScribeStreamCommandOutput } from "./commands/GetMedicalScribeStreamCommand";
15
+ import type { StartCallAnalyticsStreamTranscriptionCommandInput, StartCallAnalyticsStreamTranscriptionCommandOutput } from "./commands/StartCallAnalyticsStreamTranscriptionCommand";
16
+ import type { StartMedicalScribeStreamCommandInput, StartMedicalScribeStreamCommandOutput } from "./commands/StartMedicalScribeStreamCommand";
17
+ import type { StartMedicalStreamTranscriptionCommandInput, StartMedicalStreamTranscriptionCommandOutput } from "./commands/StartMedicalStreamTranscriptionCommand";
18
+ import type { StartStreamTranscriptionCommandInput, StartStreamTranscriptionCommandOutput } from "./commands/StartStreamTranscriptionCommand";
19
+ import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
20
20
  import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
21
21
  export { __Client };
22
22
  /**
@@ -125,7 +125,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
125
125
  * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
126
126
  * @internal
127
127
  */
128
- defaultUserAgentProvider?: Provider<__UserAgent>;
128
+ defaultUserAgentProvider?: __Provider<__UserAgent>;
129
129
  /**
130
130
  * Default credentials provider; Not available in browser runtime.
131
131
  * @deprecated
@@ -1,4 +1,4 @@
1
- import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types";
1
+ import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
2
2
  import type { TranscribeStreamingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
3
3
  /**
4
4
  * @internal
@@ -34,7 +34,7 @@
34
34
  */
35
35
  export * from "./TranscribeStreamingClient";
36
36
  export * from "./TranscribeStreaming";
37
- export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
37
+ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
38
38
  export type { RuntimeExtension } from "./runtimeExtensions";
39
39
  export type { TranscribeStreamingExtensionConfiguration } from "./extensionConfiguration";
40
40
  export * from "./commands";
@@ -1,5 +1,5 @@
1
- import { CallAnalyticsLanguageCode, ClinicalNoteGenerationStatus, ContentIdentificationType, ContentRedactionOutput, ContentRedactionType, ItemType, LanguageCode, MediaEncoding, MedicalContentIdentificationType, MedicalScribeLanguageCode, MedicalScribeMediaEncoding, MedicalScribeNoteTemplate, MedicalScribeParticipantRole, MedicalScribeSessionControlEventType, MedicalScribeStreamStatus, MedicalScribeTranscriptItemType, MedicalScribeVocabularyFilterMethod, PartialResultsStability, ParticipantRole, Pronouns, Sentiment, Specialty, Type, VocabularyFilterMethod } from "./enums";
2
- import { BadRequestException, ConflictException, InternalFailureException, LimitExceededException, ServiceUnavailableException } from "./errors";
1
+ import type { CallAnalyticsLanguageCode, ClinicalNoteGenerationStatus, ContentIdentificationType, ContentRedactionOutput, ContentRedactionType, ItemType, LanguageCode, MediaEncoding, MedicalContentIdentificationType, MedicalScribeLanguageCode, MedicalScribeMediaEncoding, MedicalScribeNoteTemplate, MedicalScribeParticipantRole, MedicalScribeSessionControlEventType, MedicalScribeStreamStatus, MedicalScribeTranscriptItemType, MedicalScribeVocabularyFilterMethod, PartialResultsStability, ParticipantRole, Pronouns, Sentiment, Specialty, Type, VocabularyFilterMethod } from "./enums";
2
+ import type { BadRequestException, ConflictException, InternalFailureException, LimitExceededException, ServiceUnavailableException } from "./errors";
3
3
  /**
4
4
  * <p>Contains entities identified as personally identifiable information (PII) in your
5
5
  * transcription output, along with various associated attributes. Examples include category,
@@ -39,6 +39,7 @@ import {
39
39
  Client as __Client,
40
40
  } from "@smithy/smithy-client";
41
41
  import {
42
+ AwsCredentialIdentityProvider,
42
43
  BodyLengthCalculator as __BodyLengthCalculator,
43
44
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
44
45
  ChecksumConstructor as __ChecksumConstructor,
@@ -51,8 +52,6 @@ import {
51
52
  Provider as __Provider,
52
53
  StreamCollector as __StreamCollector,
53
54
  UrlParser as __UrlParser,
54
- AwsCredentialIdentityProvider,
55
- Provider,
56
55
  UserAgent as __UserAgent,
57
56
  } from "@smithy/types";
58
57
  import {
@@ -116,7 +115,7 @@ export interface ClientDefaults
116
115
  useFipsEndpoint?: boolean | __Provider<boolean>;
117
116
  region?: string | __Provider<string>;
118
117
  profile?: string;
119
- defaultUserAgentProvider?: Provider<__UserAgent>;
118
+ defaultUserAgentProvider?: __Provider<__UserAgent>;
120
119
  credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
121
120
  maxAttempts?: number | __Provider<number>;
122
121
  retryMode?: string | __Provider<string>;
@@ -1,7 +1,7 @@
1
1
  import {
2
- HttpAuthScheme,
3
2
  AwsCredentialIdentity,
4
3
  AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
5
  } from "@smithy/types";
6
6
  import { TranscribeStreamingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-transcribe-streaming",
3
3
  "description": "AWS SDK for JavaScript Transcribe Streaming Client for Node.js, Browser and React Native",
4
- "version": "3.1019.0",
4
+ "version": "3.1021.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-transcribe-streaming",
@@ -29,23 +29,23 @@
29
29
  "dependencies": {
30
30
  "@aws-crypto/sha256-browser": "5.2.0",
31
31
  "@aws-crypto/sha256-js": "5.2.0",
32
- "@aws-sdk/core": "^3.973.25",
33
- "@aws-sdk/credential-provider-node": "^3.972.27",
32
+ "@aws-sdk/core": "^3.973.26",
33
+ "@aws-sdk/credential-provider-node": "^3.972.29",
34
34
  "@aws-sdk/eventstream-handler-node": "^3.972.12",
35
35
  "@aws-sdk/middleware-eventstream": "^3.972.8",
36
36
  "@aws-sdk/middleware-host-header": "^3.972.8",
37
37
  "@aws-sdk/middleware-logger": "^3.972.8",
38
38
  "@aws-sdk/middleware-recursion-detection": "^3.972.9",
39
39
  "@aws-sdk/middleware-sdk-transcribe-streaming": "^3.972.8",
40
- "@aws-sdk/middleware-user-agent": "^3.972.26",
40
+ "@aws-sdk/middleware-user-agent": "^3.972.28",
41
41
  "@aws-sdk/middleware-websocket": "^3.972.14",
42
42
  "@aws-sdk/region-config-resolver": "^3.972.10",
43
43
  "@aws-sdk/types": "^3.973.6",
44
44
  "@aws-sdk/util-endpoints": "^3.996.5",
45
45
  "@aws-sdk/util-user-agent-browser": "^3.972.8",
46
- "@aws-sdk/util-user-agent-node": "^3.973.12",
46
+ "@aws-sdk/util-user-agent-node": "^3.973.14",
47
47
  "@smithy/config-resolver": "^4.4.13",
48
- "@smithy/core": "^3.23.12",
48
+ "@smithy/core": "^3.23.13",
49
49
  "@smithy/eventstream-serde-browser": "^4.2.12",
50
50
  "@smithy/eventstream-serde-config-resolver": "^4.3.12",
51
51
  "@smithy/eventstream-serde-node": "^4.2.12",
@@ -53,29 +53,29 @@
53
53
  "@smithy/hash-node": "^4.2.12",
54
54
  "@smithy/invalid-dependency": "^4.2.12",
55
55
  "@smithy/middleware-content-length": "^4.2.12",
56
- "@smithy/middleware-endpoint": "^4.4.27",
57
- "@smithy/middleware-retry": "^4.4.44",
58
- "@smithy/middleware-serde": "^4.2.15",
56
+ "@smithy/middleware-endpoint": "^4.4.28",
57
+ "@smithy/middleware-retry": "^4.4.46",
58
+ "@smithy/middleware-serde": "^4.2.16",
59
59
  "@smithy/middleware-stack": "^4.2.12",
60
60
  "@smithy/node-config-provider": "^4.3.12",
61
- "@smithy/node-http-handler": "^4.5.0",
61
+ "@smithy/node-http-handler": "^4.5.1",
62
62
  "@smithy/protocol-http": "^5.3.12",
63
- "@smithy/smithy-client": "^4.12.7",
63
+ "@smithy/smithy-client": "^4.12.8",
64
64
  "@smithy/types": "^4.13.1",
65
65
  "@smithy/url-parser": "^4.2.12",
66
66
  "@smithy/util-base64": "^4.3.2",
67
67
  "@smithy/util-body-length-browser": "^4.2.2",
68
68
  "@smithy/util-body-length-node": "^4.2.3",
69
- "@smithy/util-defaults-mode-browser": "^4.3.43",
70
- "@smithy/util-defaults-mode-node": "^4.2.47",
69
+ "@smithy/util-defaults-mode-browser": "^4.3.44",
70
+ "@smithy/util-defaults-mode-node": "^4.2.48",
71
71
  "@smithy/util-endpoints": "^3.3.3",
72
72
  "@smithy/util-middleware": "^4.2.12",
73
- "@smithy/util-retry": "^4.2.12",
73
+ "@smithy/util-retry": "^4.2.13",
74
74
  "@smithy/util-utf8": "^4.2.2",
75
75
  "tslib": "^2.6.2"
76
76
  },
77
77
  "devDependencies": {
78
- "@smithy/snapshot-testing": "^2.0.3",
78
+ "@smithy/snapshot-testing": "^2.0.4",
79
79
  "@tsconfig/node20": "20.1.8",
80
80
  "@types/node": "^20.14.8",
81
81
  "concurrently": "7.0.0",