hume 0.8.3 → 0.8.5

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 (1728) hide show
  1. package/.mock/definition/empathic-voice/__package__.yml +822 -184
  2. package/.mock/definition/empathic-voice/chatGroups.yml +54 -17
  3. package/.mock/definition/empathic-voice/chats.yml +51 -19
  4. package/.mock/definition/empathic-voice/configs.yml +198 -61
  5. package/.mock/definition/empathic-voice/prompts.yml +126 -27
  6. package/.mock/definition/empathic-voice/tools.yml +116 -23
  7. package/.mock/fern.config.json +3 -3
  8. package/.nvmrc +1 -0
  9. package/CONTRIBUTING.md +5 -0
  10. package/Client.d.ts +4 -4
  11. package/README.md +35 -33
  12. package/api/index.d.ts +1 -1
  13. package/api/resources/empathicVoice/client/Client.d.ts +8 -8
  14. package/api/resources/empathicVoice/index.d.ts +3 -3
  15. package/api/resources/empathicVoice/resources/chat/client/Client.d.ts +4 -2
  16. package/api/resources/empathicVoice/resources/chat/client/Client.js +10 -9
  17. package/api/resources/empathicVoice/resources/chat/client/Socket.d.ts +9 -9
  18. package/api/resources/empathicVoice/resources/chat/client/Socket.js +13 -13
  19. package/api/resources/empathicVoice/resources/chat/client/index.d.ts +2 -2
  20. package/api/resources/empathicVoice/resources/chat/index.d.ts +2 -2
  21. package/api/resources/empathicVoice/resources/chat/types/PublishEvent.d.ts +1 -1
  22. package/api/resources/empathicVoice/resources/chat/types/SubscribeEvent.d.ts +1 -1
  23. package/api/resources/empathicVoice/resources/chat/types/index.d.ts +2 -2
  24. package/api/resources/empathicVoice/resources/chatGroups/client/Client.d.ts +5 -5
  25. package/api/resources/empathicVoice/resources/chatGroups/client/Client.js +34 -30
  26. package/api/resources/empathicVoice/resources/chatGroups/client/index.d.ts +1 -1
  27. package/api/resources/empathicVoice/resources/chatGroups/client/requests/ChatGroupsListChatGroupEventsRequest.d.ts +7 -3
  28. package/api/resources/empathicVoice/resources/chatGroups/client/requests/ChatGroupsListChatGroupsRequest.d.ts +10 -4
  29. package/api/resources/empathicVoice/resources/chatGroups/client/requests/index.d.ts +2 -2
  30. package/api/resources/empathicVoice/resources/chatGroups/index.d.ts +1 -1
  31. package/api/resources/empathicVoice/resources/chats/client/Client.d.ts +5 -5
  32. package/api/resources/empathicVoice/resources/chats/client/Client.js +33 -29
  33. package/api/resources/empathicVoice/resources/chats/client/index.d.ts +1 -1
  34. package/api/resources/empathicVoice/resources/chats/client/requests/ChatsListChatEventsRequest.d.ts +7 -3
  35. package/api/resources/empathicVoice/resources/chats/client/requests/ChatsListChatsRequest.d.ts +7 -3
  36. package/api/resources/empathicVoice/resources/chats/client/requests/index.d.ts +2 -2
  37. package/api/resources/empathicVoice/resources/chats/index.d.ts +1 -1
  38. package/api/resources/empathicVoice/resources/configs/client/Client.d.ts +26 -14
  39. package/api/resources/empathicVoice/resources/configs/client/Client.js +143 -109
  40. package/api/resources/empathicVoice/resources/configs/client/index.d.ts +1 -1
  41. package/api/resources/empathicVoice/resources/configs/client/requests/ConfigsListConfigVersionsRequest.d.ts +7 -3
  42. package/api/resources/empathicVoice/resources/configs/client/requests/ConfigsListConfigsRequest.d.ts +7 -3
  43. package/api/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +15 -4
  44. package/api/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.d.ts +15 -4
  45. package/api/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersionDescription.d.ts +1 -1
  46. package/api/resources/empathicVoice/resources/configs/client/requests/index.d.ts +6 -6
  47. package/api/resources/empathicVoice/resources/configs/index.d.ts +1 -1
  48. package/api/resources/empathicVoice/resources/index.d.ts +12 -12
  49. package/api/resources/empathicVoice/resources/prompts/client/Client.d.ts +26 -14
  50. package/api/resources/empathicVoice/resources/prompts/client/Client.js +143 -109
  51. package/api/resources/empathicVoice/resources/prompts/client/index.d.ts +1 -1
  52. package/api/resources/empathicVoice/resources/prompts/client/requests/PostedPrompt.d.ts +8 -2
  53. package/api/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersion.d.ts +8 -2
  54. package/api/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersionDescription.d.ts +1 -1
  55. package/api/resources/empathicVoice/resources/prompts/client/requests/PromptsListPromptVersionsRequest.d.ts +7 -3
  56. package/api/resources/empathicVoice/resources/prompts/client/requests/PromptsListPromptsRequest.d.ts +7 -3
  57. package/api/resources/empathicVoice/resources/prompts/client/requests/index.d.ts +6 -6
  58. package/api/resources/empathicVoice/resources/prompts/index.d.ts +1 -1
  59. package/api/resources/empathicVoice/resources/tools/client/Client.d.ts +26 -14
  60. package/api/resources/empathicVoice/resources/tools/client/Client.js +139 -109
  61. package/api/resources/empathicVoice/resources/tools/client/index.d.ts +1 -1
  62. package/api/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedTool.d.ts +8 -4
  63. package/api/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedToolVersion.d.ts +8 -4
  64. package/api/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedToolVersionDescription.d.ts +1 -1
  65. package/api/resources/empathicVoice/resources/tools/client/requests/ToolsListToolVersionsRequest.d.ts +7 -3
  66. package/api/resources/empathicVoice/resources/tools/client/requests/ToolsListToolsRequest.d.ts +7 -3
  67. package/api/resources/empathicVoice/resources/tools/client/requests/index.d.ts +6 -6
  68. package/api/resources/empathicVoice/resources/tools/index.d.ts +1 -1
  69. package/api/resources/empathicVoice/types/AssistantEnd.d.ts +1 -1
  70. package/api/resources/empathicVoice/types/AssistantInput.d.ts +1 -1
  71. package/api/resources/empathicVoice/types/AssistantMessage.d.ts +2 -2
  72. package/api/resources/empathicVoice/types/AudioConfiguration.d.ts +1 -1
  73. package/api/resources/empathicVoice/types/AudioInput.d.ts +1 -1
  74. package/api/resources/empathicVoice/types/AudioOutput.d.ts +1 -1
  75. package/api/resources/empathicVoice/types/BuiltInTool.d.ts +1 -1
  76. package/api/resources/empathicVoice/types/BuiltinToolConfig.d.ts +1 -1
  77. package/api/resources/empathicVoice/types/ChatMessage.d.ts +1 -1
  78. package/api/resources/empathicVoice/types/ChatMessageToolResult.d.ts +1 -1
  79. package/api/resources/empathicVoice/types/ChatMetadata.d.ts +1 -1
  80. package/api/resources/empathicVoice/types/Context.d.ts +1 -1
  81. package/api/resources/empathicVoice/types/ContextType.d.ts +1 -1
  82. package/api/resources/empathicVoice/types/ContextType.js +3 -3
  83. package/api/resources/empathicVoice/types/Encoding.d.ts +1 -1
  84. package/api/resources/empathicVoice/types/ErrorLevel.d.ts +1 -1
  85. package/api/resources/empathicVoice/types/ExtendedVoiceArgs.d.ts +1 -1
  86. package/api/resources/empathicVoice/types/FunctionCallResponseInput.d.ts +1 -1
  87. package/api/resources/empathicVoice/types/HttpValidationError.d.ts +1 -1
  88. package/api/resources/empathicVoice/types/Inference.d.ts +2 -2
  89. package/api/resources/empathicVoice/types/JsonMessage.d.ts +1 -1
  90. package/api/resources/empathicVoice/types/PauseAssistantMessage.d.ts +1 -1
  91. package/api/resources/empathicVoice/types/PostedBuiltinTool.d.ts +1 -1
  92. package/api/resources/empathicVoice/types/PostedEllmModel.d.ts +5 -1
  93. package/api/resources/empathicVoice/types/PostedEventMessageSpec.d.ts +6 -2
  94. package/api/resources/empathicVoice/types/PostedEventMessageSpecs.d.ts +17 -3
  95. package/api/resources/empathicVoice/types/PostedLanguageModel.d.ts +8 -4
  96. package/api/resources/empathicVoice/types/PostedLanguageModelModelProvider.d.ts +2 -2
  97. package/api/resources/empathicVoice/types/PostedLanguageModelModelProvider.js +6 -6
  98. package/api/resources/empathicVoice/types/PostedPromptSpec.d.ts +8 -2
  99. package/api/resources/empathicVoice/types/PostedTimeoutSpecs.d.ts +4 -2
  100. package/api/resources/empathicVoice/types/PostedTimeoutSpecsInactivity.d.ts +1 -1
  101. package/api/resources/empathicVoice/types/PostedTimeoutSpecsMaxDuration.d.ts +1 -1
  102. package/api/resources/empathicVoice/types/PostedUserDefinedToolSpec.d.ts +7 -1
  103. package/api/resources/empathicVoice/types/PostedVoice.d.ts +3 -3
  104. package/api/resources/empathicVoice/types/PostedVoiceName.d.ts +1 -1
  105. package/api/resources/empathicVoice/types/PostedVoiceName.js +3 -3
  106. package/api/resources/empathicVoice/types/ProsodyInference.d.ts +4 -2
  107. package/api/resources/empathicVoice/types/ResumeAssistantMessage.d.ts +1 -1
  108. package/api/resources/empathicVoice/types/ReturnActiveChatCount.d.ts +1 -1
  109. package/api/resources/empathicVoice/types/ReturnBuiltinTool.d.ts +4 -3
  110. package/api/resources/empathicVoice/types/ReturnBuiltinToolToolType.d.ts +11 -0
  111. package/api/resources/empathicVoice/types/ReturnBuiltinToolToolType.js +10 -0
  112. package/api/resources/empathicVoice/types/ReturnChat.d.ts +21 -9
  113. package/api/resources/empathicVoice/types/ReturnChatEvent.d.ts +38 -9
  114. package/api/resources/empathicVoice/types/ReturnChatEventRole.d.ts +21 -0
  115. package/api/resources/empathicVoice/types/ReturnChatEventRole.js +12 -0
  116. package/api/resources/empathicVoice/types/ReturnChatEventType.d.ts +27 -0
  117. package/api/resources/empathicVoice/types/ReturnChatEventType.js +14 -0
  118. package/api/resources/empathicVoice/types/ReturnChatGroup.d.ts +5 -5
  119. package/api/resources/empathicVoice/types/ReturnChatGroupPagedChats.d.ts +1 -1
  120. package/api/resources/empathicVoice/types/ReturnChatGroupPagedEvents.d.ts +20 -8
  121. package/api/resources/empathicVoice/types/ReturnChatGroupPagedEventsPaginationDirection.d.ts +13 -0
  122. package/api/resources/empathicVoice/types/ReturnChatGroupPagedEventsPaginationDirection.js +10 -0
  123. package/api/resources/empathicVoice/types/ReturnChatPagedEvents.d.ts +39 -15
  124. package/api/resources/empathicVoice/types/ReturnChatPagedEventsPaginationDirection.d.ts +13 -0
  125. package/api/resources/empathicVoice/types/ReturnChatPagedEventsPaginationDirection.js +10 -0
  126. package/api/resources/empathicVoice/types/ReturnChatPagedEventsStatus.d.ts +27 -0
  127. package/api/resources/empathicVoice/types/ReturnChatPagedEventsStatus.js +14 -0
  128. package/api/resources/empathicVoice/types/ReturnChatStatus.d.ts +27 -0
  129. package/api/resources/empathicVoice/types/ReturnChatStatus.js +14 -0
  130. package/api/resources/empathicVoice/types/ReturnConfig.d.ts +24 -7
  131. package/api/resources/empathicVoice/types/ReturnConfigSpec.d.ts +8 -2
  132. package/api/resources/empathicVoice/types/ReturnEllmModel.d.ts +5 -1
  133. package/api/resources/empathicVoice/types/ReturnEventMessageSpec.d.ts +6 -2
  134. package/api/resources/empathicVoice/types/ReturnEventMessageSpecs.d.ts +17 -3
  135. package/api/resources/empathicVoice/types/ReturnLanguageModel.d.ts +9 -4
  136. package/api/resources/empathicVoice/types/ReturnLanguageModelModelProvider.d.ts +15 -0
  137. package/api/resources/empathicVoice/types/ReturnLanguageModelModelProvider.js +14 -0
  138. package/api/resources/empathicVoice/types/ReturnPagedChatGroups.d.ts +19 -7
  139. package/api/resources/empathicVoice/types/ReturnPagedChatGroupsPaginationDirection.d.ts +13 -0
  140. package/api/resources/empathicVoice/types/ReturnPagedChatGroupsPaginationDirection.js +10 -0
  141. package/api/resources/empathicVoice/types/ReturnPagedChats.d.ts +19 -7
  142. package/api/resources/empathicVoice/types/ReturnPagedChatsPaginationDirection.d.ts +13 -0
  143. package/api/resources/empathicVoice/types/ReturnPagedChatsPaginationDirection.js +10 -0
  144. package/api/resources/empathicVoice/types/ReturnPagedConfigs.d.ts +13 -5
  145. package/api/resources/empathicVoice/types/ReturnPagedCustomVoices.d.ts +1 -1
  146. package/api/resources/empathicVoice/types/ReturnPagedPrompts.d.ts +13 -5
  147. package/api/resources/empathicVoice/types/ReturnPagedUserDefinedTools.d.ts +13 -5
  148. package/api/resources/empathicVoice/types/ReturnPrompt.d.ts +21 -8
  149. package/api/resources/empathicVoice/types/ReturnPromptVersionType.d.ts +11 -0
  150. package/api/resources/empathicVoice/types/ReturnPromptVersionType.js +10 -0
  151. package/api/resources/empathicVoice/types/ReturnTimeoutSpec.d.ts +6 -2
  152. package/api/resources/empathicVoice/types/ReturnTimeoutSpecs.d.ts +14 -2
  153. package/api/resources/empathicVoice/types/ReturnUserDefinedTool.d.ts +22 -11
  154. package/api/resources/empathicVoice/types/ReturnUserDefinedToolToolType.d.ts +11 -0
  155. package/api/resources/empathicVoice/types/ReturnUserDefinedToolToolType.js +10 -0
  156. package/api/resources/empathicVoice/types/ReturnUserDefinedToolVersionType.d.ts +11 -0
  157. package/api/resources/empathicVoice/types/ReturnUserDefinedToolVersionType.js +10 -0
  158. package/api/resources/empathicVoice/types/ReturnVoice.d.ts +4 -3
  159. package/api/resources/empathicVoice/types/ReturnVoiceName.d.ts +12 -0
  160. package/api/resources/empathicVoice/types/ReturnVoiceName.js +11 -0
  161. package/api/resources/empathicVoice/types/Role.d.ts +1 -1
  162. package/api/resources/empathicVoice/types/Role.js +5 -5
  163. package/api/resources/empathicVoice/types/SessionSettings.d.ts +2 -2
  164. package/api/resources/empathicVoice/types/TextInput.d.ts +1 -1
  165. package/api/resources/empathicVoice/types/Tool.d.ts +1 -1
  166. package/api/resources/empathicVoice/types/ToolCallMessage.d.ts +2 -2
  167. package/api/resources/empathicVoice/types/ToolErrorMessage.d.ts +2 -2
  168. package/api/resources/empathicVoice/types/ToolResponseMessage.d.ts +2 -2
  169. package/api/resources/empathicVoice/types/ToolType.d.ts +1 -1
  170. package/api/resources/empathicVoice/types/ToolType.js +2 -2
  171. package/api/resources/empathicVoice/types/TtsInput.d.ts +1 -1
  172. package/api/resources/empathicVoice/types/UserInput.d.ts +1 -1
  173. package/api/resources/empathicVoice/types/UserInterruption.d.ts +1 -1
  174. package/api/resources/empathicVoice/types/UserMessage.d.ts +2 -2
  175. package/api/resources/empathicVoice/types/ValidationError.d.ts +1 -1
  176. package/api/resources/empathicVoice/types/VoiceArgs.d.ts +1 -1
  177. package/api/resources/empathicVoice/types/VoiceNameEnum.d.ts +1 -1
  178. package/api/resources/empathicVoice/types/VoiceNameEnum.js +3 -3
  179. package/api/resources/empathicVoice/types/WebSocketError.d.ts +1 -1
  180. package/api/resources/empathicVoice/types/index.d.ts +99 -85
  181. package/api/resources/empathicVoice/types/index.js +14 -0
  182. package/api/resources/expressionMeasurement/client/Client.d.ts +3 -3
  183. package/api/resources/expressionMeasurement/index.d.ts +3 -3
  184. package/api/resources/expressionMeasurement/resources/batch/client/Client.d.ts +6 -6
  185. package/api/resources/expressionMeasurement/resources/batch/client/Client.js +87 -75
  186. package/api/resources/expressionMeasurement/resources/batch/client/index.d.ts +1 -1
  187. package/api/resources/expressionMeasurement/resources/batch/client/requests/BatchListJobsRequest.d.ts +1 -1
  188. package/api/resources/expressionMeasurement/resources/batch/client/requests/BatchStartInferenceJobFromLocalFileRequest.d.ts +1 -1
  189. package/api/resources/expressionMeasurement/resources/batch/client/requests/index.d.ts +2 -2
  190. package/api/resources/expressionMeasurement/resources/batch/index.d.ts +1 -1
  191. package/api/resources/expressionMeasurement/resources/index.d.ts +4 -4
  192. package/api/resources/expressionMeasurement/resources/stream/index.d.ts +1 -1
  193. package/api/resources/expressionMeasurement/resources/stream/types/StreamBurst.d.ts +1 -1
  194. package/api/resources/expressionMeasurement/resources/stream/types/StreamBurstBurst.d.ts +1 -1
  195. package/api/resources/expressionMeasurement/resources/stream/types/StreamBurstBurstPredictionsItem.d.ts +1 -1
  196. package/api/resources/expressionMeasurement/resources/stream/types/StreamBurstFace.d.ts +1 -1
  197. package/api/resources/expressionMeasurement/resources/stream/types/StreamBurstFacePredictionsItem.d.ts +1 -1
  198. package/api/resources/expressionMeasurement/resources/stream/types/StreamBurstFacemesh.d.ts +1 -1
  199. package/api/resources/expressionMeasurement/resources/stream/types/StreamBurstFacemeshPredictionsItem.d.ts +1 -1
  200. package/api/resources/expressionMeasurement/resources/stream/types/StreamBurstLanguage.d.ts +1 -1
  201. package/api/resources/expressionMeasurement/resources/stream/types/StreamBurstLanguagePredictionsItem.d.ts +1 -1
  202. package/api/resources/expressionMeasurement/resources/stream/types/StreamBurstProsody.d.ts +1 -1
  203. package/api/resources/expressionMeasurement/resources/stream/types/StreamBurstProsodyPredictionsItem.d.ts +1 -1
  204. package/api/resources/expressionMeasurement/resources/stream/types/StreamData.d.ts +1 -1
  205. package/api/resources/expressionMeasurement/resources/stream/types/StreamDataModels.d.ts +1 -1
  206. package/api/resources/expressionMeasurement/resources/stream/types/StreamError.d.ts +1 -1
  207. package/api/resources/expressionMeasurement/resources/stream/types/StreamJobDetails.d.ts +1 -1
  208. package/api/resources/expressionMeasurement/resources/stream/types/SubscribeEvent.d.ts +1 -1
  209. package/api/resources/expressionMeasurement/resources/stream/types/index.d.ts +21 -21
  210. package/api/resources/expressionMeasurement/types/Alternative.d.ts +1 -1
  211. package/api/resources/expressionMeasurement/types/Bcp47Tag.d.ts +1 -1
  212. package/api/resources/expressionMeasurement/types/Bcp47Tag.js +29 -29
  213. package/api/resources/expressionMeasurement/types/BurstPrediction.d.ts +1 -1
  214. package/api/resources/expressionMeasurement/types/CompletedTraining.d.ts +1 -1
  215. package/api/resources/expressionMeasurement/types/CustomModel.d.ts +1 -1
  216. package/api/resources/expressionMeasurement/types/CustomModelRequest.d.ts +1 -1
  217. package/api/resources/expressionMeasurement/types/Dataset.d.ts +1 -1
  218. package/api/resources/expressionMeasurement/types/Direction.d.ts +1 -1
  219. package/api/resources/expressionMeasurement/types/Direction.js +2 -2
  220. package/api/resources/expressionMeasurement/types/EmbeddingGenerationBaseRequest.d.ts +1 -1
  221. package/api/resources/expressionMeasurement/types/EmotionEmbedding.d.ts +1 -1
  222. package/api/resources/expressionMeasurement/types/EvaluationArgs.d.ts +1 -1
  223. package/api/resources/expressionMeasurement/types/Face.d.ts +1 -1
  224. package/api/resources/expressionMeasurement/types/FacePrediction.d.ts +1 -1
  225. package/api/resources/expressionMeasurement/types/FacemeshPrediction.d.ts +1 -1
  226. package/api/resources/expressionMeasurement/types/Granularity.d.ts +1 -1
  227. package/api/resources/expressionMeasurement/types/Granularity.js +4 -4
  228. package/api/resources/expressionMeasurement/types/GroupedPredictionsBurstPrediction.d.ts +1 -1
  229. package/api/resources/expressionMeasurement/types/GroupedPredictionsFacePrediction.d.ts +1 -1
  230. package/api/resources/expressionMeasurement/types/GroupedPredictionsFacemeshPrediction.d.ts +1 -1
  231. package/api/resources/expressionMeasurement/types/GroupedPredictionsLanguagePrediction.d.ts +1 -1
  232. package/api/resources/expressionMeasurement/types/GroupedPredictionsNerPrediction.d.ts +1 -1
  233. package/api/resources/expressionMeasurement/types/GroupedPredictionsProsodyPrediction.d.ts +1 -1
  234. package/api/resources/expressionMeasurement/types/InferenceBaseRequest.d.ts +1 -1
  235. package/api/resources/expressionMeasurement/types/InferencePrediction.d.ts +1 -1
  236. package/api/resources/expressionMeasurement/types/InferenceRequest.d.ts +1 -1
  237. package/api/resources/expressionMeasurement/types/InferenceResults.d.ts +1 -1
  238. package/api/resources/expressionMeasurement/types/InferenceSourcePredictResult.d.ts +1 -1
  239. package/api/resources/expressionMeasurement/types/JobEmbeddingGeneration.d.ts +1 -1
  240. package/api/resources/expressionMeasurement/types/JobInference.d.ts +1 -1
  241. package/api/resources/expressionMeasurement/types/JobTlInference.d.ts +1 -1
  242. package/api/resources/expressionMeasurement/types/JobTraining.d.ts +1 -1
  243. package/api/resources/expressionMeasurement/types/Language.d.ts +1 -1
  244. package/api/resources/expressionMeasurement/types/LanguagePrediction.d.ts +1 -1
  245. package/api/resources/expressionMeasurement/types/Models.d.ts +1 -1
  246. package/api/resources/expressionMeasurement/types/ModelsPredictions.d.ts +1 -1
  247. package/api/resources/expressionMeasurement/types/NerPrediction.d.ts +1 -1
  248. package/api/resources/expressionMeasurement/types/PredictionsOptionalNullBurstPrediction.d.ts +1 -1
  249. package/api/resources/expressionMeasurement/types/PredictionsOptionalNullFacePrediction.d.ts +1 -1
  250. package/api/resources/expressionMeasurement/types/PredictionsOptionalNullFacemeshPrediction.d.ts +1 -1
  251. package/api/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataLanguagePrediction.d.ts +1 -1
  252. package/api/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataNerPrediction.d.ts +1 -1
  253. package/api/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataProsodyPrediction.d.ts +1 -1
  254. package/api/resources/expressionMeasurement/types/Prosody.d.ts +1 -1
  255. package/api/resources/expressionMeasurement/types/ProsodyPrediction.d.ts +1 -1
  256. package/api/resources/expressionMeasurement/types/Sentiment.d.ts +1 -1
  257. package/api/resources/expressionMeasurement/types/SortBy.d.ts +1 -1
  258. package/api/resources/expressionMeasurement/types/SortBy.js +3 -3
  259. package/api/resources/expressionMeasurement/types/Source.d.ts +4 -4
  260. package/api/resources/expressionMeasurement/types/SourceFile.d.ts +1 -1
  261. package/api/resources/expressionMeasurement/types/SourceUrl.d.ts +1 -1
  262. package/api/resources/expressionMeasurement/types/StateEmbeddingGeneration.d.ts +7 -6
  263. package/api/resources/expressionMeasurement/types/StateEmbeddingGenerationCompletedEmbeddingGeneration.d.ts +1 -1
  264. package/api/resources/expressionMeasurement/types/StateEmbeddingGenerationFailed.d.ts +1 -1
  265. package/api/resources/expressionMeasurement/types/StateEmbeddingGenerationInProgress.d.ts +1 -1
  266. package/api/resources/expressionMeasurement/types/StateEmbeddingGenerationQueued.d.ts +1 -1
  267. package/api/resources/expressionMeasurement/types/StateInference.d.ts +5 -5
  268. package/api/resources/expressionMeasurement/types/StateInferenceCompletedInference.d.ts +1 -1
  269. package/api/resources/expressionMeasurement/types/StateInferenceFailed.d.ts +1 -1
  270. package/api/resources/expressionMeasurement/types/StateInferenceInProgress.d.ts +1 -1
  271. package/api/resources/expressionMeasurement/types/StateInferenceQueued.d.ts +1 -1
  272. package/api/resources/expressionMeasurement/types/StateTlInference.d.ts +5 -5
  273. package/api/resources/expressionMeasurement/types/StateTlInferenceCompletedTlInference.d.ts +1 -1
  274. package/api/resources/expressionMeasurement/types/StateTlInferenceFailed.d.ts +1 -1
  275. package/api/resources/expressionMeasurement/types/StateTlInferenceInProgress.d.ts +1 -1
  276. package/api/resources/expressionMeasurement/types/StateTlInferenceQueued.d.ts +1 -1
  277. package/api/resources/expressionMeasurement/types/StateTraining.d.ts +5 -5
  278. package/api/resources/expressionMeasurement/types/StateTrainingCompletedTraining.d.ts +1 -1
  279. package/api/resources/expressionMeasurement/types/StateTrainingFailed.d.ts +1 -1
  280. package/api/resources/expressionMeasurement/types/StateTrainingInProgress.d.ts +1 -1
  281. package/api/resources/expressionMeasurement/types/StateTrainingQueued.d.ts +1 -1
  282. package/api/resources/expressionMeasurement/types/Status.d.ts +1 -1
  283. package/api/resources/expressionMeasurement/types/Status.js +4 -4
  284. package/api/resources/expressionMeasurement/types/Task.d.ts +3 -3
  285. package/api/resources/expressionMeasurement/types/TlInferenceBaseRequest.d.ts +1 -1
  286. package/api/resources/expressionMeasurement/types/TlInferencePrediction.d.ts +1 -1
  287. package/api/resources/expressionMeasurement/types/TlInferenceResults.d.ts +1 -1
  288. package/api/resources/expressionMeasurement/types/TlInferenceSourcePredictResult.d.ts +1 -1
  289. package/api/resources/expressionMeasurement/types/Toxicity.d.ts +1 -1
  290. package/api/resources/expressionMeasurement/types/TrainingBaseRequest.d.ts +1 -1
  291. package/api/resources/expressionMeasurement/types/Transcription.d.ts +1 -1
  292. package/api/resources/expressionMeasurement/types/TranscriptionMetadata.d.ts +1 -1
  293. package/api/resources/expressionMeasurement/types/Type.d.ts +1 -1
  294. package/api/resources/expressionMeasurement/types/Type.js +4 -4
  295. package/api/resources/expressionMeasurement/types/UnionJob.d.ts +5 -5
  296. package/api/resources/expressionMeasurement/types/UnionJobJobEmbeddingGeneration.d.ts +1 -1
  297. package/api/resources/expressionMeasurement/types/UnionJobJobInference.d.ts +1 -1
  298. package/api/resources/expressionMeasurement/types/UnionJobJobTlInference.d.ts +1 -1
  299. package/api/resources/expressionMeasurement/types/UnionJobJobTraining.d.ts +1 -1
  300. package/api/resources/expressionMeasurement/types/UnionPredictResult.d.ts +1 -1
  301. package/api/resources/expressionMeasurement/types/ValidationArgs.d.ts +1 -1
  302. package/api/resources/expressionMeasurement/types/When.d.ts +1 -1
  303. package/api/resources/expressionMeasurement/types/When.js +2 -2
  304. package/api/resources/expressionMeasurement/types/index.d.ts +129 -129
  305. package/api/resources/index.d.ts +2 -2
  306. package/core/fetcher/Fetcher.d.ts +6 -6
  307. package/core/fetcher/Fetcher.js +28 -25
  308. package/core/fetcher/Supplier.d.ts +2 -2
  309. package/core/fetcher/Supplier.js +3 -12
  310. package/core/fetcher/index.d.ts +5 -5
  311. package/core/form-data-utils/FormDataWrapper.js +7 -7
  312. package/core/form-data-utils/index.d.ts +1 -1
  313. package/core/index.d.ts +5 -5
  314. package/core/runtime/index.d.ts +1 -1
  315. package/core/runtime/runtime.d.ts +1 -1
  316. package/core/runtime/runtime.js +22 -19
  317. package/core/schemas/Schema.d.ts +3 -3
  318. package/core/schemas/Schema.js +16 -16
  319. package/core/schemas/builders/date/date.d.ts +1 -1
  320. package/core/schemas/builders/date/date.js +4 -4
  321. package/core/schemas/builders/date/index.d.ts +1 -1
  322. package/core/schemas/builders/enum/enum.d.ts +1 -1
  323. package/core/schemas/builders/enum/enum.js +3 -3
  324. package/core/schemas/builders/enum/index.d.ts +1 -1
  325. package/core/schemas/builders/index.d.ts +13 -13
  326. package/core/schemas/builders/lazy/index.d.ts +3 -3
  327. package/core/schemas/builders/lazy/lazy.d.ts +1 -1
  328. package/core/schemas/builders/lazy/lazyObject.d.ts +2 -2
  329. package/core/schemas/builders/list/index.d.ts +1 -1
  330. package/core/schemas/builders/list/list.d.ts +1 -1
  331. package/core/schemas/builders/list/list.js +1 -1
  332. package/core/schemas/builders/literals/booleanLiteral.d.ts +1 -1
  333. package/core/schemas/builders/literals/index.d.ts +2 -2
  334. package/core/schemas/builders/literals/stringLiteral.d.ts +1 -1
  335. package/core/schemas/builders/object/index.d.ts +6 -6
  336. package/core/schemas/builders/object/object.d.ts +1 -1
  337. package/core/schemas/builders/object/object.js +24 -10
  338. package/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +1 -1
  339. package/core/schemas/builders/object/property.d.ts +1 -1
  340. package/core/schemas/builders/object/types.d.ts +5 -5
  341. package/core/schemas/builders/object-like/getObjectLikeUtils.d.ts +2 -2
  342. package/core/schemas/builders/object-like/getObjectLikeUtils.js +2 -2
  343. package/core/schemas/builders/object-like/index.d.ts +2 -2
  344. package/core/schemas/builders/object-like/types.d.ts +1 -1
  345. package/core/schemas/builders/primitives/boolean.js +2 -2
  346. package/core/schemas/builders/primitives/index.d.ts +5 -5
  347. package/core/schemas/builders/primitives/number.js +2 -2
  348. package/core/schemas/builders/primitives/string.js +2 -2
  349. package/core/schemas/builders/record/index.d.ts +2 -2
  350. package/core/schemas/builders/record/record.d.ts +2 -2
  351. package/core/schemas/builders/record/record.js +9 -3
  352. package/core/schemas/builders/record/types.d.ts +2 -2
  353. package/core/schemas/builders/schema-utils/JsonError.d.ts +1 -1
  354. package/core/schemas/builders/schema-utils/JsonError.js +1 -1
  355. package/core/schemas/builders/schema-utils/ParseError.d.ts +1 -1
  356. package/core/schemas/builders/schema-utils/ParseError.js +1 -1
  357. package/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +1 -1
  358. package/core/schemas/builders/schema-utils/index.d.ts +4 -4
  359. package/core/schemas/builders/schema-utils/stringifyValidationErrors.d.ts +1 -1
  360. package/core/schemas/builders/schema-utils/stringifyValidationErrors.js +1 -1
  361. package/core/schemas/builders/set/index.d.ts +1 -1
  362. package/core/schemas/builders/set/set.d.ts +1 -1
  363. package/core/schemas/builders/set/set.js +1 -1
  364. package/core/schemas/builders/undiscriminated-union/index.d.ts +2 -2
  365. package/core/schemas/builders/undiscriminated-union/types.d.ts +1 -1
  366. package/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.d.ts +2 -2
  367. package/core/schemas/builders/union/index.d.ts +4 -4
  368. package/core/schemas/builders/union/types.d.ts +2 -2
  369. package/core/schemas/builders/union/union.d.ts +3 -3
  370. package/core/schemas/builders/union/union.js +14 -6
  371. package/core/schemas/index.d.ts +2 -2
  372. package/core/schemas/utils/createIdentitySchemaCreator.d.ts +1 -1
  373. package/core/schemas/utils/getErrorMessageForIncorrectType.js +6 -6
  374. package/core/schemas/utils/isPlainObject.js +1 -1
  375. package/core/schemas/utils/maybeSkipValidation.d.ts +1 -1
  376. package/core/schemas/utils/maybeSkipValidation.js +6 -4
  377. package/core/websocket/index.d.ts +1 -1
  378. package/core/websocket/ws.js +13 -10
  379. package/dist/Client.d.ts +4 -4
  380. package/dist/api/index.d.ts +1 -1
  381. package/dist/api/resources/empathicVoice/client/Client.d.ts +8 -8
  382. package/dist/api/resources/empathicVoice/index.d.ts +3 -3
  383. package/dist/api/resources/empathicVoice/resources/chat/client/Client.d.ts +4 -2
  384. package/dist/api/resources/empathicVoice/resources/chat/client/Client.js +10 -9
  385. package/dist/api/resources/empathicVoice/resources/chat/client/Socket.d.ts +9 -9
  386. package/dist/api/resources/empathicVoice/resources/chat/client/Socket.js +13 -13
  387. package/dist/api/resources/empathicVoice/resources/chat/client/index.d.ts +2 -2
  388. package/dist/api/resources/empathicVoice/resources/chat/index.d.ts +2 -2
  389. package/dist/api/resources/empathicVoice/resources/chat/types/PublishEvent.d.ts +1 -1
  390. package/dist/api/resources/empathicVoice/resources/chat/types/SubscribeEvent.d.ts +1 -1
  391. package/dist/api/resources/empathicVoice/resources/chat/types/index.d.ts +2 -2
  392. package/dist/api/resources/empathicVoice/resources/chatGroups/client/Client.d.ts +5 -5
  393. package/dist/api/resources/empathicVoice/resources/chatGroups/client/Client.js +34 -30
  394. package/dist/api/resources/empathicVoice/resources/chatGroups/client/index.d.ts +1 -1
  395. package/dist/api/resources/empathicVoice/resources/chatGroups/client/requests/ChatGroupsListChatGroupEventsRequest.d.ts +7 -3
  396. package/dist/api/resources/empathicVoice/resources/chatGroups/client/requests/ChatGroupsListChatGroupsRequest.d.ts +10 -4
  397. package/dist/api/resources/empathicVoice/resources/chatGroups/client/requests/index.d.ts +2 -2
  398. package/dist/api/resources/empathicVoice/resources/chatGroups/index.d.ts +1 -1
  399. package/dist/api/resources/empathicVoice/resources/chats/client/Client.d.ts +5 -5
  400. package/dist/api/resources/empathicVoice/resources/chats/client/Client.js +33 -29
  401. package/dist/api/resources/empathicVoice/resources/chats/client/index.d.ts +1 -1
  402. package/dist/api/resources/empathicVoice/resources/chats/client/requests/ChatsListChatEventsRequest.d.ts +7 -3
  403. package/dist/api/resources/empathicVoice/resources/chats/client/requests/ChatsListChatsRequest.d.ts +7 -3
  404. package/dist/api/resources/empathicVoice/resources/chats/client/requests/index.d.ts +2 -2
  405. package/dist/api/resources/empathicVoice/resources/chats/index.d.ts +1 -1
  406. package/dist/api/resources/empathicVoice/resources/configs/client/Client.d.ts +26 -14
  407. package/dist/api/resources/empathicVoice/resources/configs/client/Client.js +143 -109
  408. package/dist/api/resources/empathicVoice/resources/configs/client/index.d.ts +1 -1
  409. package/dist/api/resources/empathicVoice/resources/configs/client/requests/ConfigsListConfigVersionsRequest.d.ts +7 -3
  410. package/dist/api/resources/empathicVoice/resources/configs/client/requests/ConfigsListConfigsRequest.d.ts +7 -3
  411. package/dist/api/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +15 -4
  412. package/dist/api/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.d.ts +15 -4
  413. package/dist/api/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersionDescription.d.ts +1 -1
  414. package/dist/api/resources/empathicVoice/resources/configs/client/requests/index.d.ts +6 -6
  415. package/dist/api/resources/empathicVoice/resources/configs/index.d.ts +1 -1
  416. package/dist/api/resources/empathicVoice/resources/index.d.ts +12 -12
  417. package/dist/api/resources/empathicVoice/resources/prompts/client/Client.d.ts +26 -14
  418. package/dist/api/resources/empathicVoice/resources/prompts/client/Client.js +143 -109
  419. package/dist/api/resources/empathicVoice/resources/prompts/client/index.d.ts +1 -1
  420. package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PostedPrompt.d.ts +8 -2
  421. package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersion.d.ts +8 -2
  422. package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersionDescription.d.ts +1 -1
  423. package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PromptsListPromptVersionsRequest.d.ts +7 -3
  424. package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PromptsListPromptsRequest.d.ts +7 -3
  425. package/dist/api/resources/empathicVoice/resources/prompts/client/requests/index.d.ts +6 -6
  426. package/dist/api/resources/empathicVoice/resources/prompts/index.d.ts +1 -1
  427. package/dist/api/resources/empathicVoice/resources/tools/client/Client.d.ts +26 -14
  428. package/dist/api/resources/empathicVoice/resources/tools/client/Client.js +139 -109
  429. package/dist/api/resources/empathicVoice/resources/tools/client/index.d.ts +1 -1
  430. package/dist/api/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedTool.d.ts +8 -4
  431. package/dist/api/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedToolVersion.d.ts +8 -4
  432. package/dist/api/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedToolVersionDescription.d.ts +1 -1
  433. package/dist/api/resources/empathicVoice/resources/tools/client/requests/ToolsListToolVersionsRequest.d.ts +7 -3
  434. package/dist/api/resources/empathicVoice/resources/tools/client/requests/ToolsListToolsRequest.d.ts +7 -3
  435. package/dist/api/resources/empathicVoice/resources/tools/client/requests/index.d.ts +6 -6
  436. package/dist/api/resources/empathicVoice/resources/tools/index.d.ts +1 -1
  437. package/dist/api/resources/empathicVoice/types/AssistantEnd.d.ts +1 -1
  438. package/dist/api/resources/empathicVoice/types/AssistantInput.d.ts +1 -1
  439. package/dist/api/resources/empathicVoice/types/AssistantMessage.d.ts +2 -2
  440. package/dist/api/resources/empathicVoice/types/AudioConfiguration.d.ts +1 -1
  441. package/dist/api/resources/empathicVoice/types/AudioInput.d.ts +1 -1
  442. package/dist/api/resources/empathicVoice/types/AudioOutput.d.ts +1 -1
  443. package/dist/api/resources/empathicVoice/types/BuiltInTool.d.ts +1 -1
  444. package/dist/api/resources/empathicVoice/types/BuiltinToolConfig.d.ts +1 -1
  445. package/dist/api/resources/empathicVoice/types/ChatMessage.d.ts +1 -1
  446. package/dist/api/resources/empathicVoice/types/ChatMessageToolResult.d.ts +1 -1
  447. package/dist/api/resources/empathicVoice/types/ChatMetadata.d.ts +1 -1
  448. package/dist/api/resources/empathicVoice/types/Context.d.ts +1 -1
  449. package/dist/api/resources/empathicVoice/types/ContextType.d.ts +1 -1
  450. package/dist/api/resources/empathicVoice/types/ContextType.js +3 -3
  451. package/dist/api/resources/empathicVoice/types/Encoding.d.ts +1 -1
  452. package/dist/api/resources/empathicVoice/types/ErrorLevel.d.ts +1 -1
  453. package/dist/api/resources/empathicVoice/types/ExtendedVoiceArgs.d.ts +1 -1
  454. package/dist/api/resources/empathicVoice/types/FunctionCallResponseInput.d.ts +1 -1
  455. package/dist/api/resources/empathicVoice/types/HttpValidationError.d.ts +1 -1
  456. package/dist/api/resources/empathicVoice/types/Inference.d.ts +2 -2
  457. package/dist/api/resources/empathicVoice/types/JsonMessage.d.ts +1 -1
  458. package/dist/api/resources/empathicVoice/types/PauseAssistantMessage.d.ts +1 -1
  459. package/dist/api/resources/empathicVoice/types/PostedBuiltinTool.d.ts +1 -1
  460. package/dist/api/resources/empathicVoice/types/PostedEllmModel.d.ts +5 -1
  461. package/dist/api/resources/empathicVoice/types/PostedEventMessageSpec.d.ts +6 -2
  462. package/dist/api/resources/empathicVoice/types/PostedEventMessageSpecs.d.ts +17 -3
  463. package/dist/api/resources/empathicVoice/types/PostedLanguageModel.d.ts +8 -4
  464. package/dist/api/resources/empathicVoice/types/PostedLanguageModelModelProvider.d.ts +2 -2
  465. package/dist/api/resources/empathicVoice/types/PostedLanguageModelModelProvider.js +6 -6
  466. package/dist/api/resources/empathicVoice/types/PostedPromptSpec.d.ts +8 -2
  467. package/dist/api/resources/empathicVoice/types/PostedTimeoutSpecs.d.ts +4 -2
  468. package/dist/api/resources/empathicVoice/types/PostedTimeoutSpecsInactivity.d.ts +1 -1
  469. package/dist/api/resources/empathicVoice/types/PostedTimeoutSpecsMaxDuration.d.ts +1 -1
  470. package/dist/api/resources/empathicVoice/types/PostedUserDefinedToolSpec.d.ts +7 -1
  471. package/dist/api/resources/empathicVoice/types/PostedVoice.d.ts +3 -3
  472. package/dist/api/resources/empathicVoice/types/PostedVoiceName.d.ts +1 -1
  473. package/dist/api/resources/empathicVoice/types/PostedVoiceName.js +3 -3
  474. package/dist/api/resources/empathicVoice/types/ProsodyInference.d.ts +4 -2
  475. package/dist/api/resources/empathicVoice/types/ResumeAssistantMessage.d.ts +1 -1
  476. package/dist/api/resources/empathicVoice/types/ReturnActiveChatCount.d.ts +1 -1
  477. package/dist/api/resources/empathicVoice/types/ReturnBuiltinTool.d.ts +4 -3
  478. package/dist/api/resources/empathicVoice/types/ReturnBuiltinToolToolType.d.ts +11 -0
  479. package/dist/api/resources/empathicVoice/types/ReturnBuiltinToolToolType.js +10 -0
  480. package/dist/api/resources/empathicVoice/types/ReturnChat.d.ts +21 -9
  481. package/dist/api/resources/empathicVoice/types/ReturnChatEvent.d.ts +38 -9
  482. package/dist/api/resources/empathicVoice/types/ReturnChatEventRole.d.ts +21 -0
  483. package/dist/api/resources/empathicVoice/types/ReturnChatEventRole.js +12 -0
  484. package/dist/api/resources/empathicVoice/types/ReturnChatEventType.d.ts +27 -0
  485. package/dist/api/resources/empathicVoice/types/ReturnChatEventType.js +14 -0
  486. package/dist/api/resources/empathicVoice/types/ReturnChatGroup.d.ts +5 -5
  487. package/dist/api/resources/empathicVoice/types/ReturnChatGroupPagedChats.d.ts +1 -1
  488. package/dist/api/resources/empathicVoice/types/ReturnChatGroupPagedEvents.d.ts +20 -8
  489. package/dist/api/resources/empathicVoice/types/ReturnChatGroupPagedEventsPaginationDirection.d.ts +13 -0
  490. package/dist/api/resources/empathicVoice/types/ReturnChatGroupPagedEventsPaginationDirection.js +10 -0
  491. package/dist/api/resources/empathicVoice/types/ReturnChatPagedEvents.d.ts +39 -15
  492. package/dist/api/resources/empathicVoice/types/ReturnChatPagedEventsPaginationDirection.d.ts +13 -0
  493. package/dist/api/resources/empathicVoice/types/ReturnChatPagedEventsPaginationDirection.js +10 -0
  494. package/dist/api/resources/empathicVoice/types/ReturnChatPagedEventsStatus.d.ts +27 -0
  495. package/dist/api/resources/empathicVoice/types/ReturnChatPagedEventsStatus.js +14 -0
  496. package/dist/api/resources/empathicVoice/types/ReturnChatStatus.d.ts +27 -0
  497. package/dist/api/resources/empathicVoice/types/ReturnChatStatus.js +14 -0
  498. package/dist/api/resources/empathicVoice/types/ReturnConfig.d.ts +24 -7
  499. package/dist/api/resources/empathicVoice/types/ReturnConfigSpec.d.ts +8 -2
  500. package/dist/api/resources/empathicVoice/types/ReturnEllmModel.d.ts +5 -1
  501. package/dist/api/resources/empathicVoice/types/ReturnEventMessageSpec.d.ts +6 -2
  502. package/dist/api/resources/empathicVoice/types/ReturnEventMessageSpecs.d.ts +17 -3
  503. package/dist/api/resources/empathicVoice/types/ReturnLanguageModel.d.ts +9 -4
  504. package/dist/api/resources/empathicVoice/types/ReturnLanguageModelModelProvider.d.ts +15 -0
  505. package/dist/api/resources/empathicVoice/types/ReturnLanguageModelModelProvider.js +14 -0
  506. package/dist/api/resources/empathicVoice/types/ReturnPagedChatGroups.d.ts +19 -7
  507. package/dist/api/resources/empathicVoice/types/ReturnPagedChatGroupsPaginationDirection.d.ts +13 -0
  508. package/dist/api/resources/empathicVoice/types/ReturnPagedChatGroupsPaginationDirection.js +10 -0
  509. package/dist/api/resources/empathicVoice/types/ReturnPagedChats.d.ts +19 -7
  510. package/dist/api/resources/empathicVoice/types/ReturnPagedChatsPaginationDirection.d.ts +13 -0
  511. package/dist/api/resources/empathicVoice/types/ReturnPagedChatsPaginationDirection.js +10 -0
  512. package/dist/api/resources/empathicVoice/types/ReturnPagedConfigs.d.ts +13 -5
  513. package/dist/api/resources/empathicVoice/types/ReturnPagedCustomVoices.d.ts +1 -1
  514. package/dist/api/resources/empathicVoice/types/ReturnPagedPrompts.d.ts +13 -5
  515. package/dist/api/resources/empathicVoice/types/ReturnPagedUserDefinedTools.d.ts +13 -5
  516. package/dist/api/resources/empathicVoice/types/ReturnPrompt.d.ts +21 -8
  517. package/dist/api/resources/empathicVoice/types/ReturnPromptVersionType.d.ts +11 -0
  518. package/dist/api/resources/empathicVoice/types/ReturnPromptVersionType.js +10 -0
  519. package/dist/api/resources/empathicVoice/types/ReturnTimeoutSpec.d.ts +6 -2
  520. package/dist/api/resources/empathicVoice/types/ReturnTimeoutSpecs.d.ts +14 -2
  521. package/dist/api/resources/empathicVoice/types/ReturnUserDefinedTool.d.ts +22 -11
  522. package/dist/api/resources/empathicVoice/types/ReturnUserDefinedToolToolType.d.ts +11 -0
  523. package/dist/api/resources/empathicVoice/types/ReturnUserDefinedToolToolType.js +10 -0
  524. package/dist/api/resources/empathicVoice/types/ReturnUserDefinedToolVersionType.d.ts +11 -0
  525. package/dist/api/resources/empathicVoice/types/ReturnUserDefinedToolVersionType.js +10 -0
  526. package/dist/api/resources/empathicVoice/types/ReturnVoice.d.ts +4 -3
  527. package/dist/api/resources/empathicVoice/types/ReturnVoiceName.d.ts +12 -0
  528. package/dist/api/resources/empathicVoice/types/ReturnVoiceName.js +11 -0
  529. package/dist/api/resources/empathicVoice/types/Role.d.ts +1 -1
  530. package/dist/api/resources/empathicVoice/types/Role.js +5 -5
  531. package/dist/api/resources/empathicVoice/types/SessionSettings.d.ts +2 -2
  532. package/dist/api/resources/empathicVoice/types/TextInput.d.ts +1 -1
  533. package/dist/api/resources/empathicVoice/types/Tool.d.ts +1 -1
  534. package/dist/api/resources/empathicVoice/types/ToolCallMessage.d.ts +2 -2
  535. package/dist/api/resources/empathicVoice/types/ToolErrorMessage.d.ts +2 -2
  536. package/dist/api/resources/empathicVoice/types/ToolResponseMessage.d.ts +2 -2
  537. package/dist/api/resources/empathicVoice/types/ToolType.d.ts +1 -1
  538. package/dist/api/resources/empathicVoice/types/ToolType.js +2 -2
  539. package/dist/api/resources/empathicVoice/types/TtsInput.d.ts +1 -1
  540. package/dist/api/resources/empathicVoice/types/UserInput.d.ts +1 -1
  541. package/dist/api/resources/empathicVoice/types/UserInterruption.d.ts +1 -1
  542. package/dist/api/resources/empathicVoice/types/UserMessage.d.ts +2 -2
  543. package/dist/api/resources/empathicVoice/types/ValidationError.d.ts +1 -1
  544. package/dist/api/resources/empathicVoice/types/VoiceArgs.d.ts +1 -1
  545. package/dist/api/resources/empathicVoice/types/VoiceNameEnum.d.ts +1 -1
  546. package/dist/api/resources/empathicVoice/types/VoiceNameEnum.js +3 -3
  547. package/dist/api/resources/empathicVoice/types/WebSocketError.d.ts +1 -1
  548. package/dist/api/resources/empathicVoice/types/index.d.ts +99 -85
  549. package/dist/api/resources/empathicVoice/types/index.js +14 -0
  550. package/dist/api/resources/expressionMeasurement/client/Client.d.ts +3 -3
  551. package/dist/api/resources/expressionMeasurement/index.d.ts +3 -3
  552. package/dist/api/resources/expressionMeasurement/resources/batch/client/Client.d.ts +6 -6
  553. package/dist/api/resources/expressionMeasurement/resources/batch/client/Client.js +87 -75
  554. package/dist/api/resources/expressionMeasurement/resources/batch/client/index.d.ts +1 -1
  555. package/dist/api/resources/expressionMeasurement/resources/batch/client/requests/BatchListJobsRequest.d.ts +1 -1
  556. package/dist/api/resources/expressionMeasurement/resources/batch/client/requests/BatchStartInferenceJobFromLocalFileRequest.d.ts +1 -1
  557. package/dist/api/resources/expressionMeasurement/resources/batch/client/requests/index.d.ts +2 -2
  558. package/dist/api/resources/expressionMeasurement/resources/batch/index.d.ts +1 -1
  559. package/dist/api/resources/expressionMeasurement/resources/index.d.ts +4 -4
  560. package/dist/api/resources/expressionMeasurement/resources/stream/index.d.ts +1 -1
  561. package/dist/api/resources/expressionMeasurement/resources/stream/types/StreamBurst.d.ts +1 -1
  562. package/dist/api/resources/expressionMeasurement/resources/stream/types/StreamBurstBurst.d.ts +1 -1
  563. package/dist/api/resources/expressionMeasurement/resources/stream/types/StreamBurstBurstPredictionsItem.d.ts +1 -1
  564. package/dist/api/resources/expressionMeasurement/resources/stream/types/StreamBurstFace.d.ts +1 -1
  565. package/dist/api/resources/expressionMeasurement/resources/stream/types/StreamBurstFacePredictionsItem.d.ts +1 -1
  566. package/dist/api/resources/expressionMeasurement/resources/stream/types/StreamBurstFacemesh.d.ts +1 -1
  567. package/dist/api/resources/expressionMeasurement/resources/stream/types/StreamBurstFacemeshPredictionsItem.d.ts +1 -1
  568. package/dist/api/resources/expressionMeasurement/resources/stream/types/StreamBurstLanguage.d.ts +1 -1
  569. package/dist/api/resources/expressionMeasurement/resources/stream/types/StreamBurstLanguagePredictionsItem.d.ts +1 -1
  570. package/dist/api/resources/expressionMeasurement/resources/stream/types/StreamBurstProsody.d.ts +1 -1
  571. package/dist/api/resources/expressionMeasurement/resources/stream/types/StreamBurstProsodyPredictionsItem.d.ts +1 -1
  572. package/dist/api/resources/expressionMeasurement/resources/stream/types/StreamData.d.ts +1 -1
  573. package/dist/api/resources/expressionMeasurement/resources/stream/types/StreamDataModels.d.ts +1 -1
  574. package/dist/api/resources/expressionMeasurement/resources/stream/types/StreamError.d.ts +1 -1
  575. package/dist/api/resources/expressionMeasurement/resources/stream/types/StreamJobDetails.d.ts +1 -1
  576. package/dist/api/resources/expressionMeasurement/resources/stream/types/SubscribeEvent.d.ts +1 -1
  577. package/dist/api/resources/expressionMeasurement/resources/stream/types/index.d.ts +21 -21
  578. package/dist/api/resources/expressionMeasurement/types/Alternative.d.ts +1 -1
  579. package/dist/api/resources/expressionMeasurement/types/Bcp47Tag.d.ts +1 -1
  580. package/dist/api/resources/expressionMeasurement/types/Bcp47Tag.js +29 -29
  581. package/dist/api/resources/expressionMeasurement/types/BurstPrediction.d.ts +1 -1
  582. package/dist/api/resources/expressionMeasurement/types/CompletedTraining.d.ts +1 -1
  583. package/dist/api/resources/expressionMeasurement/types/CustomModel.d.ts +1 -1
  584. package/dist/api/resources/expressionMeasurement/types/CustomModelRequest.d.ts +1 -1
  585. package/dist/api/resources/expressionMeasurement/types/Dataset.d.ts +1 -1
  586. package/dist/api/resources/expressionMeasurement/types/Direction.d.ts +1 -1
  587. package/dist/api/resources/expressionMeasurement/types/Direction.js +2 -2
  588. package/dist/api/resources/expressionMeasurement/types/EmbeddingGenerationBaseRequest.d.ts +1 -1
  589. package/dist/api/resources/expressionMeasurement/types/EmotionEmbedding.d.ts +1 -1
  590. package/dist/api/resources/expressionMeasurement/types/EvaluationArgs.d.ts +1 -1
  591. package/dist/api/resources/expressionMeasurement/types/Face.d.ts +1 -1
  592. package/dist/api/resources/expressionMeasurement/types/FacePrediction.d.ts +1 -1
  593. package/dist/api/resources/expressionMeasurement/types/FacemeshPrediction.d.ts +1 -1
  594. package/dist/api/resources/expressionMeasurement/types/Granularity.d.ts +1 -1
  595. package/dist/api/resources/expressionMeasurement/types/Granularity.js +4 -4
  596. package/dist/api/resources/expressionMeasurement/types/GroupedPredictionsBurstPrediction.d.ts +1 -1
  597. package/dist/api/resources/expressionMeasurement/types/GroupedPredictionsFacePrediction.d.ts +1 -1
  598. package/dist/api/resources/expressionMeasurement/types/GroupedPredictionsFacemeshPrediction.d.ts +1 -1
  599. package/dist/api/resources/expressionMeasurement/types/GroupedPredictionsLanguagePrediction.d.ts +1 -1
  600. package/dist/api/resources/expressionMeasurement/types/GroupedPredictionsNerPrediction.d.ts +1 -1
  601. package/dist/api/resources/expressionMeasurement/types/GroupedPredictionsProsodyPrediction.d.ts +1 -1
  602. package/dist/api/resources/expressionMeasurement/types/InferenceBaseRequest.d.ts +1 -1
  603. package/dist/api/resources/expressionMeasurement/types/InferencePrediction.d.ts +1 -1
  604. package/dist/api/resources/expressionMeasurement/types/InferenceRequest.d.ts +1 -1
  605. package/dist/api/resources/expressionMeasurement/types/InferenceResults.d.ts +1 -1
  606. package/dist/api/resources/expressionMeasurement/types/InferenceSourcePredictResult.d.ts +1 -1
  607. package/dist/api/resources/expressionMeasurement/types/JobEmbeddingGeneration.d.ts +1 -1
  608. package/dist/api/resources/expressionMeasurement/types/JobInference.d.ts +1 -1
  609. package/dist/api/resources/expressionMeasurement/types/JobTlInference.d.ts +1 -1
  610. package/dist/api/resources/expressionMeasurement/types/JobTraining.d.ts +1 -1
  611. package/dist/api/resources/expressionMeasurement/types/Language.d.ts +1 -1
  612. package/dist/api/resources/expressionMeasurement/types/LanguagePrediction.d.ts +1 -1
  613. package/dist/api/resources/expressionMeasurement/types/Models.d.ts +1 -1
  614. package/dist/api/resources/expressionMeasurement/types/ModelsPredictions.d.ts +1 -1
  615. package/dist/api/resources/expressionMeasurement/types/NerPrediction.d.ts +1 -1
  616. package/dist/api/resources/expressionMeasurement/types/PredictionsOptionalNullBurstPrediction.d.ts +1 -1
  617. package/dist/api/resources/expressionMeasurement/types/PredictionsOptionalNullFacePrediction.d.ts +1 -1
  618. package/dist/api/resources/expressionMeasurement/types/PredictionsOptionalNullFacemeshPrediction.d.ts +1 -1
  619. package/dist/api/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataLanguagePrediction.d.ts +1 -1
  620. package/dist/api/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataNerPrediction.d.ts +1 -1
  621. package/dist/api/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataProsodyPrediction.d.ts +1 -1
  622. package/dist/api/resources/expressionMeasurement/types/Prosody.d.ts +1 -1
  623. package/dist/api/resources/expressionMeasurement/types/ProsodyPrediction.d.ts +1 -1
  624. package/dist/api/resources/expressionMeasurement/types/Sentiment.d.ts +1 -1
  625. package/dist/api/resources/expressionMeasurement/types/SortBy.d.ts +1 -1
  626. package/dist/api/resources/expressionMeasurement/types/SortBy.js +3 -3
  627. package/dist/api/resources/expressionMeasurement/types/Source.d.ts +4 -4
  628. package/dist/api/resources/expressionMeasurement/types/SourceFile.d.ts +1 -1
  629. package/dist/api/resources/expressionMeasurement/types/SourceUrl.d.ts +1 -1
  630. package/dist/api/resources/expressionMeasurement/types/StateEmbeddingGeneration.d.ts +7 -6
  631. package/dist/api/resources/expressionMeasurement/types/StateEmbeddingGenerationCompletedEmbeddingGeneration.d.ts +1 -1
  632. package/dist/api/resources/expressionMeasurement/types/StateEmbeddingGenerationFailed.d.ts +1 -1
  633. package/dist/api/resources/expressionMeasurement/types/StateEmbeddingGenerationInProgress.d.ts +1 -1
  634. package/dist/api/resources/expressionMeasurement/types/StateEmbeddingGenerationQueued.d.ts +1 -1
  635. package/dist/api/resources/expressionMeasurement/types/StateInference.d.ts +5 -5
  636. package/dist/api/resources/expressionMeasurement/types/StateInferenceCompletedInference.d.ts +1 -1
  637. package/dist/api/resources/expressionMeasurement/types/StateInferenceFailed.d.ts +1 -1
  638. package/dist/api/resources/expressionMeasurement/types/StateInferenceInProgress.d.ts +1 -1
  639. package/dist/api/resources/expressionMeasurement/types/StateInferenceQueued.d.ts +1 -1
  640. package/dist/api/resources/expressionMeasurement/types/StateTlInference.d.ts +5 -5
  641. package/dist/api/resources/expressionMeasurement/types/StateTlInferenceCompletedTlInference.d.ts +1 -1
  642. package/dist/api/resources/expressionMeasurement/types/StateTlInferenceFailed.d.ts +1 -1
  643. package/dist/api/resources/expressionMeasurement/types/StateTlInferenceInProgress.d.ts +1 -1
  644. package/dist/api/resources/expressionMeasurement/types/StateTlInferenceQueued.d.ts +1 -1
  645. package/dist/api/resources/expressionMeasurement/types/StateTraining.d.ts +5 -5
  646. package/dist/api/resources/expressionMeasurement/types/StateTrainingCompletedTraining.d.ts +1 -1
  647. package/dist/api/resources/expressionMeasurement/types/StateTrainingFailed.d.ts +1 -1
  648. package/dist/api/resources/expressionMeasurement/types/StateTrainingInProgress.d.ts +1 -1
  649. package/dist/api/resources/expressionMeasurement/types/StateTrainingQueued.d.ts +1 -1
  650. package/dist/api/resources/expressionMeasurement/types/Status.d.ts +1 -1
  651. package/dist/api/resources/expressionMeasurement/types/Status.js +4 -4
  652. package/dist/api/resources/expressionMeasurement/types/Task.d.ts +3 -3
  653. package/dist/api/resources/expressionMeasurement/types/TlInferenceBaseRequest.d.ts +1 -1
  654. package/dist/api/resources/expressionMeasurement/types/TlInferencePrediction.d.ts +1 -1
  655. package/dist/api/resources/expressionMeasurement/types/TlInferenceResults.d.ts +1 -1
  656. package/dist/api/resources/expressionMeasurement/types/TlInferenceSourcePredictResult.d.ts +1 -1
  657. package/dist/api/resources/expressionMeasurement/types/Toxicity.d.ts +1 -1
  658. package/dist/api/resources/expressionMeasurement/types/TrainingBaseRequest.d.ts +1 -1
  659. package/dist/api/resources/expressionMeasurement/types/Transcription.d.ts +1 -1
  660. package/dist/api/resources/expressionMeasurement/types/TranscriptionMetadata.d.ts +1 -1
  661. package/dist/api/resources/expressionMeasurement/types/Type.d.ts +1 -1
  662. package/dist/api/resources/expressionMeasurement/types/Type.js +4 -4
  663. package/dist/api/resources/expressionMeasurement/types/UnionJob.d.ts +5 -5
  664. package/dist/api/resources/expressionMeasurement/types/UnionJobJobEmbeddingGeneration.d.ts +1 -1
  665. package/dist/api/resources/expressionMeasurement/types/UnionJobJobInference.d.ts +1 -1
  666. package/dist/api/resources/expressionMeasurement/types/UnionJobJobTlInference.d.ts +1 -1
  667. package/dist/api/resources/expressionMeasurement/types/UnionJobJobTraining.d.ts +1 -1
  668. package/dist/api/resources/expressionMeasurement/types/UnionPredictResult.d.ts +1 -1
  669. package/dist/api/resources/expressionMeasurement/types/ValidationArgs.d.ts +1 -1
  670. package/dist/api/resources/expressionMeasurement/types/When.d.ts +1 -1
  671. package/dist/api/resources/expressionMeasurement/types/When.js +2 -2
  672. package/dist/api/resources/expressionMeasurement/types/index.d.ts +129 -129
  673. package/dist/api/resources/index.d.ts +2 -2
  674. package/dist/core/fetcher/Fetcher.d.ts +6 -6
  675. package/dist/core/fetcher/Fetcher.js +28 -25
  676. package/dist/core/fetcher/Supplier.d.ts +2 -2
  677. package/dist/core/fetcher/Supplier.js +3 -12
  678. package/dist/core/fetcher/index.d.ts +5 -5
  679. package/dist/core/form-data-utils/FormDataWrapper.js +7 -7
  680. package/dist/core/form-data-utils/index.d.ts +1 -1
  681. package/dist/core/index.d.ts +5 -5
  682. package/dist/core/runtime/index.d.ts +1 -1
  683. package/dist/core/runtime/runtime.d.ts +1 -1
  684. package/dist/core/runtime/runtime.js +22 -19
  685. package/dist/core/schemas/Schema.d.ts +3 -3
  686. package/dist/core/schemas/Schema.js +16 -16
  687. package/dist/core/schemas/builders/date/date.d.ts +1 -1
  688. package/dist/core/schemas/builders/date/date.js +4 -4
  689. package/dist/core/schemas/builders/date/index.d.ts +1 -1
  690. package/dist/core/schemas/builders/enum/enum.d.ts +1 -1
  691. package/dist/core/schemas/builders/enum/enum.js +3 -3
  692. package/dist/core/schemas/builders/enum/index.d.ts +1 -1
  693. package/dist/core/schemas/builders/index.d.ts +13 -13
  694. package/dist/core/schemas/builders/lazy/index.d.ts +3 -3
  695. package/dist/core/schemas/builders/lazy/lazy.d.ts +1 -1
  696. package/dist/core/schemas/builders/lazy/lazyObject.d.ts +2 -2
  697. package/dist/core/schemas/builders/list/index.d.ts +1 -1
  698. package/dist/core/schemas/builders/list/list.d.ts +1 -1
  699. package/dist/core/schemas/builders/list/list.js +1 -1
  700. package/dist/core/schemas/builders/literals/booleanLiteral.d.ts +1 -1
  701. package/dist/core/schemas/builders/literals/index.d.ts +2 -2
  702. package/dist/core/schemas/builders/literals/stringLiteral.d.ts +1 -1
  703. package/dist/core/schemas/builders/object/index.d.ts +6 -6
  704. package/dist/core/schemas/builders/object/object.d.ts +1 -1
  705. package/dist/core/schemas/builders/object/object.js +24 -10
  706. package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +1 -1
  707. package/dist/core/schemas/builders/object/property.d.ts +1 -1
  708. package/dist/core/schemas/builders/object/types.d.ts +5 -5
  709. package/dist/core/schemas/builders/object-like/getObjectLikeUtils.d.ts +2 -2
  710. package/dist/core/schemas/builders/object-like/getObjectLikeUtils.js +2 -2
  711. package/dist/core/schemas/builders/object-like/index.d.ts +2 -2
  712. package/dist/core/schemas/builders/object-like/types.d.ts +1 -1
  713. package/dist/core/schemas/builders/primitives/boolean.js +2 -2
  714. package/dist/core/schemas/builders/primitives/index.d.ts +5 -5
  715. package/dist/core/schemas/builders/primitives/number.js +2 -2
  716. package/dist/core/schemas/builders/primitives/string.js +2 -2
  717. package/dist/core/schemas/builders/record/index.d.ts +2 -2
  718. package/dist/core/schemas/builders/record/record.d.ts +2 -2
  719. package/dist/core/schemas/builders/record/record.js +9 -3
  720. package/dist/core/schemas/builders/record/types.d.ts +2 -2
  721. package/dist/core/schemas/builders/schema-utils/JsonError.d.ts +1 -1
  722. package/dist/core/schemas/builders/schema-utils/JsonError.js +1 -1
  723. package/dist/core/schemas/builders/schema-utils/ParseError.d.ts +1 -1
  724. package/dist/core/schemas/builders/schema-utils/ParseError.js +1 -1
  725. package/dist/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +1 -1
  726. package/dist/core/schemas/builders/schema-utils/index.d.ts +4 -4
  727. package/dist/core/schemas/builders/schema-utils/stringifyValidationErrors.d.ts +1 -1
  728. package/dist/core/schemas/builders/schema-utils/stringifyValidationErrors.js +1 -1
  729. package/dist/core/schemas/builders/set/index.d.ts +1 -1
  730. package/dist/core/schemas/builders/set/set.d.ts +1 -1
  731. package/dist/core/schemas/builders/set/set.js +1 -1
  732. package/dist/core/schemas/builders/undiscriminated-union/index.d.ts +2 -2
  733. package/dist/core/schemas/builders/undiscriminated-union/types.d.ts +1 -1
  734. package/dist/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.d.ts +2 -2
  735. package/dist/core/schemas/builders/union/index.d.ts +4 -4
  736. package/dist/core/schemas/builders/union/types.d.ts +2 -2
  737. package/dist/core/schemas/builders/union/union.d.ts +3 -3
  738. package/dist/core/schemas/builders/union/union.js +14 -6
  739. package/dist/core/schemas/index.d.ts +2 -2
  740. package/dist/core/schemas/utils/createIdentitySchemaCreator.d.ts +1 -1
  741. package/dist/core/schemas/utils/getErrorMessageForIncorrectType.js +6 -6
  742. package/dist/core/schemas/utils/isPlainObject.js +1 -1
  743. package/dist/core/schemas/utils/maybeSkipValidation.d.ts +1 -1
  744. package/dist/core/schemas/utils/maybeSkipValidation.js +6 -4
  745. package/dist/core/websocket/index.d.ts +1 -1
  746. package/dist/core/websocket/ws.js +13 -10
  747. package/dist/environments.js +1 -1
  748. package/dist/errors/HumeError.d.ts +1 -1
  749. package/dist/errors/HumeError.js +3 -3
  750. package/dist/errors/HumeTimeoutError.js +1 -1
  751. package/dist/errors/index.d.ts +2 -2
  752. package/dist/index.d.ts +4 -4
  753. package/dist/serialization/index.d.ts +1 -1
  754. package/dist/serialization/resources/empathicVoice/index.d.ts +2 -2
  755. package/dist/serialization/resources/empathicVoice/resources/chat/index.d.ts +1 -1
  756. package/dist/serialization/resources/empathicVoice/resources/chat/types/PublishEvent.d.ts +11 -11
  757. package/dist/serialization/resources/empathicVoice/resources/chat/types/SubscribeEvent.d.ts +13 -13
  758. package/dist/serialization/resources/empathicVoice/resources/chat/types/index.d.ts +2 -2
  759. package/dist/serialization/resources/empathicVoice/resources/configs/client/index.d.ts +1 -1
  760. package/dist/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +11 -11
  761. package/dist/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfig.js +8 -6
  762. package/dist/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigName.d.ts +3 -3
  763. package/dist/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.d.ts +11 -11
  764. package/dist/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.js +8 -6
  765. package/dist/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersionDescription.d.ts +3 -3
  766. package/dist/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersionDescription.js +1 -1
  767. package/dist/serialization/resources/empathicVoice/resources/configs/client/requests/index.d.ts +4 -4
  768. package/dist/serialization/resources/empathicVoice/resources/configs/index.d.ts +1 -1
  769. package/dist/serialization/resources/empathicVoice/resources/index.d.ts +8 -8
  770. package/dist/serialization/resources/empathicVoice/resources/prompts/client/createPrompt.d.ts +4 -4
  771. package/dist/serialization/resources/empathicVoice/resources/prompts/client/createPromptVerison.d.ts +4 -4
  772. package/dist/serialization/resources/empathicVoice/resources/prompts/client/getPromptVersion.d.ts +4 -4
  773. package/dist/serialization/resources/empathicVoice/resources/prompts/client/index.d.ts +5 -5
  774. package/dist/serialization/resources/empathicVoice/resources/prompts/client/requests/PostedPrompt.d.ts +3 -3
  775. package/dist/serialization/resources/empathicVoice/resources/prompts/client/requests/PostedPrompt.js +1 -1
  776. package/dist/serialization/resources/empathicVoice/resources/prompts/client/requests/PostedPromptName.d.ts +3 -3
  777. package/dist/serialization/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersion.d.ts +3 -3
  778. package/dist/serialization/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersion.js +1 -1
  779. package/dist/serialization/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersionDescription.d.ts +3 -3
  780. package/dist/serialization/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersionDescription.js +1 -1
  781. package/dist/serialization/resources/empathicVoice/resources/prompts/client/requests/index.d.ts +4 -4
  782. package/dist/serialization/resources/empathicVoice/resources/prompts/client/updatePromptDescription.d.ts +4 -4
  783. package/dist/serialization/resources/empathicVoice/resources/prompts/index.d.ts +1 -1
  784. package/dist/serialization/resources/empathicVoice/resources/tools/client/createTool.d.ts +4 -4
  785. package/dist/serialization/resources/empathicVoice/resources/tools/client/createToolVersion.d.ts +4 -4
  786. package/dist/serialization/resources/empathicVoice/resources/tools/client/getToolVersion.d.ts +4 -4
  787. package/dist/serialization/resources/empathicVoice/resources/tools/client/index.d.ts +5 -5
  788. package/dist/serialization/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedTool.d.ts +3 -3
  789. package/dist/serialization/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedTool.js +2 -2
  790. package/dist/serialization/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedToolName.d.ts +3 -3
  791. package/dist/serialization/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedToolVersion.d.ts +3 -3
  792. package/dist/serialization/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedToolVersion.js +2 -2
  793. package/dist/serialization/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedToolVersionDescription.d.ts +3 -3
  794. package/dist/serialization/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedToolVersionDescription.js +1 -1
  795. package/dist/serialization/resources/empathicVoice/resources/tools/client/requests/index.d.ts +4 -4
  796. package/dist/serialization/resources/empathicVoice/resources/tools/client/updateToolDescription.d.ts +4 -4
  797. package/dist/serialization/resources/empathicVoice/resources/tools/index.d.ts +1 -1
  798. package/dist/serialization/resources/empathicVoice/types/AssistantEnd.d.ts +4 -4
  799. package/dist/serialization/resources/empathicVoice/types/AssistantEnd.js +2 -2
  800. package/dist/serialization/resources/empathicVoice/types/AssistantInput.d.ts +4 -4
  801. package/dist/serialization/resources/empathicVoice/types/AssistantInput.js +2 -2
  802. package/dist/serialization/resources/empathicVoice/types/AssistantMessage.d.ts +6 -6
  803. package/dist/serialization/resources/empathicVoice/types/AssistantMessage.js +3 -3
  804. package/dist/serialization/resources/empathicVoice/types/AudioConfiguration.d.ts +4 -4
  805. package/dist/serialization/resources/empathicVoice/types/AudioConfiguration.js +1 -1
  806. package/dist/serialization/resources/empathicVoice/types/AudioInput.d.ts +4 -4
  807. package/dist/serialization/resources/empathicVoice/types/AudioInput.js +2 -2
  808. package/dist/serialization/resources/empathicVoice/types/AudioOutput.d.ts +4 -4
  809. package/dist/serialization/resources/empathicVoice/types/AudioOutput.js +2 -2
  810. package/dist/serialization/resources/empathicVoice/types/BuiltInTool.d.ts +4 -4
  811. package/dist/serialization/resources/empathicVoice/types/BuiltInTool.js +1 -1
  812. package/dist/serialization/resources/empathicVoice/types/BuiltinToolConfig.d.ts +4 -4
  813. package/dist/serialization/resources/empathicVoice/types/BuiltinToolConfig.js +1 -1
  814. package/dist/serialization/resources/empathicVoice/types/ChatMessage.d.ts +6 -6
  815. package/dist/serialization/resources/empathicVoice/types/ChatMessage.js +2 -2
  816. package/dist/serialization/resources/empathicVoice/types/ChatMessageToolResult.d.ts +5 -5
  817. package/dist/serialization/resources/empathicVoice/types/ChatMessageToolResult.js +4 -1
  818. package/dist/serialization/resources/empathicVoice/types/ChatMetadata.d.ts +4 -4
  819. package/dist/serialization/resources/empathicVoice/types/ChatMetadata.js +5 -5
  820. package/dist/serialization/resources/empathicVoice/types/Context.d.ts +4 -4
  821. package/dist/serialization/resources/empathicVoice/types/ContextType.d.ts +4 -4
  822. package/dist/serialization/resources/empathicVoice/types/ContextType.js +1 -1
  823. package/dist/serialization/resources/empathicVoice/types/EmotionScores.d.ts +7 -7
  824. package/dist/serialization/resources/empathicVoice/types/EmotionScores.js +48 -48
  825. package/dist/serialization/resources/empathicVoice/types/Encoding.d.ts +4 -4
  826. package/dist/serialization/resources/empathicVoice/types/Encoding.js +1 -1
  827. package/dist/serialization/resources/empathicVoice/types/ErrorLevel.d.ts +4 -4
  828. package/dist/serialization/resources/empathicVoice/types/ErrorLevel.js +1 -1
  829. package/dist/serialization/resources/empathicVoice/types/ExtendedVoiceArgs.d.ts +4 -4
  830. package/dist/serialization/resources/empathicVoice/types/ExtendedVoiceArgs.js +1 -1
  831. package/dist/serialization/resources/empathicVoice/types/FunctionCallResponseInput.d.ts +4 -4
  832. package/dist/serialization/resources/empathicVoice/types/FunctionCallResponseInput.js +1 -1
  833. package/dist/serialization/resources/empathicVoice/types/HttpValidationError.d.ts +4 -4
  834. package/dist/serialization/resources/empathicVoice/types/Inference.d.ts +4 -4
  835. package/dist/serialization/resources/empathicVoice/types/JsonMessage.d.ts +11 -11
  836. package/dist/serialization/resources/empathicVoice/types/MillisecondInterval.d.ts +3 -3
  837. package/dist/serialization/resources/empathicVoice/types/PauseAssistantMessage.d.ts +4 -4
  838. package/dist/serialization/resources/empathicVoice/types/PauseAssistantMessage.js +2 -2
  839. package/dist/serialization/resources/empathicVoice/types/PostedBuiltinTool.d.ts +3 -3
  840. package/dist/serialization/resources/empathicVoice/types/PostedBuiltinTool.js +1 -1
  841. package/dist/serialization/resources/empathicVoice/types/PostedCustomVoice.d.ts +3 -3
  842. package/dist/serialization/resources/empathicVoice/types/PostedCustomVoice.js +3 -3
  843. package/dist/serialization/resources/empathicVoice/types/PostedCustomVoiceName.d.ts +3 -3
  844. package/dist/serialization/resources/empathicVoice/types/PostedEllmModel.d.ts +3 -3
  845. package/dist/serialization/resources/empathicVoice/types/PostedEllmModel.js +1 -1
  846. package/dist/serialization/resources/empathicVoice/types/PostedEventMessageSpec.d.ts +3 -3
  847. package/dist/serialization/resources/empathicVoice/types/PostedEventMessageSpecs.d.ts +6 -4
  848. package/dist/serialization/resources/empathicVoice/types/PostedEventMessageSpecs.js +3 -1
  849. package/dist/serialization/resources/empathicVoice/types/PostedLanguageModel.d.ts +4 -4
  850. package/dist/serialization/resources/empathicVoice/types/PostedLanguageModel.js +2 -2
  851. package/dist/serialization/resources/empathicVoice/types/PostedLanguageModelModelProvider.d.ts +4 -4
  852. package/dist/serialization/resources/empathicVoice/types/PostedLanguageModelModelProvider.js +8 -1
  853. package/dist/serialization/resources/empathicVoice/types/PostedPromptSpec.d.ts +3 -3
  854. package/dist/serialization/resources/empathicVoice/types/PostedTimeoutSpec.d.ts +3 -3
  855. package/dist/serialization/resources/empathicVoice/types/PostedTimeoutSpec.js +1 -1
  856. package/dist/serialization/resources/empathicVoice/types/PostedTimeoutSpecs.d.ts +5 -5
  857. package/dist/serialization/resources/empathicVoice/types/PostedTimeoutSpecs.js +1 -1
  858. package/dist/serialization/resources/empathicVoice/types/PostedTimeoutSpecsInactivity.d.ts +3 -3
  859. package/dist/serialization/resources/empathicVoice/types/PostedTimeoutSpecsInactivity.js +1 -1
  860. package/dist/serialization/resources/empathicVoice/types/PostedTimeoutSpecsMaxDuration.d.ts +3 -3
  861. package/dist/serialization/resources/empathicVoice/types/PostedTimeoutSpecsMaxDuration.js +1 -1
  862. package/dist/serialization/resources/empathicVoice/types/PostedUserDefinedToolSpec.d.ts +3 -3
  863. package/dist/serialization/resources/empathicVoice/types/PostedVoice.d.ts +5 -5
  864. package/dist/serialization/resources/empathicVoice/types/PostedVoice.js +1 -1
  865. package/dist/serialization/resources/empathicVoice/types/PostedVoiceName.d.ts +4 -4
  866. package/dist/serialization/resources/empathicVoice/types/PostedVoiceName.js +1 -1
  867. package/dist/serialization/resources/empathicVoice/types/ProsodyInference.d.ts +4 -4
  868. package/dist/serialization/resources/empathicVoice/types/ResumeAssistantMessage.d.ts +4 -4
  869. package/dist/serialization/resources/empathicVoice/types/ResumeAssistantMessage.js +2 -2
  870. package/dist/serialization/resources/empathicVoice/types/ReturnActiveChatCount.d.ts +4 -4
  871. package/dist/serialization/resources/empathicVoice/types/ReturnActiveChatCount.js +4 -4
  872. package/dist/serialization/resources/empathicVoice/types/ReturnActiveChatCountPerTag.d.ts +3 -3
  873. package/dist/serialization/resources/empathicVoice/types/ReturnActiveChatCountPerTag.js +1 -1
  874. package/dist/serialization/resources/empathicVoice/types/ReturnBuiltinTool.d.ts +5 -4
  875. package/dist/serialization/resources/empathicVoice/types/ReturnBuiltinTool.js +3 -2
  876. package/dist/serialization/resources/empathicVoice/types/ReturnBuiltinToolToolType.d.ts +10 -0
  877. package/dist/serialization/resources/empathicVoice/types/ReturnBuiltinToolToolType.js +31 -0
  878. package/dist/serialization/resources/empathicVoice/types/ReturnChat.d.ts +6 -6
  879. package/dist/serialization/resources/empathicVoice/types/ReturnChat.js +6 -6
  880. package/dist/serialization/resources/empathicVoice/types/ReturnChatEvent.d.ts +7 -5
  881. package/dist/serialization/resources/empathicVoice/types/ReturnChatEvent.js +7 -5
  882. package/dist/serialization/resources/empathicVoice/types/ReturnChatEventRole.d.ts +10 -0
  883. package/dist/serialization/resources/empathicVoice/types/ReturnChatEventRole.js +31 -0
  884. package/dist/serialization/resources/empathicVoice/types/ReturnChatEventType.d.ts +10 -0
  885. package/dist/serialization/resources/empathicVoice/types/ReturnChatEventType.js +38 -0
  886. package/dist/serialization/resources/empathicVoice/types/ReturnChatGroup.d.ts +3 -3
  887. package/dist/serialization/resources/empathicVoice/types/ReturnChatGroup.js +4 -4
  888. package/dist/serialization/resources/empathicVoice/types/ReturnChatGroupPagedChats.d.ts +4 -4
  889. package/dist/serialization/resources/empathicVoice/types/ReturnChatGroupPagedChats.js +8 -8
  890. package/dist/serialization/resources/empathicVoice/types/ReturnChatGroupPagedEvents.d.ts +6 -5
  891. package/dist/serialization/resources/empathicVoice/types/ReturnChatGroupPagedEvents.js +6 -5
  892. package/dist/serialization/resources/empathicVoice/types/ReturnChatGroupPagedEventsPaginationDirection.d.ts +10 -0
  893. package/dist/serialization/resources/empathicVoice/types/ReturnChatGroupPagedEventsPaginationDirection.js +31 -0
  894. package/dist/serialization/resources/empathicVoice/types/ReturnChatPagedEvents.d.ts +9 -8
  895. package/dist/serialization/resources/empathicVoice/types/ReturnChatPagedEvents.js +11 -10
  896. package/dist/serialization/resources/empathicVoice/types/ReturnChatPagedEventsPaginationDirection.d.ts +10 -0
  897. package/dist/serialization/resources/empathicVoice/types/ReturnChatPagedEventsPaginationDirection.js +31 -0
  898. package/dist/serialization/resources/empathicVoice/types/ReturnChatPagedEventsStatus.d.ts +10 -0
  899. package/dist/serialization/resources/empathicVoice/types/ReturnChatPagedEventsStatus.js +38 -0
  900. package/dist/serialization/resources/empathicVoice/types/ReturnChatStatus.d.ts +10 -0
  901. package/dist/serialization/resources/empathicVoice/types/ReturnChatStatus.js +38 -0
  902. package/dist/serialization/resources/empathicVoice/types/ReturnConfig.d.ts +11 -11
  903. package/dist/serialization/resources/empathicVoice/types/ReturnConfig.js +7 -7
  904. package/dist/serialization/resources/empathicVoice/types/ReturnConfigSpec.d.ts +3 -3
  905. package/dist/serialization/resources/empathicVoice/types/ReturnCustomVoice.d.ts +3 -3
  906. package/dist/serialization/resources/empathicVoice/types/ReturnCustomVoice.js +5 -5
  907. package/dist/serialization/resources/empathicVoice/types/ReturnEllmModel.d.ts +3 -3
  908. package/dist/serialization/resources/empathicVoice/types/ReturnEllmModel.js +1 -1
  909. package/dist/serialization/resources/empathicVoice/types/ReturnEventMessageSpec.d.ts +3 -3
  910. package/dist/serialization/resources/empathicVoice/types/ReturnEventMessageSpecs.d.ts +6 -4
  911. package/dist/serialization/resources/empathicVoice/types/ReturnEventMessageSpecs.js +3 -1
  912. package/dist/serialization/resources/empathicVoice/types/ReturnLanguageModel.d.ts +5 -4
  913. package/dist/serialization/resources/empathicVoice/types/ReturnLanguageModel.js +3 -2
  914. package/dist/serialization/resources/empathicVoice/types/ReturnLanguageModelModelProvider.d.ts +10 -0
  915. package/dist/serialization/resources/empathicVoice/types/ReturnLanguageModelModelProvider.js +38 -0
  916. package/dist/serialization/resources/empathicVoice/types/ReturnPagedChatGroups.d.ts +6 -5
  917. package/dist/serialization/resources/empathicVoice/types/ReturnPagedChatGroups.js +6 -5
  918. package/dist/serialization/resources/empathicVoice/types/ReturnPagedChatGroupsPaginationDirection.d.ts +10 -0
  919. package/dist/serialization/resources/empathicVoice/types/ReturnPagedChatGroupsPaginationDirection.js +31 -0
  920. package/dist/serialization/resources/empathicVoice/types/ReturnPagedChats.d.ts +6 -5
  921. package/dist/serialization/resources/empathicVoice/types/ReturnPagedChats.js +6 -5
  922. package/dist/serialization/resources/empathicVoice/types/ReturnPagedChatsPaginationDirection.d.ts +10 -0
  923. package/dist/serialization/resources/empathicVoice/types/ReturnPagedChatsPaginationDirection.js +31 -0
  924. package/dist/serialization/resources/empathicVoice/types/ReturnPagedConfigs.d.ts +4 -4
  925. package/dist/serialization/resources/empathicVoice/types/ReturnPagedConfigs.js +4 -4
  926. package/dist/serialization/resources/empathicVoice/types/ReturnPagedCustomVoices.d.ts +4 -4
  927. package/dist/serialization/resources/empathicVoice/types/ReturnPagedCustomVoices.js +4 -4
  928. package/dist/serialization/resources/empathicVoice/types/ReturnPagedPrompts.d.ts +4 -4
  929. package/dist/serialization/resources/empathicVoice/types/ReturnPagedPrompts.js +4 -4
  930. package/dist/serialization/resources/empathicVoice/types/ReturnPagedUserDefinedTools.d.ts +4 -4
  931. package/dist/serialization/resources/empathicVoice/types/ReturnPagedUserDefinedTools.js +4 -4
  932. package/dist/serialization/resources/empathicVoice/types/ReturnPrompt.d.ts +5 -4
  933. package/dist/serialization/resources/empathicVoice/types/ReturnPrompt.js +5 -4
  934. package/dist/serialization/resources/empathicVoice/types/ReturnPromptVersionType.d.ts +10 -0
  935. package/dist/serialization/resources/empathicVoice/types/ReturnPromptVersionType.js +31 -0
  936. package/dist/serialization/resources/empathicVoice/types/ReturnTimeoutSpec.d.ts +3 -3
  937. package/dist/serialization/resources/empathicVoice/types/ReturnTimeoutSpec.js +1 -1
  938. package/dist/serialization/resources/empathicVoice/types/ReturnTimeoutSpecs.d.ts +4 -4
  939. package/dist/serialization/resources/empathicVoice/types/ReturnTimeoutSpecs.js +1 -1
  940. package/dist/serialization/resources/empathicVoice/types/ReturnUserDefinedTool.d.ts +7 -5
  941. package/dist/serialization/resources/empathicVoice/types/ReturnUserDefinedTool.js +8 -6
  942. package/dist/serialization/resources/empathicVoice/types/ReturnUserDefinedToolToolType.d.ts +10 -0
  943. package/dist/serialization/resources/empathicVoice/types/ReturnUserDefinedToolToolType.js +31 -0
  944. package/dist/serialization/resources/empathicVoice/types/ReturnUserDefinedToolVersionType.d.ts +10 -0
  945. package/dist/serialization/resources/empathicVoice/types/ReturnUserDefinedToolVersionType.js +31 -0
  946. package/dist/serialization/resources/empathicVoice/types/ReturnVoice.d.ts +6 -5
  947. package/dist/serialization/resources/empathicVoice/types/ReturnVoice.js +3 -2
  948. package/dist/serialization/resources/empathicVoice/types/ReturnVoiceName.d.ts +10 -0
  949. package/dist/serialization/resources/empathicVoice/types/ReturnVoiceName.js +31 -0
  950. package/dist/serialization/resources/empathicVoice/types/Role.d.ts +4 -4
  951. package/dist/serialization/resources/empathicVoice/types/Role.js +1 -1
  952. package/dist/serialization/resources/empathicVoice/types/SessionSettings.d.ts +8 -8
  953. package/dist/serialization/resources/empathicVoice/types/SessionSettings.js +11 -7
  954. package/dist/serialization/resources/empathicVoice/types/TextInput.d.ts +4 -4
  955. package/dist/serialization/resources/empathicVoice/types/TextInput.js +1 -1
  956. package/dist/serialization/resources/empathicVoice/types/Tool.d.ts +4 -4
  957. package/dist/serialization/resources/empathicVoice/types/Tool.js +1 -1
  958. package/dist/serialization/resources/empathicVoice/types/ToolCallMessage.d.ts +5 -5
  959. package/dist/serialization/resources/empathicVoice/types/ToolCallMessage.js +5 -5
  960. package/dist/serialization/resources/empathicVoice/types/ToolErrorMessage.d.ts +6 -6
  961. package/dist/serialization/resources/empathicVoice/types/ToolErrorMessage.js +4 -4
  962. package/dist/serialization/resources/empathicVoice/types/ToolResponseMessage.d.ts +5 -5
  963. package/dist/serialization/resources/empathicVoice/types/ToolResponseMessage.js +5 -5
  964. package/dist/serialization/resources/empathicVoice/types/ToolType.d.ts +4 -4
  965. package/dist/serialization/resources/empathicVoice/types/ToolType.js +1 -1
  966. package/dist/serialization/resources/empathicVoice/types/TtsInput.d.ts +4 -4
  967. package/dist/serialization/resources/empathicVoice/types/TtsInput.js +1 -1
  968. package/dist/serialization/resources/empathicVoice/types/UserInput.d.ts +4 -4
  969. package/dist/serialization/resources/empathicVoice/types/UserInput.js +2 -2
  970. package/dist/serialization/resources/empathicVoice/types/UserInterruption.d.ts +4 -4
  971. package/dist/serialization/resources/empathicVoice/types/UserInterruption.js +2 -2
  972. package/dist/serialization/resources/empathicVoice/types/UserMessage.d.ts +7 -7
  973. package/dist/serialization/resources/empathicVoice/types/UserMessage.js +3 -3
  974. package/dist/serialization/resources/empathicVoice/types/ValidationError.d.ts +4 -4
  975. package/dist/serialization/resources/empathicVoice/types/ValidationErrorLocItem.d.ts +3 -3
  976. package/dist/serialization/resources/empathicVoice/types/ValidationErrorLocItem.js +4 -1
  977. package/dist/serialization/resources/empathicVoice/types/VoiceArgs.d.ts +4 -4
  978. package/dist/serialization/resources/empathicVoice/types/VoiceNameEnum.d.ts +4 -4
  979. package/dist/serialization/resources/empathicVoice/types/VoiceNameEnum.js +1 -1
  980. package/dist/serialization/resources/empathicVoice/types/WebSocketError.d.ts +4 -4
  981. package/dist/serialization/resources/empathicVoice/types/WebSocketError.js +2 -2
  982. package/dist/serialization/resources/empathicVoice/types/index.d.ts +99 -85
  983. package/dist/serialization/resources/empathicVoice/types/index.js +14 -0
  984. package/dist/serialization/resources/expressionMeasurement/index.d.ts +2 -2
  985. package/dist/serialization/resources/expressionMeasurement/resources/batch/client/getJobPredictions.d.ts +4 -4
  986. package/dist/serialization/resources/expressionMeasurement/resources/batch/client/index.d.ts +2 -2
  987. package/dist/serialization/resources/expressionMeasurement/resources/batch/client/listJobs.d.ts +4 -4
  988. package/dist/serialization/resources/expressionMeasurement/resources/batch/index.d.ts +1 -1
  989. package/dist/serialization/resources/expressionMeasurement/resources/index.d.ts +3 -3
  990. package/dist/serialization/resources/expressionMeasurement/resources/stream/index.d.ts +1 -1
  991. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurst.d.ts +9 -9
  992. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurst.js +2 -2
  993. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstBurst.d.ts +4 -4
  994. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstBurst.js +3 -1
  995. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstBurstPredictionsItem.d.ts +5 -5
  996. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstFace.d.ts +4 -4
  997. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstFace.js +3 -1
  998. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstFacePredictionsItem.d.ts +5 -5
  999. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstFacePredictionsItem.js +1 -1
  1000. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstFacemesh.d.ts +4 -4
  1001. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstFacemesh.js +3 -1
  1002. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstFacemeshPredictionsItem.d.ts +4 -4
  1003. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstJobDetails.d.ts +3 -3
  1004. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstJobDetails.js +1 -1
  1005. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstLanguage.d.ts +4 -4
  1006. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstLanguage.js +3 -1
  1007. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstLanguagePredictionsItem.d.ts +7 -7
  1008. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstProsody.d.ts +4 -4
  1009. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstProsody.js +3 -1
  1010. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstProsodyPredictionsItem.d.ts +5 -5
  1011. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamData.d.ts +4 -4
  1012. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamData.js +5 -5
  1013. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamDataModels.d.ts +5 -5
  1014. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamDataModels.js +9 -3
  1015. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamDataModelsFace.d.ts +3 -3
  1016. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamDataModelsFace.js +10 -6
  1017. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamDataModelsLanguage.d.ts +3 -3
  1018. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamDataModelsLanguage.js +6 -2
  1019. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamError.d.ts +4 -4
  1020. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamError.js +2 -2
  1021. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamErrorJobDetails.d.ts +3 -3
  1022. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamErrorJobDetails.js +1 -1
  1023. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamJobDetails.d.ts +4 -4
  1024. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamJobDetails.js +2 -2
  1025. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamJobDetailsJobDetails.d.ts +3 -3
  1026. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/StreamJobDetailsJobDetails.js +1 -1
  1027. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/SubscribeEvent.d.ts +6 -6
  1028. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/SubscribeEvent.js +5 -1
  1029. package/dist/serialization/resources/expressionMeasurement/resources/stream/types/index.d.ts +21 -21
  1030. package/dist/serialization/resources/expressionMeasurement/types/Alternative.d.ts +4 -4
  1031. package/dist/serialization/resources/expressionMeasurement/types/Alternative.js +1 -1
  1032. package/dist/serialization/resources/expressionMeasurement/types/Bcp47Tag.d.ts +4 -4
  1033. package/dist/serialization/resources/expressionMeasurement/types/Bcp47Tag.js +29 -29
  1034. package/dist/serialization/resources/expressionMeasurement/types/BoundingBox.d.ts +3 -3
  1035. package/dist/serialization/resources/expressionMeasurement/types/BurstPrediction.d.ts +6 -6
  1036. package/dist/serialization/resources/expressionMeasurement/types/Classification.d.ts +3 -3
  1037. package/dist/serialization/resources/expressionMeasurement/types/CompletedEmbeddingGeneration.d.ts +3 -3
  1038. package/dist/serialization/resources/expressionMeasurement/types/CompletedEmbeddingGeneration.js +3 -3
  1039. package/dist/serialization/resources/expressionMeasurement/types/CompletedInference.d.ts +3 -3
  1040. package/dist/serialization/resources/expressionMeasurement/types/CompletedInference.js +5 -5
  1041. package/dist/serialization/resources/expressionMeasurement/types/CompletedTlInference.d.ts +3 -3
  1042. package/dist/serialization/resources/expressionMeasurement/types/CompletedTlInference.js +5 -5
  1043. package/dist/serialization/resources/expressionMeasurement/types/CompletedTraining.d.ts +4 -4
  1044. package/dist/serialization/resources/expressionMeasurement/types/CompletedTraining.js +7 -5
  1045. package/dist/serialization/resources/expressionMeasurement/types/CustomModel.d.ts +5 -5
  1046. package/dist/serialization/resources/expressionMeasurement/types/CustomModel.js +4 -1
  1047. package/dist/serialization/resources/expressionMeasurement/types/CustomModelId.d.ts +3 -3
  1048. package/dist/serialization/resources/expressionMeasurement/types/CustomModelPrediction.d.ts +3 -3
  1049. package/dist/serialization/resources/expressionMeasurement/types/CustomModelPrediction.js +1 -1
  1050. package/dist/serialization/resources/expressionMeasurement/types/CustomModelRequest.d.ts +4 -4
  1051. package/dist/serialization/resources/expressionMeasurement/types/CustomModelVersionId.d.ts +3 -3
  1052. package/dist/serialization/resources/expressionMeasurement/types/CustomModelVersionId.js +1 -1
  1053. package/dist/serialization/resources/expressionMeasurement/types/Dataset.d.ts +5 -5
  1054. package/dist/serialization/resources/expressionMeasurement/types/DatasetId.d.ts +3 -3
  1055. package/dist/serialization/resources/expressionMeasurement/types/DatasetVersionId.d.ts +3 -3
  1056. package/dist/serialization/resources/expressionMeasurement/types/DatasetVersionId.js +1 -1
  1057. package/dist/serialization/resources/expressionMeasurement/types/DescriptionsScore.d.ts +3 -3
  1058. package/dist/serialization/resources/expressionMeasurement/types/Direction.d.ts +4 -4
  1059. package/dist/serialization/resources/expressionMeasurement/types/Direction.js +1 -1
  1060. package/dist/serialization/resources/expressionMeasurement/types/EmbeddingGenerationBaseRequest.d.ts +4 -4
  1061. package/dist/serialization/resources/expressionMeasurement/types/EmbeddingGenerationBaseRequest.js +1 -1
  1062. package/dist/serialization/resources/expressionMeasurement/types/EmotionEmbedding.d.ts +4 -4
  1063. package/dist/serialization/resources/expressionMeasurement/types/EmotionEmbeddingItem.d.ts +3 -3
  1064. package/dist/serialization/resources/expressionMeasurement/types/EmotionScore.d.ts +3 -3
  1065. package/dist/serialization/resources/expressionMeasurement/types/Error_.d.ts +3 -3
  1066. package/dist/serialization/resources/expressionMeasurement/types/EvaluationArgs.d.ts +4 -4
  1067. package/dist/serialization/resources/expressionMeasurement/types/Face.d.ts +4 -4
  1068. package/dist/serialization/resources/expressionMeasurement/types/Face.js +5 -5
  1069. package/dist/serialization/resources/expressionMeasurement/types/FacePrediction.d.ts +7 -7
  1070. package/dist/serialization/resources/expressionMeasurement/types/FacemeshPrediction.d.ts +4 -4
  1071. package/dist/serialization/resources/expressionMeasurement/types/FacsScore.d.ts +3 -3
  1072. package/dist/serialization/resources/expressionMeasurement/types/Failed.d.ts +3 -3
  1073. package/dist/serialization/resources/expressionMeasurement/types/Failed.js +3 -3
  1074. package/dist/serialization/resources/expressionMeasurement/types/File_.d.ts +3 -3
  1075. package/dist/serialization/resources/expressionMeasurement/types/File_.js +2 -2
  1076. package/dist/serialization/resources/expressionMeasurement/types/Granularity.d.ts +4 -4
  1077. package/dist/serialization/resources/expressionMeasurement/types/Granularity.js +6 -1
  1078. package/dist/serialization/resources/expressionMeasurement/types/GroupedPredictionsBurstPrediction.d.ts +4 -4
  1079. package/dist/serialization/resources/expressionMeasurement/types/GroupedPredictionsFacePrediction.d.ts +4 -4
  1080. package/dist/serialization/resources/expressionMeasurement/types/GroupedPredictionsFacemeshPrediction.d.ts +4 -4
  1081. package/dist/serialization/resources/expressionMeasurement/types/GroupedPredictionsLanguagePrediction.d.ts +4 -4
  1082. package/dist/serialization/resources/expressionMeasurement/types/GroupedPredictionsNerPrediction.d.ts +4 -4
  1083. package/dist/serialization/resources/expressionMeasurement/types/GroupedPredictionsProsodyPrediction.d.ts +4 -4
  1084. package/dist/serialization/resources/expressionMeasurement/types/InProgress.d.ts +3 -3
  1085. package/dist/serialization/resources/expressionMeasurement/types/InProgress.js +2 -2
  1086. package/dist/serialization/resources/expressionMeasurement/types/InferenceBaseRequest.d.ts +5 -5
  1087. package/dist/serialization/resources/expressionMeasurement/types/InferenceBaseRequest.js +2 -2
  1088. package/dist/serialization/resources/expressionMeasurement/types/InferencePrediction.d.ts +4 -4
  1089. package/dist/serialization/resources/expressionMeasurement/types/InferenceRequest.d.ts +6 -6
  1090. package/dist/serialization/resources/expressionMeasurement/types/InferenceRequest.js +2 -2
  1091. package/dist/serialization/resources/expressionMeasurement/types/InferenceResults.d.ts +5 -5
  1092. package/dist/serialization/resources/expressionMeasurement/types/InferenceSourcePredictResult.d.ts +5 -5
  1093. package/dist/serialization/resources/expressionMeasurement/types/JobEmbeddingGeneration.d.ts +5 -5
  1094. package/dist/serialization/resources/expressionMeasurement/types/JobEmbeddingGeneration.js +2 -2
  1095. package/dist/serialization/resources/expressionMeasurement/types/JobId.d.ts +3 -3
  1096. package/dist/serialization/resources/expressionMeasurement/types/JobId.js +1 -1
  1097. package/dist/serialization/resources/expressionMeasurement/types/JobInference.d.ts +5 -5
  1098. package/dist/serialization/resources/expressionMeasurement/types/JobInference.js +2 -2
  1099. package/dist/serialization/resources/expressionMeasurement/types/JobTlInference.d.ts +5 -5
  1100. package/dist/serialization/resources/expressionMeasurement/types/JobTlInference.js +2 -2
  1101. package/dist/serialization/resources/expressionMeasurement/types/JobTraining.d.ts +5 -5
  1102. package/dist/serialization/resources/expressionMeasurement/types/JobTraining.js +2 -2
  1103. package/dist/serialization/resources/expressionMeasurement/types/Language.d.ts +5 -5
  1104. package/dist/serialization/resources/expressionMeasurement/types/Language.js +1 -1
  1105. package/dist/serialization/resources/expressionMeasurement/types/LanguagePrediction.d.ts +8 -8
  1106. package/dist/serialization/resources/expressionMeasurement/types/LanguagePrediction.js +1 -1
  1107. package/dist/serialization/resources/expressionMeasurement/types/Models.d.ts +8 -8
  1108. package/dist/serialization/resources/expressionMeasurement/types/ModelsPredictions.d.ts +9 -9
  1109. package/dist/serialization/resources/expressionMeasurement/types/Ner.d.ts +3 -3
  1110. package/dist/serialization/resources/expressionMeasurement/types/Ner.js +1 -1
  1111. package/dist/serialization/resources/expressionMeasurement/types/NerPrediction.d.ts +6 -6
  1112. package/dist/serialization/resources/expressionMeasurement/types/NerPrediction.js +3 -3
  1113. package/dist/serialization/resources/expressionMeasurement/types/Null.d.ts +3 -3
  1114. package/dist/serialization/resources/expressionMeasurement/types/PositionInterval.d.ts +3 -3
  1115. package/dist/serialization/resources/expressionMeasurement/types/PredictionsOptionalNullBurstPrediction.d.ts +5 -5
  1116. package/dist/serialization/resources/expressionMeasurement/types/PredictionsOptionalNullBurstPrediction.js +1 -1
  1117. package/dist/serialization/resources/expressionMeasurement/types/PredictionsOptionalNullFacePrediction.d.ts +5 -5
  1118. package/dist/serialization/resources/expressionMeasurement/types/PredictionsOptionalNullFacePrediction.js +1 -1
  1119. package/dist/serialization/resources/expressionMeasurement/types/PredictionsOptionalNullFacemeshPrediction.d.ts +5 -5
  1120. package/dist/serialization/resources/expressionMeasurement/types/PredictionsOptionalNullFacemeshPrediction.js +1 -1
  1121. package/dist/serialization/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataLanguagePrediction.d.ts +5 -5
  1122. package/dist/serialization/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataLanguagePrediction.js +1 -1
  1123. package/dist/serialization/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataNerPrediction.d.ts +5 -5
  1124. package/dist/serialization/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataNerPrediction.js +1 -1
  1125. package/dist/serialization/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataProsodyPrediction.d.ts +5 -5
  1126. package/dist/serialization/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataProsodyPrediction.js +1 -1
  1127. package/dist/serialization/resources/expressionMeasurement/types/Prosody.d.ts +5 -5
  1128. package/dist/serialization/resources/expressionMeasurement/types/Prosody.js +1 -1
  1129. package/dist/serialization/resources/expressionMeasurement/types/ProsodyPrediction.d.ts +5 -5
  1130. package/dist/serialization/resources/expressionMeasurement/types/ProsodyPrediction.js +1 -1
  1131. package/dist/serialization/resources/expressionMeasurement/types/Queued.d.ts +3 -3
  1132. package/dist/serialization/resources/expressionMeasurement/types/Queued.js +1 -1
  1133. package/dist/serialization/resources/expressionMeasurement/types/RegistryFileDetail.d.ts +3 -3
  1134. package/dist/serialization/resources/expressionMeasurement/types/RegistryFileDetail.js +2 -2
  1135. package/dist/serialization/resources/expressionMeasurement/types/Regression.d.ts +3 -3
  1136. package/dist/serialization/resources/expressionMeasurement/types/Sentiment.d.ts +4 -4
  1137. package/dist/serialization/resources/expressionMeasurement/types/SentimentItem.d.ts +3 -3
  1138. package/dist/serialization/resources/expressionMeasurement/types/SentimentScore.d.ts +3 -3
  1139. package/dist/serialization/resources/expressionMeasurement/types/SortBy.d.ts +4 -4
  1140. package/dist/serialization/resources/expressionMeasurement/types/SortBy.js +1 -1
  1141. package/dist/serialization/resources/expressionMeasurement/types/Source.d.ts +9 -9
  1142. package/dist/serialization/resources/expressionMeasurement/types/Source.js +1 -1
  1143. package/dist/serialization/resources/expressionMeasurement/types/SourceFile.d.ts +4 -4
  1144. package/dist/serialization/resources/expressionMeasurement/types/SourceTextSource.d.ts +3 -3
  1145. package/dist/serialization/resources/expressionMeasurement/types/SourceUrl.d.ts +4 -4
  1146. package/dist/serialization/resources/expressionMeasurement/types/StateEmbeddingGeneration.d.ts +11 -11
  1147. package/dist/serialization/resources/expressionMeasurement/types/StateEmbeddingGeneration.js +1 -1
  1148. package/dist/serialization/resources/expressionMeasurement/types/StateEmbeddingGenerationCompletedEmbeddingGeneration.d.ts +4 -4
  1149. package/dist/serialization/resources/expressionMeasurement/types/StateEmbeddingGenerationFailed.d.ts +4 -4
  1150. package/dist/serialization/resources/expressionMeasurement/types/StateEmbeddingGenerationInProgress.d.ts +4 -4
  1151. package/dist/serialization/resources/expressionMeasurement/types/StateEmbeddingGenerationQueued.d.ts +4 -4
  1152. package/dist/serialization/resources/expressionMeasurement/types/StateInference.d.ts +11 -11
  1153. package/dist/serialization/resources/expressionMeasurement/types/StateInference.js +1 -1
  1154. package/dist/serialization/resources/expressionMeasurement/types/StateInferenceCompletedInference.d.ts +4 -4
  1155. package/dist/serialization/resources/expressionMeasurement/types/StateInferenceFailed.d.ts +4 -4
  1156. package/dist/serialization/resources/expressionMeasurement/types/StateInferenceInProgress.d.ts +4 -4
  1157. package/dist/serialization/resources/expressionMeasurement/types/StateInferenceQueued.d.ts +4 -4
  1158. package/dist/serialization/resources/expressionMeasurement/types/StateTlInference.d.ts +11 -11
  1159. package/dist/serialization/resources/expressionMeasurement/types/StateTlInference.js +1 -1
  1160. package/dist/serialization/resources/expressionMeasurement/types/StateTlInferenceCompletedTlInference.d.ts +4 -4
  1161. package/dist/serialization/resources/expressionMeasurement/types/StateTlInferenceFailed.d.ts +4 -4
  1162. package/dist/serialization/resources/expressionMeasurement/types/StateTlInferenceInProgress.d.ts +4 -4
  1163. package/dist/serialization/resources/expressionMeasurement/types/StateTlInferenceQueued.d.ts +4 -4
  1164. package/dist/serialization/resources/expressionMeasurement/types/StateTraining.d.ts +11 -11
  1165. package/dist/serialization/resources/expressionMeasurement/types/StateTraining.js +1 -1
  1166. package/dist/serialization/resources/expressionMeasurement/types/StateTrainingCompletedTraining.d.ts +4 -4
  1167. package/dist/serialization/resources/expressionMeasurement/types/StateTrainingFailed.d.ts +4 -4
  1168. package/dist/serialization/resources/expressionMeasurement/types/StateTrainingInProgress.d.ts +4 -4
  1169. package/dist/serialization/resources/expressionMeasurement/types/StateTrainingQueued.d.ts +4 -4
  1170. package/dist/serialization/resources/expressionMeasurement/types/Status.d.ts +4 -4
  1171. package/dist/serialization/resources/expressionMeasurement/types/Status.js +1 -1
  1172. package/dist/serialization/resources/expressionMeasurement/types/Tag.d.ts +3 -3
  1173. package/dist/serialization/resources/expressionMeasurement/types/Target.d.ts +3 -3
  1174. package/dist/serialization/resources/expressionMeasurement/types/Task.d.ts +7 -7
  1175. package/dist/serialization/resources/expressionMeasurement/types/Task.js +1 -1
  1176. package/dist/serialization/resources/expressionMeasurement/types/TaskClassification.d.ts +3 -3
  1177. package/dist/serialization/resources/expressionMeasurement/types/TaskRegression.d.ts +3 -3
  1178. package/dist/serialization/resources/expressionMeasurement/types/TextPosition.d.ts +3 -3
  1179. package/dist/serialization/resources/expressionMeasurement/types/TextSource.d.ts +3 -3
  1180. package/dist/serialization/resources/expressionMeasurement/types/TimeInterval.d.ts +3 -3
  1181. package/dist/serialization/resources/expressionMeasurement/types/TimeRange.d.ts +3 -3
  1182. package/dist/serialization/resources/expressionMeasurement/types/TlInferenceBaseRequest.d.ts +4 -4
  1183. package/dist/serialization/resources/expressionMeasurement/types/TlInferenceBaseRequest.js +3 -3
  1184. package/dist/serialization/resources/expressionMeasurement/types/TlInferencePrediction.d.ts +4 -4
  1185. package/dist/serialization/resources/expressionMeasurement/types/TlInferencePrediction.js +2 -2
  1186. package/dist/serialization/resources/expressionMeasurement/types/TlInferenceResults.d.ts +5 -5
  1187. package/dist/serialization/resources/expressionMeasurement/types/TlInferenceSourcePredictResult.d.ts +5 -5
  1188. package/dist/serialization/resources/expressionMeasurement/types/Toxicity.d.ts +4 -4
  1189. package/dist/serialization/resources/expressionMeasurement/types/ToxicityItem.d.ts +3 -3
  1190. package/dist/serialization/resources/expressionMeasurement/types/ToxicityScore.d.ts +3 -3
  1191. package/dist/serialization/resources/expressionMeasurement/types/TrainingBaseRequest.d.ts +8 -8
  1192. package/dist/serialization/resources/expressionMeasurement/types/TrainingBaseRequest.js +3 -3
  1193. package/dist/serialization/resources/expressionMeasurement/types/TrainingCustomModel.d.ts +3 -3
  1194. package/dist/serialization/resources/expressionMeasurement/types/TrainingCustomModel.js +1 -1
  1195. package/dist/serialization/resources/expressionMeasurement/types/Transcription.d.ts +4 -4
  1196. package/dist/serialization/resources/expressionMeasurement/types/Transcription.js +2 -2
  1197. package/dist/serialization/resources/expressionMeasurement/types/TranscriptionMetadata.d.ts +4 -4
  1198. package/dist/serialization/resources/expressionMeasurement/types/TranscriptionMetadata.js +1 -1
  1199. package/dist/serialization/resources/expressionMeasurement/types/Type.d.ts +4 -4
  1200. package/dist/serialization/resources/expressionMeasurement/types/Type.js +6 -1
  1201. package/dist/serialization/resources/expressionMeasurement/types/Unconfigurable.d.ts +3 -3
  1202. package/dist/serialization/resources/expressionMeasurement/types/UnionJob.d.ts +11 -11
  1203. package/dist/serialization/resources/expressionMeasurement/types/UnionJob.js +1 -1
  1204. package/dist/serialization/resources/expressionMeasurement/types/UnionJobJobEmbeddingGeneration.d.ts +4 -4
  1205. package/dist/serialization/resources/expressionMeasurement/types/UnionJobJobInference.d.ts +4 -4
  1206. package/dist/serialization/resources/expressionMeasurement/types/UnionJobJobTlInference.d.ts +4 -4
  1207. package/dist/serialization/resources/expressionMeasurement/types/UnionJobJobTraining.d.ts +4 -4
  1208. package/dist/serialization/resources/expressionMeasurement/types/UnionPredictResult.d.ts +5 -5
  1209. package/dist/serialization/resources/expressionMeasurement/types/UnionPredictResult.js +4 -1
  1210. package/dist/serialization/resources/expressionMeasurement/types/Url.d.ts +3 -3
  1211. package/dist/serialization/resources/expressionMeasurement/types/ValidationArgs.d.ts +4 -4
  1212. package/dist/serialization/resources/expressionMeasurement/types/ValidationArgs.js +1 -1
  1213. package/dist/serialization/resources/expressionMeasurement/types/When.d.ts +4 -4
  1214. package/dist/serialization/resources/expressionMeasurement/types/When.js +1 -1
  1215. package/dist/serialization/resources/expressionMeasurement/types/Window.d.ts +3 -3
  1216. package/dist/serialization/resources/expressionMeasurement/types/index.d.ts +129 -129
  1217. package/dist/serialization/resources/index.d.ts +2 -2
  1218. package/dist/wrapper/HumeClient.d.ts +2 -2
  1219. package/dist/wrapper/base64Decode.js +4 -4
  1220. package/dist/wrapper/base64Encode.js +4 -4
  1221. package/dist/wrapper/checkForAudioTracks.js +3 -3
  1222. package/dist/wrapper/convertBlobToBase64.js +4 -4
  1223. package/dist/wrapper/ensureSingleValidAudioTrack.js +3 -3
  1224. package/dist/wrapper/expressionMeasurement/ExpressionMeasurementClient.d.ts +3 -3
  1225. package/dist/wrapper/expressionMeasurement/batch/BatchClient.d.ts +3 -3
  1226. package/dist/wrapper/expressionMeasurement/batch/Job.d.ts +2 -2
  1227. package/dist/wrapper/expressionMeasurement/batch/Job.js +2 -1
  1228. package/dist/wrapper/expressionMeasurement/streaming/StreamSocket.d.ts +3 -3
  1229. package/dist/wrapper/expressionMeasurement/streaming/StreamSocket.js +20 -12
  1230. package/dist/wrapper/expressionMeasurement/streaming/StreamingClient.d.ts +4 -4
  1231. package/dist/wrapper/expressionMeasurement/streaming/StreamingClient.js +9 -9
  1232. package/dist/wrapper/fetchAccessToken.js +8 -7
  1233. package/dist/wrapper/getBrowserSupportedMimeType.js +3 -3
  1234. package/dist/wrapper/index.d.ts +10 -10
  1235. package/environments.js +1 -1
  1236. package/errors/HumeError.d.ts +1 -1
  1237. package/errors/HumeError.js +3 -3
  1238. package/errors/HumeTimeoutError.js +1 -1
  1239. package/errors/index.d.ts +2 -2
  1240. package/eslint.config.mjs +46 -0
  1241. package/index.d.ts +4 -4
  1242. package/jest.config.js +2 -2
  1243. package/justfile +3 -0
  1244. package/package.json +47 -42
  1245. package/reference.md +162 -86
  1246. package/serialization/index.d.ts +1 -1
  1247. package/serialization/resources/empathicVoice/index.d.ts +2 -2
  1248. package/serialization/resources/empathicVoice/resources/chat/index.d.ts +1 -1
  1249. package/serialization/resources/empathicVoice/resources/chat/types/PublishEvent.d.ts +11 -11
  1250. package/serialization/resources/empathicVoice/resources/chat/types/SubscribeEvent.d.ts +13 -13
  1251. package/serialization/resources/empathicVoice/resources/chat/types/index.d.ts +2 -2
  1252. package/serialization/resources/empathicVoice/resources/configs/client/index.d.ts +1 -1
  1253. package/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +11 -11
  1254. package/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfig.js +8 -6
  1255. package/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigName.d.ts +3 -3
  1256. package/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.d.ts +11 -11
  1257. package/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.js +8 -6
  1258. package/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersionDescription.d.ts +3 -3
  1259. package/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersionDescription.js +1 -1
  1260. package/serialization/resources/empathicVoice/resources/configs/client/requests/index.d.ts +4 -4
  1261. package/serialization/resources/empathicVoice/resources/configs/index.d.ts +1 -1
  1262. package/serialization/resources/empathicVoice/resources/index.d.ts +8 -8
  1263. package/serialization/resources/empathicVoice/resources/prompts/client/createPrompt.d.ts +4 -4
  1264. package/serialization/resources/empathicVoice/resources/prompts/client/createPromptVerison.d.ts +4 -4
  1265. package/serialization/resources/empathicVoice/resources/prompts/client/getPromptVersion.d.ts +4 -4
  1266. package/serialization/resources/empathicVoice/resources/prompts/client/index.d.ts +5 -5
  1267. package/serialization/resources/empathicVoice/resources/prompts/client/requests/PostedPrompt.d.ts +3 -3
  1268. package/serialization/resources/empathicVoice/resources/prompts/client/requests/PostedPrompt.js +1 -1
  1269. package/serialization/resources/empathicVoice/resources/prompts/client/requests/PostedPromptName.d.ts +3 -3
  1270. package/serialization/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersion.d.ts +3 -3
  1271. package/serialization/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersion.js +1 -1
  1272. package/serialization/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersionDescription.d.ts +3 -3
  1273. package/serialization/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersionDescription.js +1 -1
  1274. package/serialization/resources/empathicVoice/resources/prompts/client/requests/index.d.ts +4 -4
  1275. package/serialization/resources/empathicVoice/resources/prompts/client/updatePromptDescription.d.ts +4 -4
  1276. package/serialization/resources/empathicVoice/resources/prompts/index.d.ts +1 -1
  1277. package/serialization/resources/empathicVoice/resources/tools/client/createTool.d.ts +4 -4
  1278. package/serialization/resources/empathicVoice/resources/tools/client/createToolVersion.d.ts +4 -4
  1279. package/serialization/resources/empathicVoice/resources/tools/client/getToolVersion.d.ts +4 -4
  1280. package/serialization/resources/empathicVoice/resources/tools/client/index.d.ts +5 -5
  1281. package/serialization/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedTool.d.ts +3 -3
  1282. package/serialization/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedTool.js +2 -2
  1283. package/serialization/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedToolName.d.ts +3 -3
  1284. package/serialization/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedToolVersion.d.ts +3 -3
  1285. package/serialization/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedToolVersion.js +2 -2
  1286. package/serialization/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedToolVersionDescription.d.ts +3 -3
  1287. package/serialization/resources/empathicVoice/resources/tools/client/requests/PostedUserDefinedToolVersionDescription.js +1 -1
  1288. package/serialization/resources/empathicVoice/resources/tools/client/requests/index.d.ts +4 -4
  1289. package/serialization/resources/empathicVoice/resources/tools/client/updateToolDescription.d.ts +4 -4
  1290. package/serialization/resources/empathicVoice/resources/tools/index.d.ts +1 -1
  1291. package/serialization/resources/empathicVoice/types/AssistantEnd.d.ts +4 -4
  1292. package/serialization/resources/empathicVoice/types/AssistantEnd.js +2 -2
  1293. package/serialization/resources/empathicVoice/types/AssistantInput.d.ts +4 -4
  1294. package/serialization/resources/empathicVoice/types/AssistantInput.js +2 -2
  1295. package/serialization/resources/empathicVoice/types/AssistantMessage.d.ts +6 -6
  1296. package/serialization/resources/empathicVoice/types/AssistantMessage.js +3 -3
  1297. package/serialization/resources/empathicVoice/types/AudioConfiguration.d.ts +4 -4
  1298. package/serialization/resources/empathicVoice/types/AudioConfiguration.js +1 -1
  1299. package/serialization/resources/empathicVoice/types/AudioInput.d.ts +4 -4
  1300. package/serialization/resources/empathicVoice/types/AudioInput.js +2 -2
  1301. package/serialization/resources/empathicVoice/types/AudioOutput.d.ts +4 -4
  1302. package/serialization/resources/empathicVoice/types/AudioOutput.js +2 -2
  1303. package/serialization/resources/empathicVoice/types/BuiltInTool.d.ts +4 -4
  1304. package/serialization/resources/empathicVoice/types/BuiltInTool.js +1 -1
  1305. package/serialization/resources/empathicVoice/types/BuiltinToolConfig.d.ts +4 -4
  1306. package/serialization/resources/empathicVoice/types/BuiltinToolConfig.js +1 -1
  1307. package/serialization/resources/empathicVoice/types/ChatMessage.d.ts +6 -6
  1308. package/serialization/resources/empathicVoice/types/ChatMessage.js +2 -2
  1309. package/serialization/resources/empathicVoice/types/ChatMessageToolResult.d.ts +5 -5
  1310. package/serialization/resources/empathicVoice/types/ChatMessageToolResult.js +4 -1
  1311. package/serialization/resources/empathicVoice/types/ChatMetadata.d.ts +4 -4
  1312. package/serialization/resources/empathicVoice/types/ChatMetadata.js +5 -5
  1313. package/serialization/resources/empathicVoice/types/Context.d.ts +4 -4
  1314. package/serialization/resources/empathicVoice/types/ContextType.d.ts +4 -4
  1315. package/serialization/resources/empathicVoice/types/ContextType.js +1 -1
  1316. package/serialization/resources/empathicVoice/types/EmotionScores.d.ts +7 -7
  1317. package/serialization/resources/empathicVoice/types/EmotionScores.js +48 -48
  1318. package/serialization/resources/empathicVoice/types/Encoding.d.ts +4 -4
  1319. package/serialization/resources/empathicVoice/types/Encoding.js +1 -1
  1320. package/serialization/resources/empathicVoice/types/ErrorLevel.d.ts +4 -4
  1321. package/serialization/resources/empathicVoice/types/ErrorLevel.js +1 -1
  1322. package/serialization/resources/empathicVoice/types/ExtendedVoiceArgs.d.ts +4 -4
  1323. package/serialization/resources/empathicVoice/types/ExtendedVoiceArgs.js +1 -1
  1324. package/serialization/resources/empathicVoice/types/FunctionCallResponseInput.d.ts +4 -4
  1325. package/serialization/resources/empathicVoice/types/FunctionCallResponseInput.js +1 -1
  1326. package/serialization/resources/empathicVoice/types/HttpValidationError.d.ts +4 -4
  1327. package/serialization/resources/empathicVoice/types/Inference.d.ts +4 -4
  1328. package/serialization/resources/empathicVoice/types/JsonMessage.d.ts +11 -11
  1329. package/serialization/resources/empathicVoice/types/MillisecondInterval.d.ts +3 -3
  1330. package/serialization/resources/empathicVoice/types/PauseAssistantMessage.d.ts +4 -4
  1331. package/serialization/resources/empathicVoice/types/PauseAssistantMessage.js +2 -2
  1332. package/serialization/resources/empathicVoice/types/PostedBuiltinTool.d.ts +3 -3
  1333. package/serialization/resources/empathicVoice/types/PostedBuiltinTool.js +1 -1
  1334. package/serialization/resources/empathicVoice/types/PostedCustomVoice.d.ts +3 -3
  1335. package/serialization/resources/empathicVoice/types/PostedCustomVoice.js +3 -3
  1336. package/serialization/resources/empathicVoice/types/PostedCustomVoiceName.d.ts +3 -3
  1337. package/serialization/resources/empathicVoice/types/PostedEllmModel.d.ts +3 -3
  1338. package/serialization/resources/empathicVoice/types/PostedEllmModel.js +1 -1
  1339. package/serialization/resources/empathicVoice/types/PostedEventMessageSpec.d.ts +3 -3
  1340. package/serialization/resources/empathicVoice/types/PostedEventMessageSpecs.d.ts +6 -4
  1341. package/serialization/resources/empathicVoice/types/PostedEventMessageSpecs.js +3 -1
  1342. package/serialization/resources/empathicVoice/types/PostedLanguageModel.d.ts +4 -4
  1343. package/serialization/resources/empathicVoice/types/PostedLanguageModel.js +2 -2
  1344. package/serialization/resources/empathicVoice/types/PostedLanguageModelModelProvider.d.ts +4 -4
  1345. package/serialization/resources/empathicVoice/types/PostedLanguageModelModelProvider.js +8 -1
  1346. package/serialization/resources/empathicVoice/types/PostedPromptSpec.d.ts +3 -3
  1347. package/serialization/resources/empathicVoice/types/PostedTimeoutSpec.d.ts +3 -3
  1348. package/serialization/resources/empathicVoice/types/PostedTimeoutSpec.js +1 -1
  1349. package/serialization/resources/empathicVoice/types/PostedTimeoutSpecs.d.ts +5 -5
  1350. package/serialization/resources/empathicVoice/types/PostedTimeoutSpecs.js +1 -1
  1351. package/serialization/resources/empathicVoice/types/PostedTimeoutSpecsInactivity.d.ts +3 -3
  1352. package/serialization/resources/empathicVoice/types/PostedTimeoutSpecsInactivity.js +1 -1
  1353. package/serialization/resources/empathicVoice/types/PostedTimeoutSpecsMaxDuration.d.ts +3 -3
  1354. package/serialization/resources/empathicVoice/types/PostedTimeoutSpecsMaxDuration.js +1 -1
  1355. package/serialization/resources/empathicVoice/types/PostedUserDefinedToolSpec.d.ts +3 -3
  1356. package/serialization/resources/empathicVoice/types/PostedVoice.d.ts +5 -5
  1357. package/serialization/resources/empathicVoice/types/PostedVoice.js +1 -1
  1358. package/serialization/resources/empathicVoice/types/PostedVoiceName.d.ts +4 -4
  1359. package/serialization/resources/empathicVoice/types/PostedVoiceName.js +1 -1
  1360. package/serialization/resources/empathicVoice/types/ProsodyInference.d.ts +4 -4
  1361. package/serialization/resources/empathicVoice/types/ResumeAssistantMessage.d.ts +4 -4
  1362. package/serialization/resources/empathicVoice/types/ResumeAssistantMessage.js +2 -2
  1363. package/serialization/resources/empathicVoice/types/ReturnActiveChatCount.d.ts +4 -4
  1364. package/serialization/resources/empathicVoice/types/ReturnActiveChatCount.js +4 -4
  1365. package/serialization/resources/empathicVoice/types/ReturnActiveChatCountPerTag.d.ts +3 -3
  1366. package/serialization/resources/empathicVoice/types/ReturnActiveChatCountPerTag.js +1 -1
  1367. package/serialization/resources/empathicVoice/types/ReturnBuiltinTool.d.ts +5 -4
  1368. package/serialization/resources/empathicVoice/types/ReturnBuiltinTool.js +3 -2
  1369. package/serialization/resources/empathicVoice/types/ReturnBuiltinToolToolType.d.ts +10 -0
  1370. package/serialization/resources/empathicVoice/types/ReturnBuiltinToolToolType.js +31 -0
  1371. package/serialization/resources/empathicVoice/types/ReturnChat.d.ts +6 -6
  1372. package/serialization/resources/empathicVoice/types/ReturnChat.js +6 -6
  1373. package/serialization/resources/empathicVoice/types/ReturnChatEvent.d.ts +7 -5
  1374. package/serialization/resources/empathicVoice/types/ReturnChatEvent.js +7 -5
  1375. package/serialization/resources/empathicVoice/types/ReturnChatEventRole.d.ts +10 -0
  1376. package/serialization/resources/empathicVoice/types/ReturnChatEventRole.js +31 -0
  1377. package/serialization/resources/empathicVoice/types/ReturnChatEventType.d.ts +10 -0
  1378. package/serialization/resources/empathicVoice/types/ReturnChatEventType.js +38 -0
  1379. package/serialization/resources/empathicVoice/types/ReturnChatGroup.d.ts +3 -3
  1380. package/serialization/resources/empathicVoice/types/ReturnChatGroup.js +4 -4
  1381. package/serialization/resources/empathicVoice/types/ReturnChatGroupPagedChats.d.ts +4 -4
  1382. package/serialization/resources/empathicVoice/types/ReturnChatGroupPagedChats.js +8 -8
  1383. package/serialization/resources/empathicVoice/types/ReturnChatGroupPagedEvents.d.ts +6 -5
  1384. package/serialization/resources/empathicVoice/types/ReturnChatGroupPagedEvents.js +6 -5
  1385. package/serialization/resources/empathicVoice/types/ReturnChatGroupPagedEventsPaginationDirection.d.ts +10 -0
  1386. package/serialization/resources/empathicVoice/types/ReturnChatGroupPagedEventsPaginationDirection.js +31 -0
  1387. package/serialization/resources/empathicVoice/types/ReturnChatPagedEvents.d.ts +9 -8
  1388. package/serialization/resources/empathicVoice/types/ReturnChatPagedEvents.js +11 -10
  1389. package/serialization/resources/empathicVoice/types/ReturnChatPagedEventsPaginationDirection.d.ts +10 -0
  1390. package/serialization/resources/empathicVoice/types/ReturnChatPagedEventsPaginationDirection.js +31 -0
  1391. package/serialization/resources/empathicVoice/types/ReturnChatPagedEventsStatus.d.ts +10 -0
  1392. package/serialization/resources/empathicVoice/types/ReturnChatPagedEventsStatus.js +38 -0
  1393. package/serialization/resources/empathicVoice/types/ReturnChatStatus.d.ts +10 -0
  1394. package/serialization/resources/empathicVoice/types/ReturnChatStatus.js +38 -0
  1395. package/serialization/resources/empathicVoice/types/ReturnConfig.d.ts +11 -11
  1396. package/serialization/resources/empathicVoice/types/ReturnConfig.js +7 -7
  1397. package/serialization/resources/empathicVoice/types/ReturnConfigSpec.d.ts +3 -3
  1398. package/serialization/resources/empathicVoice/types/ReturnCustomVoice.d.ts +3 -3
  1399. package/serialization/resources/empathicVoice/types/ReturnCustomVoice.js +5 -5
  1400. package/serialization/resources/empathicVoice/types/ReturnEllmModel.d.ts +3 -3
  1401. package/serialization/resources/empathicVoice/types/ReturnEllmModel.js +1 -1
  1402. package/serialization/resources/empathicVoice/types/ReturnEventMessageSpec.d.ts +3 -3
  1403. package/serialization/resources/empathicVoice/types/ReturnEventMessageSpecs.d.ts +6 -4
  1404. package/serialization/resources/empathicVoice/types/ReturnEventMessageSpecs.js +3 -1
  1405. package/serialization/resources/empathicVoice/types/ReturnLanguageModel.d.ts +5 -4
  1406. package/serialization/resources/empathicVoice/types/ReturnLanguageModel.js +3 -2
  1407. package/serialization/resources/empathicVoice/types/ReturnLanguageModelModelProvider.d.ts +10 -0
  1408. package/serialization/resources/empathicVoice/types/ReturnLanguageModelModelProvider.js +38 -0
  1409. package/serialization/resources/empathicVoice/types/ReturnPagedChatGroups.d.ts +6 -5
  1410. package/serialization/resources/empathicVoice/types/ReturnPagedChatGroups.js +6 -5
  1411. package/serialization/resources/empathicVoice/types/ReturnPagedChatGroupsPaginationDirection.d.ts +10 -0
  1412. package/serialization/resources/empathicVoice/types/ReturnPagedChatGroupsPaginationDirection.js +31 -0
  1413. package/serialization/resources/empathicVoice/types/ReturnPagedChats.d.ts +6 -5
  1414. package/serialization/resources/empathicVoice/types/ReturnPagedChats.js +6 -5
  1415. package/serialization/resources/empathicVoice/types/ReturnPagedChatsPaginationDirection.d.ts +10 -0
  1416. package/serialization/resources/empathicVoice/types/ReturnPagedChatsPaginationDirection.js +31 -0
  1417. package/serialization/resources/empathicVoice/types/ReturnPagedConfigs.d.ts +4 -4
  1418. package/serialization/resources/empathicVoice/types/ReturnPagedConfigs.js +4 -4
  1419. package/serialization/resources/empathicVoice/types/ReturnPagedCustomVoices.d.ts +4 -4
  1420. package/serialization/resources/empathicVoice/types/ReturnPagedCustomVoices.js +4 -4
  1421. package/serialization/resources/empathicVoice/types/ReturnPagedPrompts.d.ts +4 -4
  1422. package/serialization/resources/empathicVoice/types/ReturnPagedPrompts.js +4 -4
  1423. package/serialization/resources/empathicVoice/types/ReturnPagedUserDefinedTools.d.ts +4 -4
  1424. package/serialization/resources/empathicVoice/types/ReturnPagedUserDefinedTools.js +4 -4
  1425. package/serialization/resources/empathicVoice/types/ReturnPrompt.d.ts +5 -4
  1426. package/serialization/resources/empathicVoice/types/ReturnPrompt.js +5 -4
  1427. package/serialization/resources/empathicVoice/types/ReturnPromptVersionType.d.ts +10 -0
  1428. package/serialization/resources/empathicVoice/types/ReturnPromptVersionType.js +31 -0
  1429. package/serialization/resources/empathicVoice/types/ReturnTimeoutSpec.d.ts +3 -3
  1430. package/serialization/resources/empathicVoice/types/ReturnTimeoutSpec.js +1 -1
  1431. package/serialization/resources/empathicVoice/types/ReturnTimeoutSpecs.d.ts +4 -4
  1432. package/serialization/resources/empathicVoice/types/ReturnTimeoutSpecs.js +1 -1
  1433. package/serialization/resources/empathicVoice/types/ReturnUserDefinedTool.d.ts +7 -5
  1434. package/serialization/resources/empathicVoice/types/ReturnUserDefinedTool.js +8 -6
  1435. package/serialization/resources/empathicVoice/types/ReturnUserDefinedToolToolType.d.ts +10 -0
  1436. package/serialization/resources/empathicVoice/types/ReturnUserDefinedToolToolType.js +31 -0
  1437. package/serialization/resources/empathicVoice/types/ReturnUserDefinedToolVersionType.d.ts +10 -0
  1438. package/serialization/resources/empathicVoice/types/ReturnUserDefinedToolVersionType.js +31 -0
  1439. package/serialization/resources/empathicVoice/types/ReturnVoice.d.ts +6 -5
  1440. package/serialization/resources/empathicVoice/types/ReturnVoice.js +3 -2
  1441. package/serialization/resources/empathicVoice/types/ReturnVoiceName.d.ts +10 -0
  1442. package/serialization/resources/empathicVoice/types/ReturnVoiceName.js +31 -0
  1443. package/serialization/resources/empathicVoice/types/Role.d.ts +4 -4
  1444. package/serialization/resources/empathicVoice/types/Role.js +1 -1
  1445. package/serialization/resources/empathicVoice/types/SessionSettings.d.ts +8 -8
  1446. package/serialization/resources/empathicVoice/types/SessionSettings.js +11 -7
  1447. package/serialization/resources/empathicVoice/types/TextInput.d.ts +4 -4
  1448. package/serialization/resources/empathicVoice/types/TextInput.js +1 -1
  1449. package/serialization/resources/empathicVoice/types/Tool.d.ts +4 -4
  1450. package/serialization/resources/empathicVoice/types/Tool.js +1 -1
  1451. package/serialization/resources/empathicVoice/types/ToolCallMessage.d.ts +5 -5
  1452. package/serialization/resources/empathicVoice/types/ToolCallMessage.js +5 -5
  1453. package/serialization/resources/empathicVoice/types/ToolErrorMessage.d.ts +6 -6
  1454. package/serialization/resources/empathicVoice/types/ToolErrorMessage.js +4 -4
  1455. package/serialization/resources/empathicVoice/types/ToolResponseMessage.d.ts +5 -5
  1456. package/serialization/resources/empathicVoice/types/ToolResponseMessage.js +5 -5
  1457. package/serialization/resources/empathicVoice/types/ToolType.d.ts +4 -4
  1458. package/serialization/resources/empathicVoice/types/ToolType.js +1 -1
  1459. package/serialization/resources/empathicVoice/types/TtsInput.d.ts +4 -4
  1460. package/serialization/resources/empathicVoice/types/TtsInput.js +1 -1
  1461. package/serialization/resources/empathicVoice/types/UserInput.d.ts +4 -4
  1462. package/serialization/resources/empathicVoice/types/UserInput.js +2 -2
  1463. package/serialization/resources/empathicVoice/types/UserInterruption.d.ts +4 -4
  1464. package/serialization/resources/empathicVoice/types/UserInterruption.js +2 -2
  1465. package/serialization/resources/empathicVoice/types/UserMessage.d.ts +7 -7
  1466. package/serialization/resources/empathicVoice/types/UserMessage.js +3 -3
  1467. package/serialization/resources/empathicVoice/types/ValidationError.d.ts +4 -4
  1468. package/serialization/resources/empathicVoice/types/ValidationErrorLocItem.d.ts +3 -3
  1469. package/serialization/resources/empathicVoice/types/ValidationErrorLocItem.js +4 -1
  1470. package/serialization/resources/empathicVoice/types/VoiceArgs.d.ts +4 -4
  1471. package/serialization/resources/empathicVoice/types/VoiceNameEnum.d.ts +4 -4
  1472. package/serialization/resources/empathicVoice/types/VoiceNameEnum.js +1 -1
  1473. package/serialization/resources/empathicVoice/types/WebSocketError.d.ts +4 -4
  1474. package/serialization/resources/empathicVoice/types/WebSocketError.js +2 -2
  1475. package/serialization/resources/empathicVoice/types/index.d.ts +99 -85
  1476. package/serialization/resources/empathicVoice/types/index.js +14 -0
  1477. package/serialization/resources/expressionMeasurement/index.d.ts +2 -2
  1478. package/serialization/resources/expressionMeasurement/resources/batch/client/getJobPredictions.d.ts +4 -4
  1479. package/serialization/resources/expressionMeasurement/resources/batch/client/index.d.ts +2 -2
  1480. package/serialization/resources/expressionMeasurement/resources/batch/client/listJobs.d.ts +4 -4
  1481. package/serialization/resources/expressionMeasurement/resources/batch/index.d.ts +1 -1
  1482. package/serialization/resources/expressionMeasurement/resources/index.d.ts +3 -3
  1483. package/serialization/resources/expressionMeasurement/resources/stream/index.d.ts +1 -1
  1484. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurst.d.ts +9 -9
  1485. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurst.js +2 -2
  1486. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstBurst.d.ts +4 -4
  1487. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstBurst.js +3 -1
  1488. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstBurstPredictionsItem.d.ts +5 -5
  1489. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstFace.d.ts +4 -4
  1490. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstFace.js +3 -1
  1491. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstFacePredictionsItem.d.ts +5 -5
  1492. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstFacePredictionsItem.js +1 -1
  1493. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstFacemesh.d.ts +4 -4
  1494. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstFacemesh.js +3 -1
  1495. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstFacemeshPredictionsItem.d.ts +4 -4
  1496. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstJobDetails.d.ts +3 -3
  1497. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstJobDetails.js +1 -1
  1498. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstLanguage.d.ts +4 -4
  1499. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstLanguage.js +3 -1
  1500. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstLanguagePredictionsItem.d.ts +7 -7
  1501. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstProsody.d.ts +4 -4
  1502. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstProsody.js +3 -1
  1503. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamBurstProsodyPredictionsItem.d.ts +5 -5
  1504. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamData.d.ts +4 -4
  1505. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamData.js +5 -5
  1506. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamDataModels.d.ts +5 -5
  1507. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamDataModels.js +9 -3
  1508. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamDataModelsFace.d.ts +3 -3
  1509. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamDataModelsFace.js +10 -6
  1510. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamDataModelsLanguage.d.ts +3 -3
  1511. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamDataModelsLanguage.js +6 -2
  1512. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamError.d.ts +4 -4
  1513. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamError.js +2 -2
  1514. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamErrorJobDetails.d.ts +3 -3
  1515. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamErrorJobDetails.js +1 -1
  1516. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamJobDetails.d.ts +4 -4
  1517. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamJobDetails.js +2 -2
  1518. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamJobDetailsJobDetails.d.ts +3 -3
  1519. package/serialization/resources/expressionMeasurement/resources/stream/types/StreamJobDetailsJobDetails.js +1 -1
  1520. package/serialization/resources/expressionMeasurement/resources/stream/types/SubscribeEvent.d.ts +6 -6
  1521. package/serialization/resources/expressionMeasurement/resources/stream/types/SubscribeEvent.js +5 -1
  1522. package/serialization/resources/expressionMeasurement/resources/stream/types/index.d.ts +21 -21
  1523. package/serialization/resources/expressionMeasurement/types/Alternative.d.ts +4 -4
  1524. package/serialization/resources/expressionMeasurement/types/Alternative.js +1 -1
  1525. package/serialization/resources/expressionMeasurement/types/Bcp47Tag.d.ts +4 -4
  1526. package/serialization/resources/expressionMeasurement/types/Bcp47Tag.js +29 -29
  1527. package/serialization/resources/expressionMeasurement/types/BoundingBox.d.ts +3 -3
  1528. package/serialization/resources/expressionMeasurement/types/BurstPrediction.d.ts +6 -6
  1529. package/serialization/resources/expressionMeasurement/types/Classification.d.ts +3 -3
  1530. package/serialization/resources/expressionMeasurement/types/CompletedEmbeddingGeneration.d.ts +3 -3
  1531. package/serialization/resources/expressionMeasurement/types/CompletedEmbeddingGeneration.js +3 -3
  1532. package/serialization/resources/expressionMeasurement/types/CompletedInference.d.ts +3 -3
  1533. package/serialization/resources/expressionMeasurement/types/CompletedInference.js +5 -5
  1534. package/serialization/resources/expressionMeasurement/types/CompletedTlInference.d.ts +3 -3
  1535. package/serialization/resources/expressionMeasurement/types/CompletedTlInference.js +5 -5
  1536. package/serialization/resources/expressionMeasurement/types/CompletedTraining.d.ts +4 -4
  1537. package/serialization/resources/expressionMeasurement/types/CompletedTraining.js +7 -5
  1538. package/serialization/resources/expressionMeasurement/types/CustomModel.d.ts +5 -5
  1539. package/serialization/resources/expressionMeasurement/types/CustomModel.js +4 -1
  1540. package/serialization/resources/expressionMeasurement/types/CustomModelId.d.ts +3 -3
  1541. package/serialization/resources/expressionMeasurement/types/CustomModelPrediction.d.ts +3 -3
  1542. package/serialization/resources/expressionMeasurement/types/CustomModelPrediction.js +1 -1
  1543. package/serialization/resources/expressionMeasurement/types/CustomModelRequest.d.ts +4 -4
  1544. package/serialization/resources/expressionMeasurement/types/CustomModelVersionId.d.ts +3 -3
  1545. package/serialization/resources/expressionMeasurement/types/CustomModelVersionId.js +1 -1
  1546. package/serialization/resources/expressionMeasurement/types/Dataset.d.ts +5 -5
  1547. package/serialization/resources/expressionMeasurement/types/DatasetId.d.ts +3 -3
  1548. package/serialization/resources/expressionMeasurement/types/DatasetVersionId.d.ts +3 -3
  1549. package/serialization/resources/expressionMeasurement/types/DatasetVersionId.js +1 -1
  1550. package/serialization/resources/expressionMeasurement/types/DescriptionsScore.d.ts +3 -3
  1551. package/serialization/resources/expressionMeasurement/types/Direction.d.ts +4 -4
  1552. package/serialization/resources/expressionMeasurement/types/Direction.js +1 -1
  1553. package/serialization/resources/expressionMeasurement/types/EmbeddingGenerationBaseRequest.d.ts +4 -4
  1554. package/serialization/resources/expressionMeasurement/types/EmbeddingGenerationBaseRequest.js +1 -1
  1555. package/serialization/resources/expressionMeasurement/types/EmotionEmbedding.d.ts +4 -4
  1556. package/serialization/resources/expressionMeasurement/types/EmotionEmbeddingItem.d.ts +3 -3
  1557. package/serialization/resources/expressionMeasurement/types/EmotionScore.d.ts +3 -3
  1558. package/serialization/resources/expressionMeasurement/types/Error_.d.ts +3 -3
  1559. package/serialization/resources/expressionMeasurement/types/EvaluationArgs.d.ts +4 -4
  1560. package/serialization/resources/expressionMeasurement/types/Face.d.ts +4 -4
  1561. package/serialization/resources/expressionMeasurement/types/Face.js +5 -5
  1562. package/serialization/resources/expressionMeasurement/types/FacePrediction.d.ts +7 -7
  1563. package/serialization/resources/expressionMeasurement/types/FacemeshPrediction.d.ts +4 -4
  1564. package/serialization/resources/expressionMeasurement/types/FacsScore.d.ts +3 -3
  1565. package/serialization/resources/expressionMeasurement/types/Failed.d.ts +3 -3
  1566. package/serialization/resources/expressionMeasurement/types/Failed.js +3 -3
  1567. package/serialization/resources/expressionMeasurement/types/File_.d.ts +3 -3
  1568. package/serialization/resources/expressionMeasurement/types/File_.js +2 -2
  1569. package/serialization/resources/expressionMeasurement/types/Granularity.d.ts +4 -4
  1570. package/serialization/resources/expressionMeasurement/types/Granularity.js +6 -1
  1571. package/serialization/resources/expressionMeasurement/types/GroupedPredictionsBurstPrediction.d.ts +4 -4
  1572. package/serialization/resources/expressionMeasurement/types/GroupedPredictionsFacePrediction.d.ts +4 -4
  1573. package/serialization/resources/expressionMeasurement/types/GroupedPredictionsFacemeshPrediction.d.ts +4 -4
  1574. package/serialization/resources/expressionMeasurement/types/GroupedPredictionsLanguagePrediction.d.ts +4 -4
  1575. package/serialization/resources/expressionMeasurement/types/GroupedPredictionsNerPrediction.d.ts +4 -4
  1576. package/serialization/resources/expressionMeasurement/types/GroupedPredictionsProsodyPrediction.d.ts +4 -4
  1577. package/serialization/resources/expressionMeasurement/types/InProgress.d.ts +3 -3
  1578. package/serialization/resources/expressionMeasurement/types/InProgress.js +2 -2
  1579. package/serialization/resources/expressionMeasurement/types/InferenceBaseRequest.d.ts +5 -5
  1580. package/serialization/resources/expressionMeasurement/types/InferenceBaseRequest.js +2 -2
  1581. package/serialization/resources/expressionMeasurement/types/InferencePrediction.d.ts +4 -4
  1582. package/serialization/resources/expressionMeasurement/types/InferenceRequest.d.ts +6 -6
  1583. package/serialization/resources/expressionMeasurement/types/InferenceRequest.js +2 -2
  1584. package/serialization/resources/expressionMeasurement/types/InferenceResults.d.ts +5 -5
  1585. package/serialization/resources/expressionMeasurement/types/InferenceSourcePredictResult.d.ts +5 -5
  1586. package/serialization/resources/expressionMeasurement/types/JobEmbeddingGeneration.d.ts +5 -5
  1587. package/serialization/resources/expressionMeasurement/types/JobEmbeddingGeneration.js +2 -2
  1588. package/serialization/resources/expressionMeasurement/types/JobId.d.ts +3 -3
  1589. package/serialization/resources/expressionMeasurement/types/JobId.js +1 -1
  1590. package/serialization/resources/expressionMeasurement/types/JobInference.d.ts +5 -5
  1591. package/serialization/resources/expressionMeasurement/types/JobInference.js +2 -2
  1592. package/serialization/resources/expressionMeasurement/types/JobTlInference.d.ts +5 -5
  1593. package/serialization/resources/expressionMeasurement/types/JobTlInference.js +2 -2
  1594. package/serialization/resources/expressionMeasurement/types/JobTraining.d.ts +5 -5
  1595. package/serialization/resources/expressionMeasurement/types/JobTraining.js +2 -2
  1596. package/serialization/resources/expressionMeasurement/types/Language.d.ts +5 -5
  1597. package/serialization/resources/expressionMeasurement/types/Language.js +1 -1
  1598. package/serialization/resources/expressionMeasurement/types/LanguagePrediction.d.ts +8 -8
  1599. package/serialization/resources/expressionMeasurement/types/LanguagePrediction.js +1 -1
  1600. package/serialization/resources/expressionMeasurement/types/Models.d.ts +8 -8
  1601. package/serialization/resources/expressionMeasurement/types/ModelsPredictions.d.ts +9 -9
  1602. package/serialization/resources/expressionMeasurement/types/Ner.d.ts +3 -3
  1603. package/serialization/resources/expressionMeasurement/types/Ner.js +1 -1
  1604. package/serialization/resources/expressionMeasurement/types/NerPrediction.d.ts +6 -6
  1605. package/serialization/resources/expressionMeasurement/types/NerPrediction.js +3 -3
  1606. package/serialization/resources/expressionMeasurement/types/Null.d.ts +3 -3
  1607. package/serialization/resources/expressionMeasurement/types/PositionInterval.d.ts +3 -3
  1608. package/serialization/resources/expressionMeasurement/types/PredictionsOptionalNullBurstPrediction.d.ts +5 -5
  1609. package/serialization/resources/expressionMeasurement/types/PredictionsOptionalNullBurstPrediction.js +1 -1
  1610. package/serialization/resources/expressionMeasurement/types/PredictionsOptionalNullFacePrediction.d.ts +5 -5
  1611. package/serialization/resources/expressionMeasurement/types/PredictionsOptionalNullFacePrediction.js +1 -1
  1612. package/serialization/resources/expressionMeasurement/types/PredictionsOptionalNullFacemeshPrediction.d.ts +5 -5
  1613. package/serialization/resources/expressionMeasurement/types/PredictionsOptionalNullFacemeshPrediction.js +1 -1
  1614. package/serialization/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataLanguagePrediction.d.ts +5 -5
  1615. package/serialization/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataLanguagePrediction.js +1 -1
  1616. package/serialization/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataNerPrediction.d.ts +5 -5
  1617. package/serialization/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataNerPrediction.js +1 -1
  1618. package/serialization/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataProsodyPrediction.d.ts +5 -5
  1619. package/serialization/resources/expressionMeasurement/types/PredictionsOptionalTranscriptionMetadataProsodyPrediction.js +1 -1
  1620. package/serialization/resources/expressionMeasurement/types/Prosody.d.ts +5 -5
  1621. package/serialization/resources/expressionMeasurement/types/Prosody.js +1 -1
  1622. package/serialization/resources/expressionMeasurement/types/ProsodyPrediction.d.ts +5 -5
  1623. package/serialization/resources/expressionMeasurement/types/ProsodyPrediction.js +1 -1
  1624. package/serialization/resources/expressionMeasurement/types/Queued.d.ts +3 -3
  1625. package/serialization/resources/expressionMeasurement/types/Queued.js +1 -1
  1626. package/serialization/resources/expressionMeasurement/types/RegistryFileDetail.d.ts +3 -3
  1627. package/serialization/resources/expressionMeasurement/types/RegistryFileDetail.js +2 -2
  1628. package/serialization/resources/expressionMeasurement/types/Regression.d.ts +3 -3
  1629. package/serialization/resources/expressionMeasurement/types/Sentiment.d.ts +4 -4
  1630. package/serialization/resources/expressionMeasurement/types/SentimentItem.d.ts +3 -3
  1631. package/serialization/resources/expressionMeasurement/types/SentimentScore.d.ts +3 -3
  1632. package/serialization/resources/expressionMeasurement/types/SortBy.d.ts +4 -4
  1633. package/serialization/resources/expressionMeasurement/types/SortBy.js +1 -1
  1634. package/serialization/resources/expressionMeasurement/types/Source.d.ts +9 -9
  1635. package/serialization/resources/expressionMeasurement/types/Source.js +1 -1
  1636. package/serialization/resources/expressionMeasurement/types/SourceFile.d.ts +4 -4
  1637. package/serialization/resources/expressionMeasurement/types/SourceTextSource.d.ts +3 -3
  1638. package/serialization/resources/expressionMeasurement/types/SourceUrl.d.ts +4 -4
  1639. package/serialization/resources/expressionMeasurement/types/StateEmbeddingGeneration.d.ts +11 -11
  1640. package/serialization/resources/expressionMeasurement/types/StateEmbeddingGeneration.js +1 -1
  1641. package/serialization/resources/expressionMeasurement/types/StateEmbeddingGenerationCompletedEmbeddingGeneration.d.ts +4 -4
  1642. package/serialization/resources/expressionMeasurement/types/StateEmbeddingGenerationFailed.d.ts +4 -4
  1643. package/serialization/resources/expressionMeasurement/types/StateEmbeddingGenerationInProgress.d.ts +4 -4
  1644. package/serialization/resources/expressionMeasurement/types/StateEmbeddingGenerationQueued.d.ts +4 -4
  1645. package/serialization/resources/expressionMeasurement/types/StateInference.d.ts +11 -11
  1646. package/serialization/resources/expressionMeasurement/types/StateInference.js +1 -1
  1647. package/serialization/resources/expressionMeasurement/types/StateInferenceCompletedInference.d.ts +4 -4
  1648. package/serialization/resources/expressionMeasurement/types/StateInferenceFailed.d.ts +4 -4
  1649. package/serialization/resources/expressionMeasurement/types/StateInferenceInProgress.d.ts +4 -4
  1650. package/serialization/resources/expressionMeasurement/types/StateInferenceQueued.d.ts +4 -4
  1651. package/serialization/resources/expressionMeasurement/types/StateTlInference.d.ts +11 -11
  1652. package/serialization/resources/expressionMeasurement/types/StateTlInference.js +1 -1
  1653. package/serialization/resources/expressionMeasurement/types/StateTlInferenceCompletedTlInference.d.ts +4 -4
  1654. package/serialization/resources/expressionMeasurement/types/StateTlInferenceFailed.d.ts +4 -4
  1655. package/serialization/resources/expressionMeasurement/types/StateTlInferenceInProgress.d.ts +4 -4
  1656. package/serialization/resources/expressionMeasurement/types/StateTlInferenceQueued.d.ts +4 -4
  1657. package/serialization/resources/expressionMeasurement/types/StateTraining.d.ts +11 -11
  1658. package/serialization/resources/expressionMeasurement/types/StateTraining.js +1 -1
  1659. package/serialization/resources/expressionMeasurement/types/StateTrainingCompletedTraining.d.ts +4 -4
  1660. package/serialization/resources/expressionMeasurement/types/StateTrainingFailed.d.ts +4 -4
  1661. package/serialization/resources/expressionMeasurement/types/StateTrainingInProgress.d.ts +4 -4
  1662. package/serialization/resources/expressionMeasurement/types/StateTrainingQueued.d.ts +4 -4
  1663. package/serialization/resources/expressionMeasurement/types/Status.d.ts +4 -4
  1664. package/serialization/resources/expressionMeasurement/types/Status.js +1 -1
  1665. package/serialization/resources/expressionMeasurement/types/Tag.d.ts +3 -3
  1666. package/serialization/resources/expressionMeasurement/types/Target.d.ts +3 -3
  1667. package/serialization/resources/expressionMeasurement/types/Task.d.ts +7 -7
  1668. package/serialization/resources/expressionMeasurement/types/Task.js +1 -1
  1669. package/serialization/resources/expressionMeasurement/types/TaskClassification.d.ts +3 -3
  1670. package/serialization/resources/expressionMeasurement/types/TaskRegression.d.ts +3 -3
  1671. package/serialization/resources/expressionMeasurement/types/TextPosition.d.ts +3 -3
  1672. package/serialization/resources/expressionMeasurement/types/TextSource.d.ts +3 -3
  1673. package/serialization/resources/expressionMeasurement/types/TimeInterval.d.ts +3 -3
  1674. package/serialization/resources/expressionMeasurement/types/TimeRange.d.ts +3 -3
  1675. package/serialization/resources/expressionMeasurement/types/TlInferenceBaseRequest.d.ts +4 -4
  1676. package/serialization/resources/expressionMeasurement/types/TlInferenceBaseRequest.js +3 -3
  1677. package/serialization/resources/expressionMeasurement/types/TlInferencePrediction.d.ts +4 -4
  1678. package/serialization/resources/expressionMeasurement/types/TlInferencePrediction.js +2 -2
  1679. package/serialization/resources/expressionMeasurement/types/TlInferenceResults.d.ts +5 -5
  1680. package/serialization/resources/expressionMeasurement/types/TlInferenceSourcePredictResult.d.ts +5 -5
  1681. package/serialization/resources/expressionMeasurement/types/Toxicity.d.ts +4 -4
  1682. package/serialization/resources/expressionMeasurement/types/ToxicityItem.d.ts +3 -3
  1683. package/serialization/resources/expressionMeasurement/types/ToxicityScore.d.ts +3 -3
  1684. package/serialization/resources/expressionMeasurement/types/TrainingBaseRequest.d.ts +8 -8
  1685. package/serialization/resources/expressionMeasurement/types/TrainingBaseRequest.js +3 -3
  1686. package/serialization/resources/expressionMeasurement/types/TrainingCustomModel.d.ts +3 -3
  1687. package/serialization/resources/expressionMeasurement/types/TrainingCustomModel.js +1 -1
  1688. package/serialization/resources/expressionMeasurement/types/Transcription.d.ts +4 -4
  1689. package/serialization/resources/expressionMeasurement/types/Transcription.js +2 -2
  1690. package/serialization/resources/expressionMeasurement/types/TranscriptionMetadata.d.ts +4 -4
  1691. package/serialization/resources/expressionMeasurement/types/TranscriptionMetadata.js +1 -1
  1692. package/serialization/resources/expressionMeasurement/types/Type.d.ts +4 -4
  1693. package/serialization/resources/expressionMeasurement/types/Type.js +6 -1
  1694. package/serialization/resources/expressionMeasurement/types/Unconfigurable.d.ts +3 -3
  1695. package/serialization/resources/expressionMeasurement/types/UnionJob.d.ts +11 -11
  1696. package/serialization/resources/expressionMeasurement/types/UnionJob.js +1 -1
  1697. package/serialization/resources/expressionMeasurement/types/UnionJobJobEmbeddingGeneration.d.ts +4 -4
  1698. package/serialization/resources/expressionMeasurement/types/UnionJobJobInference.d.ts +4 -4
  1699. package/serialization/resources/expressionMeasurement/types/UnionJobJobTlInference.d.ts +4 -4
  1700. package/serialization/resources/expressionMeasurement/types/UnionJobJobTraining.d.ts +4 -4
  1701. package/serialization/resources/expressionMeasurement/types/UnionPredictResult.d.ts +5 -5
  1702. package/serialization/resources/expressionMeasurement/types/UnionPredictResult.js +4 -1
  1703. package/serialization/resources/expressionMeasurement/types/Url.d.ts +3 -3
  1704. package/serialization/resources/expressionMeasurement/types/ValidationArgs.d.ts +4 -4
  1705. package/serialization/resources/expressionMeasurement/types/ValidationArgs.js +1 -1
  1706. package/serialization/resources/expressionMeasurement/types/When.d.ts +4 -4
  1707. package/serialization/resources/expressionMeasurement/types/When.js +1 -1
  1708. package/serialization/resources/expressionMeasurement/types/Window.d.ts +3 -3
  1709. package/serialization/resources/expressionMeasurement/types/index.d.ts +129 -129
  1710. package/serialization/resources/index.d.ts +2 -2
  1711. package/tsconfig.dev.json +11 -0
  1712. package/wrapper/HumeClient.d.ts +2 -2
  1713. package/wrapper/base64Decode.js +4 -4
  1714. package/wrapper/base64Encode.js +4 -4
  1715. package/wrapper/checkForAudioTracks.js +3 -3
  1716. package/wrapper/convertBlobToBase64.js +4 -4
  1717. package/wrapper/ensureSingleValidAudioTrack.js +3 -3
  1718. package/wrapper/expressionMeasurement/ExpressionMeasurementClient.d.ts +3 -3
  1719. package/wrapper/expressionMeasurement/batch/BatchClient.d.ts +3 -3
  1720. package/wrapper/expressionMeasurement/batch/Job.d.ts +2 -2
  1721. package/wrapper/expressionMeasurement/batch/Job.js +2 -1
  1722. package/wrapper/expressionMeasurement/streaming/StreamSocket.d.ts +3 -3
  1723. package/wrapper/expressionMeasurement/streaming/StreamSocket.js +20 -12
  1724. package/wrapper/expressionMeasurement/streaming/StreamingClient.d.ts +4 -4
  1725. package/wrapper/expressionMeasurement/streaming/StreamingClient.js +9 -9
  1726. package/wrapper/fetchAccessToken.js +8 -7
  1727. package/wrapper/getBrowserSupportedMimeType.js +3 -3
  1728. package/wrapper/index.d.ts +10 -10
