@aws-sdk/client-voice-id 3.296.0 → 3.298.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.
Files changed (64) hide show
  1. package/dist-cjs/commands/DeleteDomainCommand.js +2 -3
  2. package/dist-cjs/commands/DeleteFraudsterCommand.js +1 -1
  3. package/dist-cjs/commands/DeleteSpeakerCommand.js +1 -1
  4. package/dist-cjs/commands/DescribeDomainCommand.js +1 -1
  5. package/dist-cjs/commands/DescribeFraudsterCommand.js +1 -1
  6. package/dist-cjs/commands/DescribeFraudsterRegistrationJobCommand.js +1 -1
  7. package/dist-cjs/commands/DescribeSpeakerEnrollmentJobCommand.js +1 -1
  8. package/dist-cjs/commands/EvaluateSessionCommand.js +1 -1
  9. package/dist-cjs/commands/ListDomainsCommand.js +1 -1
  10. package/dist-cjs/commands/ListFraudsterRegistrationJobsCommand.js +1 -1
  11. package/dist-cjs/commands/ListSpeakerEnrollmentJobsCommand.js +1 -1
  12. package/dist-cjs/commands/ListSpeakersCommand.js +1 -1
  13. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -1
  14. package/dist-cjs/commands/TagResourceCommand.js +1 -1
  15. package/dist-cjs/commands/UntagResourceCommand.js +1 -1
  16. package/dist-cjs/models/models_0.js +2 -118
  17. package/dist-es/commands/DeleteDomainCommand.js +2 -3
  18. package/dist-es/commands/DeleteFraudsterCommand.js +1 -1
  19. package/dist-es/commands/DeleteSpeakerCommand.js +1 -1
  20. package/dist-es/commands/DescribeDomainCommand.js +2 -2
  21. package/dist-es/commands/DescribeFraudsterCommand.js +2 -2
  22. package/dist-es/commands/DescribeFraudsterRegistrationJobCommand.js +2 -2
  23. package/dist-es/commands/DescribeSpeakerEnrollmentJobCommand.js +2 -2
  24. package/dist-es/commands/EvaluateSessionCommand.js +2 -2
  25. package/dist-es/commands/ListDomainsCommand.js +2 -2
  26. package/dist-es/commands/ListFraudsterRegistrationJobsCommand.js +2 -2
  27. package/dist-es/commands/ListSpeakerEnrollmentJobsCommand.js +2 -2
  28. package/dist-es/commands/ListSpeakersCommand.js +2 -2
  29. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  30. package/dist-es/commands/TagResourceCommand.js +2 -2
  31. package/dist-es/commands/UntagResourceCommand.js +2 -2
  32. package/dist-es/models/models_0.js +0 -87
  33. package/dist-types/VoiceID.d.ts +22 -0
  34. package/dist-types/VoiceIDClient.d.ts +24 -4
  35. package/dist-types/commands/CreateDomainCommand.d.ts +16 -0
  36. package/dist-types/commands/DeleteDomainCommand.d.ts +16 -0
  37. package/dist-types/commands/DeleteFraudsterCommand.d.ts +16 -0
  38. package/dist-types/commands/DeleteSpeakerCommand.d.ts +16 -0
  39. package/dist-types/commands/DescribeDomainCommand.d.ts +16 -0
  40. package/dist-types/commands/DescribeFraudsterCommand.d.ts +16 -0
  41. package/dist-types/commands/DescribeFraudsterRegistrationJobCommand.d.ts +16 -0
  42. package/dist-types/commands/DescribeSpeakerCommand.d.ts +16 -0
  43. package/dist-types/commands/DescribeSpeakerEnrollmentJobCommand.d.ts +16 -0
  44. package/dist-types/commands/EvaluateSessionCommand.d.ts +16 -0
  45. package/dist-types/commands/ListDomainsCommand.d.ts +16 -0
  46. package/dist-types/commands/ListFraudsterRegistrationJobsCommand.d.ts +16 -0
  47. package/dist-types/commands/ListSpeakerEnrollmentJobsCommand.d.ts +16 -0
  48. package/dist-types/commands/ListSpeakersCommand.d.ts +16 -0
  49. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  50. package/dist-types/commands/OptOutSpeakerCommand.d.ts +16 -0
  51. package/dist-types/commands/StartFraudsterRegistrationJobCommand.d.ts +16 -0
  52. package/dist-types/commands/StartSpeakerEnrollmentJobCommand.d.ts +16 -0
  53. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  54. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  55. package/dist-types/commands/UpdateDomainCommand.d.ts +16 -0
  56. package/dist-types/models/VoiceIDServiceException.d.ts +2 -0
  57. package/dist-types/models/models_0.d.ts +193 -117
  58. package/dist-types/pagination/Interfaces.d.ts +3 -0
  59. package/dist-types/pagination/ListDomainsPaginator.d.ts +3 -0
  60. package/dist-types/pagination/ListFraudsterRegistrationJobsPaginator.d.ts +3 -0
  61. package/dist-types/pagination/ListSpeakerEnrollmentJobsPaginator.d.ts +3 -0
  62. package/dist-types/pagination/ListSpeakersPaginator.d.ts +3 -0
  63. package/dist-types/ts3.4/models/models_0.d.ts +0 -83
  64. package/package.json +4 -3
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { VoiceIDClient } from "../VoiceIDClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface VoiceIDPaginationConfiguration extends PaginationConfiguration {
4
7
  client: VoiceIDClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand";
