mavenagi 1.0.10 → 1.0.11

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 (313) hide show
  1. package/Client.d.ts +3 -0
  2. package/Client.js +13 -8
  3. package/README.md +1 -1
  4. package/api/resources/actions/client/Client.js +3 -3
  5. package/api/resources/analytics/client/Client.js +3 -3
  6. package/api/resources/appSettings/client/Client.d.ts +21 -0
  7. package/api/resources/appSettings/client/Client.js +91 -2
  8. package/api/resources/appSettings/client/index.d.ts +1 -1
  9. package/api/resources/appSettings/client/index.js +15 -0
  10. package/api/resources/appSettings/client/requests/SearchAppSettingsRequest.d.ts +15 -0
  11. package/api/resources/appSettings/client/requests/index.d.ts +1 -0
  12. package/api/resources/appSettings/client/requests/index.js +2 -0
  13. package/api/resources/appSettings/index.d.ts +1 -0
  14. package/api/resources/appSettings/index.js +1 -0
  15. package/api/resources/appSettings/types/AppSettings.d.ts +11 -0
  16. package/api/resources/appSettings/types/SearchAppSettingsResponse.d.ts +7 -0
  17. package/api/resources/appSettings/types/index.d.ts +2 -0
  18. package/api/resources/appSettings/types/index.js +18 -0
  19. package/api/resources/commons/types/ActionFormField.d.ts +3 -3
  20. package/api/resources/commons/types/AppPrecondition.d.ts +8 -0
  21. package/api/resources/commons/types/BotActionFormResponse.d.ts +7 -1
  22. package/api/resources/commons/types/ConversationAnalysis.d.ts +2 -0
  23. package/api/resources/commons/types/ConversationPrecondition.d.ts +4 -1
  24. package/api/resources/commons/types/ConversationResponse.d.ts +8 -1
  25. package/api/resources/commons/types/ConversationSummary.d.ts +27 -0
  26. package/api/resources/commons/types/EntityType.d.ts +2 -1
  27. package/api/resources/commons/types/EntityType.js +1 -0
  28. package/api/resources/commons/types/InboxItemDuplicateDocuments.d.ts +2 -0
  29. package/api/resources/commons/types/UserMessage.d.ts +2 -0
  30. package/api/resources/commons/types/index.d.ts +1 -3
  31. package/api/resources/commons/types/index.js +1 -3
  32. package/api/resources/conversation/client/Client.d.ts +2 -1
  33. package/api/resources/conversation/client/Client.js +15 -14
  34. package/api/resources/conversation/types/AskRequest.d.ts +4 -1
  35. package/api/resources/inbox/client/Client.js +5 -5
  36. package/api/resources/index.d.ts +5 -1
  37. package/api/resources/index.js +6 -2
  38. package/api/resources/knowledge/client/Client.d.ts +42 -5
  39. package/api/resources/knowledge/client/Client.js +58 -13
  40. package/api/resources/knowledge/types/FinalizeKnowledgeBaseVersionRequest.d.ts +23 -0
  41. package/api/resources/knowledge/types/FinalizeKnowledgeBaseVersionRequest.js +5 -0
  42. package/api/resources/knowledge/types/KnowledgeBaseRequest.d.ts +2 -0
  43. package/api/resources/knowledge/types/KnowledgeBaseResponse.d.ts +6 -1
  44. package/api/resources/knowledge/types/KnowledgeBaseVersion.d.ts +15 -1
  45. package/api/resources/knowledge/types/KnowledgeBaseVersionFinalizeStatus.d.ts +11 -0
  46. package/api/resources/knowledge/types/KnowledgeBaseVersionFinalizeStatus.js +10 -0
  47. package/api/resources/knowledge/types/KnowledgeBaseVersionStatus.d.ts +12 -0
  48. package/api/resources/knowledge/types/KnowledgeBaseVersionStatus.js +11 -0
  49. package/api/resources/knowledge/types/KnowledgeDocumentRequest.d.ts +13 -1
  50. package/api/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +6 -1
  51. package/api/resources/knowledge/types/index.d.ts +3 -0
  52. package/api/resources/knowledge/types/index.js +3 -0
  53. package/api/resources/organizations/client/Client.d.ts +147 -0
  54. package/api/resources/organizations/client/Client.js +317 -0
  55. package/api/resources/organizations/client/index.d.ts +1 -0
  56. package/api/resources/organizations/client/index.js +2 -0
  57. package/api/resources/organizations/index.d.ts +1 -0
  58. package/api/resources/organizations/index.js +17 -0
  59. package/api/resources/translations/client/Client.js +1 -1
  60. package/api/resources/triggers/client/Client.d.ts +29 -0
  61. package/api/resources/triggers/client/Client.js +170 -3
  62. package/api/resources/triggers/client/index.d.ts +1 -1
  63. package/api/resources/triggers/client/index.js +15 -0
  64. package/api/resources/triggers/client/requests/PartialUpdateRequest.d.ts +17 -0
  65. package/api/resources/triggers/client/requests/PartialUpdateRequest.js +5 -0
  66. package/api/resources/triggers/client/requests/index.d.ts +1 -0
  67. package/api/resources/triggers/client/requests/index.js +2 -0
  68. package/api/resources/triggers/types/EventTriggerBase.js +5 -0
  69. package/api/resources/{commons → triggers}/types/EventTriggerResponse.d.ts +4 -1
  70. package/api/resources/triggers/types/EventTriggerResponse.js +5 -0
  71. package/api/resources/triggers/types/EventTriggersSearchRequest.d.ts +8 -0
  72. package/api/resources/triggers/types/EventTriggersSearchRequest.js +5 -0
  73. package/api/resources/triggers/types/EventTriggersSearchResponse.d.ts +7 -0
  74. package/api/resources/triggers/types/EventTriggersSearchResponse.js +5 -0
  75. package/api/resources/triggers/types/TriggerField.d.ts +8 -0
  76. package/api/resources/triggers/types/TriggerField.js +10 -0
  77. package/api/resources/triggers/types/TriggerPartialUpdate.d.ts +7 -0
  78. package/api/resources/triggers/types/TriggerPartialUpdate.js +5 -0
  79. package/api/resources/triggers/types/index.d.ts +7 -0
  80. package/api/resources/triggers/types/index.js +7 -0
  81. package/api/resources/users/client/Client.js +3 -3
  82. package/dist/Client.d.ts +3 -0
  83. package/dist/Client.js +13 -8
  84. package/dist/api/resources/actions/client/Client.js +3 -3
  85. package/dist/api/resources/analytics/client/Client.js +3 -3
  86. package/dist/api/resources/appSettings/client/Client.d.ts +21 -0
  87. package/dist/api/resources/appSettings/client/Client.js +91 -2
  88. package/dist/api/resources/appSettings/client/index.d.ts +1 -1
  89. package/dist/api/resources/appSettings/client/index.js +15 -0
  90. package/dist/api/resources/appSettings/client/requests/SearchAppSettingsRequest.d.ts +15 -0
  91. package/dist/api/resources/appSettings/client/requests/SearchAppSettingsRequest.js +5 -0
  92. package/dist/api/resources/appSettings/client/requests/index.d.ts +1 -0
  93. package/dist/api/resources/appSettings/client/requests/index.js +2 -0
  94. package/dist/api/resources/appSettings/index.d.ts +1 -0
  95. package/dist/api/resources/appSettings/index.js +1 -0
  96. package/dist/api/resources/appSettings/types/AppSettings.d.ts +11 -0
  97. package/dist/api/resources/appSettings/types/AppSettings.js +5 -0
  98. package/dist/api/resources/appSettings/types/SearchAppSettingsResponse.d.ts +7 -0
  99. package/dist/api/resources/appSettings/types/SearchAppSettingsResponse.js +5 -0
  100. package/dist/api/resources/appSettings/types/index.d.ts +2 -0
  101. package/dist/api/resources/appSettings/types/index.js +18 -0
  102. package/dist/api/resources/commons/types/ActionFormField.d.ts +3 -3
  103. package/dist/api/resources/commons/types/AppPrecondition.d.ts +8 -0
  104. package/dist/api/resources/commons/types/AppPrecondition.js +5 -0
  105. package/dist/api/resources/commons/types/BotActionFormResponse.d.ts +7 -1
  106. package/dist/api/resources/commons/types/ConversationAnalysis.d.ts +2 -0
  107. package/dist/api/resources/commons/types/ConversationPrecondition.d.ts +4 -1
  108. package/dist/api/resources/commons/types/ConversationResponse.d.ts +8 -1
  109. package/dist/api/resources/commons/types/ConversationSummary.d.ts +27 -0
  110. package/dist/api/resources/commons/types/EntityType.d.ts +2 -1
  111. package/dist/api/resources/commons/types/EntityType.js +1 -0
  112. package/dist/api/resources/commons/types/InboxItemDuplicateDocuments.d.ts +2 -0
  113. package/dist/api/resources/commons/types/UserMessage.d.ts +2 -0
  114. package/dist/api/resources/commons/types/index.d.ts +1 -3
  115. package/dist/api/resources/commons/types/index.js +1 -3
  116. package/dist/api/resources/conversation/client/Client.d.ts +2 -1
  117. package/dist/api/resources/conversation/client/Client.js +15 -14
  118. package/dist/api/resources/conversation/types/AskRequest.d.ts +4 -1
  119. package/dist/api/resources/inbox/client/Client.js +5 -5
  120. package/dist/api/resources/index.d.ts +5 -1
  121. package/dist/api/resources/index.js +6 -2
  122. package/dist/api/resources/knowledge/client/Client.d.ts +42 -5
  123. package/dist/api/resources/knowledge/client/Client.js +58 -13
  124. package/dist/api/resources/knowledge/types/FinalizeKnowledgeBaseVersionRequest.d.ts +23 -0
  125. package/dist/api/resources/knowledge/types/FinalizeKnowledgeBaseVersionRequest.js +5 -0
  126. package/dist/api/resources/knowledge/types/KnowledgeBaseRequest.d.ts +2 -0
  127. package/dist/api/resources/knowledge/types/KnowledgeBaseResponse.d.ts +6 -1
  128. package/dist/api/resources/knowledge/types/KnowledgeBaseVersion.d.ts +15 -1
  129. package/dist/api/resources/knowledge/types/KnowledgeBaseVersionFinalizeStatus.d.ts +11 -0
  130. package/dist/api/resources/knowledge/types/KnowledgeBaseVersionFinalizeStatus.js +10 -0
  131. package/dist/api/resources/knowledge/types/KnowledgeBaseVersionStatus.d.ts +12 -0
  132. package/dist/api/resources/knowledge/types/KnowledgeBaseVersionStatus.js +11 -0
  133. package/dist/api/resources/knowledge/types/KnowledgeDocumentRequest.d.ts +13 -1
  134. package/dist/api/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +6 -1
  135. package/dist/api/resources/knowledge/types/index.d.ts +3 -0
  136. package/dist/api/resources/knowledge/types/index.js +3 -0
  137. package/dist/api/resources/organizations/client/Client.d.ts +147 -0
  138. package/dist/api/resources/organizations/client/Client.js +317 -0
  139. package/dist/api/resources/organizations/client/index.d.ts +1 -0
  140. package/dist/api/resources/organizations/client/index.js +2 -0
  141. package/dist/api/resources/organizations/index.d.ts +1 -0
  142. package/dist/api/resources/organizations/index.js +17 -0
  143. package/dist/api/resources/translations/client/Client.js +1 -1
  144. package/dist/api/resources/triggers/client/Client.d.ts +29 -0
  145. package/dist/api/resources/triggers/client/Client.js +170 -3
  146. package/dist/api/resources/triggers/client/index.d.ts +1 -1
  147. package/dist/api/resources/triggers/client/index.js +15 -0
  148. package/dist/api/resources/triggers/client/requests/PartialUpdateRequest.d.ts +17 -0
  149. package/dist/api/resources/triggers/client/requests/PartialUpdateRequest.js +5 -0
  150. package/dist/api/resources/triggers/client/requests/index.d.ts +1 -0
  151. package/dist/api/resources/triggers/client/requests/index.js +2 -0
  152. package/dist/api/resources/triggers/types/EventTriggerBase.js +5 -0
  153. package/dist/api/resources/{commons → triggers}/types/EventTriggerResponse.d.ts +4 -1
  154. package/dist/api/resources/triggers/types/EventTriggerResponse.js +5 -0
  155. package/dist/api/resources/triggers/types/EventTriggersSearchRequest.d.ts +8 -0
  156. package/dist/api/resources/triggers/types/EventTriggersSearchRequest.js +5 -0
  157. package/dist/api/resources/triggers/types/EventTriggersSearchResponse.d.ts +7 -0
  158. package/dist/api/resources/triggers/types/EventTriggersSearchResponse.js +5 -0
  159. package/dist/api/resources/triggers/types/TriggerField.d.ts +8 -0
  160. package/dist/api/resources/triggers/types/TriggerField.js +10 -0
  161. package/dist/api/resources/triggers/types/TriggerPartialUpdate.d.ts +7 -0
  162. package/dist/api/resources/triggers/types/TriggerPartialUpdate.js +5 -0
  163. package/dist/api/resources/triggers/types/index.d.ts +7 -0
  164. package/dist/api/resources/triggers/types/index.js +7 -0
  165. package/dist/api/resources/users/client/Client.js +3 -3
  166. package/dist/serialization/resources/appSettings/index.d.ts +1 -0
  167. package/dist/serialization/resources/appSettings/index.js +1 -0
  168. package/dist/serialization/resources/appSettings/types/AppSettings.d.ts +14 -0
  169. package/dist/serialization/resources/appSettings/types/AppSettings.js +45 -0
  170. package/dist/serialization/resources/appSettings/types/SearchAppSettingsResponse.d.ts +13 -0
  171. package/dist/serialization/resources/appSettings/types/SearchAppSettingsResponse.js +44 -0
  172. package/dist/serialization/resources/appSettings/types/index.d.ts +2 -0
  173. package/dist/serialization/resources/appSettings/types/index.js +18 -0
  174. package/dist/serialization/resources/commons/types/AppPrecondition.d.ts +13 -0
  175. package/dist/serialization/resources/commons/types/AppPrecondition.js +46 -0
  176. package/dist/serialization/resources/commons/types/BotActionFormResponse.d.ts +2 -0
  177. package/dist/serialization/resources/commons/types/BotActionFormResponse.js +2 -0
  178. package/dist/serialization/resources/commons/types/ConversationAnalysis.d.ts +1 -0
  179. package/dist/serialization/resources/commons/types/ConversationAnalysis.js +1 -0
  180. package/dist/serialization/resources/commons/types/ConversationPrecondition.d.ts +5 -1
  181. package/dist/serialization/resources/commons/types/ConversationPrecondition.js +2 -0
  182. package/dist/serialization/resources/commons/types/ConversationSummary.d.ts +9 -0
  183. package/dist/serialization/resources/commons/types/ConversationSummary.js +9 -0
  184. package/dist/serialization/resources/commons/types/EntityType.d.ts +1 -1
  185. package/dist/serialization/resources/commons/types/EntityType.js +1 -0
  186. package/dist/serialization/resources/commons/types/InboxItemDuplicateDocuments.d.ts +1 -0
  187. package/dist/serialization/resources/commons/types/InboxItemDuplicateDocuments.js +1 -0
  188. package/dist/serialization/resources/commons/types/UserMessage.d.ts +1 -0
  189. package/dist/serialization/resources/commons/types/UserMessage.js +1 -0
  190. package/dist/serialization/resources/commons/types/index.d.ts +1 -3
  191. package/dist/serialization/resources/commons/types/index.js +1 -3
  192. package/dist/serialization/resources/conversation/types/AskRequest.d.ts +1 -0
  193. package/dist/serialization/resources/conversation/types/AskRequest.js +1 -0
  194. package/dist/serialization/resources/index.d.ts +2 -1
  195. package/dist/serialization/resources/index.js +3 -2
  196. package/dist/serialization/resources/knowledge/types/FinalizeKnowledgeBaseVersionRequest.d.ts +16 -0
  197. package/dist/serialization/resources/knowledge/types/FinalizeKnowledgeBaseVersionRequest.js +47 -0
  198. package/dist/serialization/resources/knowledge/types/KnowledgeBaseRequest.d.ts +1 -0
  199. package/dist/serialization/resources/knowledge/types/KnowledgeBaseRequest.js +1 -0
  200. package/dist/serialization/resources/knowledge/types/KnowledgeBaseResponse.d.ts +1 -0
  201. package/dist/serialization/resources/knowledge/types/KnowledgeBaseResponse.js +1 -0
  202. package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersion.d.ts +5 -0
  203. package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersion.js +5 -0
  204. package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersionFinalizeStatus.d.ts +10 -0
  205. package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersionFinalizeStatus.js +41 -0
  206. package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersionStatus.d.ts +10 -0
  207. package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersionStatus.js +41 -0
  208. package/dist/serialization/resources/knowledge/types/KnowledgeDocumentRequest.d.ts +3 -0
  209. package/dist/serialization/resources/knowledge/types/KnowledgeDocumentRequest.js +3 -0
  210. package/dist/serialization/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +1 -0
  211. package/dist/serialization/resources/knowledge/types/KnowledgeDocumentResponse.js +1 -0
  212. package/dist/serialization/resources/knowledge/types/index.d.ts +3 -0
  213. package/dist/serialization/resources/knowledge/types/index.js +3 -0
  214. package/dist/serialization/resources/triggers/types/EventTriggerRequest.d.ts +1 -1
  215. package/dist/serialization/resources/triggers/types/EventTriggerRequest.js +1 -1
  216. package/dist/serialization/resources/{commons → triggers}/types/EventTriggerResponse.d.ts +2 -1
  217. package/{serialization/resources/commons → dist/serialization/resources/triggers}/types/EventTriggerResponse.js +2 -1
  218. package/dist/serialization/resources/triggers/types/EventTriggersSearchRequest.d.ts +14 -0
  219. package/dist/serialization/resources/triggers/types/EventTriggersSearchRequest.js +47 -0
  220. package/dist/serialization/resources/triggers/types/EventTriggersSearchResponse.d.ts +14 -0
  221. package/dist/serialization/resources/triggers/types/EventTriggersSearchResponse.js +47 -0
  222. package/dist/serialization/resources/triggers/types/TriggerField.d.ts +10 -0
  223. package/dist/serialization/resources/triggers/types/TriggerField.js +41 -0
  224. package/dist/serialization/resources/triggers/types/TriggerPartialUpdate.d.ts +12 -0
  225. package/dist/serialization/resources/triggers/types/TriggerPartialUpdate.js +43 -0
  226. package/dist/serialization/resources/triggers/types/index.d.ts +7 -0
  227. package/dist/serialization/resources/triggers/types/index.js +7 -0
  228. package/dist/version.d.ts +1 -1
  229. package/dist/version.js +1 -1
  230. package/package.json +1 -1
  231. package/reference.md +417 -2
  232. package/serialization/resources/appSettings/index.d.ts +1 -0
  233. package/serialization/resources/appSettings/index.js +1 -0
  234. package/serialization/resources/appSettings/types/AppSettings.d.ts +14 -0
  235. package/serialization/resources/appSettings/types/AppSettings.js +45 -0
  236. package/serialization/resources/appSettings/types/SearchAppSettingsResponse.d.ts +13 -0
  237. package/serialization/resources/appSettings/types/SearchAppSettingsResponse.js +44 -0
  238. package/serialization/resources/appSettings/types/index.d.ts +2 -0
  239. package/serialization/resources/appSettings/types/index.js +18 -0
  240. package/serialization/resources/commons/types/AppPrecondition.d.ts +13 -0
  241. package/serialization/resources/commons/types/AppPrecondition.js +46 -0
  242. package/serialization/resources/commons/types/BotActionFormResponse.d.ts +2 -0
  243. package/serialization/resources/commons/types/BotActionFormResponse.js +2 -0
  244. package/serialization/resources/commons/types/ConversationAnalysis.d.ts +1 -0
  245. package/serialization/resources/commons/types/ConversationAnalysis.js +1 -0
  246. package/serialization/resources/commons/types/ConversationPrecondition.d.ts +5 -1
  247. package/serialization/resources/commons/types/ConversationPrecondition.js +2 -0
  248. package/serialization/resources/commons/types/ConversationSummary.d.ts +9 -0
  249. package/serialization/resources/commons/types/ConversationSummary.js +9 -0
  250. package/serialization/resources/commons/types/EntityType.d.ts +1 -1
  251. package/serialization/resources/commons/types/EntityType.js +1 -0
  252. package/serialization/resources/commons/types/InboxItemDuplicateDocuments.d.ts +1 -0
  253. package/serialization/resources/commons/types/InboxItemDuplicateDocuments.js +1 -0
  254. package/serialization/resources/commons/types/UserMessage.d.ts +1 -0
  255. package/serialization/resources/commons/types/UserMessage.js +1 -0
  256. package/serialization/resources/commons/types/index.d.ts +1 -3
  257. package/serialization/resources/commons/types/index.js +1 -3
  258. package/serialization/resources/conversation/types/AskRequest.d.ts +1 -0
  259. package/serialization/resources/conversation/types/AskRequest.js +1 -0
  260. package/serialization/resources/index.d.ts +2 -1
  261. package/serialization/resources/index.js +3 -2
  262. package/serialization/resources/knowledge/types/FinalizeKnowledgeBaseVersionRequest.d.ts +16 -0
  263. package/serialization/resources/knowledge/types/FinalizeKnowledgeBaseVersionRequest.js +47 -0
  264. package/serialization/resources/knowledge/types/KnowledgeBaseRequest.d.ts +1 -0
  265. package/serialization/resources/knowledge/types/KnowledgeBaseRequest.js +1 -0
  266. package/serialization/resources/knowledge/types/KnowledgeBaseResponse.d.ts +1 -0
  267. package/serialization/resources/knowledge/types/KnowledgeBaseResponse.js +1 -0
  268. package/serialization/resources/knowledge/types/KnowledgeBaseVersion.d.ts +5 -0
  269. package/serialization/resources/knowledge/types/KnowledgeBaseVersion.js +5 -0
  270. package/serialization/resources/knowledge/types/KnowledgeBaseVersionFinalizeStatus.d.ts +10 -0
  271. package/serialization/resources/knowledge/types/KnowledgeBaseVersionFinalizeStatus.js +41 -0
  272. package/serialization/resources/knowledge/types/KnowledgeBaseVersionStatus.d.ts +10 -0
  273. package/serialization/resources/knowledge/types/KnowledgeBaseVersionStatus.js +41 -0
  274. package/serialization/resources/knowledge/types/KnowledgeDocumentRequest.d.ts +3 -0
  275. package/serialization/resources/knowledge/types/KnowledgeDocumentRequest.js +3 -0
  276. package/serialization/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +1 -0
  277. package/serialization/resources/knowledge/types/KnowledgeDocumentResponse.js +1 -0
  278. package/serialization/resources/knowledge/types/index.d.ts +3 -0
  279. package/serialization/resources/knowledge/types/index.js +3 -0
  280. package/serialization/resources/triggers/types/EventTriggerRequest.d.ts +1 -1
  281. package/serialization/resources/triggers/types/EventTriggerRequest.js +1 -1
  282. package/serialization/resources/{commons → triggers}/types/EventTriggerResponse.d.ts +2 -1
  283. package/{dist/serialization/resources/commons → serialization/resources/triggers}/types/EventTriggerResponse.js +2 -1
  284. package/serialization/resources/triggers/types/EventTriggersSearchRequest.d.ts +14 -0
  285. package/serialization/resources/triggers/types/EventTriggersSearchRequest.js +47 -0
  286. package/serialization/resources/triggers/types/EventTriggersSearchResponse.d.ts +14 -0
  287. package/serialization/resources/triggers/types/EventTriggersSearchResponse.js +47 -0
  288. package/serialization/resources/triggers/types/TriggerField.d.ts +10 -0
  289. package/serialization/resources/triggers/types/TriggerField.js +41 -0
  290. package/serialization/resources/triggers/types/TriggerPartialUpdate.d.ts +12 -0
  291. package/serialization/resources/triggers/types/TriggerPartialUpdate.js +43 -0
  292. package/serialization/resources/triggers/types/index.d.ts +7 -0
  293. package/serialization/resources/triggers/types/index.js +7 -0
  294. package/version.d.ts +1 -1
  295. package/version.js +1 -1
  296. /package/api/resources/{commons/types/EventTriggerBase.js → appSettings/client/requests/SearchAppSettingsRequest.js} +0 -0
  297. /package/api/resources/{commons/types/EventTriggerResponse.js → appSettings/types/AppSettings.js} +0 -0
  298. /package/{dist/api/resources/commons/types/EventTriggerBase.js → api/resources/appSettings/types/SearchAppSettingsResponse.js} +0 -0
  299. /package/{dist/api/resources/commons/types/EventTriggerResponse.js → api/resources/commons/types/AppPrecondition.js} +0 -0
  300. /package/api/resources/{commons → triggers}/types/EventTriggerBase.d.ts +0 -0
  301. /package/api/resources/{commons → triggers}/types/EventTriggerType.d.ts +0 -0
  302. /package/api/resources/{commons → triggers}/types/EventTriggerType.js +0 -0
  303. /package/dist/api/resources/{commons → triggers}/types/EventTriggerBase.d.ts +0 -0
  304. /package/dist/api/resources/{commons → triggers}/types/EventTriggerType.d.ts +0 -0
  305. /package/dist/api/resources/{commons → triggers}/types/EventTriggerType.js +0 -0
  306. /package/dist/serialization/resources/{commons → triggers}/types/EventTriggerBase.d.ts +0 -0
  307. /package/dist/serialization/resources/{commons → triggers}/types/EventTriggerBase.js +0 -0
  308. /package/dist/serialization/resources/{commons → triggers}/types/EventTriggerType.d.ts +0 -0
  309. /package/dist/serialization/resources/{commons → triggers}/types/EventTriggerType.js +0 -0
  310. /package/serialization/resources/{commons → triggers}/types/EventTriggerBase.d.ts +0 -0
  311. /package/serialization/resources/{commons → triggers}/types/EventTriggerBase.js +0 -0
  312. /package/serialization/resources/{commons → triggers}/types/EventTriggerType.d.ts +0 -0
  313. /package/serialization/resources/{commons → triggers}/types/EventTriggerType.js +0 -0