@@ -1,14 +1,19 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
+ import * as Hume from '../../../index';
4
5
  /**
5
6
  * A specific LanguageModel
6
7
  */
7
8
  export interface ReturnLanguageModel {
8
- /** The provider of this model. Based on the enum modelProvider. */
9
- modelProvider?: string;
10
- /** String that specifies the model to use with modelProvider. */
9
+ /** The provider of the supplemental language model. */
10
+ modelProvider?: Hume.empathicVoice.ReturnLanguageModelModelProvider;
11
+ /** String that specifies the language model to use with `model_provider`. */
11
12
  modelResource?: string;
12
- /** Model temperature. */
13
+ /**
14
+ * The model temperature, with values between 0 to 1 (inclusive).
15
+ *
16
+ * Controls the randomness of the LLM’s output, with values closer to 0 yielding focused, deterministic responses and values closer to 1 producing more creative, diverse responses.
17
+ */
13
18
  temperature?: number;
14
19
  }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * The provider of the supplemental language model.
6
+ */
7
+ export declare type ReturnLanguageModelModelProvider = 'OPEN_AI' | 'CUSTOM_LANGUAGE_MODEL' | 'ANTHROPIC' | 'FIREWORKS' | 'GROQ' | 'GOOGLE';
8
+ export declare const ReturnLanguageModelModelProvider: {
9
+ readonly OpenAi: "OPEN_AI";
10
+ readonly CustomLanguageModel: "CUSTOM_LANGUAGE_MODEL";
11
+ readonly Anthropic: "ANTHROPIC";
12
+ readonly Fireworks: "FIREWORKS";
13
+ readonly Groq: "GROQ";
14
+ readonly Google: "GOOGLE";
15
+ };
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ReturnLanguageModelModelProvider = void 0;
7
+ exports.ReturnLanguageModelModelProvider = {
8
+ OpenAi: 'OPEN_AI',
9
+ CustomLanguageModel: 'CUSTOM_LANGUAGE_MODEL',
10
+ Anthropic: 'ANTHROPIC',
11
+ Fireworks: 'FIREWORKS',
12
+ Groq: 'GROQ',
13
+ Google: 'GOOGLE',
14
+ };
@@ -1,19 +1,31 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- import * as Hume from "../../../index";
4
+ import * as Hume from '../../../index';
5
5
  /**
6
6
  * A paginated list of chat_groups returned from the server
7
7
  */
