@aws-sdk/client-transcribe 3.47.2 → 3.48.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/CHANGELOG.md +11 -0
- package/dist-cjs/models/models_0.js +18 -3
- package/dist-cjs/protocols/Aws_json1_1.js +27 -0
- package/dist-es/models/models_0.js +15 -0
- package/dist-es/protocols/Aws_json1_1.js +27 -1
- package/dist-types/Transcribe.d.ts +37 -28
- package/dist-types/commands/CreateCallAnalyticsCategoryCommand.d.ts +3 -3
- package/dist-types/commands/CreateLanguageModelCommand.d.ts +3 -2
- package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +2 -1
- package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +2 -2
- package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +2 -1
- package/dist-types/commands/ListLanguageModelsCommand.d.ts +4 -3
- package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +2 -2
- package/dist-types/commands/ListVocabulariesCommand.d.ts +2 -2
- package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +5 -4
- package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +3 -2
- package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +4 -3
- package/dist-types/commands/UpdateVocabularyCommand.d.ts +3 -2
- package/dist-types/models/models_0.d.ts +855 -664
- package/dist-types/ts3.4/models/models_0.d.ts +16 -0
- package/package.json +3 -3
|
@@ -107,6 +107,20 @@ export declare enum MediaFormat {
|
|
|
107
107
|
WAV = "wav",
|
|
108
108
|
WEBM = "webm"
|
|
109
109
|
}
|
|
110
|
+
export declare enum PiiEntityType {
|
|
111
|
+
ADDRESS = "ADDRESS",
|
|
112
|
+
ALL = "ALL",
|
|
113
|
+
BANK_ACCOUNT_NUMBER = "BANK_ACCOUNT_NUMBER",
|
|
114
|
+
BANK_ROUTING = "BANK_ROUTING",
|
|
115
|
+
CREDIT_DEBIT_CVV = "CREDIT_DEBIT_CVV",
|
|
116
|
+
CREDIT_DEBIT_EXPIRY = "CREDIT_DEBIT_EXPIRY",
|
|
117
|
+
CREDIT_DEBIT_NUMBER = "CREDIT_DEBIT_NUMBER",
|
|
118
|
+
EMAIL = "EMAIL",
|
|
119
|
+
NAME = "NAME",
|
|
120
|
+
PHONE = "PHONE",
|
|
121
|
+
PIN = "PIN",
|
|
122
|
+
SSN = "SSN"
|
|
123
|
+
}
|
|
110
124
|
export declare enum RedactionOutput {
|
|
111
125
|
REDACTED = "redacted",
|
|
112
126
|
REDACTED_AND_UNREDACTED = "redacted_and_unredacted"
|
|
@@ -120,6 +134,8 @@ export interface ContentRedaction {
|
|
|
120
134
|
RedactionType: RedactionType | string | undefined;
|
|
121
135
|
|
|
122
136
|
RedactionOutput: RedactionOutput | string | undefined;
|
|
137
|
+
|
|
138
|
+
PiiEntityTypes?: (PiiEntityType | string)[];
|
|
123
139
|
}
|
|
124
140
|
export declare namespace ContentRedaction {
|
|
125
141
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-transcribe",
|
|
3
3
|
"description": "AWS SDK for JavaScript Transcribe Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.48.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.48.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.47.2",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.48.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.47.2",
|
|
25
25
|
"@aws-sdk/hash-node": "3.47.2",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.47.2",
|