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,48 +1,94 @@
1
1
  types:
2
+ ReturnUserDefinedToolToolType:
3
+ enum:
4
+ - BUILTIN
5
+ - FUNCTION
6
+ docs: >-
7
+ Type of Tool. Either `BUILTIN` for natively implemented tools, like web
8
+ search, or `FUNCTION` for user-defined tools.
9
+ ReturnUserDefinedToolVersionType:
10
+ enum:
11
+ - FIXED
12
+ - LATEST
13
+ docs: >-
14
+ Versioning method for a Tool. Either `FIXED` for using a fixed version
15
+ number or `LATEST` for auto-updating to the latest version.
2
16
  ReturnUserDefinedTool:
3
17
  docs: A specific tool version returned from the server
4
18
  properties:
5
19
  tool_type:
6
- type: string
7
- docs: Type of Tool. Values from the ToolType enum.
20
+ type: ReturnUserDefinedToolToolType
21
+ docs: >-
22
+ Type of Tool. Either `BUILTIN` for natively implemented tools, like
23
+ web search, or `FUNCTION` for user-defined tools.
8
24
  id:
9
25
  type: string
10
26
  docs: Identifier for a Tool. Formatted as a UUID.
11
27
  version:
12
28
  type: integer
13
29
  docs: >-
14
- Version number for a Tool. Version numbers should be integers. The
15
- combination of configId and version number is unique.
30
+ Version number for a Tool.
31
+
32
+
33
+ Tools, as well as Configs and Prompts, are versioned. This versioning
34
+ system supports iterative development, allowing you to progressively
35
+ refine tools and revert to previous versions if needed.
36
+
37
+
38
+ Version numbers are integer values representing different iterations
39
+ of the Tool. Each update to the Tool increments its version number.
16
40
  version_type:
17
- type: string
41
+ type: ReturnUserDefinedToolVersionType
18
42
  docs: >-
19
- Indicates whether this tool is using a fixed version number or
20
- auto-updating to the latest version. Values from the VersionType enum.
43
+ Versioning method for a Tool. Either `FIXED` for using a fixed version
44
+ number or `LATEST` for auto-updating to the latest version.
21
45
  version_description:
22
46
  type: optional<string>
23
- docs: Description that is appended to a specific version of a Tool.
47
+ docs: An optional description of the Tool version.
24
48
  name:
25
49
  type: string
26
50
  docs: Name applied to all versions of a particular Tool.
27
51
  created_on:
28
52
  type: integer
29
- docs: The timestamp when the first version of this tool was created.
53
+ docs: >-
54
+ Time at which the Tool was created. Measured in seconds since the Unix
55
+ epoch.
30
56
  modified_on:
31
57
  type: integer
32
- docs: The timestamp when this version of the tool was created.
58
+ docs: >-
59
+ Time at which the Tool was last modified. Measured in seconds since
60
+ the Unix epoch.
33
61
  fallback_content:
34
62
  type: optional<string>
35
- docs: Text to use if the tool fails to generate content.
63
+ docs: >-
64
+ Optional text passed to the supplemental LLM in place of the tool call
65
+ result. The LLM then uses this text to generate a response back to the
66
+ user, ensuring continuity in the conversation if the Tool errors.
36
67
  description:
37
68
  type: optional<string>
38
- docs: Text describing what the tool does.
69
+ docs: >-
70
+ An optional description of what the Tool does, used by the
71
+ supplemental LLM to choose when and how to call the function.
39
72
  parameters:
40
73
  type: string
41
74
  docs: >-
42
75
  Stringified JSON defining the parameters used by this version of the
43
76
  Tool.
77
+
78
+
79
+ These parameters define the inputs needed for the Tool’s execution,
80
+ including the expected data type and description for each input field.
81
+ Structured as a stringified JSON schema, this format ensures the tool
82
+ receives data in the expected format.
83
+ ReturnPromptVersionType:
84
+ enum:
85
+ - FIXED
86
+ - LATEST
87
+ docs: >-
88
+ Versioning method for a Prompt. Either `FIXED` for using a fixed version
89
+ number or `LATEST` for auto-updating to the latest version.
44
90
  ReturnPrompt:
45
- docs: A specific prompt version returned from the server
91
+ docs: A Prompt associated with this Config.
46
92
  properties:
47
93
  id:
48
94
  type: string
@@ -50,28 +96,53 @@ types:
50
96
  version:
51
97
  type: integer
52
98
  docs: >-
53
- Version number for a Prompt. Version numbers should be integers. The
54
- combination of configId and version number is unique.
99
+ Version number for a Prompt.
100
+
101
+
102
+ Prompts, as well as Configs and Tools, are versioned. This versioning
103
+ system supports iterative development, allowing you to progressively
104
+ refine prompts and revert to previous versions if needed.
105
+
106
+
107
+ Version numbers are integer values representing different iterations
108
+ of the Prompt. Each update to the Prompt increments its version
109
+ number.
55
110
  version_type:
56
- type: string
111
+ type: ReturnPromptVersionType
57
112
  docs: >-
58
- Indicates whether this prompt is using a fixed version number or
59
- auto-updating to the latest version. Values from the VersionType enum.
113
+ Versioning method for a Prompt. Either `FIXED` for using a fixed
114
+ version number or `LATEST` for auto-updating to the latest version.
60
115
  version_description:
61
116
  type: optional<string>
62
- docs: Description that is appended to a specific version of a Prompt.
117
+ docs: An optional description of the Prompt version.
63
118
  name:
64
119
  type: string
65
120
  docs: Name applied to all versions of a particular Prompt.
66
121
  created_on:
67
122
  type: integer
68
- docs: The timestamp when the first version of this prompt was created.
123
+ docs: >-
124
+ Time at which the Prompt was created. Measured in seconds since the
125
+ Unix epoch.
69
126
  modified_on:
70
127
  type: integer
71
- docs: The timestamp when this version of the prompt was created.
128
+ docs: >-
129
+ Time at which the Prompt was last modified. Measured in seconds since
130
+ the Unix epoch.
72
131
  text:
73
132
  type: string
74
- docs: Text used for this version of the Prompt.
133
+ docs: >-
134
+ Instructions used to shape EVI’s behavior, responses, and style.
135
+
136
+
137
+ You can use the Prompt to define a specific goal or role for EVI,
138
+ specifying how it should act or what it should focus on during the
139
+ conversation. For example, EVI can be instructed to act as a customer
140
+ support representative, a fitness coach, or a travel advisor, each
141
+ with its own set of behaviors and response styles.
142
+
143
+
144
+ For help writing a system prompt, see our [Prompting
145
+ Guide](/docs/empathic-voice-interface-evi/prompting).
75
146
  PostedCustomVoice:
76
147
  docs: A custom voice specifications posted to the server
77
148
  properties:
@@ -138,36 +209,77 @@ types:
138
209
  docs: Name applied to all versions of a particular Tool.
139
210
  fallback_content:
140
211
  type: optional<string>