8
8
  export interface ReturnPagedChatGroups {
9
- /** The page number of the returned results. */
9
+ /**
10
+ * The page number of the returned list.
11
+ *
12
+ * This value corresponds to the `page_number` parameter specified in the request. Pagination uses zero-based indexing.
13
+ */
10
14
  pageNumber: number;
11
- /** The number of results returned per page. */
15
+ /**
16
+ * The maximum number of items returned per page.
17
+ *
18
+ * This value corresponds to the `page_size` parameter specified in the request.
19
+ */
12
20
  pageSize: number;
13
- /** The total number of pages in the collection */
21
+ /** The total number of pages in the collection. */
14
22
  totalPages: number;
15
- /** The direction of the pagination (ASC or DESC). */
16
- paginationDirection: string;
17
- /** List of chat_groups and their metadata returned for the specified page number and page size. */
23
+ /**
24
+ * Indicates the order in which the paginated results are presented, based on their creation date.
25
+ *
26
+ * It shows `ASC` for ascending order (chronological, with the oldest records first) or `DESC` for descending order (reverse-chronological, with the newest records first). This value corresponds to the `ascending_order` query parameter used in the request.
27
+ */
28
+ paginationDirection: Hume.empathicVoice.ReturnPagedChatGroupsPaginationDirection;
29
+ /** List of Chat Groups and their metadata returned for the specified `page_number` and `page_size`. */
18
30
  chatGroupsPage: Hume.empathicVoice.ReturnChatGroup[];
19
31
  }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Indicates the order in which the paginated results are presented, based on their creation date.