3
3
  import { VoiceIDPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListDomains(config: VoiceIDPaginationConfiguration, input: ListDomainsCommandInput, ...additionalArguments: any): Paginator<ListDomainsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListFraudsterRegistrationJobsCommandInput, ListFraudsterRegistrationJobsCommandOutput } from "../commands/ListFraudsterRegistrationJobsCommand";
3
3
  import { VoiceIDPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListFraudsterRegistrationJobs(config: VoiceIDPaginationConfiguration, input: ListFraudsterRegistrationJobsCommandInput, ...additionalArguments: any): Paginator<ListFraudsterRegistrationJobsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListSpeakerEnrollmentJobsCommandInput, ListSpeakerEnrollmentJobsCommandOutput } from "../commands/ListSpeakerEnrollmentJobsCommand";
3
3
  import { VoiceIDPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListSpeakerEnrollmentJobs(config: VoiceIDPaginationConfiguration, input: ListSpeakerEnrollmentJobsCommandInput, ...additionalArguments: any): Paginator<ListSpeakerEnrollmentJobsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListSpeakersCommandInput, ListSpeakersCommandOutput } from "../commands/ListSpeakersCommand";
3
3
  import { VoiceIDPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListSpeakers(config: VoiceIDPaginationConfiguration, input: ListSpeakersCommandInput, ...additionalArguments: any): Paginator<ListSpeakersCommandOutput>;
@@ -470,64 +470,29 @@ export interface UntagResourceRequest {
470
470
  TagKeys: string[] | undefined;
471
471
  }
472
472
  export interface UntagResourceResponse {}
473
- export declare const AuthenticationConfigurationFilterSensitiveLog: (
474
- obj: AuthenticationConfiguration
475
- ) => any;
476
473
  export declare const AuthenticationResultFilterSensitiveLog: (
477
474
  obj: AuthenticationResult
478
475
  ) => any;
479
- export declare const ServerSideEncryptionConfigurationFilterSensitiveLog: (
480
- obj: ServerSideEncryptionConfiguration
481
- ) => any;
482
476
  export declare const TagFilterSensitiveLog: (obj: Tag) => any;
483
477
  export declare const CreateDomainRequestFilterSensitiveLog: (
484
478
  obj: CreateDomainRequest
485
479
  ) => any;
486
- export declare const ServerSideEncryptionUpdateDetailsFilterSensitiveLog: (
487
- obj: ServerSideEncryptionUpdateDetails
488
- ) => any;
489
480
  export declare const DomainFilterSensitiveLog: (obj: Domain) => any;
490
481
  export declare const CreateDomainResponseFilterSensitiveLog: (
491
482
  obj: CreateDomainResponse
492
483
  ) => any;
493
- export declare const DeleteDomainRequestFilterSensitiveLog: (
494
- obj: DeleteDomainRequest
495
- ) => any;
496
484
  export declare const DeleteFraudsterRequestFilterSensitiveLog: (
497
485
  obj: DeleteFraudsterRequest
498
486
  ) => any;
499
487
  export declare const DeleteSpeakerRequestFilterSensitiveLog: (
500
488
  obj: DeleteSpeakerRequest
501
489
  ) => any;
502
- export declare const DescribeDomainRequestFilterSensitiveLog: (
503
- obj: DescribeDomainRequest
504
- ) => any;
505
490
  export declare const DescribeDomainResponseFilterSensitiveLog: (
506
491
  obj: DescribeDomainResponse
507
492
  ) => any;
508
493
  export declare const DescribeFraudsterRequestFilterSensitiveLog: (
509
494
  obj: DescribeFraudsterRequest
510
495
  ) => any;
511
- export declare const FraudsterFilterSensitiveLog: (obj: Fraudster) => any;
512
- export declare const DescribeFraudsterResponseFilterSensitiveLog: (
513
- obj: DescribeFraudsterResponse
514
- ) => any;
515
- export declare const DescribeFraudsterRegistrationJobRequestFilterSensitiveLog: (
516
- obj: DescribeFraudsterRegistrationJobRequest
517
- ) => any;
518
- export declare const FailureDetailsFilterSensitiveLog: (
519
- obj: FailureDetails
520
- ) => any;
521
- export declare const InputDataConfigFilterSensitiveLog: (
522
- obj: InputDataConfig
523
- ) => any;
524
- export declare const JobProgressFilterSensitiveLog: (obj: JobProgress) => any;
525
- export declare const OutputDataConfigFilterSensitiveLog: (
526
- obj: OutputDataConfig
527
- ) => any;
528
- export declare const RegistrationConfigFilterSensitiveLog: (
529
- obj: RegistrationConfig
530
- ) => any;
531
496
  export declare const FraudsterRegistrationJobFilterSensitiveLog: (
532
497
  obj: FraudsterRegistrationJob
533
498
  ) => any;
@@ -541,24 +506,12 @@ export declare const SpeakerFilterSensitiveLog: (obj: Speaker) => any;
541
506
  export declare const DescribeSpeakerResponseFilterSensitiveLog: (
542
507
  obj: DescribeSpeakerResponse
543
508
  ) => any;
544
- export declare const DescribeSpeakerEnrollmentJobRequestFilterSensitiveLog: (
545
- obj: DescribeSpeakerEnrollmentJobRequest
546
- ) => any;
547
- export declare const EnrollmentJobFraudDetectionConfigFilterSensitiveLog: (
548
- obj: EnrollmentJobFraudDetectionConfig
549
- ) => any;
550
- export declare const EnrollmentConfigFilterSensitiveLog: (
551
- obj: EnrollmentConfig
552
- ) => any;
553
509
  export declare const SpeakerEnrollmentJobFilterSensitiveLog: (
554
510
  obj: SpeakerEnrollmentJob
555
511
  ) => any;
556
512
  export declare const DescribeSpeakerEnrollmentJobResponseFilterSensitiveLog: (
557
513
  obj: DescribeSpeakerEnrollmentJobResponse
558
514
  ) => any;
559
- export declare const ListDomainsRequestFilterSensitiveLog: (
560
- obj: ListDomainsRequest
561
- ) => any;
562
515
  export declare const DomainSummaryFilterSensitiveLog: (
563
516
  obj: DomainSummary
564
517
  ) => any;
@@ -571,57 +524,27 @@ export declare const UpdateDomainRequestFilterSensitiveLog: (
571
524
  export declare const UpdateDomainResponseFilterSensitiveLog: (
572
525
  obj: UpdateDomainResponse
573
526
  ) => any;
574
- export declare const EvaluateSessionRequestFilterSensitiveLog: (
575
- obj: EvaluateSessionRequest
576
- ) => any;
577
- export declare const FraudDetectionConfigurationFilterSensitiveLog: (
578
- obj: FraudDetectionConfiguration
579
- ) => any;
580
- export declare const KnownFraudsterRiskFilterSensitiveLog: (
581
- obj: KnownFraudsterRisk
582
- ) => any;
583
- export declare const VoiceSpoofingRiskFilterSensitiveLog: (
584
- obj: VoiceSpoofingRisk
585
- ) => any;
586
- export declare const FraudRiskDetailsFilterSensitiveLog: (
587
- obj: FraudRiskDetails
588
- ) => any;
589
- export declare const FraudDetectionResultFilterSensitiveLog: (
590
- obj: FraudDetectionResult
591
- ) => any;
592
527
  export declare const EvaluateSessionResponseFilterSensitiveLog: (
593
528
  obj: EvaluateSessionResponse
594
529
  ) => any;
595
530
  export declare const FraudsterRegistrationJobSummaryFilterSensitiveLog: (
596
531
  obj: FraudsterRegistrationJobSummary
597
532
  ) => any;
598
- export declare const ListFraudsterRegistrationJobsRequestFilterSensitiveLog: (
599
- obj: ListFraudsterRegistrationJobsRequest
600
- ) => any;
601
533
  export declare const ListFraudsterRegistrationJobsResponseFilterSensitiveLog: (
602
534
  obj: ListFraudsterRegistrationJobsResponse
603
535
  ) => any;
604
- export declare const ListSpeakerEnrollmentJobsRequestFilterSensitiveLog: (
605
- obj: ListSpeakerEnrollmentJobsRequest
606
- ) => any;
607
536
  export declare const SpeakerEnrollmentJobSummaryFilterSensitiveLog: (
608
537
  obj: SpeakerEnrollmentJobSummary
609
538
  ) => any;
610
539
  export declare const ListSpeakerEnrollmentJobsResponseFilterSensitiveLog: (
611
540
  obj: ListSpeakerEnrollmentJobsResponse
612
541
  ) => any;
613
- export declare const ListSpeakersRequestFilterSensitiveLog: (
614
- obj: ListSpeakersRequest
615
- ) => any;
616
542
  export declare const SpeakerSummaryFilterSensitiveLog: (
617
543
  obj: SpeakerSummary
618
544
  ) => any;
619
545
  export declare const ListSpeakersResponseFilterSensitiveLog: (
620
546
  obj: ListSpeakersResponse
621
547
  ) => any;
622
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (
623
- obj: ListTagsForResourceRequest
624
- ) => any;
625
548
  export declare const ListTagsForResourceResponseFilterSensitiveLog: (
626
549
  obj: ListTagsForResourceResponse
627
550
  ) => any;
@@ -646,12 +569,6 @@ export declare const StartSpeakerEnrollmentJobResponseFilterSensitiveLog: (
646
569
  export declare const TagResourceRequestFilterSensitiveLog: (
647
570
  obj: TagResourceRequest
648
571
  ) => any;
649
- export declare const TagResourceResponseFilterSensitiveLog: (
650
- obj: TagResourceResponse
651
- ) => any;
652
572
  export declare const UntagResourceRequestFilterSensitiveLog: (
653
573
  obj: UntagResourceRequest
654
574
  ) => any;
655
- export declare const UntagResourceResponseFilterSensitiveLog: (
656
- obj: UntagResourceResponse
657
- ) => 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.296.0",
4
+ "version": "3.298.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",
@@ -11,6 +11,7 @@
11
11
  "build:types": "tsc -p tsconfig.types.json",
12
12
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
13
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14
+ "extract:docs": "api-extractor run --local",
14
15
  "generate:client": "node ../../scripts/generate-clients/single-service --solo voice-id"
15
16
  },
16
17
  "main": "./dist-cjs/index.js",
@@ -20,9 +21,9 @@
20
21
  "dependencies": {
21
22
  "@aws-crypto/sha256-browser": "3.0.0",
22
23
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
24
+ "@aws-sdk/client-sts": "3.298.0",
24
25
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
26
+ "@aws-sdk/credential-provider-node": "3.298.0",
26
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
28
  "@aws-sdk/hash-node": "3.296.0",
28
29
  "@aws-sdk/invalid-dependency": "3.296.0",