@vertesia/common 1.0.0-dev.20260203.130115Z → 1.0.0-dev.20260225.024852Z

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 (366) hide show
  1. package/lib/cjs/Progress.js +61 -0
  2. package/lib/cjs/Progress.js.map +1 -0
  3. package/lib/cjs/access-control.js +56 -0
  4. package/lib/cjs/access-control.js.map +1 -0
  5. package/lib/cjs/analytics.js +3 -0
  6. package/lib/cjs/analytics.js.map +1 -0
  7. package/lib/cjs/apikey.js +17 -0
  8. package/lib/cjs/apikey.js.map +1 -0
  9. package/lib/cjs/apps.js +35 -0
  10. package/lib/cjs/apps.js.map +1 -0
  11. package/lib/cjs/ask-user.js +8 -0
  12. package/lib/cjs/ask-user.js.map +1 -0
  13. package/lib/cjs/audit-trail.js +3 -0
  14. package/lib/cjs/audit-trail.js.map +1 -0
  15. package/lib/cjs/channels.js +63 -0
  16. package/lib/cjs/channels.js.map +1 -0
  17. package/lib/cjs/common.js +3 -0
  18. package/lib/cjs/common.js.map +1 -0
  19. package/lib/cjs/data-platform.js +127 -0
  20. package/lib/cjs/data-platform.js.map +1 -0
  21. package/lib/cjs/email.js +20 -0
  22. package/lib/cjs/email.js.map +1 -0
  23. package/lib/cjs/environment.js +44 -0
  24. package/lib/cjs/environment.js.map +1 -0
  25. package/lib/cjs/facets.js +3 -0
  26. package/lib/cjs/facets.js.map +1 -0
  27. package/lib/cjs/group.js +5 -0
  28. package/lib/cjs/group.js.map +1 -0
  29. package/lib/cjs/index.js +56 -0
  30. package/lib/cjs/index.js.map +1 -0
  31. package/lib/cjs/integrations.js +16 -0
  32. package/lib/cjs/integrations.js.map +1 -0
  33. package/lib/cjs/interaction.js +97 -0
  34. package/lib/cjs/interaction.js.map +1 -0
  35. package/lib/cjs/json-schema.js +3 -0
  36. package/lib/cjs/json-schema.js.map +1 -0
  37. package/lib/cjs/json.js +3 -0
  38. package/lib/cjs/json.js.map +1 -0
  39. package/lib/cjs/meters.js +13 -0
  40. package/lib/cjs/meters.js.map +1 -0
  41. package/lib/cjs/model_utility.js +6 -0
  42. package/lib/cjs/model_utility.js.map +1 -0
  43. package/lib/cjs/package.json +3 -0
  44. package/lib/cjs/payload.js +3 -0
  45. package/lib/cjs/payload.js.map +1 -0
  46. package/lib/cjs/pending-asks.js +7 -0
  47. package/lib/cjs/pending-asks.js.map +1 -0
  48. package/lib/cjs/project.js +143 -0
  49. package/lib/cjs/project.js.map +1 -0
  50. package/lib/cjs/prompt.js +21 -0
  51. package/lib/cjs/prompt.js.map +1 -0
  52. package/lib/cjs/query.js +3 -0
  53. package/lib/cjs/query.js.map +1 -0
  54. package/lib/cjs/rate-limiter.js +6 -0
  55. package/lib/cjs/rate-limiter.js.map +1 -0
  56. package/lib/cjs/refs.js +14 -0
  57. package/lib/cjs/refs.js.map +1 -0
  58. package/lib/cjs/runs.js +3 -0
  59. package/lib/cjs/runs.js.map +1 -0
  60. package/lib/cjs/skill.js +14 -0
  61. package/lib/cjs/skill.js.map +1 -0
  62. package/lib/cjs/store/activity-catalog.js +3 -0
  63. package/lib/cjs/store/activity-catalog.js.map +1 -0
  64. package/lib/cjs/store/collections.js +9 -0
  65. package/lib/cjs/store/collections.js.map +1 -0
  66. package/lib/cjs/store/common.js +3 -0
  67. package/lib/cjs/store/common.js.map +1 -0
  68. package/lib/cjs/store/conversation-state.js +3 -0
  69. package/lib/cjs/store/conversation-state.js.map +1 -0
  70. package/lib/cjs/store/doc-analyzer.js +3 -0
  71. package/lib/cjs/store/doc-analyzer.js.map +1 -0
  72. package/lib/cjs/store/dsl-workflow.js +5 -0
  73. package/lib/cjs/store/dsl-workflow.js.map +1 -0
  74. package/lib/cjs/store/hive-memory.js +3 -0
  75. package/lib/cjs/store/hive-memory.js.map +1 -0
  76. package/lib/cjs/store/index.js +32 -0
  77. package/lib/cjs/store/index.js.map +1 -0
  78. package/lib/cjs/store/object-types.js +98 -0
  79. package/lib/cjs/store/object-types.js.map +1 -0
  80. package/lib/cjs/store/rendering.js +22 -0
  81. package/lib/cjs/store/rendering.js.map +1 -0
  82. package/lib/cjs/store/schedule.js +32 -0
  83. package/lib/cjs/store/schedule.js.map +1 -0
  84. package/lib/cjs/store/signals.js +3 -0
  85. package/lib/cjs/store/signals.js.map +1 -0
  86. package/lib/cjs/store/store.js +179 -0
  87. package/lib/cjs/store/store.js.map +1 -0
  88. package/lib/cjs/store/temporalio.js +44 -0
  89. package/lib/cjs/store/temporalio.js.map +1 -0
  90. package/lib/cjs/store/worker.js +3 -0
  91. package/lib/cjs/store/worker.js.map +1 -0
  92. package/lib/cjs/store/workflow.js +305 -0
  93. package/lib/cjs/store/workflow.js.map +1 -0
  94. package/lib/cjs/sts-token-types.js +32 -0
  95. package/lib/cjs/sts-token-types.js.map +1 -0
  96. package/lib/cjs/tenant.js +3 -0
  97. package/lib/cjs/tenant.js.map +1 -0
  98. package/lib/cjs/tool-execution.js +6 -0
  99. package/lib/cjs/tool-execution.js.map +1 -0
  100. package/lib/cjs/training.js +14 -0
  101. package/lib/cjs/training.js.map +1 -0
  102. package/lib/cjs/transient-tokens.js +9 -0
  103. package/lib/cjs/transient-tokens.js.map +1 -0
  104. package/lib/cjs/user.js +25 -0
  105. package/lib/cjs/user.js.map +1 -0
  106. package/lib/cjs/utils/auth.js +15 -0
  107. package/lib/cjs/utils/auth.js.map +1 -0
  108. package/lib/cjs/utils/schemas.js +138 -0
  109. package/lib/cjs/utils/schemas.js.map +1 -0
  110. package/lib/cjs/utils/type-helpers.js +3 -0
  111. package/lib/cjs/utils/type-helpers.js.map +1 -0
  112. package/lib/cjs/versions.js +9 -0
  113. package/lib/cjs/versions.js.map +1 -0
  114. package/lib/cjs/workflow-analytics.js +52 -0
  115. package/lib/cjs/workflow-analytics.js.map +1 -0
  116. package/lib/esm/Progress.js +57 -0
  117. package/lib/esm/Progress.js.map +1 -0
  118. package/lib/esm/access-control.js +53 -0
  119. package/lib/esm/access-control.js.map +1 -0
  120. package/lib/esm/analytics.js +2 -0
  121. package/lib/esm/analytics.js.map +1 -0
  122. package/lib/esm/apikey.js +14 -0
  123. package/lib/esm/apikey.js.map +1 -0
  124. package/lib/esm/apps.js +32 -0
  125. package/lib/esm/apps.js.map +1 -0
  126. package/lib/esm/ask-user.js +7 -0
  127. package/lib/esm/ask-user.js.map +1 -0
  128. package/lib/esm/audit-trail.js +2 -0
  129. package/lib/esm/audit-trail.js.map +1 -0
  130. package/lib/esm/channels.js +57 -0
  131. package/lib/esm/channels.js.map +1 -0
  132. package/lib/esm/common.js +2 -0
  133. package/lib/esm/common.js.map +1 -0
  134. package/lib/esm/data-platform.js +124 -0
  135. package/lib/esm/data-platform.js.map +1 -0
  136. package/lib/esm/email.js +16 -0
  137. package/lib/esm/email.js.map +1 -0
  138. package/lib/esm/environment.js +41 -0
  139. package/lib/esm/environment.js.map +1 -0
  140. package/lib/esm/facets.js +2 -0
  141. package/lib/esm/facets.js.map +1 -0
  142. package/lib/esm/group.js +2 -0
  143. package/lib/esm/group.js.map +1 -0
  144. package/lib/esm/index.js +40 -0
  145. package/lib/esm/index.js.map +1 -0
  146. package/lib/esm/integrations.js +13 -0
  147. package/lib/esm/integrations.js.map +1 -0
  148. package/lib/esm/interaction.js +92 -0
  149. package/lib/esm/interaction.js.map +1 -0
  150. package/lib/esm/json-schema.js +2 -0
  151. package/lib/esm/json-schema.js.map +1 -0
  152. package/lib/esm/json.js +2 -0
  153. package/lib/esm/json.js.map +1 -0
  154. package/lib/esm/meters.js +10 -0
  155. package/lib/esm/meters.js.map +1 -0
  156. package/lib/esm/model_utility.js +2 -0
  157. package/lib/esm/model_utility.js.map +1 -0
  158. package/lib/esm/payload.js +2 -0
  159. package/lib/esm/payload.js.map +1 -0
  160. package/lib/esm/pending-asks.js +6 -0
  161. package/lib/esm/pending-asks.js.map +1 -0
  162. package/lib/esm/project.js +138 -0
  163. package/lib/esm/project.js.map +1 -0
  164. package/lib/esm/prompt.js +18 -0
  165. package/lib/esm/prompt.js.map +1 -0
  166. package/lib/esm/query.js +2 -0
  167. package/lib/esm/query.js.map +1 -0
  168. package/lib/esm/rate-limiter.js +5 -0
  169. package/lib/esm/rate-limiter.js.map +1 -0
  170. package/lib/esm/refs.js +11 -0
  171. package/lib/esm/refs.js.map +1 -0
  172. package/lib/esm/runs.js +2 -0
  173. package/lib/esm/runs.js.map +1 -0
  174. package/lib/esm/skill.js +13 -0
  175. package/lib/esm/skill.js.map +1 -0
  176. package/lib/esm/store/activity-catalog.js +2 -0
  177. package/lib/esm/store/activity-catalog.js.map +1 -0
  178. package/lib/esm/store/collections.js +6 -0
  179. package/lib/esm/store/collections.js.map +1 -0
  180. package/lib/esm/store/common.js +2 -0
  181. package/lib/esm/store/common.js.map +1 -0
  182. package/lib/esm/store/conversation-state.js +2 -0
  183. package/lib/esm/store/conversation-state.js.map +1 -0
  184. package/lib/esm/store/doc-analyzer.js +2 -0
  185. package/lib/esm/store/doc-analyzer.js.map +1 -0
  186. package/lib/esm/store/dsl-workflow.js +2 -0
  187. package/lib/esm/store/dsl-workflow.js.map +1 -0
  188. package/lib/esm/store/hive-memory.js +2 -0
  189. package/lib/esm/store/hive-memory.js.map +1 -0
  190. package/lib/esm/store/index.js +16 -0
  191. package/lib/esm/store/index.js.map +1 -0
  192. package/lib/esm/store/object-types.js +95 -0
  193. package/lib/esm/store/object-types.js.map +1 -0
  194. package/lib/esm/store/rendering.js +18 -0
  195. package/lib/esm/store/rendering.js.map +1 -0
  196. package/lib/esm/store/schedule.js +29 -0
  197. package/lib/esm/store/schedule.js.map +1 -0
  198. package/lib/esm/store/signals.js +2 -0
  199. package/lib/esm/store/signals.js.map +1 -0
  200. package/lib/esm/store/store.js +171 -0
  201. package/lib/esm/store/store.js.map +1 -0
  202. package/lib/esm/store/temporalio.js +41 -0
  203. package/lib/esm/store/temporalio.js.map +1 -0
  204. package/lib/esm/store/worker.js +2 -0
  205. package/lib/esm/store/worker.js.map +1 -0
  206. package/lib/esm/store/workflow.js +287 -0
  207. package/lib/esm/store/workflow.js.map +1 -0
  208. package/lib/esm/sts-token-types.js +24 -0
  209. package/lib/esm/sts-token-types.js.map +1 -0
  210. package/lib/esm/tenant.js +2 -0
  211. package/lib/esm/tenant.js.map +1 -0
  212. package/lib/esm/tool-execution.js +5 -0
  213. package/lib/esm/tool-execution.js.map +1 -0
  214. package/lib/esm/training.js +11 -0
  215. package/lib/esm/training.js.map +1 -0
  216. package/lib/esm/transient-tokens.js +6 -0
  217. package/lib/esm/transient-tokens.js.map +1 -0
  218. package/lib/esm/user.js +22 -0
  219. package/lib/esm/user.js.map +1 -0
  220. package/lib/esm/utils/auth.js +11 -0
  221. package/lib/esm/utils/auth.js.map +1 -0
  222. package/lib/esm/utils/schemas.js +129 -0
  223. package/lib/esm/utils/schemas.js.map +1 -0
  224. package/lib/esm/utils/type-helpers.js +2 -0
  225. package/lib/esm/utils/type-helpers.js.map +1 -0
  226. package/lib/esm/versions.js +6 -0
  227. package/lib/esm/versions.js.map +1 -0
  228. package/lib/esm/workflow-analytics.js +49 -0
  229. package/lib/esm/workflow-analytics.js.map +1 -0
  230. package/lib/tsconfig.tsbuildinfo +1 -0
  231. package/lib/types/Progress.d.ts +21 -0
  232. package/lib/types/Progress.d.ts.map +1 -0
  233. package/lib/types/access-control.d.ts +73 -0
  234. package/lib/types/access-control.d.ts.map +1 -0
  235. package/lib/types/analytics.d.ts +87 -0
  236. package/lib/types/analytics.d.ts.map +1 -0
  237. package/lib/types/apikey.d.ts +99 -0
  238. package/lib/types/apikey.d.ts.map +1 -0
  239. package/lib/types/apps.d.ts +455 -0
  240. package/lib/types/apps.d.ts.map +1 -0
  241. package/lib/types/ask-user.d.ts +32 -0
  242. package/lib/types/ask-user.d.ts.map +1 -0
  243. package/lib/types/audit-trail.d.ts +49 -0
  244. package/lib/types/audit-trail.d.ts.map +1 -0
  245. package/lib/types/channels.d.ts +21 -0
  246. package/lib/types/channels.d.ts.map +1 -0
  247. package/lib/types/common.d.ts +31 -0
  248. package/lib/types/common.d.ts.map +1 -0
  249. package/lib/types/data-platform.d.ts +860 -0
  250. package/lib/types/data-platform.d.ts.map +1 -0
  251. package/lib/types/email.d.ts +66 -0
  252. package/lib/types/email.d.ts.map +1 -0
  253. package/lib/types/environment.d.ts +106 -0
  254. package/lib/types/environment.d.ts.map +1 -0
  255. package/lib/types/facets.d.ts +34 -0
  256. package/lib/types/facets.d.ts.map +1 -0
  257. package/lib/types/group.d.ts +21 -0
  258. package/lib/types/group.d.ts.map +1 -0
  259. package/lib/types/index.d.ts +40 -0
  260. package/lib/types/index.d.ts.map +1 -0
  261. package/lib/types/integrations.d.ts +68 -0
  262. package/lib/types/integrations.d.ts.map +1 -0
  263. package/lib/types/interaction.d.ts +964 -0
  264. package/lib/types/interaction.d.ts.map +1 -0
  265. package/lib/types/json-schema.d.ts +1 -0
  266. package/lib/types/json-schema.d.ts.map +1 -0
  267. package/lib/types/json.d.ts +1 -0
  268. package/lib/types/json.d.ts.map +1 -0
  269. package/lib/types/meters.d.ts +23 -0
  270. package/lib/types/meters.d.ts.map +1 -0
  271. package/lib/types/model_utility.d.ts +1 -0
  272. package/lib/types/model_utility.d.ts.map +1 -0
  273. package/lib/types/payload.d.ts +60 -0
  274. package/lib/types/payload.d.ts.map +1 -0
  275. package/lib/types/pending-asks.d.ts +93 -0
  276. package/lib/types/pending-asks.d.ts.map +1 -0
  277. package/lib/types/project.d.ts +434 -0
  278. package/lib/types/project.d.ts.map +1 -0
  279. package/lib/types/prompt.d.ts +77 -0
  280. package/lib/types/prompt.d.ts.map +1 -0
  281. package/lib/types/query.d.ts +118 -0
  282. package/lib/types/query.d.ts.map +1 -0
  283. package/lib/types/rate-limiter.d.ts +28 -0
  284. package/lib/types/rate-limiter.d.ts.map +1 -0
  285. package/lib/types/refs.d.ts +22 -0
  286. package/lib/types/refs.d.ts.map +1 -0
  287. package/lib/types/runs.d.ts +32 -0
  288. package/lib/types/runs.d.ts.map +1 -0
  289. package/lib/types/skill.d.ts +78 -0
  290. package/lib/types/skill.d.ts.map +1 -0
  291. package/lib/types/store/activity-catalog.d.ts +26 -0
  292. package/lib/types/store/activity-catalog.d.ts.map +1 -0
  293. package/lib/types/store/collections.d.ts +78 -0
  294. package/lib/types/store/collections.d.ts.map +1 -0
  295. package/lib/types/store/common.d.ts +22 -0
  296. package/lib/types/store/common.d.ts.map +1 -0
  297. package/lib/types/store/conversation-state.d.ts +132 -0
  298. package/lib/types/store/conversation-state.d.ts.map +1 -0
  299. package/lib/types/store/doc-analyzer.d.ts +140 -0
  300. package/lib/types/store/doc-analyzer.d.ts.map +1 -0
  301. package/lib/types/store/dsl-workflow.d.ts +272 -0
  302. package/lib/types/store/dsl-workflow.d.ts.map +1 -0
  303. package/lib/types/store/hive-memory.d.ts +116 -0
  304. package/lib/types/store/hive-memory.d.ts.map +1 -0
  305. package/lib/types/store/index.d.ts +15 -0
  306. package/lib/types/store/index.d.ts.map +1 -0
  307. package/lib/types/store/object-types.d.ts +23 -0
  308. package/lib/types/store/object-types.d.ts.map +1 -0
  309. package/lib/types/store/rendering.d.ts +193 -0
  310. package/lib/types/store/rendering.d.ts.map +1 -0
  311. package/lib/types/store/schedule.d.ts +184 -0
  312. package/lib/types/store/schedule.d.ts.map +1 -0
  313. package/lib/types/store/signals.d.ts +24 -0
  314. package/lib/types/store/signals.d.ts.map +1 -0
  315. package/lib/types/store/store.d.ts +436 -0
  316. package/lib/types/store/store.d.ts.map +1 -0
  317. package/lib/types/store/temporalio.d.ts +16 -0
  318. package/lib/types/store/temporalio.d.ts.map +1 -0
  319. package/lib/types/store/worker.d.ts +18 -0
  320. package/lib/types/store/worker.d.ts.map +1 -0
  321. package/lib/types/store/workflow.d.ts +948 -0
  322. package/lib/types/store/workflow.d.ts.map +1 -0
  323. package/lib/types/sts-token-types.d.ts +72 -0
  324. package/lib/types/sts-token-types.d.ts.map +1 -0
  325. package/lib/types/tenant.d.ts +10 -0
  326. package/lib/types/tenant.d.ts.map +1 -0
  327. package/lib/types/tool-execution.d.ts +45 -0
  328. package/lib/types/tool-execution.d.ts.map +1 -0
  329. package/lib/types/training.d.ts +38 -0
  330. package/lib/types/training.d.ts.map +1 -0
  331. package/lib/types/transient-tokens.d.ts +24 -0
  332. package/lib/types/transient-tokens.d.ts.map +1 -0
  333. package/lib/types/user.d.ts +125 -0
  334. package/lib/types/user.d.ts.map +1 -0
  335. package/lib/types/utils/auth.d.ts +3 -0
  336. package/lib/types/utils/auth.d.ts.map +1 -0
  337. package/lib/types/utils/schemas.d.ts +18 -0
  338. package/lib/types/utils/schemas.d.ts.map +1 -0
  339. package/lib/types/utils/type-helpers.d.ts +3 -0
  340. package/lib/types/utils/type-helpers.d.ts.map +1 -0
  341. package/lib/types/versions.d.ts +4 -0
  342. package/lib/types/versions.d.ts.map +1 -0
  343. package/lib/types/workflow-analytics.d.ts +777 -0
  344. package/lib/types/workflow-analytics.d.ts.map +1 -0
  345. package/lib/vertesia-common.js +2 -0
  346. package/lib/vertesia-common.js.map +1 -0
  347. package/package.json +2 -4
  348. package/src/apikey.ts +1 -0
  349. package/src/apps.ts +163 -1
  350. package/src/audit-trail.ts +61 -0
  351. package/src/index.ts +1 -0
  352. package/src/integrations.ts +10 -0
  353. package/src/interaction.ts +11 -12
  354. package/src/project.ts +226 -0
  355. package/src/prompt.ts +3 -4
  356. package/src/store/conversation-state.ts +9 -0
  357. package/src/store/doc-analyzer.ts +1 -1
  358. package/src/store/dsl-workflow.ts +20 -0
  359. package/src/store/index.ts +1 -0
  360. package/src/store/rendering.ts +233 -0
  361. package/src/store/schedule.ts +3 -0
  362. package/src/store/store.ts +40 -5
  363. package/src/store/workflow.ts +184 -7
  364. package/src/user.ts +11 -0
  365. package/src/utils/schemas.ts +33 -11
  366. package/src/versions.ts +1 -0