6
+ *
7
+ * It shows `ASC` for ascending order (chronological, with the oldest records first) or `DESC` for descending order (reverse-chronological, with the newest records first). This value corresponds to the `ascending_order` query parameter used in the request.
8
+ */
9
+ export declare type ReturnPagedChatGroupsPaginationDirection = 'ASC' | 'DESC';
10
+ export declare const ReturnPagedChatGroupsPaginationDirection: {
11
+ readonly Asc: "ASC";
12
+ readonly Desc: "DESC";
13
+ };
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ReturnPagedChatGroupsPaginationDirection = void 0;
7
+ exports.ReturnPagedChatGroupsPaginationDirection = {
8
+ Asc: 'ASC',
9
+ Desc: 'DESC',
10
+ };
@@ -1,19 +1,31 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- import * as Hume from "../../../index";
4
+ import * as Hume from '../../../index';
5
5
  /**
6
6
  * A paginated list of chats returned from the server
7
7
  */
8
8
  export interface ReturnPagedChats {
9
- /** The page number of the returned results. */
9
+ /**
10
+ * The page number of the returned list.
11
+ *
12
+ * This value corresponds to the `page_number` parameter specified in the request. Pagination uses zero-based indexing.
13
+ */
10
14
  pageNumber: number;
11
- /** The number of results returned per page. */
15
+ /**
16
+ * The maximum number of items returned per page.
17
+ *
18
+ * This value corresponds to the `page_size` parameter specified in the request.
19
+ */
12
20
  pageSize: number;
13
- /** The total number of pages in the collection */
21
+ /** The total number of pages in the collection. */
14
22
  totalPages: number;
15
- /** The direction of the pagination (ASC or DESC). */
16
- paginationDirection: string;
17
- /** List of chats and their metadata returned for the specified page number and page size. */
23
+ /**
24
+ * Indicates the order in which the paginated results are presented, based on their creation date.
25
+ *
26
+ * It shows `ASC` for ascending order (chronological, with the oldest records first) or `DESC` for descending order (reverse-chronological, with the newest records first). This value corresponds to the `ascending_order` query parameter used in the request.
27
+ */
28
+ paginationDirection: Hume.empathicVoice.ReturnPagedChatsPaginationDirection;
29
+ /** List of Chats and their metadata returned for the specified `page_number` and `page_size`. */
18
30
  chatsPage: Hume.empathicVoice.ReturnChat[];
19
31
  }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Indicates the order in which the paginated results are presented, based on their creation date.