141
- docs: Text to use if the tool fails to generate content.
212
+ docs: >-
213
+ Optional text passed to the supplemental LLM in place of the tool call
214
+ result. The LLM then uses this text to generate a response back to the
215
+ user, ensuring continuity in the conversation if the Tool errors.
142
216
  PostedEllmModel:
143
217
  docs: A eLLM model configuration to be posted to the server
144
218
  properties:
145
219
  allow_short_responses:
146
220
  type: optional<boolean>
147
- docs: >-
148
- Boolean indicating if the model is allowed to generate short
149
- responses.
221
+ docs: |-
222
+ Boolean indicating if the eLLM is allowed to generate short responses.
223
+
224
+ If omitted, short responses from the eLLM are enabled by default.
150
225
  PostedEventMessageSpec:
151
226
  docs: Settings for a specific event_message to be posted to the server
152
227
  properties:
153
228
  enabled:
154
229
  type: boolean
155
- docs: Boolean indicating if this event message is enabled.
230
+ docs: >-
231
+ Boolean indicating if this event message is enabled.
232
+
233
+
234
+ If set to `true`, a message will be sent when the circumstances for
235
+ the specific event are met.
156
236
  text:
157
237
  type: optional<string>
158
238
  docs: >-
159
- Optional text that will be used as a verbatim event message. If the
160
- text is null and the event message is enabled, the system will
161
- generate a message based using the language model.
239
+ Text to use as the event message when the corresponding event occurs.
240
+ If no text is specified, EVI will generate an appropriate message
241
+ based on its current context and the system prompt.
162
242
  PostedEventMessageSpecs:
163
- docs: Collection of event_message specs to be posted to the server
243
+ docs: >-
244
+ Collection of event messages returned by the server.
245
+
246
+
247
+ Event messages are sent by the server when specific events occur during a
248
+ chat session. These messages are used to configure behaviors for EVI, such
249
+ as controlling how EVI starts a new conversation.
164
250
  properties:
165
251
  on_new_chat:
166
252
  type: optional<PostedEventMessageSpec>
167
253
  docs: >-
168
- Set `enabled` to have the LLM generate an initial message using the
169
- system prompt. Set `text` to a string to use verbatim as the initial
170
- message.
254
+ Specifies the initial message EVI provides when a new chat is started,
255
+ such as a greeting or welcome message.
256
+ on_inactivity_timeout:
257
+ type: optional<PostedEventMessageSpec>
258
+ docs: >-
259
+ Specifies the message EVI provides when the chat is about to be
260
+ disconnected due to a user inactivity timeout, such as a message
261
+ mentioning a lack of user input for a period of time.
262
+
263
+
264
+ Enabling an inactivity message allows developers to use this message
265
+ event for "checking in" with the user if they are not responding to
266
+ see if they are still active.
267
+
268
+
269
+ If the user does not respond in the number of seconds specified in the
270
+ `inactivity_timeout` field, then EVI will say the message and the user
271
+ has 15 seconds to respond. If they respond in time, the conversation
272
+ will continue; if not, the conversation will end.
273
+
274
+
275
+ However, if the inactivity message is not enabled, then reaching the
276
+ inactivity timeout will immediately end the connection.
277
+ on_max_duration_timeout:
278
+ type: optional<PostedEventMessageSpec>
279
+ docs: >-
280
+ Specifies the message EVI provides when the chat is disconnected due
281
+ to reaching the maximum chat duration, such as a message mentioning
282
+ the time limit for the chat has been reached.
171
283
  PostedLanguageModelModelProvider:
172
284
  enum:
173
285
  - OPEN_AI
@@ -176,21 +288,27 @@ types:
176
288
  - FIREWORKS
177
289
  - GROQ
178
290
  - GOOGLE
179
- docs: The provider of this model. Based on the enum modelProvider.
291
+ docs: The provider of the supplemental language model.
180
292
  PostedLanguageModel:
181
293
  docs: A LanguageModel to be posted to the server
182
294
  properties:
183
295
  model_provider:
184
296
  type: optional<PostedLanguageModelModelProvider>
185
- docs: The provider of this model. Based on the enum modelProvider.
297
+ docs: The provider of the supplemental language model.
186
298
  model_resource:
187
299
  type: optional<string>
188
- docs: String that specifies the model to use with modelProvider.
300
+ docs: String that specifies the language model to use with `model_provider`.
189
301
  temperature:
190
302
  type: optional<double>
191
- docs: Model temperature.
303
+ docs: >-
304
+ The model temperature, with values between 0 to 1 (inclusive).
305
+
306
+
307
+ Controls the randomness of the LLM’s output, with values closer to 0
308
+ yielding focused, deterministic responses and values closer to 1
309
+ producing more creative, diverse responses.
192
310
  PostedPromptSpec:
193
- docs: A specific prompt identifier to be posted to the server
311
+ docs: A Prompt associated with this Config.
194
312
  properties:
195
313
  id:
196
314
  type: string
@@ -198,8 +316,17 @@ types:
198
316
  version:
199
317
  type: optional<integer>
200
318
  docs: >-
201
- Version number for a Prompt. Version numbers should be integers. The
202
- combination of configId and version number is unique.
319
+ Version number for a Prompt.
320
+
321
+
322
+ Prompts, as well as Configs and Tools, are versioned. This versioning
323
+ system supports iterative development, allowing you to progressively
324
+ refine prompts and revert to previous versions if needed.
325
+
326
+
327
+ Version numbers are integer values representing different iterations
328
+ of the Prompt. Each update to the Prompt increments its version
329
+ number.
203
330
  PostedTimeoutSpec:
204
331
  docs: Settings for a specific timeout to be posted to the server
205
332
  properties:
@@ -224,7 +351,7 @@ types:
224
351
  Boolean indicating if this timeout is enabled.
225
352
 
226
353
 
227
- If set to `false`, EVI will not timeout due to a specified duration of
354
+ If set to false, EVI will not timeout due to a specified duration of
228
355
  user inactivity being reached. However, the conversation will
229
356
  eventually disconnect after 1,800 seconds (30 minutes), which is the
230
357
  maximum WebSocket duration limit for EVI.
@@ -248,7 +375,7 @@ types:
248
375
  Boolean indicating if this timeout is enabled.
249
376
 
250
377
 
251
- If set to `false`, EVI will not timeout due to a specified maximum
378
+ If set to false, EVI will not timeout due to a specified maximum
252
379
  duration being reached. However, the conversation will eventually
253
380
  disconnect after 1,800 seconds (30 minutes), which is the maximum
254
381
  WebSocket duration limit for EVI.
@@ -258,7 +385,14 @@ types:
258
385
  Duration in seconds for the timeout (e.g. 600 seconds represents 10
259
386
  minutes).
260
387
  PostedTimeoutSpecs:
261
- docs: Collection of timeout specs to be posted to the server
388
+ docs: >-
389
+ Collection of timeout specifications returned by the server.
390
+
391
+
392
+ Timeouts are sent by the server when specific time-based events occur
393
+ during a chat session. These specifications set the inactivity timeout and
394
+ the maximum duration an EVI WebSocket connection can stay open before it
395
+ is automatically disconnected.
262
396
  properties:
263
397
  inactivity:
264
398
  type: optional<PostedTimeoutSpecsInactivity>
@@ -289,8 +423,16 @@ types:
289
423
  version:
290
424
  type: optional<integer>
291
425
  docs: >-
292
- Version number for a Tool. Version numbers should be integers. The
293
- combination of configId and version number is unique.
426
+ Version number for a Tool.
427
+
428
+
429
+ Tools, as well as Configs and Prompts, are versioned. This versioning
430
+ system supports iterative development, allowing you to progressively
431
+ refine tools and revert to previous versions if needed.
432
+
433
+
434
+ Version numbers are integer values representing different iterations
435
+ of the Tool. Each update to the Tool increments its version number.
294
436
  PostedVoiceName:
295
437
  enum:
296
438
  - ITO
@@ -304,24 +446,38 @@ types:
304
446
  properties:
305
447
  provider:
306
448
  type: literal<"HUME_AI">
307
- docs: The provider of the voice to use. Based on the enum VoiceProvider.
449
+ docs: >-
450
+ The provider of the voice to use. Currently, only `HUME_AI` is
451
+ supported as the voice provider.
308
452
  name:
309
453
  type: optional<PostedVoiceName>
310
454
  docs: >-
311
455
  String with the name of the voice to use. Maximum length of 75
312
456
  characters. Will be converted to all-uppercase.
457
+ ReturnBuiltinToolToolType:
458
+ enum:
459
+ - BUILTIN
460
+ - FUNCTION
461
+ docs: >-
462
+ Type of Tool. Either `BUILTIN` for natively implemented tools, like web
463
+ search, or `FUNCTION` for user-defined tools.
313
464
  ReturnBuiltinTool:
314
465
  docs: A specific builtin tool version returned from the server
315
466
  properties:
316
467
  tool_type:
317
- type: string
318
- docs: Type of Tool. Values from the ToolType enum.
468
+ type: ReturnBuiltinToolToolType
469
+ docs: >-
470
+ Type of Tool. Either `BUILTIN` for natively implemented tools, like
471
+ web search, or `FUNCTION` for user-defined tools.
319
472
  name:
320
473
  type: string
321
474
  docs: Name applied to all versions of a particular Tool.
322
475
  fallback_content:
323
476
  type: optional<string>
324
- docs: Text to use if the tool fails to generate content.
477
+ docs: >-
478
+ Optional text passed to the supplemental LLM in place of the tool call
479
+ result. The LLM then uses this text to generate a response back to the
480
+ user, ensuring continuity in the conversation if the Tool errors.
325
481
  ReturnConfig:
326
482
  docs: A specific config version returned from the server
327
483
  properties:
@@ -331,30 +487,62 @@ types:
331
487
  version:
332
488
  type: optional<integer>
333
489
  docs: >-
334
- Version number for a Config. Version numbers should be integers. The
335
- combination of configId and version number is unique.
490
+ Version number for a Config.
491
+
492
+
493
+ Configs, as well as Prompts and Tools, are versioned. This versioning
494
+ system supports iterative development, allowing you to progressively
495
+ refine configurations and revert to previous versions if needed.
496
+
497
+
498
+ Version numbers are integer values representing different iterations
499
+ of the Config. Each update to the Config increments its version
500
+ number.
336
501
  version_description:
337
502
  type: optional<string>
338
- docs: Description that is appended to a specific version of a Config.
503
+ docs: An optional description of the Config version.
339
504
  name:
340
505
  type: optional<string>
341
506
  docs: Name applied to all versions of a particular Config.
342
507
  created_on:
343
508
  type: optional<integer>
344
- docs: The timestamp when the first version of this config was created.
509
+ docs: >-
510
+ Time at which the Config was created. Measured in seconds since the
511
+ Unix epoch.
345
512
  modified_on:
346
513
  type: optional<integer>
347
- docs: The timestamp when this version of the config was created.
514
+ docs: >-
515
+ Time at which the Config was last modified. Measured in seconds since
516
+ the Unix epoch.
348
517
  prompt: optional<ReturnPrompt>
349
- voice: optional<ReturnVoice>
350
- language_model: optional<ReturnLanguageModel>
351
- ellm_model: optional<ReturnEllmModel>
518
+ voice:
519
+ type: optional<ReturnVoice>
520
+ docs: A voice specification associated with this Config.
521
+ language_model:
522
+ type: optional<ReturnLanguageModel>
523
+ docs: >-
524
+ The supplemental language model associated with this Config.
525
+
526
+
527
+ This model is used to generate longer, more detailed responses from
528
+ EVI. Choosing an appropriate supplemental language model for your use
529
+ case is crucial for generating fast, high-quality responses from EVI.
530
+ ellm_model:
531
+ type: optional<ReturnEllmModel>
532
+ docs: >-
533
+ The eLLM setup associated with this Config.
534
+
535
+
536
+ Hume's eLLM (empathic Large Language Model) is a multimodal language
537
+ model that takes into account both expression measures and language.
538
+ The eLLM generates short, empathic language responses and guides
539
+ text-to-speech (TTS) prosody.
352
540
  tools:
353
541
  type: optional<list<optional<ReturnUserDefinedTool>>>
354
- docs: List of user-defined tools associated with this config.
542
+ docs: List of user-defined tools associated with this Config.
355
543
  builtin_tools:
356
544
  type: optional<list<optional<ReturnBuiltinTool>>>
357
- docs: List of built-in tools associated with this config
545
+ docs: List of built-in tools associated with this Config.
358
546
  event_messages: optional<ReturnEventMessageSpecs>
359
547
  timeouts: optional<ReturnTimeoutSpecs>
360
548
  ReturnEllmModel:
@@ -362,64 +550,161 @@ types:
362
550
  properties:
363
551
  allow_short_responses:
364
552
  type: boolean
365
- docs: >-
366
- Boolean indicating if the model is allowed to generate short
367
- responses.
553
+ docs: |-
554
+ Boolean indicating if the eLLM is allowed to generate short responses.
555
+
556
+ If omitted, short responses from the eLLM are enabled by default.
368
557
  ReturnEventMessageSpec:
369
558
  docs: A specific event message configuration to be returned from the server
370
559
  properties:
371
560
  enabled:
372
561
  type: boolean
373
- docs: Boolean indicating if this event message is enabled.
562
+ docs: >-
563
+ Boolean indicating if this event message is enabled.
564
+
565
+
566
+ If set to `true`, a message will be sent when the circumstances for
567
+ the specific event are met.
374
568
  text:
375
569
  type: optional<string>
376
570
  docs: >-
377
- Optional text that will be used as a verbatim event message. If the
378
- text is null and the event message is enabled, the system will
379
- generate a message based using the language model.
571
+ Text to use as the event message when the corresponding event occurs.
572
+ If no text is specified, EVI will generate an appropriate message
573
+ based on its current context and the system prompt.
380
574
  ReturnEventMessageSpecs:
381
- docs: Collection of event_message specs to be returned from the server
575
+ docs: >-
576
+ Collection of event messages returned by the server.
577
+
578
+
579
+ Event messages are sent by the server when specific events occur during a
580
+ chat session. These messages are used to configure behaviors for EVI, such
581
+ as controlling how EVI starts a new conversation.
382
582
  properties:
383
583
  on_new_chat:
384
584
  type: optional<ReturnEventMessageSpec>
385
585
  docs: >-
386
- `enabled` causes the LLM to generate an initial message using the
387
- system prompt. `text` is the string to use verbatim as the initial
388
- message.
586
+ Specifies the initial message EVI provides when a new chat is started,
587
+ such as a greeting or welcome message.
588
+ on_inactivity_timeout:
589
+ type: optional<ReturnEventMessageSpec>
590
+ docs: >-
591
+ Specifies the message EVI provides when the chat is about to be
592
+ disconnected due to a user inactivity timeout, such as a message
593
+ mentioning a lack of user input for a period of time.
594
+
595
+
596
+ Enabling an inactivity message allows developers to use this message
597
+ event for "checking in" with the user if they are not responding to
598
+ see if they are still active.
599
+
600
+
601
+ If the user does not respond in the number of seconds specified in the
602
+ `inactivity_timeout` field, then EVI will say the message and the user
603
+ has 15 seconds to respond. If they respond in time, the conversation
604
+ will continue; if not, the conversation will end.
605
+
606
+
607
+ However, if the inactivity message is not enabled, then reaching the
608
+ inactivity timeout will immediately end the connection.
609
+ on_max_duration_timeout:
610
+ type: optional<ReturnEventMessageSpec>
611
+ docs: >-
612
+ Specifies the message EVI provides when the chat is disconnected due
613
+ to reaching the maximum chat duration, such as a message mentioning
614
+ the time limit for the chat has been reached.
615
+ ReturnLanguageModelModelProvider:
616
+ enum:
617
+ - OPEN_AI
618
+ - CUSTOM_LANGUAGE_MODEL
619
+ - ANTHROPIC
620
+ - FIREWORKS
621
+ - GROQ
622
+ - GOOGLE
623
+ docs: The provider of the supplemental language model.
389
624
  ReturnLanguageModel:
390
625
  docs: A specific LanguageModel
391
626
  properties:
392
627
  model_provider:
393
- type: optional<string>
394
- docs: The provider of this model. Based on the enum modelProvider.
628
+ type: optional<ReturnLanguageModelModelProvider>
629
+ docs: The provider of the supplemental language model.
395
630
  model_resource:
396
631
  type: optional<string>
397
- docs: String that specifies the model to use with modelProvider.
632
+ docs: String that specifies the language model to use with `model_provider`.
398
633
  temperature:
399
634
  type: optional<double>
400
- docs: Model temperature.
635
+ docs: >-
636
+ The model temperature, with values between 0 to 1 (inclusive).
637
+
638
+
639
+ Controls the randomness of the LLM’s output, with values closer to 0
640
+ yielding focused, deterministic responses and values closer to 1
641
+ producing more creative, diverse responses.
401
642
  ReturnTimeoutSpec:
402
643
  docs: A specific timeout configuration to be returned from the server
403
644
  properties:
404
645
  enabled:
405
646
  type: boolean
406
- docs: Boolean indicating if this event message is enabled.
647
+ docs: >-
648
+ Boolean indicating if this timeout is enabled.
649
+
650
+
651
+ If set to false, EVI will not timeout due to a specified duration
652
+ being reached. However, the conversation will eventually disconnect
653
+ after 1,800 seconds (30 minutes), which is the maximum WebSocket
654
+ duration limit for EVI.
407
655
  duration_secs:
408
656
  type: optional<integer>
409
- docs: Duration in seconds for the timeout.
657
+ docs: >-
658
+ Duration in seconds for the timeout (e.g. 600 seconds represents 10
659
+ minutes).
410
660
  ReturnTimeoutSpecs:
411
- docs: Collection of timeout specs to be returned from the server
661
+ docs: >-
662
+ Collection of timeout specifications returned by the server.
663
+
664
+
665
+ Timeouts are sent by the server when specific time-based events occur
666
+ during a chat session. These specifications set the inactivity timeout and
667
+ the maximum duration an EVI WebSocket connection can stay open before it
668
+ is automatically disconnected.
412
669
  properties:
413
- inactivity: ReturnTimeoutSpec
414
- max_duration: ReturnTimeoutSpec
670
+ inactivity:
671
+ type: ReturnTimeoutSpec
672
+ docs: >-
673
+ Specifies the duration of user inactivity (in seconds) after which the
674
+ EVI WebSocket connection will be automatically disconnected. Default
675
+ is 600 seconds (10 minutes).
676
+
677
+
678
+ Accepts a minimum value of 1 second and a maximum value of 1,800
679
+ seconds.
680
+ max_duration:
681
+ type: ReturnTimeoutSpec
682
+ docs: >-
683
+ Specifies the maximum allowed duration (in seconds) for an EVI
684
+ WebSocket connection before it is automatically disconnected. Default
685
+ is 1,800 seconds (30 minutes).
686
+
687
+
688
+ Accepts a minimum value of 1 second and a maximum value of 1,800
689
+ seconds.
690
+ ReturnVoiceName:
691
+ enum:
692
+ - ITO
693
+ - DACHER
694
+ - KORA
695
+ docs: >-
696
+ String with the name of the voice to use. Maximum length of 75 characters.
697
+ Will be converted to all-uppercase.
415
698
  ReturnVoice:
416
699
  docs: A specific voice specification
417
700
  properties:
418
701
  provider:
419
- type: string
420
- docs: The provider of the voice to use. Based on the enum VoiceProvider.
702
+ type: literal<"HUME_AI">
703
+ docs: >-
704
+ The provider of the voice to use. Currently, only `HUME_AI` is
705
+ supported as the voice provider.
421
706
  name:
422
- type: optional<string>
707
+ type: optional<ReturnVoiceName>
423
708
  docs: >-
424
709
  String with the name of the voice to use. Maximum length of 75
425
710
  characters. Will be converted to all-uppercase.
@@ -436,30 +721,54 @@ types:
436
721
  properties:
437
722
  page_number:
438
723
  type: integer
439
- docs: The page number of the returned results.
724
+ docs: >-
725
+ The page number of the returned list.
726
+
727
+
728
+ This value corresponds to the `page_number` parameter specified in the
729
+ request. Pagination uses zero-based indexing.
440
730
  page_size:
441
731
  type: integer
442
- docs: The number of results returned per page.
732
+ docs: >-
733
+ The maximum number of items returned per page.
734
+
735
+
736
+ This value corresponds to the `page_size` parameter specified in the
737
+ request.
443
738
  total_pages:
444
739
  type: integer
445
- docs: The total number of pages in the collection
740
+ docs: The total number of pages in the collection.
446
741
  tools_page:
447
- docs: List of tools returned for the specified page number and page size.
742
+ docs: >-
743
+ List of tools returned for the specified `page_number` and
744
+ `page_size`.
448
745
  type: list<optional<ReturnUserDefinedTool>>
449
746
  ReturnPagedPrompts:
450
747
  docs: A paginated list of prompt versions returned from the server
451
748
  properties:
