@wildix/wilma-agents-client 1.0.31 → 1.0.33

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 (31) hide show
  1. package/dist-cjs/WilmaAgents.js +0 -6
  2. package/dist-cjs/commands/index.js +0 -3
  3. package/dist-cjs/models/enums.js +1 -9
  4. package/dist-cjs/schemas/schemas_0.js +16 -90
  5. package/dist-es/WilmaAgents.js +0 -6
  6. package/dist-es/commands/index.js +0 -3
  7. package/dist-es/models/enums.js +0 -8
  8. package/dist-es/schemas/schemas_0.js +14 -88
  9. package/dist-types/WilmaAgents.d.ts +0 -22
  10. package/dist-types/WilmaAgentsClient.d.ts +2 -5
  11. package/dist-types/commands/CreateAgentCommand.d.ts +18 -72
  12. package/dist-types/commands/GetAgentCommand.d.ts +9 -36
  13. package/dist-types/commands/GetAgentVersionCommand.d.ts +9 -36
  14. package/dist-types/commands/ListAgentsCommand.d.ts +9 -36
  15. package/dist-types/commands/PublishAgentVersionCommand.d.ts +9 -36
  16. package/dist-types/commands/RestoreAgentVersionToDraftCommand.d.ts +9 -36
  17. package/dist-types/commands/UpdateAgentCommand.d.ts +18 -72
  18. package/dist-types/commands/index.d.ts +0 -3
  19. package/dist-types/models/enums.d.ts +0 -24
  20. package/dist-types/models/models_0.d.ts +79 -304
  21. package/dist-types/schemas/schemas_0.d.ts +1 -11
  22. package/package.json +1 -1
  23. package/dist-cjs/commands/DeletePronunciationDictionaryCommand.js +0 -20
  24. package/dist-cjs/commands/ListPronunciationDictionariesCommand.js +0 -20
  25. package/dist-cjs/commands/PutPronunciationDictionaryCommand.js +0 -20
  26. package/dist-es/commands/DeletePronunciationDictionaryCommand.js +0 -16
  27. package/dist-es/commands/ListPronunciationDictionariesCommand.js +0 -16
  28. package/dist-es/commands/PutPronunciationDictionaryCommand.js +0 -16
  29. package/dist-types/commands/DeletePronunciationDictionaryCommand.d.ts +0 -82
  30. package/dist-types/commands/ListPronunciationDictionariesCommand.d.ts +0 -103
  31. package/dist-types/commands/PutPronunciationDictionaryCommand.d.ts +0 -117