6
+ *
7
+ * It shows `ASC` for ascending order (chronological, with the oldest records first) or `DESC` for descending order (reverse-chronological, with the newest records first). This value corresponds to the `ascending_order` query parameter used in the request.
8
+ */
9
+ export declare type ReturnPagedChatsPaginationDirection = 'ASC' | 'DESC';
10
+ export declare const ReturnPagedChatsPaginationDirection: {
11
+ readonly Asc: "ASC";
12
+ readonly Desc: "DESC";
13
+ };
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ReturnPagedChatsPaginationDirection = void 0;
7
+ exports.ReturnPagedChatsPaginationDirection = {
8
+ Asc: 'ASC',
9
+ Desc: 'DESC',
10
+ };
@@ -1,17 +1,25 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- import * as Hume from "../../../index";
4
+ import * as Hume from '../../../index';
5
5
  /**
6
6
  * A paginated list of config versions returned from the server
7
7
  */
8
8
  export interface ReturnPagedConfigs {
9
- /** The page number of the returned results. */
9
+ /**
10
+ * The page number of the returned list.
11
+ *
12
+ * This value corresponds to the `page_number` parameter specified in the request. Pagination uses zero-based indexing.
13
+ */
10
14
  pageNumber?: number;
11
- /** The number of results returned per page. */
15
+ /**
16
+ * The maximum number of items returned per page.
17
+ *
18
+ * This value corresponds to the `page_size` parameter specified in the request.
19
+ */
12
20
  pageSize?: number;
13
- /** The total number of pages in the collection */
21
+ /** The total number of pages in the collection. */
14
22
  totalPages: number;
15
- /** List of prompts returned for the specified page number and page size. */
23
+ /** List of configs returned for the specified `page_number` and `page_size`. */
16
24
  configsPage?: Hume.empathicVoice.ReturnConfig[];
17
25
  }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- import * as Hume from "../../../index";