452
749
  page_number:
453
750
  type: integer
454
- docs: The page number of the returned results.
751
+ docs: >-
752
+ The page number of the returned list.
753
+
754
+
755
+ This value corresponds to the `page_number` parameter specified in the
756
+ request. Pagination uses zero-based indexing.
455
757
  page_size:
456
758
  type: integer
457
- docs: The number of results returned per page.
759
+ docs: >-
760
+ The maximum number of items returned per page.
761
+
762
+
763
+ This value corresponds to the `page_size` parameter specified in the
764
+ request.
458
765
  total_pages:
459
766
  type: integer
460
- docs: The total number of pages in the collection
767
+ docs: The total number of pages in the collection.
461
768
  prompts_page:
462
- docs: List of prompts returned for the specified page number and page size.
769
+ docs: >-
770
+ List of prompts returned for the specified `page_number` and
771
+ `page_size`.
463
772
  type: list<optional<ReturnPrompt>>
464
773
  ReturnPagedCustomVoices:
465
774
  docs: A paginated list of custom voices returned from the server
@@ -483,45 +792,102 @@ types:
483
792
  properties:
484
793
  page_number:
485
794
  type: optional<integer>
486
- docs: The page number of the returned results.
795
+ docs: >-
796
+ The page number of the returned list.
797
+
798
+
799
+ This value corresponds to the `page_number` parameter specified in the
800
+ request. Pagination uses zero-based indexing.
487
801
  page_size:
488
802
  type: optional<integer>
489
- docs: The number of results returned per page.
803
+ docs: >-
804
+ The maximum number of items returned per page.
805
+
806
+
807
+ This value corresponds to the `page_size` parameter specified in the
808
+ request.
490
809
  total_pages:
491
810
  type: integer
492
- docs: The total number of pages in the collection
811
+ docs: The total number of pages in the collection.
493
812
  configs_page:
494
813
  type: optional<list<ReturnConfig>>
495
- docs: List of prompts returned for the specified page number and page size.
814
+ docs: >-
815
+ List of configs returned for the specified `page_number` and
816
+ `page_size`.
817
+ ReturnChatStatus:
818
+ enum:
819
+ - ACTIVE
820
+ - USER_ENDED
821
+ - USER_TIMEOUT
822
+ - MAX_DURATION_TIMEOUT
823
+ - INACTIVITY_TIMEOUT
824
+ - ERROR
825
+ docs: >-
826
+ Indicates the current state of the chat. There are six possible statuses:
827
+
828
+
829
+ - `ACTIVE`: The chat is currently active and ongoing.
830
+
831
+
832
+ - `USER_ENDED`: The chat was manually ended by the user.
833
+
834
+
835
+ - `USER_TIMEOUT`: The chat ended due to a user-defined timeout.
836
+
837
+
838
+ - `MAX_DURATION_TIMEOUT`: The chat ended because it reached the maximum
839
+ allowed duration.
840
+
841
+
842
+ - `INACTIVITY_TIMEOUT`: The chat ended due to an inactivity timeout.
843
+
844
+
845
+ - `ERROR`: The chat ended unexpectedly due to an error.
496
846
  ReturnChat:
497
847
  docs: A description of chat and its status
498
848
  properties:
499
849
  id:
500
850
  type: string
501
- docs: Identifier for a chat. Formatted as a UUID.
851
+ docs: Identifier for a Chat. Formatted as a UUID.
502
852
  chat_group_id:
503
853
  type: string
504
854
  docs: >-
505
- Identifier for the chat group. Any chat resumed from this chat will
506
- have the same chat_group_id. Formatted as a UUID.
507
- tag:
508
- type: optional<string>
509
- docs: >-
510
- Optional tag applied to this chat used to group chats by user,
511
- application, etc.
855
+ Identifier for the Chat Group. Any chat resumed from this Chat will
856
+ have the same `chat_group_id`. Formatted as a UUID.
512
857
  status:
513
- type: string
514
- docs: The status of the chat. Values from the ChatStatus enum.
858
+ type: ReturnChatStatus
859
+ docs: >-
860
+ Indicates the current state of the chat. There are six possible
861
+ statuses:
862
+
863
+
864
+ - `ACTIVE`: The chat is currently active and ongoing.
865
+
866
+
867
+ - `USER_ENDED`: The chat was manually ended by the user.
868
+
869
+
870
+ - `USER_TIMEOUT`: The chat ended due to a user-defined timeout.
871
+
872
+
873
+ - `MAX_DURATION_TIMEOUT`: The chat ended because it reached the
874
+ maximum allowed duration.
875
+
876
+
877
+ - `INACTIVITY_TIMEOUT`: The chat ended due to an inactivity timeout.
878
+
879
+
880
+ - `ERROR`: The chat ended unexpectedly due to an error.
515
881
  start_timestamp:
516
882
  type: integer
517
883
  docs: >-
518
- The timestamp when the chat started, formatted as a Unix epoch
519
- milliseconds.
884
+ Time at which the Chat started. Measured in seconds since the Unix
885
+ epoch.
520
886
  end_timestamp:
521
887
  type: optional<integer>
522
888
  docs: >-
523
- The timestamp when the chat ended, formatted as a Unix epoch
524
- milliseconds.
889
+ Time at which the Chat ended. Measured in seconds since the Unix
890
+ epoch.
525
891
  event_count:
526
892
  type: optional<integer>
527
893
  docs: The total number of events currently in this chat.
@@ -530,7 +896,7 @@ types:
530
896
  docs: Stringified JSON with additional metadata about the chat.
531
897
  config: optional<ReturnConfigSpec>
532
898
  ReturnConfigSpec:
533
- docs: An id/version number for a specific config version
899
+ docs: The Config associated with this Chat.
534
900
  properties:
535
901
  id:
536
902
  type: string
@@ -538,63 +904,236 @@ types:
538
904
  version:
539
905
  type: optional<integer>
540
906
  docs: >-
541
- Version number for a Config. Version numbers should be integers. The
542
- combination of configId and version number is unique.
907
+ Version number for a Config.
908
+
909
+
910
+ Configs, as well as Prompts and Tools, are versioned. This versioning
911
+ system supports iterative development, allowing you to progressively
912
+ refine configurations and revert to previous versions if needed.
913
+
914
+
915
+ Version numbers are integer values representing different iterations
916
+ of the Config. Each update to the Config increments its version
917
+ number.
918
+ ReturnPagedChatsPaginationDirection:
919
+ enum:
920
+ - ASC
921
+ - DESC
922
+ docs: >-
923
+ Indicates the order in which the paginated results are presented, based on
924
+ their creation date.
925
+
926
+
927
+ It shows `ASC` for ascending order (chronological, with the oldest records
928
+ first) or `DESC` for descending order (reverse-chronological, with the
929
+ newest records first). This value corresponds to the `ascending_order`
930
+ query parameter used in the request.
543
931
  ReturnPagedChats:
544
932
  docs: A paginated list of chats returned from the server
545
933
  properties:
546
934
  page_number:
547
935
  type: integer