@@ -0,0 +1,132 @@
1
+ import { CompletionResult, ExecutionTokenUsage, StatelessExecutionOptions, ToolUse } from "@llumiverse/common";
2
+ import { ConversationStripOptions, ResolvedInteractionExecutionInfo, UserChannel } from "../interaction.js";
3
+ import { ExecutionRunDocRef } from "../runs.js";
4
+ import { Plan, WorkflowAncestor } from "./workflow.js";
5
+ /**
6
+ * Lightweight tool reference for activity payloads.
7
+ * References tools stored in GCP instead of embedding full tool definitions.
8
+ */
9
+ export interface ToolReference {
10
+ storage_key: string;
11
+ tool_count: number;
12
+ stored_at: string;
13
+ }
14
+ /**
15
+ * Conversation state passed between workflow activities.
16
+ * Contains all context needed to continue a multi-turn agent conversation.
17
+ */
18
+ export interface ConversationState {
19
+ /**
20
+ * A reference to the run that started the conversation
21
+ */
22
+ run: ExecutionRunDocRef;
23
+ /**
24
+ * The execution environment with provider info for LLM calls.
25
+ */
26
+ environment: string;
27
+ /**
28
+ * The options to use on the next call.
29
+ */
30
+ options: StatelessExecutionOptions;
31
+ /**
32
+ * The tools to call next.
33
+ */
34
+ tool_use?: ToolUse[];
35
+ /**
36
+ * The output of the this conversation step
37
+ */
38
+ output: CompletionResult[];
39
+ /**
40
+ * The token usage of the this conversation step
41
+ */
42
+ token_usage?: ExecutionTokenUsage;
43
+ /** If a sub workflow execution, contains the parent's info */
44
+ parent?: WorkflowAncestor;
45
+ /** Full ancestry chain from root to immediate parent (for hierarchical aggregation) */
46
+ ancestors: WorkflowAncestor[];
47
+ /** If part of a larger agentic workflow, task id of this task */
48
+ task_id?: string;
49
+ /** Stores the most recent plan for reference by plan-related tools */
50
+ plan?: Plan;
51
+ /** Debug mode (more logs and persisted artifacts) */
52
+ debug?: boolean;
53
+ /**
54
+ * Configuration for stripping large data from conversation history.
55
+ * Passed to llumiverse ExecutionOptions.stripImagesAfterTurns.
56
+ */
57
+ strip_options?: ConversationStripOptions;
58
+ /** Conversation artifacts base url */
59
+ conversation_artifacts_base_url?: string;
60
+ /** Reference to tools stored in GCP instead of embedding full tool definitions */
61
+ tool_reference?: ToolReference;
62
+ /** Names of currently active tools (base + unlocked). Tool definitions loaded from tool_reference. */
63
+ active_tool_names?: string[];
64
+ /** Skills that have been used in this conversation (for auto-syncing scripts and package installation) */
65
+ used_skills?: UsedSkill[];
66
+ /** All available skills from registered tool collections (for upfront hydration in sandbox) */
67
+ available_skills?: AvailableSkill[];
68
+ /** Whether to stream LLM responses to Redis (cached from project config) */
69
+ streaming_enabled?: boolean;
70
+ /**
71
+ * Active communication channels with their current state.
72
+ * Channels can be updated as conversation progresses (e.g., email threading info).
73
+ */
74
+ user_channels?: UserChannel[];
75
+ /**
76
+ * The resolved interaction execution info.
77
+ * Contains interaction ID, name, version, and environment details.
78
+ */
79
+ resolvedInteraction?: ResolvedInteractionExecutionInfo;
80
+ /**
81
+ * End conversation metadata set when end_conversation tool is called.
82
+ * Signals the workflow to terminate gracefully.
83
+ */
84
+ end_conversation?: {
85
+ final_result?: string;
86
+ status?: 'success' | 'failure';
87
+ reason?: string;
88
+ };
89
+ /**
90
+ * Tools that have been unlocked by skills during the conversation.
91
+ * These tools were initially hidden (default: false) but became available
92
+ * when a skill with related_tools was called.
93
+ */
94
+ unlocked_tools?: string[];
95
+ /**
96
+ * Activity ID from the latest LLM call (for deduplication with streamed content).
97
+ * Set by streamToRedis when completing async activities.
98
+ */
99
+ latest_activity_id?: string;
100
+ /**
101
+ * Mapping of skill names to their related tools.
102
+ * When a skill is called, its related tools are added to unlocked_tools.
103
+ */
104
+ skill_tool_map?: Record<string, string[]>;
105
+ /**
106
+ * Current activity group ID for internal tool-execution progress messages.
107
+ * All updates emitted during one tool-execution cycle should share this ID.
108
+ */
109
+ active_activity_group_id?: string;
110
+ /** LLM stop reason from the latest call (e.g., "stop", "length", "tool_use") */
111
+ finish_reason?: string;
112
+ }
113
+ /** Skill metadata collected at workflow start for upfront sandbox hydration */
114
+ export interface AvailableSkill {
115
+ /** Skill name (e.g., "analyze_data") - without the "learn_" prefix */
116
+ name: string;
117
+ /** Source URL of the skill collection (e.g., "https://tools.vertesia.io/api/skills/data-analysis") */
118
+ src: string;
119
+ }
120
+ /** Skill metadata tracked when a skill is used */
121
+ export interface UsedSkill {
122
+ /** Skill name (e.g., "analyze_data") */
123
+ name: string;
124
+ /** Source URL of the skill collection (e.g., "https://tools.vertesia.io/api/skills/data-analysis") */
125
+ src: string;
126
+ /** Programming language (e.g., "python") */
127
+ language?: string;
128
+ /** Required packages (e.g., ["pandas", "numpy"]) */
129
+ packages?: string[];
130
+ /** System-level packages to install via sudo apt-get (e.g., ["poppler-utils"]) */
131
+ system_packages?: string[];
132
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"conversation-state.d.ts","sourceRoot":"","sources":["../../../src/store/conversation-state.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,140 @@
1
+ import { WorkflowExecutionPayload, WorkflowRunStatus } from "./workflow.js";
2
+ export interface PdfToRichtextOptions {
3
+ features?: string[];
4
+ debug?: boolean;
5
+ [key: string]: any;
6
+ }
7
+ export interface PdfToRichTextWorkflowPayload extends Omit<WorkflowExecutionPayload, "vars"> {
8
+ vars: PdfToRichtextOptions;
9
+ }
10
+ /**
11
+ * Represents a image in a document that has been analyzed
12
+ */
13
+ export interface DocImage {
14
+ id?: string;
15
+ page_number?: number;
16
+ description?: string;
17
+ is_meaningful?: boolean;
18
+ width?: number;
19
+ height?: number;
20
+ }
21
+ /**
22
+ * The export type formats for tables.
23
+ */
24
+ export type ExportTableFormats = 'json' | 'csv' | 'xml';
25
+ /**
26
+ * Represents a table in a document that has been analyzed
27
+ */
28
+ export interface DocTable {
29
+ page_number?: number;
30
+ table_number?: number;
31
+ title?: string;
32
+ format: "application/csv" | "application/json";
33
+ }
34
+ /**
35
+ * Represents a table in a document that has been analyzed in CSV format
36
+ */
37
+ export interface DocTableCsv extends DocTable {
38
+ format: "application/csv";
39
+ title?: string;
40
+ data: string;
41
+ }
42
+ /**
43
+ * Represents a table in a document that has been analyzed in JSON format
44
+ */
45
+ export interface DocTableJson extends DocTable {
46
+ format: "application/json";
47
+ title?: string;
48
+ data: Object[];
49
+ }
50
+ /**
51
+ * Output format for document processing workflows
52
+ */
53
+ export type DocProcessorOutputFormat = "xml" | "markdown";
54
+ /**
55
+ * Represents a document analysis run status
56
+ */
57
+ export interface DocAnalyzeRunStatusResponse extends WorkflowRunStatus {
58
+ progress?: DocAnalyzerProgress;
59
+ /** The output format being used for processing (markdown or xml) */
60
+ output_format?: DocProcessorOutputFormat;
61
+ }
62
+ export interface DocAnalyzerResultResponse {
63
+ document?: string;
64
+ tables?: DocTableCsv[] | DocTableJson[];
65
+ images?: DocImage[];
66
+ annotated?: string | null;
67
+ }
68
+ export interface DocAnalyzerProgress {
69
+ pages: DocAnalyzerProgressStatus;
70
+ images: DocAnalyzerProgressStatus;
71
+ tables: DocAnalyzerProgressStatus;
72
+ visuals: DocAnalyzerProgressStatus;
73
+ started_at?: number;
74
+ percent: number;
75
+ /** The output format being used for processing (markdown or xml) */
76
+ output_format?: DocProcessorOutputFormat;
77
+ }
78
+ interface DocAnalyzerProgressStatus {
79
+ total: number;
80
+ processed: number;
81
+ success: number;
82
+ failed: number;
83
+ }
84
+ /**
85
+ * Adapt Tables Parameters, part of the request
86
+ */
87
+ export interface AdaptTablesParams {
88
+ /**
89
+ * JSON Schema to to convert the table into
90
+ */
91
+ target_schema: string;
92
+ /**
93
+ * Natural language description of the type item the table are composed of
94
+ */
95
+ item_name: string;
96
+ /**
97
+ * Natural language description of the type of table or item to convert
98
+ */
99
+ instructions?: string;
100
+ /**
101
+ * Format to return the data in (csv, json)
102
+ */
103
+ format?: "csv" | "json";
104
+ /**
105
+ * Process the table as a whole or by page
106
+ */
107
+ process_as?: "page" | "table";
108
+ /**
109
+ * Process the table as a CSV file
110
+ */
111
+ process_as_csv?: boolean;
112
+ }
113
+ interface DocAnalyzerRequestBase {
114
+ synchronous?: boolean;
115
+ notify_endpoints?: string[];
116
+ /**
117
+ * What environment to use to run the request
118
+ * If none specified the project embedded environment will be used
119
+ */
120
+ environment?: string;
121
+ }
122
+ export interface AdaptTablesRequest extends DocAnalyzerRequestBase, AdaptTablesParams {
123
+ }
124
+ /**
125
+ * Get Adapted Tables Request
126
+ * @param raw If true, the raw data will be returned
127
+ * @param format The format to return the data in (csv, json)
128
+ */
129
+ export interface GetAdaptedTablesRequestQuery {
130
+ raw?: boolean;
131
+ format: "csv" | "json";
132
+ }
133
+ /**
134
+ * The adapted table result format
135
+ */
136
+ export interface AdaptedTable {
137
+ comment?: string;
138
+ data: Record<string, any>[];
139
+ }
140
+ export {};
@@ -0,0 +1 @@
1
+ {"version":3,"file":"doc-analyzer.d.ts","sourceRoot":"","sources":["../../../src/store/doc-analyzer.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,272 @@
1
+ import { StringValue } from "ms";
2
+ import { BaseObject } from "./common.js";
3
+ import { WorkflowExecutionPayload } from "./index.js";
4
+ import { ParentClosePolicyType } from "./temporalio.js";
5
+ /**
6
+ * Discriminator for workflow input type - either object IDs or GCS file URIs
7
+ */
8
+ export type WorkflowInputType = 'objectIds' | 'files';
9
+ /**
10
+ * File reference with URL and mimetype
11
+ */
12
+ export interface WorkflowInputFile {
13
+ url: string;
14
+ mimetype: string;
15
+ }
16
+ /**
17
+ * Discriminated union for workflow inputs.
18
+ * Workflows can accept either a list of object IDs (existing behavior) OR a list of file references (new).
19
+ */
20
+ export type WorkflowInput = {
21
+ inputType: 'objectIds';
22
+ objectIds: string[];
23
+ } | {
24
+ inputType: 'files';
25
+ files: WorkflowInputFile[];
26
+ };
27
+ /**
28
+ * The payload sent when starting a workflow from the temporal client to the workflow instance.
29
+ */
30
+ export interface DSLWorkflowExecutionPayload extends WorkflowExecutionPayload {
31
+ /**
32
+ * The workflow definition to be used by the DSL workflow.
33
+ * If a dsl workflow is executed and no definition is provided the workflow will fail.
34
+ */
35
+ workflow: DSLWorkflowSpec;
36
+ }
37
+ /**
38
+ * The payload for a DSL activity options.
39
+ *
40
+ * @see ActivityOptions in @temporalio/common
41
+ */
42
+ export interface DSLActivityOptions {
43
+ startToCloseTimeout?: StringValue | number;
44
+ scheduleToStartTimeout?: StringValue | number;
45
+ scheduleToCloseTimeout?: StringValue | number;
46
+ retry?: DSLRetryPolicy;
47
+ }
48
+ /**
49
+ * The payload for a DSL retry policy.
50
+ *
51
+ * @see RetryPolicy in @temporalio/common
52
+ */
53
+ export interface DSLRetryPolicy {
54
+ backoffCoefficient?: number;
55
+ initialInterval?: StringValue | number;
56
+ maximumAttempts?: number;
57
+ maximumInterval?: StringValue | number;
58
+ nonRetryableErrorTypes?: string[];
59
+ }
60
+ /**
61
+ * The payload for a DSL activity execution.
62
+ */
63
+ export interface DSLActivityExecutionPayload<ParamsT extends Record<string, any>> extends WorkflowExecutionPayload {
64
+ activity: DSLActivitySpec;
65
+ params: ParamsT;
66
+ workflow_name: string;
67
+ debug_mode?: boolean;
68
+ }
69
+ export type ImportSpec = (string | Record<string, string>)[];
70
+ export interface ActivityFetchSpec {
71
+ /**
72
+ * The data provider name
73
+ */
74
+ type: "document" | "document_type" | "interaction_run";
75
+ /**
76
+ * An optional URI to the data source.
77
+ */
78
+ source?: string;
79
+ /**
80
+ * The query to be executed by the data provider
81
+ */
82
+ query: Record<string, any>;
83
+ /**
84
+ * a string of space separated field names.
85
+ * Prefix a field name with "-" to exclude it from the result.
86
+ */
87
+ select?: string;
88
+ /**
89
+ * The number of results to return. If the result is limited to 1 the result will be a single object
90
+ */
91
+ limit?: number;
92
+ /**
93
+ * How to handle not found objects.
94
+ * 1. ignore - Ignore and return an empty array for multi objects query (or undefined for single object query) or empty array for multiple objects throw an error.
95
+ * 2. throw - Throw an error if the object or no objects are found.
96
+ */
97
+ on_not_found?: "ignore" | "throw";
98
+ }
99
+ export interface DSLWorkflowStepBase {
100
+ /**
101
+ * The type fo the step.
102
+ * If not set defaults to "activity"
103
+ */
104
+ type: "activity" | "workflow";
105
+ }
106
+ export interface DSLActivitySpec<PARAMS extends Record<string, any> = Record<string, any>> {
107
+ /**
108
+ * The name of the activity function
109
+ */
110
+ name: string;
111
+ /**
112
+ * Title of the activity to be displayed in the UI workflow builder
113
+ */
114
+ title?: string;
115
+ /**
116
+ * The description of the activity to e displayed in the UI workflow builder
117
+ */
118
+ description?: string;
119
+ /**
120
+ * Activities parameters. These parameters can be either literals
121
+ * (hardcoded strings, numbers, booleans, objects, arrays etc.), either
122
+ * references to the workflow variables.
123
+ * The workflow variables are built from the workflow params (e.g. the workflow configuration)
124
+ * and from the result of the previous activities.
125
+ */
126
+ params?: PARAMS;
127
+ /**
128
+ * The name of the workflow variable that will store the result of the activity
129
+ * If not specified the result will not be stored
130
+ * The parameters describe how the actual parameters will be obtained from the workflow execution vars.
131
+ * since it may contain references to workflow execution vars.
132
+ */
133
+ output?: string;
134
+ /**
135
+ * A JSON expression which evaluate to true or false similar to mongo matches.
136
+ * We support for now basic expression like: $true, $false, $eq, $ne, $gt, $gte, $lt, $lte, $in, $nin, $regexp
137
+ * {$eq: {name: value}},
138
+ * Ex: {$eq: {wfVarName: value}}
139
+ */
140
+ condition?: Record<string, any>;
141
+ /**
142
+ * The import spec is used to import data from workflow variables.
143
+ * The import spec is a list of variable names to import from the workflow context.
144
+ * You can also use objects to rename the imported variables, or to reference an expression.
145
+ * Example:
146
+ * ["runId", {"typeId": "docType.id"}]
147
+ */
148
+ import?: ImportSpec;
149
+ /**
150
+ * The fetch phase is used to fetch data from external sources.
151
+ */
152
+ fetch?: Record<string, ActivityFetchSpec>;
153
+ /**
154
+ * Projection to apply to the result. Not all activities support this.
155
+ */
156
+ projection?: never | Record<string, any>;
157
+ /**
158
+ * If true the activity will be executed in parallel with the other activities.
159
+ * (i.e. the workflow will not wait for the activity to finish before starting the next one)
160
+ */
161
+ parallel?: boolean;
162
+ /**
163
+ * Await for a parallel activity execution to return.
164
+ */
165
+ await?: string;
166
+ /**
167
+ * Activity options for configuring the activity execution, which overrides the activity options
168
+ * defined at workflow level.
169
+ */
170
+ options?: DSLActivityOptions;
171
+ }
172
+ export interface DSLActivityStep<PARAMS extends Record<string, any> = Record<string, any>> extends DSLActivitySpec<PARAMS>, DSLWorkflowStepBase {
173
+ type: "activity";
174
+ }
175
+ export interface DSLChildWorkflowStep extends DSLWorkflowStepBase {
176
+ type: "workflow";
177
+ name: string;
178
+ /**
179
+ * The parameters to pass to the child workflow.
180
+ * These parameters will be merged over the parent workflow vars and passed altogether to the child workflow.
181
+ */
182
+ vars?: Record<string, any>;
183
+ async?: boolean;
184
+ /**
185
+ * The name of the workflow variable that will store the result of the child workflow (if async the workflow id is stored)
186
+ * If not specified the result will not be stored
187
+ * The parameters describe how the actual parameters will be obtained from the workflow execution vars.
188
+ * since it may contain references to workflow execution vars.
189
+ */
190
+ output?: string;
191
+ /**
192
+ * A JSON expression which evaluates to true or false similar to mongo matches.
193
+ * The child workflow will only execute if the condition is satisfied.
194
+ * Example: {$eq: {wfVarName: value}}
195
+ */
196
+ condition?: Record<string, any>;
197
+ /**
198
+ * In case the dslWorkflow is used as a child workflow the spec is used to define the child workflow.
199
+ * If spec is defined then the name must be "dslWorkflow"
200
+ */
201
+ spec?: DSLWorkflowSpec;
202
+ /**
203
+ * If true, copy the parent's workspace artifacts (scripts/, files/, skills/, docs/, out/)
204
+ * to the child workflow's agent space before execution. Defaults to true.
205
+ * conversation.json and tools.json are never copied.
206
+ */
207
+ inherit_artifacts?: boolean;
208
+ options?: {
209
+ memo?: Record<string, any>;
210
+ retry?: DSLRetryPolicy;
211
+ searchAttributes?: Record<string, string[] | number[] | boolean[] | Date[]>;
212
+ taskQueue?: string;
213
+ workflowExecutionTimeout?: StringValue | number;
214
+ workflowRunTimeout?: StringValue | number;
215
+ workflowTaskTimeout?: StringValue | number;
216
+ workflowId?: string;
217
+ cronSchedule?: string;
218
+ parentClosePolicy?: ParentClosePolicyType;
219
+ };
220
+ }
221
+ export type DSLWorkflowStep = DSLActivityStep | DSLChildWorkflowStep;
222
+ export interface DSLWorkflowSpecBase {
223
+ name: string;
224
+ description?: string;
225
+ tags?: string[];
226
+ steps?: DSLWorkflowStep[] | never;
227
+ /**
228
+ * @deprecated use steps instead
229
+ */
230
+ activities?: DSLActivitySpec[] | never;
231
+ vars: Record<string, any>;
232
+ options?: DSLActivityOptions;
233
+ result?: string;
234
+ debug_mode?: boolean;
235
+ }
236
+ export interface DSLWorkflowSpecWithSteps extends DSLWorkflowSpecBase {
237
+ steps: DSLWorkflowStep[];
238
+ /**
239
+ * @deprecated use steps instead
240
+ */
241
+ activities?: never;
242
+ }
243
+ /**
244
+ * @deprecated use steps instead
245
+ */
246
+ export interface DSLWorkflowSpecWithActivities extends DSLWorkflowSpecBase {
247
+ steps?: never;
248
+ /**
249
+ * @deprecated use steps instead
250
+ */
251
+ activities: DSLActivitySpec[];
252
+ }
253
+ /**
254
+ * activities and steps fields are mutually exclusive
255
+ * steps was added after activities and may contain a mix of activities and other tasks like exec child workflows.
256
+ * For backward compatibility we keep the activities field as a fallback but one should use one or the other not both.
257
+ */
258
+ export type DSLWorkflowSpec = DSLWorkflowSpecWithSteps | DSLWorkflowSpecWithActivities;
259
+ export interface DSLWorkflowDefinition extends BaseObject, DSLWorkflowSpecBase {
260
+ input_schema?: Record<string, any>;
261
+ activities?: DSLActivitySpec[];
262
+ steps?: DSLWorkflowStep[];
263
+ }
264
+ export interface WorkflowDefinitionRef {
265
+ id: string;
266
+ name: string;
267
+ description?: string;
268
+ tags?: string[];
269
+ created_at: Date;
270
+ updated_at: Date;
271
+ }
272
+ export declare const WorkflowDefinitionRefPopulate = "id name description tags created_at updated_at";
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dsl-workflow.d.ts","sourceRoot":"","sources":["../../../src/store/dsl-workflow.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,116 @@
1
+ import { BaseObject } from "./common.js";
2
+ /**
3
+ * Tool recommendation within a hive memory unit
4
+ */
5
+ export interface HiveMemoryToolRecommendation {
6
+ tool_name: string;
7
+ guidance: string;
8
+ }
9
+ /**
10
+ * Memory unit scope - project-scoped by default, can be elevated to account
11
+ */
12
+ export type HiveMemoryScope = 'project' | 'account';
13
+ /**
14
+ * Base interface for hive memory items (list/summary view)
15
+ */
16
+ export interface HiveMemoryItem extends BaseObject {
17
+ task_category: string;
18
+ domain?: string;
19
+ summary: string;
20
+ tools_involved: string[];
21
+ confidence_score: number;
22
+ usage_count: number;
23
+ success_correlation: number;
24
+ contribution_count: number;
25
+ scope: HiveMemoryScope;
26
+ }
27
+ /**
28
+ * Full hive memory unit with all learnings and patterns
29
+ */
30
+ export interface HiveMemory extends HiveMemoryItem {
31
+ objective_patterns: string[];
32
+ general_learnings: string[];
33
+ best_practices: string[];
34
+ pitfalls_to_avoid: string[];
35
+ tool_recommendations: HiveMemoryToolRecommendation[];
36
+ embedding?: number[];
37
+ security?: Record<string, string[]>;
38
+ }
39
+ /**
40
+ * Payload for creating a new hive memory unit
41
+ */
42
+ export interface CreateHiveMemoryPayload {
43
+ task_category: string;
44
+ domain?: string;
45
+ summary: string;
46
+ objective_patterns: string[];
47
+ general_learnings: string[];
48
+ best_practices?: string[];
49
+ pitfalls_to_avoid?: string[];
50
+ tool_recommendations?: HiveMemoryToolRecommendation[];
51
+ tools_involved?: string[];
52
+ confidence_score?: number;
53
+ scope?: HiveMemoryScope;
54
+ name?: string;
55
+ description?: string;
56
+ tags?: string[];
57
+ }
58
+ /**
59
+ * Payload for updating an existing hive memory unit
60
+ */
61
+ export interface UpdateHiveMemoryPayload {
62
+ task_category?: string;
63
+ domain?: string;
64
+ summary?: string;
65
+ add_objective_patterns?: string[];
66
+ add_general_learnings?: string[];
67
+ add_best_practices?: string[];
68
+ add_pitfalls_to_avoid?: string[];
69
+ add_tool_recommendations?: HiveMemoryToolRecommendation[];
70
+ add_tools_involved?: string[];
71
+ confidence_score?: number;
72
+ increment_usage_count?: boolean;
73
+ increment_contribution_count?: boolean;
74
+ success_correlation?: number;
75
+ scope?: HiveMemoryScope;
76
+ name?: string;
77
+ description?: string;
78
+ tags?: string[];
79
+ }
80
+ /**
81
+ * Search parameters for finding relevant memories
82
+ */
83
+ export interface HiveMemorySearchParams {
84
+ query?: string;
85
+ embedding?: number[];
86
+ task_category?: string;
87
+ domain?: string;
88
+ tools_involved?: string[];
89
+ scope?: HiveMemoryScope;
90
+ min_confidence?: number;
91
+ limit?: number;
92
+ offset?: number;
93
+ }
94
+ /**
95
+ * Response from memory search
96
+ */
97
+ export interface HiveMemorySearchResult {
98
+ memories: HiveMemory[];
99
+ total: number;
100
+ }
101
+ /**
102
+ * Formatted memory for agent consumption
103
+ */
104
+ export interface FormattedMemoryForAgent {
105
+ category: string;
106
+ domain?: string;
107
+ summary: string;
108
+ learnings: string[];
109
+ best_practices: string[];
110
+ pitfalls_to_avoid: string[];
111
+ tool_guidance: {
112
+ tool: string;
113
+ guidance: string;
114
+ }[];
115
+ confidence: number;
116
+ }