4
+ import * as Hume from '../../../index';
5
5
  /**
6
6
  * A paginated list of custom voices returned from the server
7
7
  */
@@ -1,17 +1,25 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- import * as Hume from "../../../index";
4
+ import * as Hume from '../../../index';
5
5
  /**
6
6
  * A paginated list of prompt versions returned from the server
7
7
  */
8
8
  export interface ReturnPagedPrompts {
9
- /** The page number of the returned results. */
9
+ /**
10
+ * The page number of the returned list.
11
+ *
12
+ * This value corresponds to the `page_number` parameter specified in the request. Pagination uses zero-based indexing.
13
+ */
10
14
  pageNumber: number;
11
- /** The number of results returned per page. */
15
+ /**
16
+ * The maximum number of items returned per page.
17
+ *
18
+ * This value corresponds to the `page_size` parameter specified in the request.
19
+ */
12
20
  pageSize: number;
13
- /** The total number of pages in the collection */
21
+ /** The total number of pages in the collection. */
14
22
  totalPages: number;
15
- /** List of prompts returned for the specified page number and page size. */
23
+ /** List of prompts returned for the specified `page_number` and `page_size`. */
16
24
  promptsPage: (Hume.empathicVoice.ReturnPrompt | undefined)[];
17
25
  }
@@ -1,17 +1,25 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- import * as Hume from "../../../index";
4
+ import * as Hume from '../../../index';
5
5
  /**
6
6
  * A paginated list of user defined tool versions returned from the server
7
7
  */
