mavenagi 1.0.15 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (371) hide show
  1. package/Client.d.ts +3 -4
  2. package/Client.js +51 -12
  3. package/README.md +14 -1
  4. package/api/resources/actions/client/Client.d.ts +9 -4
  5. package/api/resources/actions/client/Client.js +68 -39
  6. package/api/resources/agents/client/Client.d.ts +9 -4
  7. package/api/resources/agents/client/Client.js +76 -44
  8. package/api/resources/analytics/client/Client.d.ts +9 -4
  9. package/api/resources/analytics/client/Client.js +76 -40
  10. package/api/resources/analytics/types/ConversationTableResponse.d.ts +3 -3
  11. package/api/resources/appSettings/client/Client.d.ts +9 -4
  12. package/api/resources/appSettings/client/Client.js +76 -44
  13. package/api/resources/appSettings/client/index.d.ts +1 -0
  14. package/api/resources/commons/errors/BadRequestError.d.ts +2 -1
  15. package/api/resources/commons/errors/BadRequestError.js +2 -1
  16. package/api/resources/commons/errors/NotFoundError.d.ts +2 -1
  17. package/api/resources/commons/errors/NotFoundError.js +2 -1
  18. package/api/resources/commons/errors/ServerError.d.ts +2 -1
  19. package/api/resources/commons/errors/ServerError.js +2 -1
  20. package/api/resources/commons/types/AppUserRequest.d.ts +2 -2
  21. package/api/resources/commons/types/AppUserResponse.d.ts +2 -2
  22. package/api/resources/commons/types/ConversationResponse.d.ts +2 -1
  23. package/api/resources/commons/types/InboxItemFixType.d.ts +14 -0
  24. package/{dist/api/resources/realtime/types/AudioFormat.js → api/resources/commons/types/InboxItemFixType.js} +4 -4
  25. package/api/resources/commons/types/UserMessageAttachment.d.ts +16 -0
  26. package/api/resources/commons/types/index.d.ts +1 -0
  27. package/api/resources/commons/types/index.js +1 -0
  28. package/api/resources/conversation/client/Client.d.ts +43 -58
  29. package/api/resources/conversation/client/Client.js +342 -281
  30. package/api/resources/conversation/client/index.d.ts +1 -0
  31. package/api/resources/conversation/types/Attachment.d.ts +18 -1
  32. package/api/resources/conversation/types/ConversationMessageRequest.d.ts +2 -0
  33. package/api/resources/conversation/types/index.d.ts +0 -1
  34. package/api/resources/conversation/types/index.js +0 -1
  35. package/api/resources/events/client/Client.d.ts +5 -2
  36. package/api/resources/events/client/Client.js +26 -16
  37. package/api/resources/inbox/client/Client.d.ts +21 -10
  38. package/api/resources/inbox/client/Client.js +126 -67
  39. package/api/resources/inbox/client/index.d.ts +1 -0
  40. package/api/resources/inbox/client/requests/InboxItemFixRequest.d.ts +7 -1
  41. package/api/resources/inbox/client/requests/InboxItemIgnoreRequest.d.ts +7 -1
  42. package/api/resources/inbox/client/requests/InboxItemRequest.d.ts +7 -1
  43. package/api/resources/inbox/types/ApplyInboxItemFixRequest.d.ts +2 -0
  44. package/api/resources/inbox/types/InboxSearchRequest.d.ts +4 -0
  45. package/api/resources/index.d.ts +0 -2
  46. package/api/resources/index.js +1 -3
  47. package/api/resources/knowledge/client/Client.d.ts +17 -8
  48. package/api/resources/knowledge/client/Client.js +168 -87
  49. package/api/resources/organizations/client/Client.d.ts +7 -3
  50. package/api/resources/organizations/client/Client.js +51 -28
  51. package/api/resources/translations/client/Client.d.ts +5 -2
  52. package/api/resources/translations/client/Client.js +26 -16
  53. package/api/resources/triggers/client/Client.d.ts +13 -6
  54. package/api/resources/triggers/client/Client.js +118 -63
  55. package/api/resources/triggers/client/index.d.ts +1 -0
  56. package/api/resources/users/client/Client.d.ts +11 -6
  57. package/api/resources/users/client/Client.js +72 -43
  58. package/api/resources/users/client/index.d.ts +1 -0
  59. package/core/auth/BasicAuth.js +3 -3
  60. package/core/base64.d.ts +2 -0
  61. package/core/base64.js +26 -0
  62. package/core/fetcher/APIResponse.d.ts +10 -0
  63. package/core/fetcher/BinaryResponse.d.ts +20 -0
  64. package/core/fetcher/BinaryResponse.js +17 -0
  65. package/core/fetcher/Fetcher.d.ts +3 -2
  66. package/core/fetcher/Fetcher.js +32 -12
  67. package/core/fetcher/Headers.d.ts +2 -0
  68. package/core/fetcher/Headers.js +84 -0
  69. package/core/fetcher/HttpResponsePromise.d.ts +58 -0
  70. package/core/fetcher/HttpResponsePromise.js +103 -0
  71. package/core/fetcher/RawResponse.d.ts +29 -0
  72. package/core/fetcher/RawResponse.js +44 -0
  73. package/core/fetcher/ResponseWithBody.d.ts +4 -0
  74. package/core/fetcher/ResponseWithBody.js +6 -0
  75. package/core/fetcher/createRequestUrl.d.ts +1 -1
  76. package/core/fetcher/createRequestUrl.js +3 -7
  77. package/core/fetcher/getErrorResponseBody.d.ts +1 -0
  78. package/core/fetcher/getErrorResponseBody.js +44 -0
  79. package/core/fetcher/getFetchFn.d.ts +1 -4
  80. package/core/fetcher/getFetchFn.js +1 -52
  81. package/core/fetcher/getResponseBody.js +34 -33
  82. package/core/fetcher/index.d.ts +4 -0
  83. package/core/fetcher/index.js +7 -1
  84. package/core/headers.d.ts +3 -0
  85. package/core/headers.js +29 -0
  86. package/core/index.d.ts +3 -2
  87. package/core/index.js +4 -3
  88. package/core/runtime/runtime.js +0 -1
  89. package/core/{streaming-fetcher → stream}/Stream.d.ts +1 -2
  90. package/core/url/index.d.ts +2 -0
  91. package/core/url/index.js +7 -0
  92. package/core/url/join.d.ts +1 -0
  93. package/core/url/join.js +49 -0
  94. package/core/url/qs.d.ts +6 -0
  95. package/core/url/qs.js +64 -0
  96. package/dist/Client.d.ts +3 -4
  97. package/dist/Client.js +51 -12
  98. package/dist/api/resources/actions/client/Client.d.ts +9 -4
  99. package/dist/api/resources/actions/client/Client.js +68 -39
  100. package/dist/api/resources/agents/client/Client.d.ts +9 -4
  101. package/dist/api/resources/agents/client/Client.js +76 -44
  102. package/dist/api/resources/analytics/client/Client.d.ts +9 -4
  103. package/dist/api/resources/analytics/client/Client.js +76 -40
  104. package/dist/api/resources/analytics/types/ConversationTableResponse.d.ts +3 -3
  105. package/dist/api/resources/appSettings/client/Client.d.ts +9 -4
  106. package/dist/api/resources/appSettings/client/Client.js +76 -44
  107. package/dist/api/resources/appSettings/client/index.d.ts +1 -0
  108. package/dist/api/resources/commons/errors/BadRequestError.d.ts +2 -1
  109. package/dist/api/resources/commons/errors/BadRequestError.js +2 -1
  110. package/dist/api/resources/commons/errors/NotFoundError.d.ts +2 -1
  111. package/dist/api/resources/commons/errors/NotFoundError.js +2 -1
  112. package/dist/api/resources/commons/errors/ServerError.d.ts +2 -1
  113. package/dist/api/resources/commons/errors/ServerError.js +2 -1
  114. package/dist/api/resources/commons/types/AppUserRequest.d.ts +2 -2
  115. package/dist/api/resources/commons/types/AppUserResponse.d.ts +2 -2
  116. package/dist/api/resources/commons/types/ConversationResponse.d.ts +2 -1
  117. package/dist/api/resources/commons/types/InboxItemFixType.d.ts +14 -0
  118. package/{api/resources/realtime/types/AudioFormat.js → dist/api/resources/commons/types/InboxItemFixType.js} +4 -4
  119. package/dist/api/resources/commons/types/UserMessageAttachment.d.ts +16 -0
  120. package/dist/api/resources/commons/types/index.d.ts +1 -0
  121. package/dist/api/resources/commons/types/index.js +1 -0
  122. package/dist/api/resources/conversation/client/Client.d.ts +43 -58
  123. package/dist/api/resources/conversation/client/Client.js +342 -281
  124. package/dist/api/resources/conversation/client/index.d.ts +1 -0
  125. package/dist/api/resources/conversation/types/Attachment.d.ts +18 -1
  126. package/dist/api/resources/conversation/types/ConversationMessageRequest.d.ts +2 -0
  127. package/dist/api/resources/conversation/types/index.d.ts +0 -1
  128. package/dist/api/resources/conversation/types/index.js +0 -1
  129. package/dist/api/resources/events/client/Client.d.ts +5 -2
  130. package/dist/api/resources/events/client/Client.js +26 -16
  131. package/dist/api/resources/inbox/client/Client.d.ts +21 -10
  132. package/dist/api/resources/inbox/client/Client.js +126 -67
  133. package/dist/api/resources/inbox/client/index.d.ts +1 -0
  134. package/dist/api/resources/inbox/client/requests/InboxItemFixRequest.d.ts +7 -1
  135. package/dist/api/resources/inbox/client/requests/InboxItemIgnoreRequest.d.ts +7 -1
  136. package/dist/api/resources/inbox/client/requests/InboxItemRequest.d.ts +7 -1
  137. package/dist/api/resources/inbox/types/ApplyInboxItemFixRequest.d.ts +2 -0
  138. package/dist/api/resources/inbox/types/InboxSearchRequest.d.ts +4 -0
  139. package/dist/api/resources/index.d.ts +0 -2
  140. package/dist/api/resources/index.js +1 -3
  141. package/dist/api/resources/knowledge/client/Client.d.ts +17 -8
  142. package/dist/api/resources/knowledge/client/Client.js +168 -87
  143. package/dist/api/resources/organizations/client/Client.d.ts +7 -3
  144. package/dist/api/resources/organizations/client/Client.js +51 -28
  145. package/dist/api/resources/translations/client/Client.d.ts +5 -2
  146. package/dist/api/resources/translations/client/Client.js +26 -16
  147. package/dist/api/resources/triggers/client/Client.d.ts +13 -6
  148. package/dist/api/resources/triggers/client/Client.js +118 -63
  149. package/dist/api/resources/triggers/client/index.d.ts +1 -0
  150. package/dist/api/resources/users/client/Client.d.ts +11 -6
  151. package/dist/api/resources/users/client/Client.js +72 -43
  152. package/dist/api/resources/users/client/index.d.ts +1 -0
  153. package/dist/core/auth/BasicAuth.js +3 -3
  154. package/dist/core/base64.d.ts +2 -0
  155. package/dist/core/base64.js +26 -0
  156. package/dist/core/fetcher/APIResponse.d.ts +10 -0
  157. package/dist/core/fetcher/BinaryResponse.d.ts +20 -0
  158. package/dist/core/fetcher/BinaryResponse.js +17 -0
  159. package/dist/core/fetcher/Fetcher.d.ts +3 -2
  160. package/dist/core/fetcher/Fetcher.js +32 -12
  161. package/dist/core/fetcher/Headers.d.ts +2 -0
  162. package/dist/core/fetcher/Headers.js +84 -0
  163. package/dist/core/fetcher/HttpResponsePromise.d.ts +58 -0
  164. package/dist/core/fetcher/HttpResponsePromise.js +103 -0
  165. package/dist/core/fetcher/RawResponse.d.ts +29 -0
  166. package/dist/core/fetcher/RawResponse.js +44 -0
  167. package/dist/core/fetcher/ResponseWithBody.d.ts +4 -0
  168. package/dist/core/fetcher/ResponseWithBody.js +6 -0
  169. package/dist/core/fetcher/createRequestUrl.d.ts +1 -1
  170. package/dist/core/fetcher/createRequestUrl.js +3 -7
  171. package/dist/core/fetcher/getErrorResponseBody.d.ts +1 -0
  172. package/dist/core/fetcher/getErrorResponseBody.js +44 -0
  173. package/dist/core/fetcher/getFetchFn.d.ts +1 -4
  174. package/dist/core/fetcher/getFetchFn.js +1 -52
  175. package/dist/core/fetcher/getResponseBody.js +34 -33
  176. package/dist/core/fetcher/index.d.ts +4 -0
  177. package/dist/core/fetcher/index.js +7 -1
  178. package/dist/core/headers.d.ts +3 -0
  179. package/dist/core/headers.js +29 -0
  180. package/dist/core/index.d.ts +3 -2
  181. package/dist/core/index.js +4 -3
  182. package/dist/core/runtime/runtime.js +0 -1
  183. package/dist/core/{streaming-fetcher → stream}/Stream.d.ts +1 -2
  184. package/dist/core/url/index.d.ts +2 -0
  185. package/dist/core/url/index.js +7 -0
  186. package/dist/core/url/join.d.ts +1 -0
  187. package/dist/core/url/join.js +49 -0
  188. package/dist/core/url/qs.d.ts +6 -0
  189. package/dist/core/url/qs.js +64 -0
  190. package/dist/errors/MavenAGIError.d.ts +4 -1
  191. package/dist/errors/MavenAGIError.js +4 -7
  192. package/dist/index.d.ts +2 -2
  193. package/dist/index.js +5 -5
  194. package/dist/serialization/resources/commons/types/InboxItemFixType.d.ts +10 -0
  195. package/{serialization/resources/realtime/types/AudioFormat.js → dist/serialization/resources/commons/types/InboxItemFixType.js} +2 -2
  196. package/dist/serialization/resources/commons/types/UserMessageAttachment.d.ts +2 -0
  197. package/dist/serialization/resources/commons/types/UserMessageAttachment.js +2 -0
  198. package/dist/serialization/resources/commons/types/index.d.ts +1 -0
  199. package/dist/serialization/resources/commons/types/index.js +1 -0
  200. package/dist/serialization/resources/conversation/types/Attachment.d.ts +1 -0
  201. package/dist/serialization/resources/conversation/types/Attachment.js +1 -0
  202. package/dist/serialization/resources/conversation/types/ConversationMessageRequest.d.ts +2 -0
  203. package/dist/serialization/resources/conversation/types/ConversationMessageRequest.js +2 -0
  204. package/dist/serialization/resources/conversation/types/index.d.ts +0 -1
  205. package/dist/serialization/resources/conversation/types/index.js +0 -1
  206. package/dist/serialization/resources/inbox/types/ApplyInboxItemFixRequest.d.ts +2 -0
  207. package/dist/serialization/resources/inbox/types/ApplyInboxItemFixRequest.js +2 -0
  208. package/dist/serialization/resources/inbox/types/InboxSearchRequest.d.ts +2 -0
  209. package/dist/serialization/resources/inbox/types/InboxSearchRequest.js +2 -0
  210. package/dist/serialization/resources/index.d.ts +0 -2
  211. package/dist/serialization/resources/index.js +1 -3
  212. package/dist/version.d.ts +1 -1
  213. package/dist/version.js +1 -1
  214. package/errors/MavenAGIError.d.ts +4 -1
  215. package/errors/MavenAGIError.js +4 -7
  216. package/index.d.ts +2 -2
  217. package/index.js +5 -5
  218. package/jest.config.mjs +6 -1
  219. package/package.json +13 -21
  220. package/reference.md +16 -98
  221. package/scripts/rename-to-esm-files.js +10 -2
  222. package/serialization/resources/commons/types/InboxItemFixType.d.ts +10 -0
  223. package/{dist/serialization/resources/realtime/types/AudioFormat.js → serialization/resources/commons/types/InboxItemFixType.js} +2 -2
  224. package/serialization/resources/commons/types/UserMessageAttachment.d.ts +2 -0
  225. package/serialization/resources/commons/types/UserMessageAttachment.js +2 -0
  226. package/serialization/resources/commons/types/index.d.ts +1 -0
  227. package/serialization/resources/commons/types/index.js +1 -0
  228. package/serialization/resources/conversation/types/Attachment.d.ts +1 -0
  229. package/serialization/resources/conversation/types/Attachment.js +1 -0
  230. package/serialization/resources/conversation/types/ConversationMessageRequest.d.ts +2 -0
  231. package/serialization/resources/conversation/types/ConversationMessageRequest.js +2 -0
  232. package/serialization/resources/conversation/types/index.d.ts +0 -1
  233. package/serialization/resources/conversation/types/index.js +0 -1
  234. package/serialization/resources/inbox/types/ApplyInboxItemFixRequest.d.ts +2 -0
  235. package/serialization/resources/inbox/types/ApplyInboxItemFixRequest.js +2 -0
  236. package/serialization/resources/inbox/types/InboxSearchRequest.d.ts +2 -0
  237. package/serialization/resources/inbox/types/InboxSearchRequest.js +2 -0
  238. package/serialization/resources/index.d.ts +0 -2
  239. package/serialization/resources/index.js +1 -3
  240. package/version.d.ts +1 -1
  241. package/version.js +1 -1
  242. package/api/resources/conversation/types/GenerateObjectRequest.d.ts +0 -8
  243. package/api/resources/conversation/types/GenerateObjectRequest.js +0 -5
  244. package/api/resources/realtime/client/Client.d.ts +0 -36
  245. package/api/resources/realtime/client/Client.js +0 -90
  246. package/api/resources/realtime/client/Socket.d.ts +0 -41
  247. package/api/resources/realtime/client/Socket.js +0 -155
  248. package/api/resources/realtime/client/index.d.ts +0 -1
  249. package/api/resources/realtime/client/index.js +0 -2
  250. package/api/resources/realtime/index.d.ts +0 -2
  251. package/api/resources/realtime/index.js +0 -18
  252. package/api/resources/realtime/types/AudioFormat.d.ts +0 -8
  253. package/api/resources/realtime/types/AudioPublishEvent.d.ts +0 -6
  254. package/api/resources/realtime/types/AudioPublishEvent.js +0 -5
  255. package/api/resources/realtime/types/AudioSubscribeEvent.d.ts +0 -6
  256. package/api/resources/realtime/types/AudioSubscribeEvent.js +0 -5
  257. package/api/resources/realtime/types/ControlEvent.d.ts +0 -9
  258. package/api/resources/realtime/types/ControlEvent.js +0 -5
  259. package/api/resources/realtime/types/HangUpPublishEvent.d.ts +0 -6
  260. package/api/resources/realtime/types/HangUpPublishEvent.js +0 -5
  261. package/api/resources/realtime/types/MessageBase.d.ts +0 -6
  262. package/api/resources/realtime/types/MessageBase.js +0 -5
  263. package/api/resources/realtime/types/PublishEvent.d.ts +0 -16
  264. package/api/resources/realtime/types/PublishEvent.js +0 -5
  265. package/api/resources/realtime/types/SubscribeEvent.d.ts +0 -25
  266. package/api/resources/realtime/types/SubscribeEvent.js +0 -5
  267. package/api/resources/realtime/types/index.d.ts +0 -8
  268. package/api/resources/realtime/types/index.js +0 -24
  269. package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +0 -30
  270. package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +0 -247
  271. package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +0 -21
  272. package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +0 -126
  273. package/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +0 -31
  274. package/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +0 -229
  275. package/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +0 -18
  276. package/core/fetcher/stream-wrappers/chooseStreamWrapper.js +0 -59
  277. package/core/websocket/events.d.ts +0 -36
  278. package/core/websocket/events.js +0 -27
  279. package/core/websocket/index.d.ts +0 -1
  280. package/core/websocket/index.js +0 -17
  281. package/core/websocket/ws.d.ts +0 -137
  282. package/core/websocket/ws.js +0 -452
  283. package/dist/api/resources/conversation/types/GenerateObjectRequest.d.ts +0 -8
  284. package/dist/api/resources/conversation/types/GenerateObjectRequest.js +0 -5
  285. package/dist/api/resources/realtime/client/Client.d.ts +0 -36
  286. package/dist/api/resources/realtime/client/Client.js +0 -90
  287. package/dist/api/resources/realtime/client/Socket.d.ts +0 -41
  288. package/dist/api/resources/realtime/client/Socket.js +0 -155
  289. package/dist/api/resources/realtime/client/index.d.ts +0 -1
  290. package/dist/api/resources/realtime/client/index.js +0 -2
  291. package/dist/api/resources/realtime/index.d.ts +0 -2
  292. package/dist/api/resources/realtime/index.js +0 -18
  293. package/dist/api/resources/realtime/types/AudioFormat.d.ts +0 -8
  294. package/dist/api/resources/realtime/types/AudioPublishEvent.d.ts +0 -6
  295. package/dist/api/resources/realtime/types/AudioPublishEvent.js +0 -5
  296. package/dist/api/resources/realtime/types/AudioSubscribeEvent.d.ts +0 -6
  297. package/dist/api/resources/realtime/types/AudioSubscribeEvent.js +0 -5
  298. package/dist/api/resources/realtime/types/ControlEvent.d.ts +0 -9
  299. package/dist/api/resources/realtime/types/ControlEvent.js +0 -5
  300. package/dist/api/resources/realtime/types/HangUpPublishEvent.d.ts +0 -6
  301. package/dist/api/resources/realtime/types/HangUpPublishEvent.js +0 -5
  302. package/dist/api/resources/realtime/types/MessageBase.d.ts +0 -6
  303. package/dist/api/resources/realtime/types/MessageBase.js +0 -5
  304. package/dist/api/resources/realtime/types/PublishEvent.d.ts +0 -16
  305. package/dist/api/resources/realtime/types/PublishEvent.js +0 -5
  306. package/dist/api/resources/realtime/types/SubscribeEvent.d.ts +0 -25
  307. package/dist/api/resources/realtime/types/SubscribeEvent.js +0 -5
  308. package/dist/api/resources/realtime/types/index.d.ts +0 -8
  309. package/dist/api/resources/realtime/types/index.js +0 -24
  310. package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +0 -30
  311. package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +0 -247
  312. package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +0 -21
  313. package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +0 -126
  314. package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +0 -31
  315. package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +0 -229
  316. package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +0 -18
  317. package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.js +0 -59
  318. package/dist/core/websocket/events.d.ts +0 -36
  319. package/dist/core/websocket/events.js +0 -27
  320. package/dist/core/websocket/index.d.ts +0 -1
  321. package/dist/core/websocket/index.js +0 -17
  322. package/dist/core/websocket/ws.d.ts +0 -137
  323. package/dist/core/websocket/ws.js +0 -452
  324. package/dist/serialization/resources/conversation/types/GenerateObjectRequest.d.ts +0 -13
  325. package/dist/serialization/resources/conversation/types/GenerateObjectRequest.js +0 -46
  326. package/dist/serialization/resources/realtime/index.d.ts +0 -1
  327. package/dist/serialization/resources/realtime/index.js +0 -17
  328. package/dist/serialization/resources/realtime/types/AudioFormat.d.ts +0 -10
  329. package/dist/serialization/resources/realtime/types/AudioPublishEvent.d.ts +0 -12
  330. package/dist/serialization/resources/realtime/types/AudioPublishEvent.js +0 -43
  331. package/dist/serialization/resources/realtime/types/AudioSubscribeEvent.d.ts +0 -12
  332. package/dist/serialization/resources/realtime/types/AudioSubscribeEvent.js +0 -43
  333. package/dist/serialization/resources/realtime/types/ControlEvent.d.ts +0 -15
  334. package/dist/serialization/resources/realtime/types/ControlEvent.js +0 -48
  335. package/dist/serialization/resources/realtime/types/HangUpPublishEvent.d.ts +0 -12
  336. package/dist/serialization/resources/realtime/types/HangUpPublishEvent.js +0 -43
  337. package/dist/serialization/resources/realtime/types/MessageBase.d.ts +0 -12
  338. package/dist/serialization/resources/realtime/types/MessageBase.js +0 -43
  339. package/dist/serialization/resources/realtime/types/PublishEvent.d.ts +0 -18
  340. package/dist/serialization/resources/realtime/types/PublishEvent.js +0 -51
  341. package/dist/serialization/resources/realtime/types/SubscribeEvent.d.ts +0 -27
  342. package/dist/serialization/resources/realtime/types/SubscribeEvent.js +0 -54
  343. package/dist/serialization/resources/realtime/types/index.d.ts +0 -8
  344. package/dist/serialization/resources/realtime/types/index.js +0 -24
  345. package/serialization/resources/conversation/types/GenerateObjectRequest.d.ts +0 -13
  346. package/serialization/resources/conversation/types/GenerateObjectRequest.js +0 -46
  347. package/serialization/resources/realtime/index.d.ts +0 -1
  348. package/serialization/resources/realtime/index.js +0 -17
  349. package/serialization/resources/realtime/types/AudioFormat.d.ts +0 -10
  350. package/serialization/resources/realtime/types/AudioPublishEvent.d.ts +0 -12
  351. package/serialization/resources/realtime/types/AudioPublishEvent.js +0 -43
  352. package/serialization/resources/realtime/types/AudioSubscribeEvent.d.ts +0 -12
  353. package/serialization/resources/realtime/types/AudioSubscribeEvent.js +0 -43
  354. package/serialization/resources/realtime/types/ControlEvent.d.ts +0 -15
  355. package/serialization/resources/realtime/types/ControlEvent.js +0 -48
  356. package/serialization/resources/realtime/types/HangUpPublishEvent.d.ts +0 -12
  357. package/serialization/resources/realtime/types/HangUpPublishEvent.js +0 -43
  358. package/serialization/resources/realtime/types/MessageBase.d.ts +0 -12
  359. package/serialization/resources/realtime/types/MessageBase.js +0 -43
  360. package/serialization/resources/realtime/types/PublishEvent.d.ts +0 -18
  361. package/serialization/resources/realtime/types/PublishEvent.js +0 -51
  362. package/serialization/resources/realtime/types/SubscribeEvent.d.ts +0 -27
  363. package/serialization/resources/realtime/types/SubscribeEvent.js +0 -54
  364. package/serialization/resources/realtime/types/index.d.ts +0 -8
  365. package/serialization/resources/realtime/types/index.js +0 -24
  366. /package/core/{streaming-fetcher → stream}/Stream.js +0 -0
  367. /package/core/{streaming-fetcher → stream}/index.d.ts +0 -0
  368. /package/core/{streaming-fetcher → stream}/index.js +0 -0
  369. /package/dist/core/{streaming-fetcher → stream}/Stream.js +0 -0
  370. /package/dist/core/{streaming-fetcher → stream}/index.d.ts +0 -0
  371. /package/dist/core/{streaming-fetcher → stream}/index.js +0 -0
