mavenagi 0.0.0-alpha.3 → 0.0.0-alpha.4

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 (282) hide show
  1. package/Client.d.ts +9 -6
  2. package/Client.js +13 -8
  3. package/README.md +57 -33
  4. package/api/resources/actions/client/Client.d.ts +123 -0
  5. package/api/resources/actions/client/Client.js +564 -0
  6. package/api/resources/{action → actions}/types/Action.d.ts +2 -2
  7. package/{dist/api/resources/actionSet → api/resources/actions}/types/ActionSetResponse.d.ts +0 -2
  8. package/api/resources/{actionSet → actions}/types/index.d.ts +2 -0
  9. package/{dist/serialization/resources/actionSet → api/resources/actions}/types/index.js +2 -0
  10. package/api/resources/commons/types/AppUser.d.ts +10 -0
  11. package/api/resources/commons/types/AppUserIdentification.d.ts +8 -0
  12. package/api/resources/commons/types/AppUserIdentifyingProperty.d.ts +9 -0
  13. package/api/resources/commons/types/AppUserIdentifyingPropertyType.d.ts +8 -0
  14. package/api/resources/commons/types/AppUserIdentifyingPropertyType.js +7 -0
  15. package/api/resources/commons/types/Feedback.d.ts +1 -1
  16. package/api/resources/commons/types/index.d.ts +4 -0
  17. package/api/resources/commons/types/index.js +4 -0
  18. package/api/resources/conversation/client/Client.d.ts +8 -2
  19. package/api/resources/conversation/client/Client.js +16 -10
  20. package/api/resources/conversation/types/AskRequest.d.ts +2 -0
  21. package/api/resources/conversation/types/Capability.d.ts +8 -0
  22. package/api/resources/conversation/types/Capability.js +7 -0
  23. package/api/resources/conversation/types/ConversationBase.d.ts +2 -0
  24. package/api/resources/conversation/types/ResponseConfig.d.ts +12 -0
  25. package/api/resources/conversation/types/ResponseLength.d.ts +9 -0
  26. package/api/resources/conversation/types/ResponseLength.js +8 -0
  27. package/api/resources/conversation/types/index.d.ts +3 -0
  28. package/api/resources/conversation/types/index.js +3 -0
  29. package/api/resources/index.d.ts +5 -4
  30. package/api/resources/index.js +5 -4
  31. package/api/resources/knowledge/client/Client.d.ts +22 -6
  32. package/api/resources/knowledge/client/Client.js +103 -14
  33. package/api/resources/knowledge/types/{KnowledgeDocument.d.ts → BaseKnowledgeDocument.d.ts} +1 -3
  34. package/api/resources/knowledge/types/KnowledgeBaseType.d.ts +1 -1
  35. package/api/resources/knowledge/types/KnowledgeDocumentContentType.d.ts +11 -0
  36. package/api/resources/knowledge/types/KnowledgeDocumentContentType.js +7 -0
  37. package/api/resources/knowledge/types/KnowledgeDocumentRequest.d.ts +9 -0
  38. package/api/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +8 -0
  39. package/api/resources/knowledge/types/index.d.ts +4 -1
  40. package/api/resources/knowledge/types/index.js +4 -1
  41. package/api/resources/{action → triggers}/client/Client.d.ts +23 -29
  42. package/api/resources/{actionSet → triggers}/client/Client.js +32 -31
  43. package/api/resources/triggers/types/EventTrigger.d.ts +12 -0
  44. package/api/resources/triggers/types/EventTrigger.js +4 -0
  45. package/api/resources/triggers/types/EventTriggerType.d.ts +8 -0
  46. package/api/resources/triggers/types/EventTriggerType.js +7 -0
  47. package/api/resources/triggers/types/index.d.ts +2 -0
  48. package/api/resources/triggers/types/index.js +2 -0
  49. package/api/resources/user/client/Client.d.ts +62 -0
  50. package/api/resources/{action → user}/client/Client.js +29 -113
  51. package/api/resources/user/index.d.ts +1 -0
  52. package/api/resources/user/index.js +1 -0
  53. package/dist/Client.d.ts +9 -6
  54. package/dist/Client.js +13 -8
  55. package/dist/api/resources/actions/client/Client.d.ts +123 -0
  56. package/dist/api/resources/actions/client/Client.js +564 -0
  57. package/dist/api/resources/{action → actions}/types/Action.d.ts +2 -2
  58. package/dist/api/resources/actions/types/Action.js +4 -0
  59. package/dist/api/resources/actions/types/ActionParameter.js +4 -0
  60. package/dist/api/resources/actions/types/ActionSetBase.js +4 -0
  61. package/dist/api/resources/actions/types/ActionSetRequest.js +4 -0
  62. package/{api/resources/actionSet → dist/api/resources/actions}/types/ActionSetResponse.d.ts +0 -2
  63. package/dist/api/resources/actions/types/ActionSetResponse.js +4 -0
  64. package/dist/{serialization/resources/actionSet → api/resources/actions}/types/index.d.ts +2 -0
  65. package/{api/resources/actionSet → dist/api/resources/actions}/types/index.js +2 -0
  66. package/dist/api/resources/commons/types/AppUser.d.ts +10 -0
  67. package/dist/api/resources/commons/types/AppUser.js +4 -0
  68. package/dist/api/resources/commons/types/AppUserIdentification.d.ts +8 -0
  69. package/dist/api/resources/commons/types/AppUserIdentification.js +4 -0
  70. package/dist/api/resources/commons/types/AppUserIdentifyingProperty.d.ts +9 -0
  71. package/dist/api/resources/commons/types/AppUserIdentifyingProperty.js +4 -0
  72. package/dist/api/resources/commons/types/AppUserIdentifyingPropertyType.d.ts +8 -0
  73. package/dist/api/resources/commons/types/AppUserIdentifyingPropertyType.js +7 -0
  74. package/dist/api/resources/commons/types/Feedback.d.ts +1 -1
  75. package/dist/api/resources/commons/types/index.d.ts +4 -0
  76. package/dist/api/resources/commons/types/index.js +4 -0
  77. package/dist/api/resources/conversation/client/Client.d.ts +8 -2
  78. package/dist/api/resources/conversation/client/Client.js +16 -10
  79. package/dist/api/resources/conversation/types/AskRequest.d.ts +2 -0
  80. package/dist/api/resources/conversation/types/Capability.d.ts +8 -0
  81. package/dist/api/resources/conversation/types/Capability.js +7 -0
  82. package/dist/api/resources/conversation/types/ConversationBase.d.ts +2 -0
  83. package/dist/api/resources/conversation/types/ResponseConfig.d.ts +12 -0
  84. package/dist/api/resources/conversation/types/ResponseConfig.js +4 -0
  85. package/dist/api/resources/conversation/types/ResponseLength.d.ts +9 -0
  86. package/dist/api/resources/conversation/types/ResponseLength.js +8 -0
  87. package/dist/api/resources/conversation/types/index.d.ts +3 -0
  88. package/dist/api/resources/conversation/types/index.js +3 -0
  89. package/dist/api/resources/index.d.ts +5 -4
  90. package/dist/api/resources/index.js +5 -4
  91. package/dist/api/resources/knowledge/client/Client.d.ts +22 -6
  92. package/dist/api/resources/knowledge/client/Client.js +103 -14
  93. package/dist/api/resources/knowledge/types/{KnowledgeDocument.d.ts → BaseKnowledgeDocument.d.ts} +1 -3
  94. package/dist/api/resources/knowledge/types/BaseKnowledgeDocument.js +4 -0
  95. package/dist/api/resources/knowledge/types/KnowledgeBaseType.d.ts +1 -1
  96. package/dist/api/resources/knowledge/types/KnowledgeDocumentContentType.d.ts +11 -0
  97. package/dist/api/resources/knowledge/types/KnowledgeDocumentContentType.js +7 -0
  98. package/dist/api/resources/knowledge/types/KnowledgeDocumentRequest.d.ts +9 -0
  99. package/dist/api/resources/knowledge/types/KnowledgeDocumentRequest.js +4 -0
  100. package/dist/api/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +8 -0
  101. package/dist/api/resources/knowledge/types/KnowledgeDocumentResponse.js +4 -0
  102. package/dist/api/resources/knowledge/types/index.d.ts +4 -1
  103. package/dist/api/resources/knowledge/types/index.js +4 -1
  104. package/dist/api/resources/{action → triggers}/client/Client.d.ts +23 -29
  105. package/dist/api/resources/{actionSet → triggers}/client/Client.js +32 -31
  106. package/dist/api/resources/triggers/client/index.d.ts +1 -0
  107. package/dist/api/resources/triggers/client/index.js +1 -0
  108. package/dist/api/resources/triggers/types/EventTrigger.d.ts +12 -0
  109. package/dist/api/resources/triggers/types/EventTrigger.js +4 -0
  110. package/dist/api/resources/triggers/types/EventTriggerType.d.ts +8 -0
  111. package/dist/api/resources/triggers/types/EventTriggerType.js +7 -0
  112. package/dist/api/resources/triggers/types/index.d.ts +2 -0
  113. package/dist/api/resources/triggers/types/index.js +2 -0
  114. package/dist/api/resources/user/client/Client.d.ts +62 -0
  115. package/dist/api/resources/{action → user}/client/Client.js +29 -113
  116. package/dist/api/resources/user/client/index.d.ts +1 -0
  117. package/dist/api/resources/user/client/index.js +1 -0
  118. package/dist/api/resources/user/index.d.ts +1 -0
  119. package/dist/api/resources/user/index.js +1 -0
  120. package/dist/serialization/resources/{actionSet → actions}/types/ActionSetResponse.d.ts +0 -2
  121. package/dist/serialization/resources/actions/types/ActionSetResponse.js +6 -0
  122. package/dist/{api/resources/actionSet → serialization/resources/actions}/types/index.d.ts +2 -0
  123. package/{serialization/resources/actionSet → dist/serialization/resources/actions}/types/index.js +2 -0
  124. package/dist/serialization/resources/commons/types/AppUser.d.ts +15 -0
  125. package/dist/serialization/resources/commons/types/AppUser.js +10 -0
  126. package/dist/serialization/resources/commons/types/AppUserIdentification.d.ts +13 -0
  127. package/dist/serialization/resources/commons/types/AppUserIdentification.js +8 -0
  128. package/dist/serialization/resources/commons/types/AppUserIdentifyingProperty.d.ts +14 -0
  129. package/dist/serialization/resources/commons/types/AppUserIdentifyingProperty.js +9 -0
  130. package/dist/serialization/resources/commons/types/AppUserIdentifyingPropertyType.d.ts +10 -0
  131. package/dist/serialization/resources/commons/types/AppUserIdentifyingPropertyType.js +5 -0
  132. package/dist/serialization/resources/commons/types/Feedback.d.ts +1 -1
  133. package/dist/serialization/resources/commons/types/Feedback.js +1 -1
  134. package/dist/serialization/resources/commons/types/index.d.ts +4 -0
  135. package/dist/serialization/resources/commons/types/index.js +4 -0
  136. package/dist/serialization/resources/conversation/types/AskRequest.d.ts +2 -0
  137. package/dist/serialization/resources/conversation/types/AskRequest.js +2 -0
  138. package/dist/serialization/resources/conversation/types/Capability.d.ts +10 -0
  139. package/dist/serialization/resources/conversation/types/Capability.js +5 -0
  140. package/dist/serialization/resources/conversation/types/ConversationBase.d.ts +2 -0
  141. package/dist/serialization/resources/conversation/types/ConversationBase.js +2 -0
  142. package/dist/serialization/resources/conversation/types/ResponseConfig.d.ts +16 -0
  143. package/dist/serialization/resources/conversation/types/ResponseConfig.js +11 -0
  144. package/dist/serialization/resources/conversation/types/ResponseLength.d.ts +10 -0
  145. package/dist/serialization/resources/conversation/types/ResponseLength.js +5 -0
  146. package/dist/serialization/resources/conversation/types/index.d.ts +3 -0
  147. package/dist/serialization/resources/conversation/types/index.js +3 -0
  148. package/dist/serialization/resources/index.d.ts +4 -4
  149. package/dist/serialization/resources/index.js +4 -4
  150. package/dist/serialization/resources/knowledge/types/{KnowledgeDocument.d.ts → BaseKnowledgeDocument.d.ts} +4 -5
  151. package/dist/serialization/resources/knowledge/types/{KnowledgeDocument.js → BaseKnowledgeDocument.js} +3 -4
  152. package/dist/serialization/resources/knowledge/types/KnowledgeDocumentContentType.d.ts +10 -0
  153. package/dist/serialization/resources/knowledge/types/KnowledgeDocumentContentType.js +5 -0
  154. package/dist/serialization/resources/knowledge/types/KnowledgeDocumentRequest.d.ts +15 -0
  155. package/dist/serialization/resources/knowledge/types/KnowledgeDocumentRequest.js +12 -0
  156. package/dist/serialization/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +13 -0
  157. package/dist/serialization/resources/knowledge/types/KnowledgeDocumentResponse.js +10 -0
  158. package/dist/serialization/resources/knowledge/types/index.d.ts +4 -1
  159. package/dist/serialization/resources/knowledge/types/index.js +4 -1
  160. package/dist/serialization/resources/triggers/types/EventTrigger.d.ts +15 -0
  161. package/dist/serialization/resources/triggers/types/EventTrigger.js +10 -0
  162. package/dist/serialization/resources/triggers/types/EventTriggerType.d.ts +10 -0
  163. package/dist/serialization/resources/triggers/types/EventTriggerType.js +5 -0
  164. package/dist/serialization/resources/triggers/types/index.d.ts +2 -0
  165. package/dist/serialization/resources/triggers/types/index.js +2 -0
  166. package/package.json +1 -1
  167. package/serialization/resources/{actionSet → actions}/types/ActionSetResponse.d.ts +0 -2
  168. package/serialization/resources/actions/types/ActionSetResponse.js +6 -0
  169. package/serialization/resources/{actionSet → actions}/types/index.d.ts +2 -0
  170. package/{dist/api/resources/actionSet → serialization/resources/actions}/types/index.js +2 -0
  171. package/serialization/resources/commons/types/AppUser.d.ts +15 -0
  172. package/serialization/resources/commons/types/AppUser.js +10 -0
  173. package/serialization/resources/commons/types/AppUserIdentification.d.ts +13 -0
  174. package/serialization/resources/commons/types/AppUserIdentification.js +8 -0
  175. package/serialization/resources/commons/types/AppUserIdentifyingProperty.d.ts +14 -0
  176. package/serialization/resources/commons/types/AppUserIdentifyingProperty.js +9 -0
  177. package/serialization/resources/commons/types/AppUserIdentifyingPropertyType.d.ts +10 -0
  178. package/serialization/resources/commons/types/AppUserIdentifyingPropertyType.js +5 -0
  179. package/serialization/resources/commons/types/Feedback.d.ts +1 -1
  180. package/serialization/resources/commons/types/Feedback.js +1 -1
  181. package/serialization/resources/commons/types/index.d.ts +4 -0
  182. package/serialization/resources/commons/types/index.js +4 -0
  183. package/serialization/resources/conversation/types/AskRequest.d.ts +2 -0
  184. package/serialization/resources/conversation/types/AskRequest.js +2 -0
  185. package/serialization/resources/conversation/types/Capability.d.ts +10 -0
  186. package/serialization/resources/conversation/types/Capability.js +5 -0
  187. package/serialization/resources/conversation/types/ConversationBase.d.ts +2 -0
  188. package/serialization/resources/conversation/types/ConversationBase.js +2 -0
  189. package/serialization/resources/conversation/types/ResponseConfig.d.ts +16 -0
  190. package/serialization/resources/conversation/types/ResponseConfig.js +11 -0
  191. package/serialization/resources/conversation/types/ResponseLength.d.ts +10 -0
  192. package/serialization/resources/conversation/types/ResponseLength.js +5 -0
  193. package/serialization/resources/conversation/types/index.d.ts +3 -0
  194. package/serialization/resources/conversation/types/index.js +3 -0
  195. package/serialization/resources/index.d.ts +4 -4
  196. package/serialization/resources/index.js +4 -4
  197. package/serialization/resources/knowledge/types/{KnowledgeDocument.d.ts → BaseKnowledgeDocument.d.ts} +4 -5
  198. package/serialization/resources/knowledge/types/{KnowledgeDocument.js → BaseKnowledgeDocument.js} +3 -4
  199. package/serialization/resources/knowledge/types/KnowledgeDocumentContentType.d.ts +10 -0
  200. package/serialization/resources/knowledge/types/KnowledgeDocumentContentType.js +5 -0
  201. package/serialization/resources/knowledge/types/KnowledgeDocumentRequest.d.ts +15 -0
  202. package/serialization/resources/knowledge/types/KnowledgeDocumentRequest.js +12 -0
  203. package/serialization/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +13 -0
  204. package/serialization/resources/knowledge/types/KnowledgeDocumentResponse.js +10 -0
  205. package/serialization/resources/knowledge/types/index.d.ts +4 -1
  206. package/serialization/resources/knowledge/types/index.js +4 -1
  207. package/serialization/resources/triggers/types/EventTrigger.d.ts +15 -0
  208. package/serialization/resources/triggers/types/EventTrigger.js +10 -0
  209. package/serialization/resources/triggers/types/EventTriggerType.d.ts +10 -0
  210. package/serialization/resources/triggers/types/EventTriggerType.js +5 -0
  211. package/serialization/resources/triggers/types/index.d.ts +2 -0
  212. package/serialization/resources/triggers/types/index.js +2 -0
  213. package/api/resources/action/types/index.d.ts +0 -2
  214. package/api/resources/action/types/index.js +0 -2
  215. package/api/resources/actionSet/client/Client.d.ts +0 -71
  216. package/dist/api/resources/action/types/index.d.ts +0 -2
  217. package/dist/api/resources/action/types/index.js +0 -2
  218. package/dist/api/resources/actionSet/client/Client.d.ts +0 -71
  219. package/dist/serialization/resources/action/types/index.d.ts +0 -2
  220. package/dist/serialization/resources/action/types/index.js +0 -2
  221. package/dist/serialization/resources/actionSet/types/ActionSetResponse.js +0 -11
  222. package/serialization/resources/action/types/index.d.ts +0 -2
  223. package/serialization/resources/action/types/index.js +0 -2
  224. package/serialization/resources/actionSet/types/ActionSetResponse.js +0 -11
  225. /package/api/resources/{action → actions}/client/index.d.ts +0 -0
  226. /package/api/resources/{action → actions}/client/index.js +0 -0
  227. /package/api/resources/{action → actions}/index.d.ts +0 -0
  228. /package/api/resources/{action → actions}/index.js +0 -0
  229. /package/api/resources/{action → actions}/types/Action.js +0 -0
  230. /package/api/resources/{action → actions}/types/ActionParameter.d.ts +0 -0
  231. /package/api/resources/{action → actions}/types/ActionParameter.js +0 -0
  232. /package/api/resources/{actionSet → actions}/types/ActionSetBase.d.ts +0 -0
  233. /package/api/resources/{actionSet → actions}/types/ActionSetBase.js +0 -0
  234. /package/api/resources/{actionSet → actions}/types/ActionSetRequest.d.ts +0 -0
  235. /package/api/resources/{actionSet → actions}/types/ActionSetRequest.js +0 -0
  236. /package/api/resources/{actionSet → actions}/types/ActionSetResponse.js +0 -0
  237. /package/api/resources/{knowledge/types/KnowledgeDocument.js → commons/types/AppUser.js} +0 -0
  238. /package/{dist/api/resources/action/types/Action.js → api/resources/commons/types/AppUserIdentification.js} +0 -0
  239. /package/{dist/api/resources/action/types/ActionParameter.js → api/resources/commons/types/AppUserIdentifyingProperty.js} +0 -0
  240. /package/{dist/api/resources/actionSet/types/ActionSetBase.js → api/resources/conversation/types/ResponseConfig.js} +0 -0
  241. /package/{dist/api/resources/actionSet/types/ActionSetRequest.js → api/resources/knowledge/types/BaseKnowledgeDocument.js} +0 -0
  242. /package/{dist/api/resources/actionSet/types/ActionSetResponse.js → api/resources/knowledge/types/KnowledgeDocumentRequest.js} +0 -0
  243. /package/{dist/api/resources/knowledge/types/KnowledgeDocument.js → api/resources/knowledge/types/KnowledgeDocumentResponse.js} +0 -0
  244. /package/api/resources/{actionSet → triggers}/client/index.d.ts +0 -0
  245. /package/api/resources/{actionSet → triggers}/client/index.js +0 -0
  246. /package/api/resources/{actionSet → triggers}/index.d.ts +0 -0
  247. /package/api/resources/{actionSet → triggers}/index.js +0 -0
  248. /package/{dist/api/resources/action → api/resources/user}/client/index.d.ts +0 -0
  249. /package/{dist/api/resources/action → api/resources/user}/client/index.js +0 -0
  250. /package/dist/api/resources/{actionSet → actions}/client/index.d.ts +0 -0
  251. /package/dist/api/resources/{actionSet → actions}/client/index.js +0 -0
  252. /package/dist/api/resources/{action → actions}/index.d.ts +0 -0
  253. /package/dist/api/resources/{action → actions}/index.js +0 -0
  254. /package/dist/api/resources/{action → actions}/types/ActionParameter.d.ts +0 -0
  255. /package/dist/api/resources/{actionSet → actions}/types/ActionSetBase.d.ts +0 -0
  256. /package/dist/api/resources/{actionSet → actions}/types/ActionSetRequest.d.ts +0 -0
  257. /package/dist/api/resources/{actionSet → triggers}/index.d.ts +0 -0
  258. /package/dist/api/resources/{actionSet → triggers}/index.js +0 -0
  259. /package/dist/serialization/resources/{action → actions}/index.d.ts +0 -0
  260. /package/dist/serialization/resources/{action → actions}/index.js +0 -0
  261. /package/dist/serialization/resources/{action → actions}/types/Action.d.ts +0 -0
  262. /package/dist/serialization/resources/{action → actions}/types/Action.js +0 -0
  263. /package/dist/serialization/resources/{action → actions}/types/ActionParameter.d.ts +0 -0
  264. /package/dist/serialization/resources/{action → actions}/types/ActionParameter.js +0 -0
  265. /package/dist/serialization/resources/{actionSet → actions}/types/ActionSetBase.d.ts +0 -0
  266. /package/dist/serialization/resources/{actionSet → actions}/types/ActionSetBase.js +0 -0
  267. /package/dist/serialization/resources/{actionSet → actions}/types/ActionSetRequest.d.ts +0 -0
  268. /package/dist/serialization/resources/{actionSet → actions}/types/ActionSetRequest.js +0 -0
  269. /package/dist/serialization/resources/{actionSet → triggers}/index.d.ts +0 -0
  270. /package/dist/serialization/resources/{actionSet → triggers}/index.js +0 -0
  271. /package/serialization/resources/{action → actions}/index.d.ts +0 -0
  272. /package/serialization/resources/{action → actions}/index.js +0 -0
  273. /package/serialization/resources/{action → actions}/types/Action.d.ts +0 -0
  274. /package/serialization/resources/{action → actions}/types/Action.js +0 -0
  275. /package/serialization/resources/{action → actions}/types/ActionParameter.d.ts +0 -0
  276. /package/serialization/resources/{action → actions}/types/ActionParameter.js +0 -0
  277. /package/serialization/resources/{actionSet → actions}/types/ActionSetBase.d.ts +0 -0
  278. /package/serialization/resources/{actionSet → actions}/types/ActionSetBase.js +0 -0
  279. /package/serialization/resources/{actionSet → actions}/types/ActionSetRequest.d.ts +0 -0
  280. /package/serialization/resources/{actionSet → actions}/types/ActionSetRequest.js +0 -0
  281. /package/serialization/resources/{actionSet → triggers}/index.d.ts +0 -0
  282. /package/serialization/resources/{actionSet → triggers}/index.js +0 -0
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export * from "./client";
@@ -0,0 +1 @@
1
+ export * from "./client";
@@ -4,11 +4,9 @@
4
4
  import * as serializers from "../../../index";