8
8
  export interface ReturnPagedUserDefinedTools {
9
- /** The page number of the returned results. */
9
+ /**
10
+ * The page number of the returned list.
11
+ *
12
+ * This value corresponds to the `page_number` parameter specified in the request. Pagination uses zero-based indexing.
13
+ */
10
14
  pageNumber: number;
11
- /** The number of results returned per page. */
15
+ /**
16
+ * The maximum number of items returned per page.
17
+ *
18
+ * This value corresponds to the `page_size` parameter specified in the request.
19
+ */
12
20
  pageSize: number;
13
- /** The total number of pages in the collection */
21
+ /** The total number of pages in the collection. */
14
22
  totalPages: number;
15
- /** List of tools returned for the specified page number and page size. */
23
+ /** List of tools returned for the specified `page_number` and `page_size`. */
16
24
  toolsPage: (Hume.empathicVoice.ReturnUserDefinedTool | undefined)[];
17
25
  }
@@ -1,24 +1,37 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
+ import * as Hume from '../../../index';
4
5
  /**
5
- * A specific prompt version returned from the server
6
+ * A Prompt associated with this Config.
6
7
  */
7
8
  export interface ReturnPrompt {
8
9
  /** Identifier for a Prompt. Formatted as a UUID. */
9
10
  id: string;
10
- /** Version number for a Prompt. Version numbers should be integers. The combination of configId and version number is unique. */
11
+ /**
12
+ * Version number for a Prompt.
13
+ *
14
+ * Prompts, as well as Configs and Tools, are versioned. This versioning system supports iterative development, allowing you to progressively refine prompts and revert to previous versions if needed.
15
+ *
16
+ * Version numbers are integer values representing different iterations of the Prompt. Each update to the Prompt increments its version number.
17
+ */
11
18
  version: number;
12
- /** Indicates whether this prompt is using a fixed version number or auto-updating to the latest version. Values from the VersionType enum. */
13
- versionType: string;
14
- /** Description that is appended to a specific version of a Prompt. */
19
+ /** Versioning method for a Prompt. Either `FIXED` for using a fixed version number or `LATEST` for auto-updating to the latest version. */
20
+ versionType: Hume.empathicVoice.ReturnPromptVersionType;
21
+ /** An optional description of the Prompt version. */
15
22
  versionDescription?: string;
16
23
  /** Name applied to all versions of a particular Prompt. */
17
24
  name: string;
18
- /** The timestamp when the first version of this prompt was created. */
25
+ /** Time at which the Prompt was created. Measured in seconds since the Unix epoch. */
19
26
  createdOn: number;
20
- /** The timestamp when this version of the prompt was created. */
27
+ /** Time at which the Prompt was last modified. Measured in seconds since the Unix epoch. */
21
28
  modifiedOn: number;
22
- /** Text used for this version of the Prompt. */
29
+ /**
30
+ * Instructions used to shape EVI’s behavior, responses, and style.
31
+ *
32
+ * You can use the Prompt to define a specific goal or role for EVI, specifying how it should act or what it should focus on during the conversation. For example, EVI can be instructed to act as a customer support representative, a fitness coach, or a travel advisor, each with its own set of behaviors and response styles.
33
+ *
34
+ * For help writing a system prompt, see our [Prompting Guide](/docs/empathic-voice-interface-evi/prompting).
35
+ */
23
36
  text: string;
24
37
  }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Versioning method for a Prompt. Either `FIXED` for using a fixed version number or `LATEST` for auto-updating to the latest version.