@@ -1,48 +0,0 @@
1
- "use strict";
2
- /**
3
- * This file was auto-generated by Fern from our API Definition.
4
- */
5
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- var desc = Object.getOwnPropertyDescriptor(m, k);
8
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
- desc = { enumerable: true, get: function() { return m[k]; } };
10
- }
11
- Object.defineProperty(o, k2, desc);
12
- }) : (function(o, m, k, k2) {
13
- if (k2 === undefined) k2 = k;
14
- o[k2] = m[k];
15
- }));
16
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
- Object.defineProperty(o, "default", { enumerable: true, value: v });
18
- }) : function(o, v) {
19
- o["default"] = v;
20
- });
21
- var __importStar = (this && this.__importStar) || (function () {
22
- var ownKeys = function(o) {
23
- ownKeys = Object.getOwnPropertyNames || function (o) {
24
- var ar = [];
25
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
- return ar;
27
- };
28
- return ownKeys(o);
29
- };
30
- return function (mod) {
31
- if (mod && mod.__esModule) return mod;
32
- var result = {};
33
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
- __setModuleDefault(result, mod);
35
- return result;
36
- };
37
- })();
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.ControlEvent = void 0;
40
- const core = __importStar(require("../../../../core"));
41
- const AudioFormat_1 = require("./AudioFormat");
42
- const MessageBase_1 = require("./MessageBase");
43
- exports.ControlEvent = core.serialization
44
- .object({
45
- reason: core.serialization.string().optional(),
46
- unused: AudioFormat_1.AudioFormat.optional(),
47
- })
48
- .extend(MessageBase_1.MessageBase);
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as MavenAGI from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- export declare const HangUpPublishEvent: core.serialization.ObjectSchema<serializers.HangUpPublishEvent.Raw, MavenAGI.HangUpPublishEvent>;
8
- export declare namespace HangUpPublishEvent {
9
- interface Raw {
10
- message?: string | null;
11
- }
12
- }
@@ -1,43 +0,0 @@
1
- "use strict";
2
- /**
3
- * This file was auto-generated by Fern from our API Definition.
4
- */
5
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- var desc = Object.getOwnPropertyDescriptor(m, k);
8
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
- desc = { enumerable: true, get: function() { return m[k]; } };
10
- }
11
- Object.defineProperty(o, k2, desc);
12
- }) : (function(o, m, k, k2) {
13
- if (k2 === undefined) k2 = k;
14
- o[k2] = m[k];
15
- }));
16
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
- Object.defineProperty(o, "default", { enumerable: true, value: v });
18
- }) : function(o, v) {
19
- o["default"] = v;
20
- });
21
- var __importStar = (this && this.__importStar) || (function () {
22
- var ownKeys = function(o) {
23
- ownKeys = Object.getOwnPropertyNames || function (o) {
24
- var ar = [];
25
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
- return ar;
27
- };
28
- return ownKeys(o);
29
- };
30
- return function (mod) {
31
- if (mod && mod.__esModule) return mod;
32
- var result = {};
33
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
- __setModuleDefault(result, mod);
35
- return result;
36
- };
37
- })();
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.HangUpPublishEvent = void 0;
40
- const core = __importStar(require("../../../../core"));
41
- exports.HangUpPublishEvent = core.serialization.object({
42
- message: core.serialization.string().optional(),
43
- });
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as MavenAGI from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- export declare const MessageBase: core.serialization.ObjectSchema<serializers.MessageBase.Raw, MavenAGI.MessageBase>;
8
- export declare namespace MessageBase {
9
- interface Raw {
10
- seqId?: number | null;
11
- }
12
- }
@@ -1,43 +0,0 @@
1
- "use strict";
2
- /**
3
- * This file was auto-generated by Fern from our API Definition.
4
- */
5
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- var desc = Object.getOwnPropertyDescriptor(m, k);
8
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
- desc = { enumerable: true, get: function() { return m[k]; } };
10
- }
11
- Object.defineProperty(o, k2, desc);
12
- }) : (function(o, m, k, k2) {
13
- if (k2 === undefined) k2 = k;
14
- o[k2] = m[k];
15
- }));
16
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
- Object.defineProperty(o, "default", { enumerable: true, value: v });
18
- }) : function(o, v) {
19
- o["default"] = v;
20
- });
21
- var __importStar = (this && this.__importStar) || (function () {
22
- var ownKeys = function(o) {
23
- ownKeys = Object.getOwnPropertyNames || function (o) {
24
- var ar = [];
25
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
- return ar;
27
- };
28
- return ownKeys(o);
29
- };
30
- return function (mod) {
31
- if (mod && mod.__esModule) return mod;
32
- var result = {};
33
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
- __setModuleDefault(result, mod);
35
- return result;
36
- };
37
- })();
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.MessageBase = void 0;
40
- const core = __importStar(require("../../../../core"));
41
- exports.MessageBase = core.serialization.object({
42
- seqId: core.serialization.number().optional(),
43
- });
@@ -1,18 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as MavenAGI from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- import { AudioPublishEvent } from "./AudioPublishEvent";
8
- import { HangUpPublishEvent } from "./HangUpPublishEvent";
9
- export declare const PublishEvent: core.serialization.Schema<serializers.PublishEvent.Raw, MavenAGI.PublishEvent>;
10
- export declare namespace PublishEvent {
11
- type Raw = PublishEvent.Audio | PublishEvent.HangUp;
12
- interface Audio extends AudioPublishEvent.Raw {
13
- messageType: "audio";
14
- }
15
- interface HangUp extends HangUpPublishEvent.Raw {
16
- messageType: "hangUp";
17
- }
18
- }
@@ -1,51 +0,0 @@
1
- "use strict";
2
- /**
3
- * This file was auto-generated by Fern from our API Definition.
4
- */
5
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- var desc = Object.getOwnPropertyDescriptor(m, k);
8
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
- desc = { enumerable: true, get: function() { return m[k]; } };
10
- }
11
- Object.defineProperty(o, k2, desc);
12
- }) : (function(o, m, k, k2) {
13
- if (k2 === undefined) k2 = k;
14
- o[k2] = m[k];
15
- }));
16
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
- Object.defineProperty(o, "default", { enumerable: true, value: v });
18
- }) : function(o, v) {
19
- o["default"] = v;
20
- });
21
- var __importStar = (this && this.__importStar) || (function () {
22
- var ownKeys = function(o) {
23
- ownKeys = Object.getOwnPropertyNames || function (o) {
24
- var ar = [];
25
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
- return ar;
27
- };
28
- return ownKeys(o);
29
- };
30
- return function (mod) {
31
- if (mod && mod.__esModule) return mod;
32
- var result = {};
33
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
- __setModuleDefault(result, mod);
35
- return result;
36
- };
37
- })();
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.PublishEvent = void 0;
40
- const core = __importStar(require("../../../../core"));
41
- const AudioPublishEvent_1 = require("./AudioPublishEvent");
42
- const HangUpPublishEvent_1 = require("./HangUpPublishEvent");
43
- exports.PublishEvent = core.serialization
44
- .union("messageType", {
45
- audio: AudioPublishEvent_1.AudioPublishEvent,
46
- hangUp: HangUpPublishEvent_1.HangUpPublishEvent,
47
- })
48
- .transform({
49
- transform: (value) => value,
50
- untransform: (value) => value,
51
- });
@@ -1,27 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as MavenAGI from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- import { AudioSubscribeEvent } from "./AudioSubscribeEvent";
8
- import { ControlEvent } from "./ControlEvent";
9
- export declare const SubscribeEvent: core.serialization.Schema<serializers.SubscribeEvent.Raw, MavenAGI.SubscribeEvent>;
10
- export declare namespace SubscribeEvent {
11
- type Raw = SubscribeEvent.Audio | SubscribeEvent.ControlSessionStart | SubscribeEvent.ControlSessionStop | SubscribeEvent.ControlAudioDone | SubscribeEvent.ControlSessionUpdated;
12
- interface Audio extends AudioSubscribeEvent.Raw {
13
- messageType: "audio";
14
- }
15
- interface ControlSessionStart extends ControlEvent.Raw {
16
- messageType: "controlSessionStart";
17
- }
18
- interface ControlSessionStop extends ControlEvent.Raw {
19
- messageType: "controlSessionStop";
20
- }
21
- interface ControlAudioDone extends ControlEvent.Raw {
22
- messageType: "controlAudioDone";
23
- }
24
- interface ControlSessionUpdated extends ControlEvent.Raw {
25
- messageType: "controlSessionUpdated";
26
- }
27
- }
@@ -1,54 +0,0 @@
1
- "use strict";
2
- /**
3
- * This file was auto-generated by Fern from our API Definition.
4
- */
5
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- var desc = Object.getOwnPropertyDescriptor(m, k);
8
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
- desc = { enumerable: true, get: function() { return m[k]; } };
10
- }
11
- Object.defineProperty(o, k2, desc);
12
- }) : (function(o, m, k, k2) {
13
- if (k2 === undefined) k2 = k;
14
- o[k2] = m[k];
15
- }));
16
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
- Object.defineProperty(o, "default", { enumerable: true, value: v });
18
- }) : function(o, v) {
19
- o["default"] = v;
20
- });
21
- var __importStar = (this && this.__importStar) || (function () {
22
- var ownKeys = function(o) {
23
- ownKeys = Object.getOwnPropertyNames || function (o) {
24
- var ar = [];
25
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
- return ar;
27
- };
28
- return ownKeys(o);
29
- };
30
- return function (mod) {
31
- if (mod && mod.__esModule) return mod;
32
- var result = {};
33
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
- __setModuleDefault(result, mod);
35
- return result;
36
- };
37
- })();
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.SubscribeEvent = void 0;
40
- const core = __importStar(require("../../../../core"));
41
- const AudioSubscribeEvent_1 = require("./AudioSubscribeEvent");
42
- const ControlEvent_1 = require("./ControlEvent");
43
- exports.SubscribeEvent = core.serialization
44
- .union("messageType", {
45
- audio: AudioSubscribeEvent_1.AudioSubscribeEvent,
46
- controlSessionStart: ControlEvent_1.ControlEvent,
47
- controlSessionStop: ControlEvent_1.ControlEvent,
48
- controlAudioDone: ControlEvent_1.ControlEvent,
49
- controlSessionUpdated: ControlEvent_1.ControlEvent,
50
- })
51
- .transform({
52
- transform: (value) => value,
53
- untransform: (value) => value,
54
- });
@@ -1,8 +0,0 @@
1
- export * from "./AudioFormat";
2
- export * from "./MessageBase";
3
- export * from "./PublishEvent";
4
- export * from "./ControlEvent";
5
- export * from "./HangUpPublishEvent";
6
- export * from "./AudioPublishEvent";
7
- export * from "./SubscribeEvent";
8
- export * from "./AudioSubscribeEvent";
@@ -1,24 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./AudioFormat"), exports);
18
- __exportStar(require("./MessageBase"), exports);
19
- __exportStar(require("./PublishEvent"), exports);
20
- __exportStar(require("./ControlEvent"), exports);
21
- __exportStar(require("./HangUpPublishEvent"), exports);
22
- __exportStar(require("./AudioPublishEvent"), exports);
23
- __exportStar(require("./SubscribeEvent"), exports);
24
- __exportStar(require("./AudioSubscribeEvent"), exports);
@@ -1,13 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as MavenAGI from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- import { AskRequest } from "./AskRequest";
8
- export declare const GenerateObjectRequest: core.serialization.ObjectSchema<serializers.GenerateObjectRequest.Raw, MavenAGI.GenerateObjectRequest>;
9
- export declare namespace GenerateObjectRequest {
10
- interface Raw extends AskRequest.Raw {
11
- schema: string;
12
- }
13
- }
@@ -1,46 +0,0 @@
1
- "use strict";
2
- /**
3
- * This file was auto-generated by Fern from our API Definition.
4
- */
5
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- var desc = Object.getOwnPropertyDescriptor(m, k);
8
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
- desc = { enumerable: true, get: function() { return m[k]; } };
10
- }
11
- Object.defineProperty(o, k2, desc);
12
- }) : (function(o, m, k, k2) {
13
- if (k2 === undefined) k2 = k;
14
- o[k2] = m[k];
15
- }));
16
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
- Object.defineProperty(o, "default", { enumerable: true, value: v });
18
- }) : function(o, v) {
19
- o["default"] = v;
20
- });
21
- var __importStar = (this && this.__importStar) || (function () {
22
- var ownKeys = function(o) {
23
- ownKeys = Object.getOwnPropertyNames || function (o) {
24
- var ar = [];
25
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
- return ar;
27
- };
28
- return ownKeys(o);
29
- };
30
- return function (mod) {
31
- if (mod && mod.__esModule) return mod;
32
- var result = {};
33
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
- __setModuleDefault(result, mod);
35
- return result;
36
- };
37
- })();
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.GenerateObjectRequest = void 0;
40
- const core = __importStar(require("../../../../core"));
41
- const AskRequest_1 = require("./AskRequest");
42
- exports.GenerateObjectRequest = core.serialization
43
- .object({
44
- schema: core.serialization.string(),
45
- })
46
- .extend(AskRequest_1.AskRequest);
@@ -1 +0,0 @@
1
- export * from "./types";
@@ -1,17 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./types"), exports);
@@ -1,10 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as MavenAGI from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- export declare const AudioFormat: core.serialization.Schema<serializers.AudioFormat.Raw, MavenAGI.AudioFormat>;
8
- export declare namespace AudioFormat {
9
- type Raw = "PCM16" | "G711_ULAW";
10
- }
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as MavenAGI from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- export declare const AudioPublishEvent: core.serialization.ObjectSchema<serializers.AudioPublishEvent.Raw, MavenAGI.AudioPublishEvent>;
8
- export declare namespace AudioPublishEvent {
9
- interface Raw {
10
- audioContent: string;
11
- }
12
- }
@@ -1,43 +0,0 @@
1
- "use strict";
2
- /**
3
- * This file was auto-generated by Fern from our API Definition.
4
- */
5
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- var desc = Object.getOwnPropertyDescriptor(m, k);
8
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
- desc = { enumerable: true, get: function() { return m[k]; } };
10
- }
11
- Object.defineProperty(o, k2, desc);
12
- }) : (function(o, m, k, k2) {
13
- if (k2 === undefined) k2 = k;
14
- o[k2] = m[k];
15
- }));
16
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
- Object.defineProperty(o, "default", { enumerable: true, value: v });
18
- }) : function(o, v) {
19
- o["default"] = v;
20
- });
21
- var __importStar = (this && this.__importStar) || (function () {
22
- var ownKeys = function(o) {
23
- ownKeys = Object.getOwnPropertyNames || function (o) {
24
- var ar = [];
25
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
- return ar;
27
- };
28
- return ownKeys(o);
29
- };
30
- return function (mod) {
31
- if (mod && mod.__esModule) return mod;
32
- var result = {};
33
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
- __setModuleDefault(result, mod);
35
- return result;
36
- };
37
- })();
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.AudioPublishEvent = void 0;
40
- const core = __importStar(require("../../../../core"));
41
- exports.AudioPublishEvent = core.serialization.object({
42
- audioContent: core.serialization.string(),
43
- });
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as MavenAGI from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- export declare const AudioSubscribeEvent: core.serialization.ObjectSchema<serializers.AudioSubscribeEvent.Raw, MavenAGI.AudioSubscribeEvent>;
8
- export declare namespace AudioSubscribeEvent {
9
- interface Raw {
10
- audioContent: string;
11
- }
12
- }
@@ -1,43 +0,0 @@
1
- "use strict";
2
- /**
3
- * This file was auto-generated by Fern from our API Definition.
4
- */
5
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- var desc = Object.getOwnPropertyDescriptor(m, k);
8
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
- desc = { enumerable: true, get: function() { return m[k]; } };
10
- }
11
- Object.defineProperty(o, k2, desc);
12
- }) : (function(o, m, k, k2) {
13
- if (k2 === undefined) k2 = k;
14
- o[k2] = m[k];
15
- }));
16
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
- Object.defineProperty(o, "default", { enumerable: true, value: v });
18
- }) : function(o, v) {
19
- o["default"] = v;
20
- });
21
- var __importStar = (this && this.__importStar) || (function () {
22
- var ownKeys = function(o) {
23
- ownKeys = Object.getOwnPropertyNames || function (o) {
24
- var ar = [];
25
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
- return ar;
27
- };
28
- return ownKeys(o);
29
- };
30
- return function (mod) {
31
- if (mod && mod.__esModule) return mod;
32
- var result = {};
33
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
- __setModuleDefault(result, mod);
35
- return result;
36
- };
37
- })();
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.AudioSubscribeEvent = void 0;
40
- const core = __importStar(require("../../../../core"));
41
- exports.AudioSubscribeEvent = core.serialization.object({
42
- audioContent: core.serialization.string(),
43
- });
@@ -1,15 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as MavenAGI from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- import { AudioFormat } from "./AudioFormat";
8
- import { MessageBase } from "./MessageBase";
9
- export declare const ControlEvent: core.serialization.ObjectSchema<serializers.ControlEvent.Raw, MavenAGI.ControlEvent>;
10
- export declare namespace ControlEvent {
11
- interface Raw extends MessageBase.Raw {
12
- reason?: string | null;
13
- unused?: AudioFormat.Raw | null;
14
- }
15
- }
@@ -1,48 +0,0 @@
1
- "use strict";
2
- /**
3
- * This file was auto-generated by Fern from our API Definition.
4
- */
5
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- var desc = Object.getOwnPropertyDescriptor(m, k);
8
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
- desc = { enumerable: true, get: function() { return m[k]; } };
10
- }
11
- Object.defineProperty(o, k2, desc);
12
- }) : (function(o, m, k, k2) {
13
- if (k2 === undefined) k2 = k;
14
- o[k2] = m[k];
15
- }));
16
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
- Object.defineProperty(o, "default", { enumerable: true, value: v });
18
- }) : function(o, v) {
19
- o["default"] = v;
20
- });
21
- var __importStar = (this && this.__importStar) || (function () {
22
- var ownKeys = function(o) {
23
- ownKeys = Object.getOwnPropertyNames || function (o) {
24
- var ar = [];
25
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
- return ar;
27
- };
28
- return ownKeys(o);
29
- };
30
- return function (mod) {
31
- if (mod && mod.__esModule) return mod;
32
- var result = {};
33
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
- __setModuleDefault(result, mod);
35
- return result;
36
- };
37
- })();
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.ControlEvent = void 0;
40
- const core = __importStar(require("../../../../core"));
41
- const AudioFormat_1 = require("./AudioFormat");
42
- const MessageBase_1 = require("./MessageBase");
43
- exports.ControlEvent = core.serialization
44
- .object({
45
- reason: core.serialization.string().optional(),
46
- unused: AudioFormat_1.AudioFormat.optional(),
47
- })
48
- .extend(MessageBase_1.MessageBase);
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as MavenAGI from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- export declare const HangUpPublishEvent: core.serialization.ObjectSchema<serializers.HangUpPublishEvent.Raw, MavenAGI.HangUpPublishEvent>;
8
- export declare namespace HangUpPublishEvent {
9
- interface Raw {
10
- message?: string | null;
11
- }
12
- }