5
5
  import * as MavenAGI from "../../../../api/index";
6
6
  import * as core from "../../../../core";
7
- import { Action } from "../../action/types/Action";
8
7
  import { ActionSetBase } from "./ActionSetBase";
9
8
  export declare const ActionSetResponse: core.serialization.ObjectSchema<serializers.ActionSetResponse.Raw, MavenAGI.ActionSetResponse>;
10
9
  export declare namespace ActionSetResponse {
11
10
  interface Raw extends ActionSetBase.Raw {
12
- actions: Action.Raw[];
13
11
  }
14
12
  }
@@ -0,0 +1,6 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../../../core";
5
+ import { ActionSetBase } from "./ActionSetBase";
6
+ export const ActionSetResponse = core.serialization.object({}).extend(ActionSetBase);
@@ -1,3 +1,5 @@
1
1
  export * from "./ActionSetBase";
2
2
  export * from "./ActionSetRequest";
3
3
  export * from "./ActionSetResponse";
4
+ export * from "./Action";
5
+ export * from "./ActionParameter";
@@ -1,3 +1,5 @@
1
1
  export * from "./ActionSetBase";
2
2
  export * from "./ActionSetRequest";
3
3
  export * from "./ActionSetResponse";
4
+ export * from "./Action";
5
+ export * from "./ActionParameter";
@@ -0,0 +1,15 @@
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 { AppUserIdentification } from "./AppUserIdentification";
8
+ export declare const AppUser: core.serialization.ObjectSchema<serializers.AppUser.Raw, MavenAGI.AppUser>;
9
+ export declare namespace AppUser {
10
+ interface Raw {
11
+ id: string;
12
+ userIdentifiers?: AppUserIdentification.Raw | null;
13
+ metadata?: Record<string, string> | null;
14
+ }
15
+ }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../../../core";
5
+ import { AppUserIdentification } from "./AppUserIdentification";
6
+ export const AppUser = core.serialization.object({
7
+ id: core.serialization.string(),
8
+ userIdentifiers: AppUserIdentification.optional(),
9
+ metadata: core.serialization.record(core.serialization.string(), core.serialization.string()).optional(),
10
+ });
@@ -0,0 +1,13 @@
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 { AppUserIdentifyingProperty } from "./AppUserIdentifyingProperty";
8
+ export declare const AppUserIdentification: core.serialization.ObjectSchema<serializers.AppUserIdentification.Raw, MavenAGI.AppUserIdentification>;
9
+ export declare namespace AppUserIdentification {
10
+ interface Raw {
11
+ identifiers: AppUserIdentifyingProperty.Raw[];
12
+ }
13
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../../../core";
5
+ import { AppUserIdentifyingProperty } from "./AppUserIdentifyingProperty";
6
+ export const AppUserIdentification = core.serialization.object({
7
+ identifiers: core.serialization.list(AppUserIdentifyingProperty),
8
+ });
@@ -0,0 +1,14 @@
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 { AppUserIdentifyingPropertyType } from "./AppUserIdentifyingPropertyType";
8
+ export declare const AppUserIdentifyingProperty: core.serialization.ObjectSchema<serializers.AppUserIdentifyingProperty.Raw, MavenAGI.AppUserIdentifyingProperty>;
9
+ export declare namespace AppUserIdentifyingProperty {
10
+ interface Raw {
11
+ value: string;
12
+ userIdentifyingPropertyType: AppUserIdentifyingPropertyType.Raw;
13
+ }
14
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../../../core";
5
+ import { AppUserIdentifyingPropertyType } from "./AppUserIdentifyingPropertyType";
6
+ export const AppUserIdentifyingProperty = core.serialization.object({
7
+ value: core.serialization.string(),
8
+ userIdentifyingPropertyType: AppUserIdentifyingPropertyType,
9
+ });
@@ -0,0 +1,10 @@
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 AppUserIdentifyingPropertyType: core.serialization.Schema<serializers.AppUserIdentifyingPropertyType.Raw, MavenAGI.AppUserIdentifyingPropertyType>;
8
+ export declare namespace AppUserIdentifyingPropertyType {
9
+ type Raw = "EMAIL" | "PHONE_NUMBER";
10
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../../../core";
5
+ export const AppUserIdentifyingPropertyType = core.serialization.enum_(["EMAIL", "PHONE_NUMBER"]);
@@ -12,6 +12,6 @@ export declare namespace Feedback {
12
12
  conversationId: string;
13
13
  conversationMessageId: string;
14
14
  type: FeedbackType.Raw;
15
- text: string;
15
+ text?: string | null;
16
16
  }
17
17
  }
@@ -8,5 +8,5 @@ export const Feedback = core.serialization.object({
8
8
  conversationId: core.serialization.string(),
9
9
  conversationMessageId: core.serialization.string(),
10
10
  type: FeedbackType,
11
- text: core.serialization.string(),
11
+ text: core.serialization.string().optional(),
12
12
  });
@@ -2,3 +2,7 @@ export * from "./ErrorMessage";
2
2
  export * from "./User";
3
3
  export * from "./FeedbackType";
4
4
  export * from "./Feedback";
5
+ export * from "./AppUserIdentification";
6
+ export * from "./AppUserIdentifyingProperty";
7
+ export * from "./AppUserIdentifyingPropertyType";
8
+ export * from "./AppUser";
@@ -2,3 +2,7 @@ export * from "./ErrorMessage";
2
2
  export * from "./User";
3
3
  export * from "./FeedbackType";
4
4
  export * from "./Feedback";
5
+ export * from "./AppUserIdentification";
6
+ export * from "./AppUserIdentifyingProperty";
7
+ export * from "./AppUserIdentifyingPropertyType";
8
+ export * from "./AppUser";
@@ -5,11 +5,13 @@ import * as serializers from "../../../index";
5
5
  import * as MavenAGI from "../../../../api/index";
6
6
  import * as core from "../../../../core";
7
7
  import { ConversationMessageContext } from "./ConversationMessageContext";
8
+ import { ResponseConfig } from "./ResponseConfig";
8
9
  export declare const AskRequest: core.serialization.ObjectSchema<serializers.AskRequest.Raw, MavenAGI.AskRequest>;
9
10
  export declare namespace AskRequest {
10
11
  interface Raw {
11
12
  id: string;
12
13
  text: string;
13
14
  context?: ConversationMessageContext.Raw | null;
15
+ responseConfig?: ResponseConfig.Raw | null;
14
16
  }
15
17
  }
@@ -3,8 +3,10 @@
3
3
  */
4
4
  import * as core from "../../../../core";
5
5
  import { ConversationMessageContext } from "./ConversationMessageContext";
6
+ import { ResponseConfig } from "./ResponseConfig";
6
7
  export const AskRequest = core.serialization.object({
7
8
  id: core.serialization.string(),
8
9
  text: core.serialization.string(),
9
10
  context: ConversationMessageContext.optional(),
11
+ responseConfig: ResponseConfig.optional(),
10
12
  });
@@ -0,0 +1,10 @@
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 Capability: core.serialization.Schema<serializers.Capability.Raw, MavenAGI.Capability>;
8
+ export declare namespace Capability {
9
+ type Raw = "MARKDOWN" | "FORMS";
10
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../../../core";
5
+ export const Capability = core.serialization.enum_(["MARKDOWN", "FORMS"]);
@@ -5,10 +5,12 @@ import * as serializers from "../../../index";
5
5
  import * as MavenAGI from "../../../../api/index";
6
6
  import * as core from "../../../../core";
7
7
  import { ConversationContext } from "./ConversationContext";
8
+ import { ResponseConfig } from "./ResponseConfig";
8
9
  export declare const ConversationBase: core.serialization.ObjectSchema<serializers.ConversationBase.Raw, MavenAGI.ConversationBase>;
9
10
  export declare namespace ConversationBase {
10
11
  interface Raw {
11
12
  id: string;
12
13
  context?: ConversationContext.Raw | null;
14
+ responseConfig?: ResponseConfig.Raw | null;
13
15
  }
14
16
  }
@@ -3,7 +3,9 @@
3
3
  */
4
4
  import * as core from "../../../../core";
5
5
  import { ConversationContext } from "./ConversationContext";
6
+ import { ResponseConfig } from "./ResponseConfig";
6
7
  export const ConversationBase = core.serialization.object({
7
8
  id: core.serialization.string(),
8
9
  context: ConversationContext.optional(),
10
+ responseConfig: ResponseConfig.optional(),
9
11
  });
@@ -0,0 +1,16 @@
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 { Capability } from "./Capability";
8
+ import { ResponseLength } from "./ResponseLength";
9
+ export declare const ResponseConfig: core.serialization.ObjectSchema<serializers.ResponseConfig.Raw, MavenAGI.ResponseConfig>;
10
+ export declare namespace ResponseConfig {
11
+ interface Raw {
12
+ capabilities?: Capability.Raw[] | null;
13
+ isCopilot?: boolean | null;
14
+ responseLength?: ResponseLength.Raw | null;
15
+ }
16
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../../../core";
5
+ import { Capability } from "./Capability";
6
+ import { ResponseLength } from "./ResponseLength";
7
+ export const ResponseConfig = core.serialization.object({
8
+ capabilities: core.serialization.list(Capability).optional(),
9
+ isCopilot: core.serialization.boolean().optional(),
10
+ responseLength: ResponseLength.optional(),
11
+ });
@@ -0,0 +1,10 @@
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 ResponseLength: core.serialization.Schema<serializers.ResponseLength.Raw, MavenAGI.ResponseLength>;
8
+ export declare namespace ResponseLength {
9
+ type Raw = "SHORT" | "MEDIUM" | "LONG";
10
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../../../core";
5
+ export const ResponseLength = core.serialization.enum_(["SHORT", "MEDIUM", "LONG"]);
@@ -1,4 +1,7 @@
1
1
  export * from "./AskRequest";
2
+ export * from "./ResponseConfig";
3
+ export * from "./Capability";
4
+ export * from "./ResponseLength";
2
5
  export * from "./GenerateMavenSuggestionsRequest";
3
6
  export * from "./ConversationBase";
4
7
  export * from "./ConversationResponse";
@@ -1,4 +1,7 @@
1
1
  export * from "./AskRequest";
2
+ export * from "./ResponseConfig";
3
+ export * from "./Capability";
4
+ export * from "./ResponseLength";
2
5
  export * from "./GenerateMavenSuggestionsRequest";
3
6
  export * from "./ConversationBase";
4
7
  export * from "./ConversationResponse";
@@ -1,10 +1,10 @@
1
- export * as actionSet from "./actionSet";
2
- export * from "./actionSet/types";
3
- export * as action from "./action";
4
- export * from "./action/types";
1
+ export * as actions from "./actions";
2
+ export * from "./actions/types";
5
3
  export * as commons from "./commons";
6
4
  export * from "./commons/types";
7
5
  export * as conversation from "./conversation";
8
6
  export * from "./conversation/types";
9
7
  export * as knowledge from "./knowledge";
10
8
  export * from "./knowledge/types";
9
+ export * as triggers from "./triggers";
10
+ export * from "./triggers/types";
@@ -1,10 +1,10 @@
1
- export * as actionSet from "./actionSet";
2
- export * from "./actionSet/types";
3
- export * as action from "./action";
4
- export * from "./action/types";
1
+ export * as actions from "./actions";
2
+ export * from "./actions/types";
5
3
  export * as commons from "./commons";
6
4
  export * from "./commons/types";
7
5
  export * as conversation from "./conversation";
8
6
  export * from "./conversation/types";
9
7
  export * as knowledge from "./knowledge";
10
8
  export * from "./knowledge/types";
9
+ export * as triggers from "./triggers";
10
+ export * from "./triggers/types";
@@ -5,15 +5,14 @@ import * as serializers from "../../../index";
5
5
  import * as MavenAGI from "../../../../api/index";
6
6
  import * as core from "../../../../core";
7
7
  import { KnowledgeDocumentId } from "./KnowledgeDocumentId";
8
- export declare const KnowledgeDocument: core.serialization.ObjectSchema<serializers.KnowledgeDocument.Raw, MavenAGI.KnowledgeDocument>;
9
- export declare namespace KnowledgeDocument {
8
+ export declare const BaseKnowledgeDocument: core.serialization.ObjectSchema<serializers.BaseKnowledgeDocument.Raw, MavenAGI.BaseKnowledgeDocument>;
9
+ export declare namespace BaseKnowledgeDocument {
10
10
  interface Raw extends KnowledgeDocumentId.Raw {
11
11
  title: string;
12
- content: string;
13
12
  url?: string | null;
14
13
  language?: string | null;
15
- createdAt?: string | null;
16
- updatedAt?: string | null;
14
+ created_at?: string | null;
15
+ updated_at?: string | null;
17
16
  author?: string | null;
18
17
  }
19
18
  }
@@ -3,14 +3,13 @@
3
3
  */
4
4
  import * as core from "../../../../core";
5
5
  import { KnowledgeDocumentId } from "./KnowledgeDocumentId";
6
- export const KnowledgeDocument = core.serialization
6
+ export const BaseKnowledgeDocument = core.serialization
7
7
  .object({
8
8
  title: core.serialization.string(),
9
- content: core.serialization.string(),
10
9
  url: core.serialization.string().optional(),
11
10
  language: core.serialization.string().optional(),
12
- createdAt: core.serialization.date().optional(),
13
- updatedAt: core.serialization.date().optional(),
11
+ createdAt: core.serialization.property("created_at", core.serialization.date().optional()),
12
+ updatedAt: core.serialization.property("updated_at", core.serialization.date().optional()),
14
13
  author: core.serialization.string().optional(),
15
14
  })
16
15
  .extend(KnowledgeDocumentId);
@@ -0,0 +1,10 @@
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 KnowledgeDocumentContentType: core.serialization.Schema<serializers.KnowledgeDocumentContentType.Raw, MavenAGI.KnowledgeDocumentContentType>;
8
+ export declare namespace KnowledgeDocumentContentType {
9
+ type Raw = "HTML" | "MARKDOWN";
10
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../../../core";
5
+ export const KnowledgeDocumentContentType = core.serialization.enum_(["HTML", "MARKDOWN"]);
@@ -0,0 +1,15 @@
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 { KnowledgeDocumentContentType } from "./KnowledgeDocumentContentType";
8
+ import { BaseKnowledgeDocument } from "./BaseKnowledgeDocument";
9
+ export declare const KnowledgeDocumentRequest: core.serialization.ObjectSchema<serializers.KnowledgeDocumentRequest.Raw, MavenAGI.KnowledgeDocumentRequest>;
10
+ export declare namespace KnowledgeDocumentRequest {
11
+ interface Raw extends BaseKnowledgeDocument.Raw {
12
+ content_type: KnowledgeDocumentContentType.Raw;
13
+ content: string;
14
+ }
15
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../../../core";
5
+ import { KnowledgeDocumentContentType } from "./KnowledgeDocumentContentType";
6
+ import { BaseKnowledgeDocument } from "./BaseKnowledgeDocument";
7
+ export const KnowledgeDocumentRequest = core.serialization
8
+ .object({
9
+ contentType: core.serialization.property("content_type", KnowledgeDocumentContentType),
10
+ content: core.serialization.string(),
11
+ })
12
+ .extend(BaseKnowledgeDocument);
@@ -0,0 +1,13 @@
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 { BaseKnowledgeDocument } from "./BaseKnowledgeDocument";
8
+ export declare const KnowledgeDocumentResponse: core.serialization.ObjectSchema<serializers.KnowledgeDocumentResponse.Raw, MavenAGI.KnowledgeDocumentResponse>;
9
+ export declare namespace KnowledgeDocumentResponse {
10
+ interface Raw extends BaseKnowledgeDocument.Raw {
11
+ content: string;
12
+ }
13
+ }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../../../core";
5
+ import { BaseKnowledgeDocument } from "./BaseKnowledgeDocument";
6
+ export const KnowledgeDocumentResponse = core.serialization
7
+ .object({
8
+ content: core.serialization.string(),
9
+ })
10
+ .extend(BaseKnowledgeDocument);
@@ -4,4 +4,7 @@ export * from "./KnowledgeBaseType";
4
4
  export * from "./KnowledgeBaseVersion";
5
5
  export * from "./KnowledgeBaseVersionType";
6
6
  export * from "./KnowledgeDocumentId";
7
- export * from "./KnowledgeDocument";
7
+ export * from "./BaseKnowledgeDocument";
8
+ export * from "./KnowledgeDocumentRequest";
9
+ export * from "./KnowledgeDocumentContentType";
10
+ export * from "./KnowledgeDocumentResponse";
@@ -4,4 +4,7 @@ export * from "./KnowledgeBaseType";
4
4
  export * from "./KnowledgeBaseVersion";
5
5
  export * from "./KnowledgeBaseVersionType";
6
6
  export * from "./KnowledgeDocumentId";
7
- export * from "./KnowledgeDocument";
7
+ export * from "./BaseKnowledgeDocument";
8
+ export * from "./KnowledgeDocumentRequest";
9
+ export * from "./KnowledgeDocumentContentType";
10
+ export * from "./KnowledgeDocumentResponse";
@@ -0,0 +1,15 @@
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 { EventTriggerType } from "./EventTriggerType";
8
+ export declare const EventTrigger: core.serialization.ObjectSchema<serializers.EventTrigger.Raw, MavenAGI.EventTrigger>;
9
+ export declare namespace EventTrigger {
10
+ interface Raw {
11
+ id: string;
12
+ description: string;
13
+ type: EventTriggerType.Raw;
14
+ }
15
+ }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../../../core";
5
+ import { EventTriggerType } from "./EventTriggerType";
6
+ export const EventTrigger = core.serialization.object({
7
+ id: core.serialization.string(),
8
+ description: core.serialization.string(),
9
+ type: EventTriggerType,
10
+ });
@@ -0,0 +1,10 @@
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 EventTriggerType: core.serialization.Schema<serializers.EventTriggerType.Raw, MavenAGI.EventTriggerType>;
8
+ export declare namespace EventTriggerType {
9
+ type Raw = "CONVERSATION_CREATED" | "FEEDBACK_CREATED";
10
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../../../core";
5
+ export const EventTriggerType = core.serialization.enum_(["CONVERSATION_CREATED", "FEEDBACK_CREATED"]);
@@ -0,0 +1,2 @@
1
+ export * from "./EventTrigger";
2
+ export * from "./EventTriggerType";
@@ -0,0 +1,2 @@
1
+ export * from "./EventTrigger";
2
+ export * from "./EventTriggerType";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mavenagi",
3
- "version": "0.0.0-alpha.3",
3
+ "version": "0.0.0-alpha.4",
4
4
  "private": false,
5
5
  "repository": "https://github.com/mavenagi/mavenagi-node",
6
6
  "main": "./index.js",
@@ -4,11 +4,9 @@
4
4
  import * as serializers from "../../../index";
5
5
  import * as MavenAGI from "../../../../api/index";
6
6
  import * as core from "../../../../core";
7
- import { Action } from "../../action/types/Action";
8
7
  import { ActionSetBase } from "./ActionSetBase";
9
8
  export declare const ActionSetResponse: core.serialization.ObjectSchema<serializers.ActionSetResponse.Raw, MavenAGI.ActionSetResponse>;
10
9
  export declare namespace ActionSetResponse {
11
10
  interface Raw extends ActionSetBase.Raw {
12
- actions: Action.Raw[];
13
11
  }
14
12
  }
@@ -0,0 +1,6 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../../../core";
5
+ import { ActionSetBase } from "./ActionSetBase";
6
+ export const ActionSetResponse = core.serialization.object({}).extend(ActionSetBase);
@@ -1,3 +1,5 @@
1
1
  export * from "./ActionSetBase";
2
2
  export * from "./ActionSetRequest";
3
3
  export * from "./ActionSetResponse";
4
+ export * from "./Action";
5
+ export * from "./ActionParameter";
@@ -1,3 +1,5 @@
1
1
  export * from "./ActionSetBase";
2
2
  export * from "./ActionSetRequest";
3
3
  export * from "./ActionSetResponse";
4
+ export * from "./Action";
5
+ export * from "./ActionParameter";
@@ -0,0 +1,15 @@
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 { AppUserIdentification } from "./AppUserIdentification";
8
+ export declare const AppUser: core.serialization.ObjectSchema<serializers.AppUser.Raw, MavenAGI.AppUser>;
9
+ export declare namespace AppUser {
10
+ interface Raw {
11
+ id: string;
12
+ userIdentifiers?: AppUserIdentification.Raw | null;
13
+ metadata?: Record<string, string> | null;
14
+ }
15
+ }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../../../core";
5
+ import { AppUserIdentification } from "./AppUserIdentification";
6
+ export const AppUser = core.serialization.object({
7
+ id: core.serialization.string(),
8
+ userIdentifiers: AppUserIdentification.optional(),
9
+ metadata: core.serialization.record(core.serialization.string(), core.serialization.string()).optional(),
10
+ });