548
- docs: The page number of the returned results.
936
+ docs: >-
937
+ The page number of the returned list.
938
+
939
+
940
+ This value corresponds to the `page_number` parameter specified in the
941
+ request. Pagination uses zero-based indexing.
549
942
  page_size:
550
943
  type: integer
551
- docs: The number of results returned per page.
944
+ docs: >-
945
+ The maximum number of items returned per page.
946
+
947
+
948
+ This value corresponds to the `page_size` parameter specified in the
949
+ request.
552
950
  total_pages:
553
951
  type: integer
554
- docs: The total number of pages in the collection
952
+ docs: The total number of pages in the collection.
555
953
  pagination_direction:
556
- type: string
557
- docs: The direction of the pagination (ASC or DESC).
954
+ type: ReturnPagedChatsPaginationDirection
955
+ docs: >-
956
+ Indicates the order in which the paginated results are presented,
957
+ based on their creation date.
958
+
959
+
960
+ It shows `ASC` for ascending order (chronological, with the oldest
961
+ records first) or `DESC` for descending order (reverse-chronological,
962
+ with the newest records first). This value corresponds to the
963
+ `ascending_order` query parameter used in the request.
558
964
  chats_page:
559
965
  docs: >-
560
- List of chats and their metadata returned for the specified page
561
- number and page size.
966
+ List of Chats and their metadata returned for the specified
967
+ `page_number` and `page_size`.
562
968
  type: list<ReturnChat>
969
+ ReturnChatEventRole:
970
+ enum:
971
+ - USER
972
+ - AGENT
973
+ - SYSTEM
974
+ - TOOL
975
+ docs: >-
976
+ The role of the entity which generated the Chat Event. There are four
977
+ possible values:
978
+
979
+
980
+ - `USER`: The user, capable of sending user messages and interruptions.
981
+
982
+
983
+ - `AGENT`: The assistant, capable of sending agent messages.
984
+
985
+
986
+ - `SYSTEM`: The backend server, capable of transmitting errors.
987
+
988
+
989
+ - `TOOL`: The function calling mechanism.
990
+ ReturnChatEventType:
991
+ enum:
992
+ - SYSTEM_PROMPT
993
+ - USER_MESSAGE
994
+ - USER_INTERRUPTION
995
+ - AGENT_MESSAGE
996
+ - FUNCTION_CALL
997
+ - FUNCTION_CALL_RESPONSE
998
+ docs: >-
999
+ Type of Chat Event. There are six possible values:
1000
+
1001
+
1002
+ - `SYSTEM_PROMPT`: Contains the system prompt for use in the session.
1003
+
1004
+
1005
+ - `USER_MESSAGE`: Contains the message sent by the user.
1006
+
1007
+
1008
+ - `USER_INTERRUPTION`: Contains an interruption made by the user while the
1009
+ agent is speaking.
1010
+
1011
+
1012
+ - `AGENT_MESSAGE`: Contains the assistant’s message, generated by Hume’s
1013
+ eLLM and supplemental LLM.
1014
+
1015
+
1016
+ - `FUNCTION_CALL`: Contains the invocation of a tool.
1017
+
1018
+
1019
+ - `FUNCTION_CALL_RESPONSE`: Contains the tool response.
563
1020
  ReturnChatEvent:
564
1021
  docs: A description of a single event in a chat returned from the server
565
1022
  properties:
566
1023
  id:
567
1024
  type: string
568
- docs: Identifier for a chat event. Formatted as a UUID.
1025
+ docs: Identifier for a Chat Event. Formatted as a UUID.
569
1026
  chat_id:
570
1027
  type: string
571
- docs: Identifier for the chat this event occurred in. Formatted as a UUID.
1028
+ docs: Identifier for the Chat this event occurred in. Formatted as a UUID.
572
1029
  timestamp:
573
1030
  type: integer
574
1031
  docs: >-
575
- The timestamp when the chat event occurred, formatted as a Unix epoch
576
- milliseconds.
1032
+ Time at which the Chat Event occurred. Measured in seconds since the
1033
+ Unix epoch.
577
1034
  role:
578
- type: string
1035
+ type: ReturnChatEventRole
579
1036
  docs: >-
580
- The role of the user who generated the chat event. Values from the
581
- Role enum.
1037
+ The role of the entity which generated the Chat Event. There are four
1038
+ possible values:
1039
+
1040
+
1041
+ - `USER`: The user, capable of sending user messages and
1042
+ interruptions.
1043
+
1044
+
1045
+ - `AGENT`: The assistant, capable of sending agent messages.
1046
+
1047
+
1048
+ - `SYSTEM`: The backend server, capable of transmitting errors.
1049
+
1050
+
1051
+ - `TOOL`: The function calling mechanism.
582
1052
  type:
583
- type: string
584
- docs: The type of chat event. Values from the ChatEventType enum.
1053
+ type: ReturnChatEventType
1054
+ docs: >-
1055
+ Type of Chat Event. There are six possible values:
1056
+
1057
+
1058
+ - `SYSTEM_PROMPT`: Contains the system prompt for use in the session.
1059
+
1060
+
1061
+ - `USER_MESSAGE`: Contains the message sent by the user.
1062
+
1063
+
1064
+ - `USER_INTERRUPTION`: Contains an interruption made by the user while
1065
+ the agent is speaking.
1066
+
1067
+
1068
+ - `AGENT_MESSAGE`: Contains the assistant’s message, generated by
1069
+ Hume’s eLLM and supplemental LLM.
1070
+
1071
+
1072
+ - `FUNCTION_CALL`: Contains the invocation of a tool.
1073
+
1074
+
1075
+ - `FUNCTION_CALL_RESPONSE`: Contains the tool response.
585
1076
  message_text:
586
1077
  type: optional<string>
587
1078
  docs: >-
588
- The text of the chat message, either transcribed from speaker audio or
589
- generated by the agent.
1079
+ The text of the Chat Event. This field contains the message content
1080
+ for each event type listed in the `type` field.
590
1081
  emotion_features:
591
1082
  type: optional<string>
592
1083
  docs: >-
593
- Stringified JSON with data about emotional content/prosody of the
594
- event.
1084
+ Stringified JSON containing the prosody model inference results.
1085
+
1086
+
1087
+ EVI uses the prosody model to measure 48 expressions related to speech
1088
+ and vocal characteristics. These results contain a detailed emotional
1089
+ and tonal analysis of the audio. Scores typically range from 0 to 1,
1090
+ with higher values indicating a stronger confidence level in the
1091
+ measured attribute.
595
1092
  metadata:
596
1093
  type: optional<string>
597
1094
  docs: Stringified JSON with additional metadata about the chat event.