@@ -58,30 +58,17 @@ declare const GetAgentVersionCommand_base: {
58
58
  * // channels: { // AgentChannels
59
59
  * // voice: { // VoiceChannelSettings
60
60
  * // greeting: "STRING_VALUE",
61
- * // backgroundSound: "STRING_VALUE",
61
+ * // backgroundSound: { // VoiceBackgroundSoundSettings
62
+ * // enabled: true || false, // required
63
+ * // sound: "STRING_VALUE",
64
+ * // },
62
65
  * // speech: { // VoiceSpeechSettings
63
- * // provider: "elevenlabs" || "google" || "amazon_polly", // required
64
66
  * // languages: [ // VoiceLanguageList // required
65
67
  * // { // VoiceLanguage
66
68
  * // code: "STRING_VALUE", // required
67
- * // provider: "elevenlabs" || "google" || "amazon_polly",
68
69
  * // voice: "STRING_VALUE", // required
69
70
  * // greeting: "STRING_VALUE",
70
71
  * // isDefault: true || false,
71
- * // instructions: "STRING_VALUE",
72
- * // synthesis: { // VoiceSynthesisOptions
73
- * // model: "STRING_VALUE",
74
- * // speed: Number("float"),
75
- * // stability: Number("float"),
76
- * // similarity: Number("float"),
77
- * // style: Number("float"),
78
- * // speakerBoost: true || false,
79
- * // pitch: Number("float"),
80
- * // volumeGain: Number("float"),
81
- * // },
82
- * // credential: { // SecretRef
83
- * // id: "STRING_VALUE", // required
84
- * // },
85
72
  * // pronunciations: [ // VoicePronunciationList
86
73
  * // { // VoicePronunciation
87
74
  * // phrase: "STRING_VALUE", // required
@@ -89,28 +76,12 @@ declare const GetAgentVersionCommand_base: {
89
76
  * // encoding: "alias" || "ipa",
90
77
  * // },
91
78
  * // ],
92
- * // pronunciationSuppressions: [ // VoicePronunciationSuppressionList
93
- * // "STRING_VALUE",
94
- * // ],
95
79
  * // },
96
80
  * // ],
97
- * // autoDetect: true || false,
98
81
  * // greetEveryLanguage: true || false,
99
82
  * // transcription: { // VoiceTranscriptionSettings
100
- * // vendor: "aws",
101
- * // },
102
- * // synthesis: {
103
- * // model: "STRING_VALUE",
104
- * // speed: Number("float"),
105
- * // stability: Number("float"),
106
- * // similarity: Number("float"),
107
- * // style: Number("float"),
108
- * // speakerBoost: true || false,
109
- * // pitch: Number("float"),
110
- * // volumeGain: Number("float"),
111
- * // },
112
- * // credential: {
113
- * // id: "STRING_VALUE", // required
83
+ * // engine: "STRING_VALUE",
84
+ * // autoDetect: true || false,
114
85
  * // },
115
86
  * // },
116
87
  * // interruptions: { // VoiceInterruptionSettings
@@ -912,7 +883,9 @@ declare const GetAgentVersionCommand_base: {
912
883
  * // sqs: { // AgentSqsEngine
913
884
  * // url: "STRING_VALUE", // required
914
885
  * // key: "STRING_VALUE", // required
915
- * // secret: "<SecretRef>", // required
886
+ * // secret: { // SecretRef
887
+ * // id: "STRING_VALUE", // required
888
+ * // },
916
889
  * // },
917
890
  * // },
918
891
  * // settings: { // AgentSettings
@@ -56,30 +56,17 @@ declare const ListAgentsCommand_base: {
56
56
  * // channels: { // AgentChannels
57
57
  * // voice: { // VoiceChannelSettings
58
58
  * // greeting: "STRING_VALUE",
59
- * // backgroundSound: "STRING_VALUE",
59
+ * // backgroundSound: { // VoiceBackgroundSoundSettings
60
+ * // enabled: true || false, // required
61
+ * // sound: "STRING_VALUE",
62
+ * // },
60
63
  * // speech: { // VoiceSpeechSettings
61
- * // provider: "elevenlabs" || "google" || "amazon_polly", // required
62
64
  * // languages: [ // VoiceLanguageList // required
63
65
  * // { // VoiceLanguage
64
66
  * // code: "STRING_VALUE", // required
65
- * // provider: "elevenlabs" || "google" || "amazon_polly",
66
67
  * // voice: "STRING_VALUE", // required
67
68
  * // greeting: "STRING_VALUE",
68
69
  * // isDefault: true || false,
69
- * // instructions: "STRING_VALUE",
70
- * // synthesis: { // VoiceSynthesisOptions
71
- * // model: "STRING_VALUE",
72
- * // speed: Number("float"),
73
- * // stability: Number("float"),
74
- * // similarity: Number("float"),
75
- * // style: Number("float"),
76
- * // speakerBoost: true || false,
77
- * // pitch: Number("float"),
78
- * // volumeGain: Number("float"),
79
- * // },
80
- * // credential: { // SecretRef
81
- * // id: "STRING_VALUE", // required
82
- * // },
83
70
  * // pronunciations: [ // VoicePronunciationList
84
71
  * // { // VoicePronunciation
85
72
  * // phrase: "STRING_VALUE", // required
@@ -87,28 +74,12 @@ declare const ListAgentsCommand_base: {
87
74
  * // encoding: "alias" || "ipa",
88
75
  * // },
89
76
  * // ],
90
- * // pronunciationSuppressions: [ // VoicePronunciationSuppressionList
91
- * // "STRING_VALUE",
92
- * // ],
93
77
  * // },
94
78
  * // ],
95
- * // autoDetect: true || false,
96
79
  * // greetEveryLanguage: true || false,
97
80
  * // transcription: { // VoiceTranscriptionSettings
98
- * // vendor: "aws",
99
- * // },
100
- * // synthesis: {
101
- * // model: "STRING_VALUE",
102
- * // speed: Number("float"),
103
- * // stability: Number("float"),
104
- * // similarity: Number("float"),
105
- * // style: Number("float"),
106
- * // speakerBoost: true || false,
107
- * // pitch: Number("float"),
108
- * // volumeGain: Number("float"),
109
- * // },
110
- * // credential: {
111
- * // id: "STRING_VALUE", // required
81
+ * // engine: "STRING_VALUE",
82
+ * // autoDetect: true || false,
112
83
  * // },
113
84
  * // },
114
85
  * // interruptions: { // VoiceInterruptionSettings
@@ -910,7 +881,9 @@ declare const ListAgentsCommand_base: {
910
881
  * // sqs: { // AgentSqsEngine
911
882
  * // url: "STRING_VALUE", // required
912
883
  * // key: "STRING_VALUE", // required
913
- * // secret: "<SecretRef>", // required
884
+ * // secret: { // SecretRef
885
+ * // id: "STRING_VALUE", // required
886
+ * // },
914
887
  * // },
915
888
  * // },
916
889
  * // settings: { // AgentSettings
@@ -60,30 +60,17 @@ declare const PublishAgentVersionCommand_base: {
60
60
  * // channels: { // AgentChannels
61
61
  * // voice: { // VoiceChannelSettings
62
62
  * // greeting: "STRING_VALUE",
63
- * // backgroundSound: "STRING_VALUE",
63
+ * // backgroundSound: { // VoiceBackgroundSoundSettings
64
+ * // enabled: true || false, // required
65
+ * // sound: "STRING_VALUE",
66
+ * // },
64
67
  * // speech: { // VoiceSpeechSettings
65
- * // provider: "elevenlabs" || "google" || "amazon_polly", // required
66
68
  * // languages: [ // VoiceLanguageList // required
67
69
  * // { // VoiceLanguage
68
70
  * // code: "STRING_VALUE", // required
69
- * // provider: "elevenlabs" || "google" || "amazon_polly",
70
71
  * // voice: "STRING_VALUE", // required
71
72
  * // greeting: "STRING_VALUE",
72
73
  * // isDefault: true || false,
73
- * // instructions: "STRING_VALUE",
74
- * // synthesis: { // VoiceSynthesisOptions
75
- * // model: "STRING_VALUE",
76
- * // speed: Number("float"),
77
- * // stability: Number("float"),
78
- * // similarity: Number("float"),
79
- * // style: Number("float"),
80
- * // speakerBoost: true || false,
81
- * // pitch: Number("float"),
82
- * // volumeGain: Number("float"),
83
- * // },
84
- * // credential: { // SecretRef
85
- * // id: "STRING_VALUE", // required
86
- * // },
87
74
  * // pronunciations: [ // VoicePronunciationList
88
75
  * // { // VoicePronunciation
89
76
  * // phrase: "STRING_VALUE", // required
@@ -91,28 +78,12 @@ declare const PublishAgentVersionCommand_base: {
91
78
  * // encoding: "alias" || "ipa",
92
79
  * // },
93
80
  * // ],
94
- * // pronunciationSuppressions: [ // VoicePronunciationSuppressionList
95
- * // "STRING_VALUE",
96
- * // ],
97
81
  * // },
98
82
  * // ],
99
- * // autoDetect: true || false,
100
83
  * // greetEveryLanguage: true || false,
101
84
  * // transcription: { // VoiceTranscriptionSettings
102
- * // vendor: "aws",
103
- * // },
104
- * // synthesis: {
105
- * // model: "STRING_VALUE",
106
- * // speed: Number("float"),
107
- * // stability: Number("float"),
108
- * // similarity: Number("float"),
109
- * // style: Number("float"),
110
- * // speakerBoost: true || false,
111
- * // pitch: Number("float"),
112
- * // volumeGain: Number("float"),
113
- * // },
114
- * // credential: {
115
- * // id: "STRING_VALUE", // required
85
+ * // engine: "STRING_VALUE",
86
+ * // autoDetect: true || false,
116
87
  * // },
117
88
  * // },
118
89
  * // interruptions: { // VoiceInterruptionSettings
@@ -914,7 +885,9 @@ declare const PublishAgentVersionCommand_base: {
914
885
  * // sqs: { // AgentSqsEngine
915
886
  * // url: "STRING_VALUE", // required
916
887
  * // key: "STRING_VALUE", // required
917
- * // secret: "<SecretRef>", // required
888
+ * // secret: { // SecretRef
889
+ * // id: "STRING_VALUE", // required
890
+ * // },
918
891
  * // },
919
892
  * // },
920
893
  * // settings: { // AgentSettings
@@ -53,30 +53,17 @@ declare const RestoreAgentVersionToDraftCommand_base: {
53
53
  * // channels: { // AgentChannels
54
54
  * // voice: { // VoiceChannelSettings
55
55
  * // greeting: "STRING_VALUE",
56
- * // backgroundSound: "STRING_VALUE",
56
+ * // backgroundSound: { // VoiceBackgroundSoundSettings
57
+ * // enabled: true || false, // required
58
+ * // sound: "STRING_VALUE",
59
+ * // },
57
60
  * // speech: { // VoiceSpeechSettings
58
- * // provider: "elevenlabs" || "google" || "amazon_polly", // required
59
61
  * // languages: [ // VoiceLanguageList // required
60
62
  * // { // VoiceLanguage
61
63
  * // code: "STRING_VALUE", // required
62
- * // provider: "elevenlabs" || "google" || "amazon_polly",
63
64
  * // voice: "STRING_VALUE", // required
64
65
  * // greeting: "STRING_VALUE",
65
66
  * // isDefault: true || false,
66
- * // instructions: "STRING_VALUE",
67
- * // synthesis: { // VoiceSynthesisOptions
68
- * // model: "STRING_VALUE",
69
- * // speed: Number("float"),
70
- * // stability: Number("float"),
71
- * // similarity: Number("float"),
72
- * // style: Number("float"),
73
- * // speakerBoost: true || false,
74
- * // pitch: Number("float"),
75
- * // volumeGain: Number("float"),
76
- * // },
77
- * // credential: { // SecretRef
78
- * // id: "STRING_VALUE", // required
79
- * // },
80
67
  * // pronunciations: [ // VoicePronunciationList
81
68
  * // { // VoicePronunciation
82
69
  * // phrase: "STRING_VALUE", // required
@@ -84,28 +71,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
84
71
  * // encoding: "alias" || "ipa",
85
72
  * // },
86
73
  * // ],
87
- * // pronunciationSuppressions: [ // VoicePronunciationSuppressionList
88
- * // "STRING_VALUE",
89
- * // ],
90
74
  * // },
91
75
  * // ],
92
- * // autoDetect: true || false,
93
76
  * // greetEveryLanguage: true || false,
94
77
  * // transcription: { // VoiceTranscriptionSettings
95
- * // vendor: "aws",
96
- * // },
97
- * // synthesis: {
98
- * // model: "STRING_VALUE",
99
- * // speed: Number("float"),
100
- * // stability: Number("float"),
101
- * // similarity: Number("float"),
102
- * // style: Number("float"),
103
- * // speakerBoost: true || false,
104
- * // pitch: Number("float"),
105
- * // volumeGain: Number("float"),
106
- * // },
107
- * // credential: {
108
- * // id: "STRING_VALUE", // required
78
+ * // engine: "STRING_VALUE",
79
+ * // autoDetect: true || false,
109
80
  * // },
110
81
  * // },
111
82
  * // interruptions: { // VoiceInterruptionSettings
@@ -907,7 +878,9 @@ declare const RestoreAgentVersionToDraftCommand_base: {
907
878
  * // sqs: { // AgentSqsEngine
908
879
  * // url: "STRING_VALUE", // required
909
880
  * // key: "STRING_VALUE", // required
910
- * // secret: "<SecretRef>", // required
881
+ * // secret: { // SecretRef
882
+ * // id: "STRING_VALUE", // required
883
+ * // },
911
884
  * // },
912
885
  * // },
913
886
  * // settings: { // AgentSettings
@@ -44,30 +44,17 @@ declare const UpdateAgentCommand_base: {
44
44
  * channels: { // AgentChannels
45
45
  * voice: { // VoiceChannelSettings
46
46
  * greeting: "STRING_VALUE",
47
- * backgroundSound: "STRING_VALUE",
47
+ * backgroundSound: { // VoiceBackgroundSoundSettings
48
+ * enabled: true || false, // required
49
+ * sound: "STRING_VALUE",
50
+ * },
48
51
  * speech: { // VoiceSpeechSettings
49
- * provider: "elevenlabs" || "google" || "amazon_polly", // required
50
52
  * languages: [ // VoiceLanguageList // required
51
53
  * { // VoiceLanguage
52
54
  * code: "STRING_VALUE", // required
53
- * provider: "elevenlabs" || "google" || "amazon_polly",
54
55
  * voice: "STRING_VALUE", // required
55
56
  * greeting: "STRING_VALUE",
56
57
  * isDefault: true || false,
57
- * instructions: "STRING_VALUE",
58
- * synthesis: { // VoiceSynthesisOptions
59
- * model: "STRING_VALUE",
60
- * speed: Number("float"),
61
- * stability: Number("float"),
62
- * similarity: Number("float"),
63
- * style: Number("float"),
64
- * speakerBoost: true || false,
65
- * pitch: Number("float"),
66
- * volumeGain: Number("float"),
67
- * },
68
- * credential: { // SecretRef
69
- * id: "STRING_VALUE", // required
70
- * },
71
58
  * pronunciations: [ // VoicePronunciationList
72
59
  * { // VoicePronunciation
73
60
  * phrase: "STRING_VALUE", // required
@@ -75,28 +62,12 @@ declare const UpdateAgentCommand_base: {
75
62
  * encoding: "alias" || "ipa",
76
63
  * },
77
64
  * ],
78
- * pronunciationSuppressions: [ // VoicePronunciationSuppressionList
79
- * "STRING_VALUE",
80
- * ],
81
65
  * },
82
66
  * ],
83
- * autoDetect: true || false,
84
67
  * greetEveryLanguage: true || false,
85
68
  * transcription: { // VoiceTranscriptionSettings
86
- * vendor: "aws",
87
- * },
88
- * synthesis: {
89
- * model: "STRING_VALUE",
90
- * speed: Number("float"),
91
- * stability: Number("float"),
92
- * similarity: Number("float"),
93
- * style: Number("float"),
94
- * speakerBoost: true || false,
95
- * pitch: Number("float"),
96
- * volumeGain: Number("float"),
97
- * },
98
- * credential: {
99
- * id: "STRING_VALUE", // required
69
+ * engine: "STRING_VALUE",
70
+ * autoDetect: true || false,
100
71
  * },
101
72
  * },
102
73
  * interruptions: { // VoiceInterruptionSettings
@@ -898,7 +869,9 @@ declare const UpdateAgentCommand_base: {
898
869
  * sqs: { // AgentSqsEngine
899
870
  * url: "STRING_VALUE", // required
900
871
  * key: "STRING_VALUE", // required
901
- * secret: "<SecretRef>", // required
872
+ * secret: { // SecretRef
873
+ * id: "STRING_VALUE", // required
874
+ * },
902
875
  * },
903
876
  * },
904
877
  * settings: { // AgentSettings
@@ -920,30 +893,17 @@ declare const UpdateAgentCommand_base: {
920
893
  * // channels: { // AgentChannels
921
894
  * // voice: { // VoiceChannelSettings
922
895
  * // greeting: "STRING_VALUE",
923
- * // backgroundSound: "STRING_VALUE",
896
+ * // backgroundSound: { // VoiceBackgroundSoundSettings
897
+ * // enabled: true || false, // required
898
+ * // sound: "STRING_VALUE",
899
+ * // },
924
900
  * // speech: { // VoiceSpeechSettings
925
- * // provider: "elevenlabs" || "google" || "amazon_polly", // required
926
901
  * // languages: [ // VoiceLanguageList // required
927
902
  * // { // VoiceLanguage
928
903
  * // code: "STRING_VALUE", // required
929
- * // provider: "elevenlabs" || "google" || "amazon_polly",
930
904
  * // voice: "STRING_VALUE", // required
931
905
  * // greeting: "STRING_VALUE",
932
906
  * // isDefault: true || false,
933
- * // instructions: "STRING_VALUE",
934
- * // synthesis: { // VoiceSynthesisOptions
935
- * // model: "STRING_VALUE",
936
- * // speed: Number("float"),
937
- * // stability: Number("float"),
938
- * // similarity: Number("float"),
939
- * // style: Number("float"),
940
- * // speakerBoost: true || false,
941
- * // pitch: Number("float"),
942
- * // volumeGain: Number("float"),
943
- * // },
944
- * // credential: { // SecretRef
945
- * // id: "STRING_VALUE", // required
946
- * // },
947
907
  * // pronunciations: [ // VoicePronunciationList
948
908
  * // { // VoicePronunciation
949
909
  * // phrase: "STRING_VALUE", // required
@@ -951,28 +911,12 @@ declare const UpdateAgentCommand_base: {
951
911
  * // encoding: "alias" || "ipa",
952
912
  * // },
953
913
  * // ],
954
- * // pronunciationSuppressions: [ // VoicePronunciationSuppressionList
955
- * // "STRING_VALUE",
956
- * // ],
957
914
  * // },
958
915
  * // ],
959
- * // autoDetect: true || false,
960
916
  * // greetEveryLanguage: true || false,
961
917
  * // transcription: { // VoiceTranscriptionSettings
962
- * // vendor: "aws",
963
- * // },
964
- * // synthesis: {
965
- * // model: "STRING_VALUE",
966
- * // speed: Number("float"),
967
- * // stability: Number("float"),
968
- * // similarity: Number("float"),
969
- * // style: Number("float"),
970
- * // speakerBoost: true || false,
971
- * // pitch: Number("float"),
972
- * // volumeGain: Number("float"),
973
- * // },
974
- * // credential: {
975
- * // id: "STRING_VALUE", // required
918
+ * // engine: "STRING_VALUE",
919
+ * // autoDetect: true || false,
976
920
  * // },
977
921
  * // },
978
922
  * // interruptions: { // VoiceInterruptionSettings
@@ -1774,7 +1718,9 @@ declare const UpdateAgentCommand_base: {
1774
1718
  * // sqs: { // AgentSqsEngine
1775
1719
  * // url: "STRING_VALUE", // required
1776
1720
  * // key: "STRING_VALUE", // required
1777
- * // secret: "<SecretRef>", // required
1721
+ * // secret: { // SecretRef
1722
+ * // id: "STRING_VALUE", // required
1723
+ * // },
1778
1724
  * // },
1779
1725
  * // },
1780
1726
  * // settings: { // AgentSettings
@@ -3,7 +3,6 @@ export * from "./CreateAgentApiKeyCommand";
3
3
  export * from "./CreateAgentCommand";
4
4
  export * from "./DeleteAgentApiKeyCommand";
5
5
  export * from "./DeleteAgentCommand";
6
- export * from "./DeletePronunciationDictionaryCommand";
7
6
  export * from "./GetAgentCommand";
8
7
  export * from "./GetAgentDeploymentCommand";
9
8
  export * from "./GetAgentVersionCommand";
@@ -11,10 +10,8 @@ export * from "./ListAgentApiKeysCommand";
11
10
  export * from "./ListAgentVersionsCommand";
12
11
  export * from "./ListAgentsCommand";
13
12
  export * from "./ListAgentsNamesCommand";
14
- export * from "./ListPronunciationDictionariesCommand";
15
13
  export * from "./PublishAgentVersionCommand";
16
14
  export * from "./PutAgentDeploymentCommand";
17
- export * from "./PutPronunciationDictionaryCommand";
18
15
  export * from "./ResetAgentDeploymentCommand";
19
16
  export * from "./RestoreAgentVersionToDraftCommand";
20
17
  export * from "./UpdateAgentCommand";
@@ -38,30 +38,6 @@ export declare const VoicePronunciationEncoding: {
38
38
  * @public
39
39
  */
40
40
  export type VoicePronunciationEncoding = (typeof VoicePronunciationEncoding)[keyof typeof VoicePronunciationEncoding];
41
- /**
42
- * @public
43
- * @enum
44
- */
45
- export declare const VoiceSpeechProvider: {
46
- readonly AMAZON_POLLY: "amazon_polly";
47
- readonly ELEVENLABS: "elevenlabs";
48
- readonly GOOGLE: "google";
49
- };
50
- /**
51
- * @public
52
- */
53
- export type VoiceSpeechProvider = (typeof VoiceSpeechProvider)[keyof typeof VoiceSpeechProvider];
54
- /**
55
- * @public
56
- * @enum
57
- */
58
- export declare const VoiceTranscriptionVendor: {
59
- readonly AWS: "aws";
60
- };
61
- /**
62
- * @public
63
- */
64
- export type VoiceTranscriptionVendor = (typeof VoiceTranscriptionVendor)[keyof typeof VoiceTranscriptionVendor];
65
41
  /**
66
42
  * @public
67
43
  * @enum