6
+ */
7
+ export declare type ReturnPromptVersionType = 'FIXED' | 'LATEST';
8
+ export declare const ReturnPromptVersionType: {
9
+ readonly Fixed: "FIXED";
10
+ readonly Latest: "LATEST";
11
+ };
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ReturnPromptVersionType = void 0;
7
+ exports.ReturnPromptVersionType = {
8
+ Fixed: 'FIXED',
9
+ Latest: 'LATEST',
10
+ };
@@ -5,8 +5,12 @@
5
5
  * A specific timeout configuration to be returned from the server
6
6
  */
7
7
  export interface ReturnTimeoutSpec {
8
- /** Boolean indicating if this event message is enabled. */
8
+ /**
9
+ * Boolean indicating if this timeout is enabled.
10
+ *
11
+ * If set to false, EVI will not timeout due to a specified duration being reached. However, the conversation will eventually disconnect after 1,800 seconds (30 minutes), which is the maximum WebSocket duration limit for EVI.
12
+ */
9
13
  enabled: boolean;
10
- /** Duration in seconds for the timeout. */
14
+ /** Duration in seconds for the timeout (e.g. 600 seconds represents 10 minutes). */
11
15
  durationSecs?: number;
12
16
  }
@@ -1,11 +1,23 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- import * as Hume from "../../../index";
4
+ import * as Hume from '../../../index';
5
5
  /**
6
- * Collection of timeout specs to be returned from the server
6
+ * Collection of timeout specifications returned by the server.
7
+ *
8
+ * Timeouts are sent by the server when specific time-based events occur during a chat session. These specifications set the inactivity timeout and the maximum duration an EVI WebSocket connection can stay open before it is automatically disconnected.
7
9
  */
8
10
  export interface ReturnTimeoutSpecs {
11
+ /**
12
+ * Specifies the duration of user inactivity (in seconds) after which the EVI WebSocket connection will be automatically disconnected. Default is 600 seconds (10 minutes).
13
+ *
14
+ * Accepts a minimum value of 1 second and a maximum value of 1,800 seconds.
15
+ */
9
16
  inactivity: Hume.empathicVoice.ReturnTimeoutSpec;
17
+ /**
18
+ * Specifies the maximum allowed duration (in seconds) for an EVI WebSocket connection before it is automatically disconnected. Default is 1,800 seconds (30 minutes).
19
+ *
20
+ * Accepts a minimum value of 1 second and a maximum value of 1,800 seconds.
21
+ */
10
22
  maxDuration: Hume.empathicVoice.ReturnTimeoutSpec;
11
23
  }
@@ -1,30 +1,41 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
+ import * as Hume from '../../../index';
4
5
  /**
5
6
  * A specific tool version returned from the server
6
7
  */
7
8
  export interface ReturnUserDefinedTool {
8
- /** Type of Tool. Values from the ToolType enum. */
9
- toolType: string;
9
+ /** Type of Tool. Either `BUILTIN` for natively implemented tools, like web search, or `FUNCTION` for user-defined tools. */
10
+ toolType: Hume.empathicVoice.ReturnUserDefinedToolToolType;
10
11
  /** Identifier for a Tool. Formatted as a UUID. */
11
12
  id: string;
12
- /** Version number for a Tool. Version numbers should be integers. The combination of configId and version number is unique. */
13
+ /**
14
+ * Version number for a Tool.
15
+ *
16
+ * Tools, as well as Configs and Prompts, are versioned. This versioning system supports iterative development, allowing you to progressively refine tools and revert to previous versions if needed.
17
+ *
18
+ * Version numbers are integer values representing different iterations of the Tool. Each update to the Tool increments its version number.
19
+ */
13
20
  version: number;
14
- /** Indicates whether this tool is using a fixed version number or auto-updating to the latest version. Values from the VersionType enum. */
15
- versionType: string;
16
- /** Description that is appended to a specific version of a Tool. */
21
+ /** Versioning method for a Tool. Either `FIXED` for using a fixed version number or `LATEST` for auto-updating to the latest version. */
22
+ versionType: Hume.empathicVoice.ReturnUserDefinedToolVersionType;
23
+ /** An optional description of the Tool version. */
17
24
  versionDescription?: string;
18
25
  /** Name applied to all versions of a particular Tool. */
19
26
  name: string;
20
- /** The timestamp when the first version of this tool was created. */
27
+ /** Time at which the Tool was created. Measured in seconds since the Unix epoch. */
21
28
  createdOn: number;
22
- /** The timestamp when this version of the tool was created. */
29
+ /** Time at which the Tool was last modified. Measured in seconds since the Unix epoch. */
23
30
  modifiedOn: number;
24
- /** Text to use if the tool fails to generate content. */
31
+ /** Optional text passed to the supplemental LLM in place of the tool call result. The LLM then uses this text to generate a response back to the user, ensuring continuity in the conversation if the Tool errors. */
25
32
  fallbackContent?: string;
26
- /** Text describing what the tool does. */
33
+ /** An optional description of what the Tool does, used by the supplemental LLM to choose when and how to call the function. */
27
34
  description?: string;
28
- /** Stringified JSON defining the parameters used by this version of the Tool. */
35
+ /**
36
+ * Stringified JSON defining the parameters used by this version of the Tool.
37
+ *
38
+ * These parameters define the inputs needed for the Tool’s execution, including the expected data type and description for each input field. Structured as a stringified JSON schema, this format ensures the tool receives data in the expected format.
39
+ */
29
40
  parameters: string;
30
41
  }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Type of Tool. Either `BUILTIN` for natively implemented tools, like web search, or `FUNCTION` for user-defined tools.
6
+ */
7
+ export declare type ReturnUserDefinedToolToolType = 'BUILTIN' | 'FUNCTION';
8
+ export declare const ReturnUserDefinedToolToolType: {
9
+ readonly Builtin: "BUILTIN";
10
+ readonly Function: "FUNCTION";
11
+ };
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ReturnUserDefinedToolToolType = void 0;
7
+ exports.ReturnUserDefinedToolToolType = {
8
+ Builtin: 'BUILTIN',
9
+ Function: 'FUNCTION',
10
+ };
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Versioning method for a Tool. Either `FIXED` for using a fixed version number or `LATEST` for auto-updating to the latest version.
6
+ */
7
+ export declare type ReturnUserDefinedToolVersionType = 'FIXED' | 'LATEST';
8
+ export declare const ReturnUserDefinedToolVersionType: {
9
+ readonly Fixed: "FIXED";
10
+ readonly Latest: "LATEST";
11
+ };
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ReturnUserDefinedToolVersionType = void 0;
7
+ exports.ReturnUserDefinedToolVersionType = {
8
+ Fixed: 'FIXED',
9
+ Latest: 'LATEST',
10
+ };
@@ -1,12 +1,13 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
+ import * as Hume from '../../../index';
4
5
  /**
5
6
  * A specific voice specification
6
7
  */
7
8
  export interface ReturnVoice {
8
- /** The provider of the voice to use. Based on the enum VoiceProvider. */
9
- provider: string;
9
+ /** The provider of the voice to use. Currently, only `HUME_AI` is supported as the voice provider. */
10
+ provider: 'HUME_AI';
10
11
  /** String with the name of the voice to use. Maximum length of 75 characters. Will be converted to all-uppercase. */
11
- name?: string;
12
+ name?: Hume.empathicVoice.ReturnVoiceName;
12
13
  }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * String with the name of the voice to use. Maximum length of 75 characters. Will be converted to all-uppercase.
6
+ */
7
+ export declare type ReturnVoiceName = 'ITO' | 'DACHER' | 'KORA';
8
+ export declare const ReturnVoiceName: {
9
+ readonly Ito: "ITO";
10
+ readonly Dacher: "DACHER";
11
+ readonly Kora: "KORA";
12
+ };
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ReturnVoiceName = void 0;
7
+ exports.ReturnVoiceName = {
8
+ Ito: 'ITO',
9
+ Dacher: 'DACHER',
10
+ Kora: 'KORA',
11
+ };
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export declare type Role = "assistant" | "system" | "user" | "all" | "tool";
4
+ export declare type Role = 'assistant' | 'system' | 'user' | 'all' | 'tool';
5
5
  export declare const Role: {
6
6
  readonly Assistant: "assistant";
7
7
  readonly System: "system";
@@ -5,9 +5,9 @@
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.Role = void 0;
7
7
  exports.Role = {
8
- Assistant: "assistant",
9
- System: "system",
10
- User: "user",
11
- All: "all",
12
- Tool: "tool",
8
+ Assistant: 'assistant',
9
+ System: 'system',
10
+ User: 'user',
11
+ All: 'all',
12
+ Tool: 'tool',
13
13
  };
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- import * as Hume from "../../../index";
4
+ import * as Hume from '../../../index';
5
5
  /**
6
6
  * Settings for this chat session.
7
7
  */
@@ -13,7 +13,7 @@ export interface SessionSettings {
13
13
  *
14
14
  * For more information, please refer to the [Session Settings section](/docs/empathic-voice-interface-evi/configuration#session-settings) on the EVI Configuration page.
15
15
  */
16
- type: "session_settings";
16
+ type: 'session_settings';
17
17
  /**
18
18
  * Unique identifier for the session. Used to manage conversational state, correlate frontend and backend data, and persist conversations across EVI sessions.
19
19
  *
@@ -2,5 +2,5 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  export interface TextInput {
5
- type?: "text_input";
5
+ type?: 'text_input';
6
6
  }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- import * as Hume from "../../../index";
4
+ import * as Hume from '../../../index';
5
5
  export interface Tool {
6
6
  /** Type of tool. Set to `function` for user-defined tools. */
7
7
  type: Hume.empathicVoice.ToolType;