1095
+ ReturnChatPagedEventsStatus:
1096
+ enum:
1097
+ - ACTIVE
1098
+ - USER_ENDED
1099
+ - USER_TIMEOUT
1100
+ - MAX_DURATION_TIMEOUT
1101
+ - INACTIVITY_TIMEOUT
1102
+ - ERROR
1103
+ docs: >-
1104
+ Indicates the current state of the chat. There are six possible statuses:
1105
+
1106
+
1107
+ - `ACTIVE`: The chat is currently active and ongoing.
1108
+
1109
+
1110
+ - `USER_ENDED`: The chat was manually ended by the user.
1111
+
1112
+
1113
+ - `USER_TIMEOUT`: The chat ended due to a user-defined timeout.
1114
+
1115
+
1116
+ - `MAX_DURATION_TIMEOUT`: The chat ended because it reached the maximum
1117
+ allowed duration.
1118
+
1119
+
1120
+ - `INACTIVITY_TIMEOUT`: The chat ended due to an inactivity timeout.
1121
+
1122
+
1123
+ - `ERROR`: The chat ended unexpectedly due to an error.
1124
+ ReturnChatPagedEventsPaginationDirection:
1125
+ enum:
1126
+ - ASC
1127
+ - DESC
1128
+ docs: >-
1129
+ Indicates the order in which the paginated results are presented, based on
1130
+ their creation date.
1131
+
1132
+
1133
+ It shows `ASC` for ascending order (chronological, with the oldest records
1134
+ first) or `DESC` for descending order (reverse-chronological, with the
1135
+ newest records first). This value corresponds to the `ascending_order`
1136
+ query parameter used in the request.
598
1137
  ReturnChatPagedEvents:
599
1138
  docs: >-
600
1139
  A description of chat status with a paginated list of chat events returned
@@ -602,48 +1141,82 @@ types:
602
1141
  properties:
603
1142
  id:
604
1143
  type: string
605
- docs: Identifier for a chat. Formatted as a UUID.
1144
+ docs: Identifier for a Chat. Formatted as a UUID.
606
1145
  chat_group_id:
607
1146
  type: string
608
1147
  docs: >-
609
- Identifier for the chat group. Any chat resumed from this chat will
610
- have the same chat_group_id. Formatted as a UUID.
611
- tag:
612
- type: optional<string>
613
- docs: >-
614
- Optional tag applied to this chat used to group chats by user,
615
- application, etc.
1148
+ Identifier for the Chat Group. Any chat resumed from this Chat will
1149
+ have the same `chat_group_id`. Formatted as a UUID.
616
1150
  status:
617
- type: string
618
- docs: The status of the chat. Values from the ChatStatus enum.
1151
+ type: ReturnChatPagedEventsStatus
1152
+ docs: >-
1153
+ Indicates the current state of the chat. There are six possible
1154
+ statuses:
1155
+
1156
+
1157
+ - `ACTIVE`: The chat is currently active and ongoing.
1158
+
1159
+
1160
+ - `USER_ENDED`: The chat was manually ended by the user.
1161
+
1162
+
1163
+ - `USER_TIMEOUT`: The chat ended due to a user-defined timeout.
1164
+
1165
+
1166
+ - `MAX_DURATION_TIMEOUT`: The chat ended because it reached the
1167
+ maximum allowed duration.
1168
+
1169
+
1170
+ - `INACTIVITY_TIMEOUT`: The chat ended due to an inactivity timeout.
1171
+
1172
+
1173
+ - `ERROR`: The chat ended unexpectedly due to an error.
619
1174
  start_timestamp:
620
1175
  type: integer
621
1176
  docs: >-
622
- The timestamp when the chat started, formatted as a Unix epoch
623
- milliseconds.
1177
+ Time at which the Chat started. Measured in seconds since the Unix
1178
+ epoch.
624
1179
  end_timestamp:
625
1180
  type: optional<integer>
626
1181
  docs: >-
627
- The timestamp when the chat ended, formatted as a Unix epoch
628
- milliseconds.
1182
+ Time at which the Chat ended. Measured in seconds since the Unix
1183
+ epoch.
629
1184
  pagination_direction:
630
- type: string
631
- docs: The direction of the pagination (ASC or DESC).
1185
+ type: ReturnChatPagedEventsPaginationDirection
1186
+ docs: >-
1187
+ Indicates the order in which the paginated results are presented,
1188
+ based on their creation date.
1189
+
1190
+
1191
+ It shows `ASC` for ascending order (chronological, with the oldest
1192
+ records first) or `DESC` for descending order (reverse-chronological,
1193
+ with the newest records first). This value corresponds to the
1194
+ `ascending_order` query parameter used in the request.
632
1195
  events_page:
633
- docs: List of chat events with the specified page number and page size.
1196
+ docs: List of Chat Events for the specified `page_number` and `page_size`.
634
1197
  type: list<ReturnChatEvent>
635
1198
  metadata:
636
1199
  type: optional<string>
637
1200
  docs: Stringified JSON with additional metadata about the chat.
638
1201
  page_number:
639
1202
  type: integer
640
- docs: The page number of the returned results.
1203
+ docs: >-
1204
+ The page number of the returned list.
1205
+
1206
+
1207
+ This value corresponds to the `page_number` parameter specified in the
1208
+ request. Pagination uses zero-based indexing.
641
1209
  page_size:
642
1210
  type: integer
643
- docs: The number of results returned per page.
1211
+ docs: >-
1212
+ The maximum number of items returned per page.
1213
+
1214
+
1215
+ This value corresponds to the `page_size` parameter specified in the
1216
+ request.
644
1217
  total_pages:
645
1218
  type: integer
646
- docs: The total number of pages in the collection
1219
+ docs: The total number of pages in the collection.
647
1220
  config: optional<ReturnConfigSpec>
648
1221
  ReturnActiveChatCount:
649
1222
  docs: A description of current chat chat sessions for a user
@@ -680,46 +1253,77 @@ types:
680
1253
  id:
681
1254
  type: string
682
1255
  docs: >-
683
- Identifier for the chat group. Any chat resumed from this chat will
684
- have the same chat_group_id. Formatted as a UUID.
1256
+ Identifier for the Chat Group. Any Chat resumed from this Chat Group
1257
+ will have the same `chat_group_id`. Formatted as a UUID.
685
1258
  first_start_timestamp:
686
1259
  type: integer
687
1260
  docs: >-
688
- The timestamp when the first chat in this chat group started,
689
- formatted as a Unix epoch milliseconds.
1261
+ Time at which the first Chat in this Chat Group was created. Measured
1262
+ in seconds since the Unix epoch.
690
1263
  most_recent_start_timestamp:
691
1264
  type: integer
692
1265
  docs: >-
693
- The timestamp when the most recent chat in this chat group started,
694
- formatted as a Unix epoch milliseconds.
1266
+ Time at which the most recent Chat in this Chat Group was created.
1267
+ Measured in seconds since the Unix epoch.
695
1268
  most_recent_chat_id:
696
1269
  type: optional<string>
697
1270
  docs: >-
698
- The chat_id of the most recent chat in this chat group. Formatted as a
699
- UUID.
1271
+ The `chat_id` of the most recent Chat in this Chat Group. Formatted as
1272
+ a UUID.
700
1273
  num_chats:
701
1274
  type: integer
702
- docs: The total number of chats in this chat group.
1275
+ docs: The total number of Chats in this Chat Group.
703
1276
  active: optional<boolean>