@@ -3,6 +3,7 @@
3
3
  */
4
4
  import * as environments from "../../../../environments";
5
5
  import * as core from "../../../../core";
6
+ import * as MavenAGI from "../../../index";
6
7
  export declare namespace AppSettings {
7
8
  interface Options {
8
9
  environment?: core.Supplier<environments.MavenAGIEnvironment | string>;
@@ -34,6 +35,26 @@ export declare namespace AppSettings {
34
35
  export declare class AppSettings {
35
36
  protected readonly _options: AppSettings.Options;
36
37
  constructor(_options: AppSettings.Options);
38
+ /**
39
+ * Search for app settings which have the `$index` key set to the provided value.
40
+ *
41
+ * You can set the `$index` key using the Update app settings API.
42
+ *
43
+ * <Warning>This API currently requires an organization ID and agent ID for any agent which is installed on the app. This requirement will be removed in a future update.</Warning>
44
+ *
45
+ * @param {MavenAGI.SearchAppSettingsRequest} request
46
+ * @param {AppSettings.RequestOptions} requestOptions - Request-specific configuration.
47
+ *
48
+ * @throws {@link MavenAGI.NotFoundError}
49
+ * @throws {@link MavenAGI.BadRequestError}
50
+ * @throws {@link MavenAGI.ServerError}
51
+ *
52
+ * @example
53
+ * await client.appSettings.search({
54
+ * index: "index"
55
+ * })
56
+ */
57
+ search(request: MavenAGI.SearchAppSettingsRequest, requestOptions?: AppSettings.RequestOptions): Promise<MavenAGI.SearchAppSettingsResponse>;
37
58
  /**
38
59
  * Get app settings set during installation
39
60
  *
@@ -59,6 +59,95 @@ class AppSettings {
59
59
  constructor(_options) {
60
60
  this._options = _options;
61
61
  }
62
+ /**
63
+ * Search for app settings which have the `$index` key set to the provided value.
64
+ *
65
+ * You can set the `$index` key using the Update app settings API.
66
+ *
67
+ * <Warning>This API currently requires an organization ID and agent ID for any agent which is installed on the app. This requirement will be removed in a future update.</Warning>
68
+ *
69
+ * @param {MavenAGI.SearchAppSettingsRequest} request
70
+ * @param {AppSettings.RequestOptions} requestOptions - Request-specific configuration.
71
+ *
72
+ * @throws {@link MavenAGI.NotFoundError}
73
+ * @throws {@link MavenAGI.BadRequestError}
74
+ * @throws {@link MavenAGI.ServerError}
75
+ *
76
+ * @example
77
+ * await client.appSettings.search({
78
+ * index: "index"
79
+ * })
80
+ */
81
+ search(request, requestOptions) {
82
+ return __awaiter(this, void 0, void 0, function* () {
83
+ var _a, _b, _c;
84
+ const { index } = request;
85
+ const _queryParams = {};
86
+ _queryParams["index"] = index;
87
+ const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
88
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.MavenAGIEnvironment.Production, "v1/app-settings/search"),
89
+ method: "GET",
90
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Organization-Id": yield core.Supplier.get(this._options.organizationId), "X-Agent-Id": yield core.Supplier.get(this._options.agentId), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "mavenagi", "X-Fern-SDK-Version": "1.0.11", "User-Agent": "mavenagi/1.0.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
91
+ contentType: "application/json",
92
+ queryParameters: _queryParams,
93
+ requestType: "json",
94
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
95
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
96
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
97
+ });
98
+ if (_response.ok) {
99
+ return serializers.SearchAppSettingsResponse.parseOrThrow(_response.body, {
100
+ unrecognizedObjectKeys: "passthrough",
101
+ allowUnrecognizedUnionMembers: true,
102
+ allowUnrecognizedEnumValues: true,
103
+ breadcrumbsPrefix: ["response"],
104
+ });
105
+ }
106
+ if (_response.error.reason === "status-code") {
107
+ switch (_response.error.statusCode) {
108
+ case 404:
109
+ throw new MavenAGI.NotFoundError(serializers.ErrorMessage.parseOrThrow(_response.error.body, {
110
+ unrecognizedObjectKeys: "passthrough",
111
+ allowUnrecognizedUnionMembers: true,
112
+ allowUnrecognizedEnumValues: true,
113
+ breadcrumbsPrefix: ["response"],
114
+ }));
115
+ case 400:
116
+ throw new MavenAGI.BadRequestError(serializers.ErrorMessage.parseOrThrow(_response.error.body, {
117
+ unrecognizedObjectKeys: "passthrough",
118
+ allowUnrecognizedUnionMembers: true,
119
+ allowUnrecognizedEnumValues: true,
120
+ breadcrumbsPrefix: ["response"],
121
+ }));
122
+ case 500:
123
+ throw new MavenAGI.ServerError(serializers.ErrorMessage.parseOrThrow(_response.error.body, {
124
+ unrecognizedObjectKeys: "passthrough",
125
+ allowUnrecognizedUnionMembers: true,
126
+ allowUnrecognizedEnumValues: true,
127
+ breadcrumbsPrefix: ["response"],
128
+ }));
129
+ default:
130
+ throw new errors.MavenAGIError({
131
+ statusCode: _response.error.statusCode,
132
+ body: _response.error.body,
133
+ });
134
+ }
135
+ }
136
+ switch (_response.error.reason) {
137
+ case "non-json":
138
+ throw new errors.MavenAGIError({
139
+ statusCode: _response.error.statusCode,
140
+ body: _response.error.rawBody,
141
+ });
142
+ case "timeout":
143
+ throw new errors.MavenAGITimeoutError("Timeout exceeded when calling GET /v1/app-settings/search.");
144
+ case "unknown":
145
+ throw new errors.MavenAGIError({
146
+ message: _response.error.errorMessage,
147
+ });
148
+ }
149
+ });
150
+ }
62
151
  /**
63
152
  * Get app settings set during installation
64
153
  *
@@ -77,7 +166,7 @@ class AppSettings {
77
166
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
78
167
  url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.MavenAGIEnvironment.Production, "v1/app-settings"),
79
168
  method: "GET",
80
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Organization-Id": yield core.Supplier.get(this._options.organizationId), "X-Agent-Id": yield core.Supplier.get(this._options.agentId), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "mavenagi", "X-Fern-SDK-Version": "1.0.10", "User-Agent": "mavenagi/1.0.10", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
169
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Organization-Id": yield core.Supplier.get(this._options.organizationId), "X-Agent-Id": yield core.Supplier.get(this._options.agentId), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "mavenagi", "X-Fern-SDK-Version": "1.0.11", "User-Agent": "mavenagi/1.0.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
81
170
  contentType: "application/json",
82
171
  requestType: "json",
83
172
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -166,7 +255,7 @@ class AppSettings {
166
255
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
167
256
  url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.MavenAGIEnvironment.Production, "v1/app-settings"),
168
257
  method: "PATCH",
169
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Organization-Id": yield core.Supplier.get(this._options.organizationId), "X-Agent-Id": yield core.Supplier.get(this._options.agentId), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "mavenagi", "X-Fern-SDK-Version": "1.0.10", "User-Agent": "mavenagi/1.0.10", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
258
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Organization-Id": yield core.Supplier.get(this._options.organizationId), "X-Agent-Id": yield core.Supplier.get(this._options.agentId), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "mavenagi", "X-Fern-SDK-Version": "1.0.11", "User-Agent": "mavenagi/1.0.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
170
259
  contentType: "application/json",
171
260
  requestType: "json",
172
261
  body: serializers.appSettings.update.Request.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -1 +1 @@
1
- export {};
1
+ export * from "./requests";
@@ -1,2 +1,17 @@
1
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
+ };
2
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./requests"), exports);
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * @example
6
+ * {
7
+ * index: "index"
8
+ * }
9
+ */
10
+ export interface SearchAppSettingsRequest {
11
+ /**
12
+ * Will return all settings which have the `$index` key set to the provided value.
13
+ */
14
+ index: string;
15
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1 @@
1
+ export { type SearchAppSettingsRequest } from "./SearchAppSettingsRequest";
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1 +1,2 @@
1
+ export * from "./types";
1
2
  export * from "./client";
@@ -14,4 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./types"), exports);
17
18
  __exportStar(require("./client"), exports);
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface AppSettings {
5
+ /** The ID of an organization. */
6
+ organizationId: string;
7
+ /** The ID of an agent. */
8
+ agentId: string;
9
+ /** The settings that were set during installation. */
10
+ settings: Record<string, unknown>;
11
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as MavenAGI from "../../../index";
5
+ export interface SearchAppSettingsResponse {
6
+ results: MavenAGI.AppSettings[];
7
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ export * from "./SearchAppSettingsResponse";
2
+ export * from "./AppSettings";
@@ -0,0 +1,18 @@
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("./SearchAppSettingsResponse"), exports);
18
+ __exportStar(require("./AppSettings"), exports);
@@ -3,11 +3,11 @@
3
3
  */
4
4
  import * as MavenAGI from "../../../index";
5
5
  export interface ActionFormField {
6
- /** The ID field should be used as the key in the submitActionForm API call. */
6
+ /** The ID field should be used as the key in the `submitActionForm` API. */
7
7
  id: string;
8
- /** The title of the field to show on the form. */
8
+ /** The title of the field to show on the form. Provided in the user's language. */
9
9
  label: string;
10
- /** A longer description of the field which should be shown in smaller text near the label. */
10
+ /** A longer description of the field which should be shown in smaller text near the label. Provided in the user's language. */
11
11
  description: string;
12
12
  /** Whether the field is required for the action. Client side validation is recommended for an improved user experience. */
13
13
  required: boolean;
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as MavenAGI from "../../../index";
5
+ export interface AppPrecondition extends MavenAGI.PreconditionBase {
6
+ /** Match only conversations created by this appId */
7
+ appId: string;
8
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -3,11 +3,17 @@
3
3
  */
4
4
  import * as MavenAGI from "../../../index";
5
5
  /**
6
- * This response should be rendered as a form which users can submit. Upon submission call the submit action form API.
6
+ * This response should be rendered as a form which users can submit. Upon submission call the `submitActionForm` API.
7
7
  */
8
8
  export interface BotActionFormResponse {
9
+ /** The ID to use when submitting the form via the `submitActionForm` API. */
9
10
  id: string;
11
+ /** The ID of the action that will be executed when the form is submitted. */
12
+ actionId: MavenAGI.EntityIdWithoutAgent;
13
+ /** Text which should be displayed to the user at the top of the form. Provided in the user's language. */
10
14
  formLabel: string;
15
+ /** The fields that should be displayed within the form. */
11
16
  fields: MavenAGI.ActionFormField[];
17
+ /** Text that should be displayed to the user on the submit button. Provided in the user's language. */
12
18
  submitLabel: string;
13
19
  }
@@ -21,4 +21,6 @@ export interface ConversationAnalysis {
21
21
  resolvedByMaven?: boolean;
22
22
  /** Primary language of the conversation in ISO 639-1 code format */
23
23
  primaryLanguage?: string;
24
+ /** The predicted NPS of the conversation. */
25
+ predictedNps?: number;
24
26
  }
@@ -2,7 +2,7 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as MavenAGI from "../../../index";
5
- export type ConversationPrecondition = MavenAGI.ConversationPrecondition.Tags | MavenAGI.ConversationPrecondition.Metadata | MavenAGI.ConversationPrecondition.ActionExecuted | MavenAGI.ConversationPrecondition.ResponseConfig;
5
+ export type ConversationPrecondition = MavenAGI.ConversationPrecondition.Tags | MavenAGI.ConversationPrecondition.Metadata | MavenAGI.ConversationPrecondition.ActionExecuted | MavenAGI.ConversationPrecondition.ResponseConfig | MavenAGI.ConversationPrecondition.App;
6
6
  export declare namespace ConversationPrecondition {
7
7
  interface Tags extends MavenAGI.TagsPrecondition {
8
8
  conversationPreconditionType: "tags";
@@ -16,4 +16,7 @@ export declare namespace ConversationPrecondition {
16
16
  interface ResponseConfig extends MavenAGI.ResponseConfigPrecondition {
17
17
  conversationPreconditionType: "responseConfig";
18
18
  }
19
+ interface App extends MavenAGI.AppPrecondition {
20
+ conversationPreconditionType: "app";
21
+ }
19
22
  }
@@ -20,7 +20,14 @@ import * as MavenAGI from "../../../index";
20
20
  * },
21
21
  * summary: {
22
22
  * actionIds: [],
23
- * incompleteActionIds: []
23
+ * incompleteActionIds: [],
24
+ * insertCount: 0,
25
+ * thumbsUpCount: 0,
26
+ * thumbsDownCount: 0,
27
+ * userMessageCount: 1,
28
+ * humanAgents: [],
29
+ * humanAgentsWithInserts: [],
30
+ * users: []
24
31
  * },
25
32
  * metadata: {},
26
33
  * allMetadata: {},
@@ -7,4 +7,31 @@ export interface ConversationSummary {
7
7
  actionIds: MavenAGI.EntityIdWithoutAgent[];
8
8
  /** The IDs of the actions that were taken by Maven but not completed in the conversation. Occurs when the user is shown an action form but does not submit it. */
9
9
  incompleteActionIds: MavenAGI.EntityIdWithoutAgent[];
10
+ /** The number of insert events on messages in the conversation. */
11
+ insertCount: number;
12
+ /** The number of thumbs up events on messages in the conversation. */
13
+ thumbsUpCount: number;
14
+ /** The number of thumbs down events on messages in the conversation. */
15
+ thumbsDownCount: number;
16
+ /** The number of messages of type `USER` in the conversation. */
17
+ userMessageCount: number;
18
+ /**
19
+ * The total time in milliseconds that the user spent interacting with the conversation.
20
+ * Calculated by taking the timestamp of the last message in the conversation minus the timestamp of the first message.
21
+ */
22
+ handleTime?: number;
23
+ /**
24
+ * The time in milliseconds that elapsed before a human agent responded to the conversation.
25
+ * Calculated by taking the timestamp of the first message of type `HUMAN_AGENT`
26
+ * minus the timestamp of the first message in the conversation.
27
+ *
28
+ * Will not be provided if the conversation does not have a message of type `HUMAN_AGENT`.
29
+ */
30
+ humanAgentResponseDelay?: number;
31
+ /** The names of all users that have a message of type `HUMAN_AGENT` on the conversation. */
32
+ humanAgents: string[];
33
+ /** The names of all users that have an associated insert event on the conversation. */
34
+ humanAgentsWithInserts: string[];
35
+ /** The names of all users that have a message of type `USER` on the conversation. */
36
+ users: string[];
10
37
  }
@@ -1,11 +1,12 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export type EntityType = "CONVERSATION" | "CONVERSATION_MESSAGE" | "KNOWLEDGE_BASE" | "KNOWLEDGE_DOCUMENT" | "ACTION" | "USER" | "EVENT" | "EVENT_TRIGGER" | "USER_PROFILE" | "FEEDBACK" | "INBOX_ITEM" | "INBOX_ITEM_FIX";
4
+ export type EntityType = "CONVERSATION" | "CONVERSATION_MESSAGE" | "KNOWLEDGE_BASE" | "KNOWLEDGE_BASE_VERSION" | "KNOWLEDGE_DOCUMENT" | "ACTION" | "USER" | "EVENT" | "EVENT_TRIGGER" | "USER_PROFILE" | "FEEDBACK" | "INBOX_ITEM" | "INBOX_ITEM_FIX";
5
5
  export declare const EntityType: {
6
6
  readonly Conversation: "CONVERSATION";
7
7
  readonly ConversationMessage: "CONVERSATION_MESSAGE";
8
8
  readonly KnowledgeBase: "KNOWLEDGE_BASE";
9
+ readonly KnowledgeBaseVersion: "KNOWLEDGE_BASE_VERSION";
9
10
  readonly KnowledgeDocument: "KNOWLEDGE_DOCUMENT";
10
11
  readonly Action: "ACTION";
11
12
  readonly User: "USER";
@@ -8,6 +8,7 @@ exports.EntityType = {
8
8
  Conversation: "CONVERSATION",
9
9
  ConversationMessage: "CONVERSATION_MESSAGE",
10
10
  KnowledgeBase: "KNOWLEDGE_BASE",
11
+ KnowledgeBaseVersion: "KNOWLEDGE_BASE_VERSION",
11
12
  KnowledgeDocument: "KNOWLEDGE_DOCUMENT",
12
13
  Action: "ACTION",
13
14
  User: "USER",
@@ -7,6 +7,8 @@ export interface InboxItemDuplicateDocuments extends MavenAGI.InboxItemBase {
7
7
  recommendedFixes: MavenAGI.InboxItemFixDeactivateDocument[];
8
8
  /** List of fixes associated with the inbox item. */
9
9
  otherFixes: MavenAGI.InboxItemFixDeactivateDocument[];
10
+ /** Information about the source document associated with the inbox item. */
11
+ sourceDocument?: MavenAGI.DocumentInformation;
10
12
  /** List of Document information objects related to the inbox item. */
11
13
  documents: MavenAGI.DocumentInformation[];
12
14
  }
@@ -9,4 +9,6 @@ export interface UserMessage extends MavenAGI.UserMessageBase {
9
9
  language?: string;
10
10
  /** The attachments associated with the message */
11
11
  attachments: MavenAGI.UserMessageAttachment[];
12
+ /** The display name of the user who created this message. Only available for users who have saved name information. */
13
+ userDisplayName?: string;
12
14
  }
@@ -14,9 +14,6 @@ export * from "./UserData";
14
14
  export * from "./VisibilityType";
15
15
  export * from "./AppUserRequest";
16
16
  export * from "./AppUserResponse";
17
- export * from "./EventTriggerBase";
18
- export * from "./EventTriggerResponse";
19
- export * from "./EventTriggerType";
20
17
  export * from "./Page";
21
18
  export * from "./BasePaginatedRequest";
22
19
  export * from "./ActionParameterType";
@@ -59,6 +56,7 @@ export * from "./PreconditionBase";
59
56
  export * from "./MetadataPrecondition";
60
57
  export * from "./ConversationPrecondition";
61
58
  export * from "./ResponseConfigPrecondition";
59
+ export * from "./AppPrecondition";
62
60
  export * from "./PreconditionGroupOperator";
63
61
  export * from "./PreconditionGroup";
64
62
  export * from "./TagsPrecondition";
@@ -30,9 +30,6 @@ __exportStar(require("./UserData"), exports);
30
30
  __exportStar(require("./VisibilityType"), exports);
31
31
  __exportStar(require("./AppUserRequest"), exports);
32
32
  __exportStar(require("./AppUserResponse"), exports);
33
- __exportStar(require("./EventTriggerBase"), exports);
34
- __exportStar(require("./EventTriggerResponse"), exports);
35
- __exportStar(require("./EventTriggerType"), exports);
36
33
  __exportStar(require("./Page"), exports);
37
34
  __exportStar(require("./BasePaginatedRequest"), exports);
38
35
  __exportStar(require("./ActionParameterType"), exports);
@@ -75,6 +72,7 @@ __exportStar(require("./PreconditionBase"), exports);
75
72
  __exportStar(require("./MetadataPrecondition"), exports);
76
73
  __exportStar(require("./ConversationPrecondition"), exports);
77
74
  __exportStar(require("./ResponseConfigPrecondition"), exports);
75
+ __exportStar(require("./AppPrecondition"), exports);
78
76
  __exportStar(require("./PreconditionGroupOperator"), exports);
79
77
  __exportStar(require("./PreconditionGroup"), exports);
80
78
  __exportStar(require("./TagsPrecondition"), exports);
@@ -185,7 +185,8 @@ export declare class Conversation {
185
185
  * transientData: {
186
186
  * "userToken": "abcdef123",
187
187
  * "queryApiKey": "foobar456"
188
- * }
188
+ * },
189
+ * timezone: "America/New_York"
189
190
  * })
190
191
  */
191
192
  ask(conversationId: string, request: MavenAGI.AskRequest, requestOptions?: Conversation.RequestOptions): Promise<MavenAGI.ConversationResponse>;