@aws-sdk/client-voice-id 3.154.0 → 3.161.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 +30 -0
- package/README.md +1 -2
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +28 -23
- package/dist-cjs/protocols/Aws_json1_0.js +11 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +8 -6
- package/dist-es/protocols/Aws_json1_0.js +22 -10
- package/dist-types/VoiceID.d.ts +21 -23
- package/dist-types/VoiceIDClient.d.ts +1 -2
- package/dist-types/commands/CreateDomainCommand.d.ts +2 -3
- package/dist-types/commands/EvaluateSessionCommand.d.ts +2 -2
- package/dist-types/commands/ListDomainsCommand.d.ts +1 -2
- package/dist-types/commands/ListFraudsterRegistrationJobsCommand.d.ts +3 -4
- package/dist-types/commands/ListSpeakerEnrollmentJobsCommand.d.ts +3 -3
- package/dist-types/commands/OptOutSpeakerCommand.d.ts +6 -5
- package/dist-types/commands/UpdateDomainCommand.d.ts +3 -2
- package/dist-types/models/models_0.d.ts +389 -325
- package/dist-types/ts3.4/models/models_0.d.ts +45 -35
- package/package.json +26 -26
|
@@ -400,6 +400,12 @@ export interface DescribeSpeakerEnrollmentJobResponse {
|
|
|
400
400
|
|
|
401
401
|
Job?: SpeakerEnrollmentJob;
|
|
402
402
|
}
|
|
403
|
+
export interface ListDomainsRequest {
|
|
404
|
+
|
|
405
|
+
MaxResults?: number;
|
|
406
|
+
|
|
407
|
+
NextToken?: string;
|
|
408
|
+
}
|
|
403
409
|
|
|
404
410
|
export interface DomainSummary {
|
|
405
411
|
|
|
@@ -421,6 +427,26 @@ export interface DomainSummary {
|
|
|
421
427
|
|
|
422
428
|
ServerSideEncryptionUpdateDetails?: ServerSideEncryptionUpdateDetails;
|
|
423
429
|
}
|
|
430
|
+
export interface ListDomainsResponse {
|
|
431
|
+
|
|
432
|
+
DomainSummaries?: DomainSummary[];
|
|
433
|
+
|
|
434
|
+
NextToken?: string;
|
|
435
|
+
}
|
|
436
|
+
export interface UpdateDomainRequest {
|
|
437
|
+
|
|
438
|
+
DomainId: string | undefined;
|
|
439
|
+
|
|
440
|
+
Name: string | undefined;
|
|
441
|
+
|
|
442
|
+
Description?: string;
|
|
443
|
+
|
|
444
|
+
ServerSideEncryptionConfiguration: ServerSideEncryptionConfiguration | undefined;
|
|
445
|
+
}
|
|
446
|
+
export interface UpdateDomainResponse {
|
|
447
|
+
|
|
448
|
+
Domain?: Domain;
|
|
449
|
+
}
|
|
424
450
|
export interface EvaluateSessionRequest {
|
|
425
451
|
|
|
426
452
|
DomainId: string | undefined;
|
|
@@ -438,7 +464,8 @@ export declare enum FraudDetectionDecision {
|
|
|
438
464
|
NOT_ENOUGH_SPEECH = "NOT_ENOUGH_SPEECH"
|
|
439
465
|
}
|
|
440
466
|
export declare enum FraudDetectionReason {
|
|
441
|
-
KNOWN_FRAUDSTER = "KNOWN_FRAUDSTER"
|
|
467
|
+
KNOWN_FRAUDSTER = "KNOWN_FRAUDSTER",
|
|
468
|
+
VOICE_SPOOFING = "VOICE_SPOOFING"
|
|
442
469
|
}
|
|
443
470
|
|
|
444
471
|
export interface KnownFraudsterRisk {
|
|
@@ -448,9 +475,16 @@ export interface KnownFraudsterRisk {
|
|
|
448
475
|
GeneratedFraudsterId?: string;
|
|
449
476
|
}
|
|
450
477
|
|
|
478
|
+
export interface VoiceSpoofingRisk {
|
|
479
|
+
|
|
480
|
+
RiskScore: number | undefined;
|
|
481
|
+
}
|
|
482
|
+
|
|
451
483
|
export interface FraudRiskDetails {
|
|
452
484
|
|
|
453
485
|
KnownFraudsterRisk: KnownFraudsterRisk | undefined;
|
|
486
|
+
|
|
487
|
+
VoiceSpoofingRisk: VoiceSpoofingRisk | undefined;
|
|
454
488
|
}
|
|
455
489
|
|
|
456
490
|
export interface FraudDetectionResult {
|
|
@@ -507,18 +541,6 @@ export interface FraudsterRegistrationJobSummary {
|
|
|
507
541
|
|
|
508
542
|
JobProgress?: JobProgress;
|
|
509
543
|
}
|
|
510
|
-
export interface ListDomainsRequest {
|
|
511
|
-
|
|
512
|
-
MaxResults?: number;
|
|
513
|
-
|
|
514
|
-
NextToken?: string;
|
|
515
|
-
}
|
|
516
|
-
export interface ListDomainsResponse {
|
|
517
|
-
|
|
518
|
-
DomainSummaries?: DomainSummary[];
|
|
519
|
-
|
|
520
|
-
NextToken?: string;
|
|
521
|
-
}
|
|
522
544
|
export interface ListFraudsterRegistrationJobsRequest {
|
|
523
545
|
|
|
524
546
|
DomainId: string | undefined;
|
|
@@ -675,20 +697,6 @@ export interface UntagResourceRequest {
|
|
|
675
697
|
}
|
|
676
698
|
export interface UntagResourceResponse {
|
|
677
699
|
}
|
|
678
|
-
export interface UpdateDomainRequest {
|
|
679
|
-
|
|
680
|
-
DomainId: string | undefined;
|
|
681
|
-
|
|
682
|
-
Name: string | undefined;
|
|
683
|
-
|
|
684
|
-
Description?: string;
|
|
685
|
-
|
|
686
|
-
ServerSideEncryptionConfiguration: ServerSideEncryptionConfiguration | undefined;
|
|
687
|
-
}
|
|
688
|
-
export interface UpdateDomainResponse {
|
|
689
|
-
|
|
690
|
-
Domain?: Domain;
|
|
691
|
-
}
|
|
692
700
|
|
|
693
701
|
export declare const AuthenticationConfigurationFilterSensitiveLog: (obj: AuthenticationConfiguration) => any;
|
|
694
702
|
|
|
@@ -754,14 +762,24 @@ export declare const SpeakerEnrollmentJobFilterSensitiveLog: (obj: SpeakerEnroll
|
|
|
754
762
|
|
|
755
763
|
export declare const DescribeSpeakerEnrollmentJobResponseFilterSensitiveLog: (obj: DescribeSpeakerEnrollmentJobResponse) => any;
|
|
756
764
|
|
|
765
|
+
export declare const ListDomainsRequestFilterSensitiveLog: (obj: ListDomainsRequest) => any;
|
|
766
|
+
|
|
757
767
|
export declare const DomainSummaryFilterSensitiveLog: (obj: DomainSummary) => any;
|
|
758
768
|
|
|
769
|
+
export declare const ListDomainsResponseFilterSensitiveLog: (obj: ListDomainsResponse) => any;
|
|
770
|
+
|
|
771
|
+
export declare const UpdateDomainRequestFilterSensitiveLog: (obj: UpdateDomainRequest) => any;
|
|
772
|
+
|
|
773
|
+
export declare const UpdateDomainResponseFilterSensitiveLog: (obj: UpdateDomainResponse) => any;
|
|
774
|
+
|
|
759
775
|
export declare const EvaluateSessionRequestFilterSensitiveLog: (obj: EvaluateSessionRequest) => any;
|
|
760
776
|
|
|
761
777
|
export declare const FraudDetectionConfigurationFilterSensitiveLog: (obj: FraudDetectionConfiguration) => any;
|
|
762
778
|
|
|
763
779
|
export declare const KnownFraudsterRiskFilterSensitiveLog: (obj: KnownFraudsterRisk) => any;
|
|
764
780
|
|
|
781
|
+
export declare const VoiceSpoofingRiskFilterSensitiveLog: (obj: VoiceSpoofingRisk) => any;
|
|
782
|
+
|
|
765
783
|
export declare const FraudRiskDetailsFilterSensitiveLog: (obj: FraudRiskDetails) => any;
|
|
766
784
|
|
|
767
785
|
export declare const FraudDetectionResultFilterSensitiveLog: (obj: FraudDetectionResult) => any;
|
|
@@ -770,10 +788,6 @@ export declare const EvaluateSessionResponseFilterSensitiveLog: (obj: EvaluateSe
|
|
|
770
788
|
|
|
771
789
|
export declare const FraudsterRegistrationJobSummaryFilterSensitiveLog: (obj: FraudsterRegistrationJobSummary) => any;
|
|
772
790
|
|
|
773
|
-
export declare const ListDomainsRequestFilterSensitiveLog: (obj: ListDomainsRequest) => any;
|
|
774
|
-
|
|
775
|
-
export declare const ListDomainsResponseFilterSensitiveLog: (obj: ListDomainsResponse) => any;
|
|
776
|
-
|
|
777
791
|
export declare const ListFraudsterRegistrationJobsRequestFilterSensitiveLog: (obj: ListFraudsterRegistrationJobsRequest) => any;
|
|
778
792
|
|
|
779
793
|
export declare const ListFraudsterRegistrationJobsResponseFilterSensitiveLog: (obj: ListFraudsterRegistrationJobsResponse) => any;
|
|
@@ -813,7 +827,3 @@ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceRes
|
|
|
813
827
|
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
814
828
|
|
|
815
829
|
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
816
|
-
|
|
817
|
-
export declare const UpdateDomainRequestFilterSensitiveLog: (obj: UpdateDomainRequest) => any;
|
|
818
|
-
|
|
819
|
-
export declare const UpdateDomainResponseFilterSensitiveLog: (obj: UpdateDomainResponse) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-voice-id",
|
|
3
3
|
"description": "AWS SDK for JavaScript Voice Id Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.161.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,35 +18,35 @@
|
|
|
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.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.161.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.160.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.161.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.160.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.160.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.160.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.160.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.160.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.160.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.160.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.160.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.160.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.160.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.160.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.160.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.160.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.160.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.160.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.161.0",
|
|
40
|
+
"@aws-sdk/types": "3.160.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.160.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.154.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.161.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.161.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.160.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.160.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
52
|
"tslib": "^2.3.1",
|