1277
+ ReturnPagedChatGroupsPaginationDirection:
1278
+ enum:
1279
+ - ASC
1280
+ - DESC
1281
+ docs: >-
1282
+ Indicates the order in which the paginated results are presented, based on
1283
+ their creation date.
1284
+
1285
+
1286
+ It shows `ASC` for ascending order (chronological, with the oldest records
1287
+ first) or `DESC` for descending order (reverse-chronological, with the
1288
+ newest records first). This value corresponds to the `ascending_order`
1289
+ query parameter used in the request.
704
1290
  ReturnPagedChatGroups:
705
1291
  docs: A paginated list of chat_groups returned from the server
706
1292
  properties:
707
1293
  page_number:
708
1294
  type: integer
709
- docs: The page number of the returned results.
1295
+ docs: >-
1296
+ The page number of the returned list.
1297
+
1298
+
1299
+ This value corresponds to the `page_number` parameter specified in the
1300
+ request. Pagination uses zero-based indexing.
710
1301
  page_size:
711
1302
  type: integer
712
- docs: The number of results returned per page.
1303
+ docs: >-
1304
+ The maximum number of items returned per page.
1305
+
1306
+
1307
+ This value corresponds to the `page_size` parameter specified in the
1308
+ request.
713
1309
  total_pages:
714
1310
  type: integer
715
- docs: The total number of pages in the collection
1311
+ docs: The total number of pages in the collection.
716
1312
  pagination_direction:
717
- type: string
718
- docs: The direction of the pagination (ASC or DESC).
1313
+ type: ReturnPagedChatGroupsPaginationDirection
1314
+ docs: >-
1315
+ Indicates the order in which the paginated results are presented,
1316
+ based on their creation date.
1317
+
1318
+
1319
+ It shows `ASC` for ascending order (chronological, with the oldest
1320
+ records first) or `DESC` for descending order (reverse-chronological,
1321
+ with the newest records first). This value corresponds to the
1322
+ `ascending_order` query parameter used in the request.
719
1323
  chat_groups_page:
720
1324
  docs: >-
721
- List of chat_groups and their metadata returned for the specified page
722
- number and page size.
1325
+ List of Chat Groups and their metadata returned for the specified
1326
+ `page_number` and `page_size`.
723
1327
  type: list<ReturnChatGroup>
724
1328
  ReturnChatGroupPagedChats:
725
1329
  docs: >-
@@ -762,6 +1366,19 @@ types:
762
1366
  number and page size.
763
1367
  type: list<ReturnChat>
764
1368
  active: optional<boolean>
1369
+ ReturnChatGroupPagedEventsPaginationDirection:
1370
+ enum:
1371
+ - ASC
1372
+ - DESC
1373
+ docs: >-
1374
+ Indicates the order in which the paginated results are presented, based on
1375
+ their creation date.
1376
+
1377
+
1378
+ It shows `ASC` for ascending order (chronological, with the oldest records
1379
+ first) or `DESC` for descending order (reverse-chronological, with the
1380
+ newest records first). This value corresponds to the `ascending_order`
1381
+ query parameter used in the request.
765
1382
  ReturnChatGroupPagedEvents:
766
1383
  docs: >-
767
1384
  A paginated list of chat events that occurred across chats in this
@@ -770,24 +1387,40 @@ types:
770
1387
  id:
771
1388
  type: string
772
1389
  docs: >-
773
- Identifier for the chat group. Any chat resumed from this chat will
774
- have the same chat_group_id. Formatted as a UUID.
1390
+ Identifier for the Chat Group. Any Chat resumed from this Chat Group
1391
+ will have the same `chat_group_id`. Formatted as a UUID.
775
1392
  page_number:
776
1393
  type: integer
777
- docs: The page number of the returned results.
1394
+ docs: >-
1395
+ The page number of the returned list.
1396
+
1397
+
1398
+ This value corresponds to the `page_number` parameter specified in the
1399
+ request. Pagination uses zero-based indexing.
778
1400
  page_size:
779
1401
  type: integer
780
- docs: The number of results returned per page.
1402
+ docs: >-
1403
+ The maximum number of items returned per page.
1404
+
1405
+
1406
+ This value corresponds to the `page_size` parameter specified in the
1407
+ request.
781
1408
  total_pages:
782
1409
  type: integer
783
- docs: The total number of pages in the collection
1410
+ docs: The total number of pages in the collection.
784
1411
  pagination_direction:
785
- type: string
786
- docs: The direction of the pagination (ASC or DESC).
787
- events_page:
1412
+ type: ReturnChatGroupPagedEventsPaginationDirection
788
1413
  docs: >-
789
- List of chat_events returned for the specified page number and page
790
- size.
1414
+ Indicates the order in which the paginated results are presented,
1415
+ based on their creation date.
1416
+
1417
+
1418
+ It shows `ASC` for ascending order (chronological, with the oldest
1419
+ records first) or `DESC` for descending order (reverse-chronological,
1420
+ with the newest records first). This value corresponds to the
1421
+ `ascending_order` query parameter used in the request.
1422
+ events_page:
1423
+ docs: List of Chat Events for the specified `page_number` and `page_size`.
791
1424
  type: list<ReturnChatEvent>
792
1425
  AssistantInput:
793
1426
  docs: When provided, the input is spoken by EVI.
@@ -922,7 +1555,7 @@ types:
922
1555
  PauseAssistantMessage:
923
1556
  docs: >-
924
1557
  Pause responses from EVI. Chat history is still saved and sent after
925
- resuming.
1558
+ resuming.
926
1559
  properties:
927
1560
  type:
928
1561
  type: literal<"pause_assistant_message">
@@ -945,7 +1578,7 @@ types:
945
1578
  ResumeAssistantMessage:
946
1579
  docs: >-
947
1580
  Resume responses from EVI. Chat history sent while paused will now be
948
- sent.
1581
+ sent.
949
1582
  properties:
950
1583
  type:
951
1584
  type: literal<"resume_assistant_message">
@@ -1480,9 +2113,8 @@ types:
1480
2113
  Prosody model inference results.
1481
2114
 
1482
2115
 
1483
- EVI uses the prosody model to measure 48 expressions related to speech
1484
- and vocal characteristics. These results contain a detailed emotional
1485
- and tonal analysis of the audio.
2116
+ EVI uses the prosody model to measure 48 emotions related to speech
2117
+ and vocal characteristics within a given expression.
1486
2118
  MillisecondInterval:
1487
2119
  properties:
1488
2120
  begin:
@@ -1496,11 +2128,17 @@ types:
1496
2128
  scores:
1497
2129
  type: EmotionScores
1498
2130
  docs: >-
1499
- The confidence levels of 48 expressions in a given audio sample.
2131
+ The confidence scores for 48 emotions within the detected expression
2132
+ of an audio sample.
1500
2133
 
1501
2134
 
1502
2135
  Scores typically range from 0 to 1, with higher values indicating a
1503
2136
  stronger confidence level in the measured attribute.
2137
+
2138
+
2139
+ See our guide on [interpreting expression measurement
2140
+ results](/docs/expression-measurement/faq#how-do-i-interpret-my-results)
2141
+ to learn more.
1504
2142
  Role:
1505
2143
  enum:
1506
2144
  - assistant