@vertesia/common 0.78.0-dev-28b447d → 0.79.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (281) hide show
  1. package/LICENSE +13 -0
  2. package/lib/cjs/Progress.js +61 -0
  3. package/lib/cjs/Progress.js.map +1 -0
  4. package/lib/cjs/access-control.js +56 -0
  5. package/lib/cjs/access-control.js.map +1 -0
  6. package/lib/cjs/analytics.js +3 -0
  7. package/lib/cjs/analytics.js.map +1 -0
  8. package/lib/cjs/apikey.js +15 -0
  9. package/lib/cjs/apikey.js.map +1 -0
  10. package/lib/cjs/apps.js +3 -0
  11. package/lib/cjs/apps.js.map +1 -0
  12. package/lib/cjs/common.js +3 -0
  13. package/lib/cjs/common.js.map +1 -0
  14. package/lib/cjs/environment.js +44 -0
  15. package/lib/cjs/environment.js.map +1 -0
  16. package/lib/cjs/facets.js +3 -0
  17. package/lib/cjs/facets.js.map +1 -0
  18. package/lib/cjs/group.js +5 -0
  19. package/lib/cjs/group.js.map +1 -0
  20. package/lib/cjs/index.js +47 -0
  21. package/lib/cjs/index.js.map +1 -0
  22. package/lib/cjs/integrations.js +12 -0
  23. package/lib/cjs/integrations.js.map +1 -0
  24. package/lib/cjs/interaction.js +64 -0
  25. package/lib/cjs/interaction.js.map +1 -0
  26. package/lib/cjs/json-schema.js +3 -0
  27. package/lib/cjs/json-schema.js.map +1 -0
  28. package/lib/cjs/json.js +3 -0
  29. package/lib/cjs/json.js.map +1 -0
  30. package/lib/cjs/meters.js +13 -0
  31. package/lib/cjs/meters.js.map +1 -0
  32. package/lib/cjs/model_utility.js +6 -0
  33. package/lib/cjs/model_utility.js.map +1 -0
  34. package/lib/cjs/package.json +3 -0
  35. package/lib/cjs/payload.js +3 -0
  36. package/lib/cjs/payload.js.map +1 -0
  37. package/lib/cjs/project.js +61 -0
  38. package/lib/cjs/project.js.map +1 -0
  39. package/lib/cjs/prompt.js +21 -0
  40. package/lib/cjs/prompt.js.map +1 -0
  41. package/lib/cjs/query.js +3 -0
  42. package/lib/cjs/query.js.map +1 -0
  43. package/lib/cjs/rate-limiter.js +6 -0
  44. package/lib/cjs/rate-limiter.js.map +1 -0
  45. package/lib/cjs/refs.js +14 -0
  46. package/lib/cjs/refs.js.map +1 -0
  47. package/lib/cjs/runs.js +3 -0
  48. package/lib/cjs/runs.js.map +1 -0
  49. package/lib/cjs/store/activity-catalog.js +3 -0
  50. package/lib/cjs/store/activity-catalog.js.map +1 -0
  51. package/lib/cjs/store/agent.js +3 -0
  52. package/lib/cjs/store/agent.js.map +1 -0
  53. package/lib/cjs/store/collections.js +9 -0
  54. package/lib/cjs/store/collections.js.map +1 -0
  55. package/lib/cjs/store/common.js +3 -0
  56. package/lib/cjs/store/common.js.map +1 -0
  57. package/lib/cjs/store/doc-analyzer.js +3 -0
  58. package/lib/cjs/store/doc-analyzer.js.map +1 -0
  59. package/lib/cjs/store/dsl-workflow.js +5 -0
  60. package/lib/cjs/store/dsl-workflow.js.map +1 -0
  61. package/lib/cjs/store/index.js +28 -0
  62. package/lib/cjs/store/index.js.map +1 -0
  63. package/lib/cjs/store/object-types.js +98 -0
  64. package/lib/cjs/store/object-types.js.map +1 -0
  65. package/lib/cjs/store/signals.js +3 -0
  66. package/lib/cjs/store/signals.js.map +1 -0
  67. package/lib/cjs/store/store.js +41 -0
  68. package/lib/cjs/store/store.js.map +1 -0
  69. package/lib/cjs/store/temporalio.js +44 -0
  70. package/lib/cjs/store/temporalio.js.map +1 -0
  71. package/lib/cjs/store/workflow.js +49 -0
  72. package/lib/cjs/store/workflow.js.map +1 -0
  73. package/lib/cjs/sts-token-types.js +32 -0
  74. package/lib/cjs/sts-token-types.js.map +1 -0
  75. package/lib/cjs/tenant.js +3 -0
  76. package/lib/cjs/tenant.js.map +1 -0
  77. package/lib/cjs/training.js +14 -0
  78. package/lib/cjs/training.js.map +1 -0
  79. package/lib/cjs/transient-tokens.js +9 -0
  80. package/lib/cjs/transient-tokens.js.map +1 -0
  81. package/lib/cjs/user.js +17 -0
  82. package/lib/cjs/user.js.map +1 -0
  83. package/lib/cjs/utils/auth.js +15 -0
  84. package/lib/cjs/utils/auth.js.map +1 -0
  85. package/lib/cjs/utils/schemas.js +66 -0
  86. package/lib/cjs/utils/schemas.js.map +1 -0
  87. package/lib/cjs/utils/type-helpers.js +3 -0
  88. package/lib/cjs/utils/type-helpers.js.map +1 -0
  89. package/lib/cjs/versions.js +8 -0
  90. package/lib/cjs/versions.js.map +1 -0
  91. package/lib/esm/Progress.js +57 -0
  92. package/lib/esm/Progress.js.map +1 -0
  93. package/lib/esm/access-control.js +53 -0
  94. package/lib/esm/access-control.js.map +1 -0
  95. package/lib/esm/analytics.js +2 -0
  96. package/lib/esm/analytics.js.map +1 -0
  97. package/lib/esm/apikey.js +12 -0
  98. package/lib/esm/apikey.js.map +1 -0
  99. package/lib/esm/apps.js +2 -0
  100. package/lib/esm/apps.js.map +1 -0
  101. package/lib/esm/common.js +2 -0
  102. package/lib/esm/common.js.map +1 -0
  103. package/lib/esm/environment.js +41 -0
  104. package/lib/esm/environment.js.map +1 -0
  105. package/lib/esm/facets.js +2 -0
  106. package/lib/esm/facets.js.map +1 -0
  107. package/lib/esm/group.js +2 -0
  108. package/lib/esm/group.js.map +1 -0
  109. package/lib/esm/index.js +31 -0
  110. package/lib/esm/index.js.map +1 -0
  111. package/lib/esm/integrations.js +9 -0
  112. package/lib/esm/integrations.js.map +1 -0
  113. package/lib/esm/interaction.js +61 -0
  114. package/lib/esm/interaction.js.map +1 -0
  115. package/lib/esm/json-schema.js +2 -0
  116. package/lib/esm/json-schema.js.map +1 -0
  117. package/lib/esm/json.js +2 -0
  118. package/lib/esm/json.js.map +1 -0
  119. package/lib/esm/meters.js +10 -0
  120. package/lib/esm/meters.js.map +1 -0
  121. package/lib/esm/model_utility.js +2 -0
  122. package/lib/esm/model_utility.js.map +1 -0
  123. package/lib/esm/payload.js +2 -0
  124. package/lib/esm/payload.js.map +1 -0
  125. package/lib/esm/project.js +57 -0
  126. package/lib/esm/project.js.map +1 -0
  127. package/lib/esm/prompt.js +18 -0
  128. package/lib/esm/prompt.js.map +1 -0
  129. package/lib/esm/query.js +2 -0
  130. package/lib/esm/query.js.map +1 -0
  131. package/lib/esm/rate-limiter.js +5 -0
  132. package/lib/esm/rate-limiter.js.map +1 -0
  133. package/lib/esm/refs.js +11 -0
  134. package/lib/esm/refs.js.map +1 -0
  135. package/lib/esm/runs.js +2 -0
  136. package/lib/esm/runs.js.map +1 -0
  137. package/lib/esm/store/activity-catalog.js +2 -0
  138. package/lib/esm/store/activity-catalog.js.map +1 -0
  139. package/lib/esm/store/agent.js +2 -0
  140. package/lib/esm/store/agent.js.map +1 -0
  141. package/lib/esm/store/collections.js +6 -0
  142. package/lib/esm/store/collections.js.map +1 -0
  143. package/lib/esm/store/common.js +2 -0
  144. package/lib/esm/store/common.js.map +1 -0
  145. package/lib/esm/store/doc-analyzer.js +2 -0
  146. package/lib/esm/store/doc-analyzer.js.map +1 -0
  147. package/lib/esm/store/dsl-workflow.js +2 -0
  148. package/lib/esm/store/dsl-workflow.js.map +1 -0
  149. package/lib/esm/store/index.js +12 -0
  150. package/lib/esm/store/index.js.map +1 -0
  151. package/lib/esm/store/object-types.js +95 -0
  152. package/lib/esm/store/object-types.js.map +1 -0
  153. package/lib/esm/store/signals.js +2 -0
  154. package/lib/esm/store/signals.js.map +1 -0
  155. package/lib/esm/store/store.js +38 -0
  156. package/lib/esm/store/store.js.map +1 -0
  157. package/lib/esm/store/temporalio.js +41 -0
  158. package/lib/esm/store/temporalio.js.map +1 -0
  159. package/lib/esm/store/workflow.js +45 -0
  160. package/lib/esm/store/workflow.js.map +1 -0
  161. package/lib/esm/sts-token-types.js +24 -0
  162. package/lib/esm/sts-token-types.js.map +1 -0
  163. package/lib/esm/tenant.js +2 -0
  164. package/lib/esm/tenant.js.map +1 -0
  165. package/lib/esm/training.js +11 -0
  166. package/lib/esm/training.js.map +1 -0
  167. package/lib/esm/transient-tokens.js +6 -0
  168. package/lib/esm/transient-tokens.js.map +1 -0
  169. package/lib/esm/user.js +14 -0
  170. package/lib/esm/user.js.map +1 -0
  171. package/lib/esm/utils/auth.js +11 -0
  172. package/lib/esm/utils/auth.js.map +1 -0
  173. package/lib/esm/utils/schemas.js +61 -0
  174. package/lib/esm/utils/schemas.js.map +1 -0
  175. package/lib/esm/utils/type-helpers.js +2 -0
  176. package/lib/esm/utils/type-helpers.js.map +1 -0
  177. package/lib/esm/versions.js +5 -0
  178. package/lib/esm/versions.js.map +1 -0
  179. package/lib/tsconfig.tsbuildinfo +1 -0
  180. package/lib/types/Progress.d.ts +21 -0
  181. package/lib/types/Progress.d.ts.map +1 -0
  182. package/lib/types/access-control.d.ts +73 -0
  183. package/lib/types/access-control.d.ts.map +1 -0
  184. package/lib/types/analytics.d.ts +36 -0
  185. package/lib/types/analytics.d.ts.map +1 -0
  186. package/lib/types/apikey.d.ts +76 -0
  187. package/lib/types/apikey.d.ts.map +1 -0
  188. package/lib/types/apps.d.ts +93 -0
  189. package/lib/types/apps.d.ts.map +1 -0
  190. package/lib/types/common.d.ts +31 -0
  191. package/lib/types/common.d.ts.map +1 -0
  192. package/lib/types/environment.d.ts +84 -0
  193. package/lib/types/environment.d.ts.map +1 -0
  194. package/lib/types/facets.d.ts +34 -0
  195. package/lib/types/facets.d.ts.map +1 -0
  196. package/lib/types/group.d.ts +21 -0
  197. package/lib/types/group.d.ts.map +1 -0
  198. package/lib/types/index.d.ts +31 -0
  199. package/lib/types/index.d.ts.map +1 -0
  200. package/lib/types/integrations.d.ts +28 -0
  201. package/lib/types/integrations.d.ts.map +1 -0
  202. package/lib/types/interaction.d.ts +440 -0
  203. package/lib/types/interaction.d.ts.map +1 -0
  204. package/lib/types/json-schema.d.ts +1 -0
  205. package/lib/types/json-schema.d.ts.map +1 -0
  206. package/lib/types/json.d.ts +1 -0
  207. package/lib/types/json.d.ts.map +1 -0
  208. package/lib/types/meters.d.ts +23 -0
  209. package/lib/types/meters.d.ts.map +1 -0
  210. package/lib/types/model_utility.d.ts +1 -0
  211. package/lib/types/model_utility.d.ts.map +1 -0
  212. package/lib/types/payload.d.ts +60 -0
  213. package/lib/types/payload.d.ts.map +1 -0
  214. package/lib/types/project.d.ts +116 -0
  215. package/lib/types/project.d.ts.map +1 -0
  216. package/lib/types/prompt.d.ts +70 -0
  217. package/lib/types/prompt.d.ts.map +1 -0
  218. package/lib/types/query.d.ts +116 -0
  219. package/lib/types/query.d.ts.map +1 -0
  220. package/lib/types/rate-limiter.d.ts +28 -0
  221. package/lib/types/rate-limiter.d.ts.map +1 -0
  222. package/lib/types/refs.d.ts +22 -0
  223. package/lib/types/refs.d.ts.map +1 -0
  224. package/lib/types/runs.d.ts +32 -0
  225. package/lib/types/runs.d.ts.map +1 -0
  226. package/lib/types/store/activity-catalog.d.ts +26 -0
  227. package/lib/types/store/activity-catalog.d.ts.map +1 -0
  228. package/lib/types/store/agent.d.ts +18 -0
  229. package/lib/types/store/agent.d.ts.map +1 -0
  230. package/lib/types/store/collections.d.ts +64 -0
  231. package/lib/types/store/collections.d.ts.map +1 -0
  232. package/lib/types/store/common.d.ts +22 -0
  233. package/lib/types/store/common.d.ts.map +1 -0
  234. package/lib/types/store/doc-analyzer.d.ts +132 -0
  235. package/lib/types/store/doc-analyzer.d.ts.map +1 -0
  236. package/lib/types/store/dsl-workflow.d.ts +238 -0
  237. package/lib/types/store/dsl-workflow.d.ts.map +1 -0
  238. package/lib/types/store/index.d.ts +11 -0
  239. package/lib/types/store/index.d.ts.map +1 -0
  240. package/lib/types/store/object-types.d.ts +23 -0
  241. package/lib/types/store/object-types.d.ts.map +1 -0
  242. package/lib/types/store/signals.d.ts +5 -0
  243. package/lib/types/store/signals.d.ts.map +1 -0
  244. package/lib/types/store/store.d.ts +304 -0
  245. package/lib/types/store/store.d.ts.map +1 -0
  246. package/lib/types/store/temporalio.d.ts +16 -0
  247. package/lib/types/store/temporalio.d.ts.map +1 -0
  248. package/lib/types/store/workflow.d.ts +356 -0
  249. package/lib/types/store/workflow.d.ts.map +1 -0
  250. package/lib/types/sts-token-types.d.ts +69 -0
  251. package/lib/types/sts-token-types.d.ts.map +1 -0
  252. package/lib/types/tenant.d.ts +10 -0
  253. package/lib/types/tenant.d.ts.map +1 -0
  254. package/lib/types/training.d.ts +38 -0
  255. package/lib/types/training.d.ts.map +1 -0
  256. package/lib/types/transient-tokens.d.ts +24 -0
  257. package/lib/types/transient-tokens.d.ts.map +1 -0
  258. package/lib/types/user.d.ts +113 -0
  259. package/lib/types/user.d.ts.map +1 -0
  260. package/lib/types/utils/auth.d.ts +3 -0
  261. package/lib/types/utils/auth.d.ts.map +1 -0
  262. package/lib/types/utils/schemas.d.ts +7 -0
  263. package/lib/types/utils/schemas.d.ts.map +1 -0
  264. package/lib/types/utils/type-helpers.d.ts +3 -0
  265. package/lib/types/utils/type-helpers.d.ts.map +1 -0
  266. package/lib/types/versions.d.ts +3 -0
  267. package/lib/types/versions.d.ts.map +1 -0
  268. package/lib/vertesia-common.js +2 -0
  269. package/lib/vertesia-common.js.map +1 -0
  270. package/package.json +38 -43
  271. package/src/access-control.ts +4 -4
  272. package/src/apikey.ts +21 -22
  273. package/src/apps.ts +0 -34
  274. package/src/index.ts +2 -1
  275. package/src/interaction.ts +13 -119
  276. package/src/project.ts +2 -0
  277. package/src/prompt.ts +9 -16
  278. package/src/store/workflow.ts +12 -40
  279. package/src/utils/schemas.ts +4 -4
  280. package/src/versions.ts +3 -0
  281. package/src/sts-token-types.ts +0 -114
@@ -0,0 +1 @@
1
+ {"version":3,"file":"workflow.d.ts","sourceRoot":"","sources":["../../../src/store/workflow.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAEnD,oBAAY,gBAAgB;IACxB,MAAM,WAAW;IACjB,WAAW,gBAAgB;IAC3B,MAAM,WAAW;IACjB,gBAAgB,qBAAqB;IACrC,MAAM,WAAW;IACjB,iBAAiB,sBAAsB;IACvC,0BAA0B,+BAA+B;IACzD,WAAW,gBAAgB;CAC9B;AAED,MAAM,WAAW,KAAK;IAClB,IAAI,EAAE,MAAM,CAAC;IAEb,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,WAAW,2BAA2B,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;IAChE;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;;;;;;OAQG;IACH,IAAI,EAAE,CAAC,CAAC;IAER;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,MAAM,CAAC,EAAE;QACL,UAAU,EAAE,MAAM,CAAC;QACnB,SAAS,EAAE,MAAM,CAAC;QAClB,aAAa,CAAC,EAAE,MAAM,CAAC;QACvB,oBAAoB,CAAC,EAAE,MAAM,EAAE,CAAC;KACnC,CAAC;IAEF;;;OAGG;IACH,gBAAgB,CAAC,EAAE,CAAC,MAAM,GAAG,WAAW,CAAC,EAAE,CAAC;IAE5C,iEAAiE;IACjE,MAAM,CAAC,EAAE;QACL,MAAM,EAAE,MAAM,CAAC;QACf,WAAW,EAAE,MAAM,CAAC;QACpB;;WAEG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;KACtB,CAAC;IAEF;;OAEG;IACH,eAAe,CAAC,EAAE,KAAK,EAAE,CAAC;CAE7B;AAED,MAAM,WAAW,WAAW;IACxB;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,wBAAwB,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAE,SAAQ,2BAA2B,CAAC,CAAC,CAAC;IACrG;;OAEG;IACH,KAAK,EAAE,gBAAgB,CAAC;IAMxB,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;OAEG;IACH,SAAS,EAAE,MAAM,EAAE,CAAC;IAEpB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;CACtB;AAED,wBAAgB,cAAc,CAAC,OAAO,EAAE,wBAAwB,GAAG,MAAM,EAAE,CAK1E;AAED,MAAM,WAAW,sBAAsB;IACnC;;OAEG;IAEH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;OAEG;IAEH,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IAErB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAE3B;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,uBAAuB;IACpC;;OAEG;IAEH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,UAAU,gBAAgB;IACtB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAEhB,QAAQ,CAAC,EAAE;QACP,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,EAAE,CAAC,EAAE,MAAM,CAAC;QACZ,KAAK,CAAC,EAAE,GAAG,CAAC;QACZ,gBAAgB,CAAC,EAAE,MAAM,CAAC;QAC1B,cAAc,CAAC,EAAE,MAAM,CAAC;KAC3B,CAAC;IAEF,aAAa,CAAC,EAAE;QACZ,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,gBAAgB,CAAC,EAAE,MAAM,CAAC;QAC1B,cAAc,CAAC,EAAE,MAAM,CAAC;QACxB,KAAK,CAAC,EAAE,GAAG,CAAC;QACZ,MAAM,CAAC,EAAE,GAAG,CAAC;KAChB,CAAC;IAEF,MAAM,CAAC,EAAE;QACL,SAAS,EAAE,WAAW,GAAG,SAAS,CAAC;QACnC,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,KAAK,CAAC,EAAE,GAAG,CAAC;QACZ,MAAM,CAAC,EAAE;YACL,UAAU,CAAC,EAAE,MAAM,CAAC;YACpB,KAAK,CAAC,EAAE,MAAM,CAAA;SACjB,CAAA;QACD,SAAS,CAAC,EAAE;YACR,UAAU,CAAC,EAAE,MAAM,CAAC;YACpB,KAAK,CAAC,EAAE,MAAM,CAAA;SACjB,CAAC;QACF,gBAAgB,CAAC,EAAE,MAAM,CAAC;KAC7B,CAAA;IAED,KAAK,CAAC,EAAE;QACJ,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,IAAI,CAAC,EAAE,MAAM,CAAC;KACjB,CAAC;IAEF,MAAM,CAAC,EAAE,GAAG,CAAC;CAChB;AAED,MAAM,WAAW,WAAW;IACxB,MAAM,CAAC,EAAE,uBAAuB,GAAG,MAAM,CAAC;IAC1C;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,MAAM,CAAC,EAAE,GAAG,CAAC;IACb,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,GAAG,CAAC,EAAE,GAAG,CAAC;IACV;;;;;OAKG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC;;OAEG;IACH,YAAY,CAAC,EAAE,cAAc,EAAE,CAAC;CACnC;AAED,MAAM,WAAW,sBAAuB,SAAQ,WAAW;IACvD,OAAO,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAC7B,IAAI,CAAC,EAAE;QACH,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KACtB,GAAG,IAAI,CAAC;IACT,iBAAiB,CAAC,EAAE;QAChB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,OAAO,EAAE,MAAM,CAAC;QAChB,eAAe,EAAE,MAAM,CAAC;QACxB,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,eAAe,CAAC,EAAE,MAAM,CAAC;KAC5B,EAAE,CAAC;CACP;AACD,MAAM,WAAW,wBAAwB;IACrC,IAAI,EAAE,WAAW,EAAE,CAAC;IACpB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,MAAM,WAAW,gCAAgC;IAC7C,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,mBAAmB,CAAA;CACnC;AAED,MAAM,WAAW,mBAAmB;IAChC,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,EAAE,CAAC;IACV,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,WAAW,CAAC;IACzB,WAAW,EAAE,OAAO,CAAC;IACrB,uBAAuB,CAAC,EAAE,WAAW,CAAA;IACrC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,aAAa,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,+BAAgC,SAAQ,IAAI,CAAC,wBAAwB,EAAE,QAAQ,CAAC;IAC7F,MAAM,EAAE;QACJ,eAAe,EAAE,MAAM,CAAC;QACxB,MAAM,EAAE,oBAAoB,CAAC;QAC7B,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;KAC7B,CAAC;CACL;AAED,MAAM,WAAW,oBAAoB;IACjC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,eAAe,EAAE,OAAO,CAAC;IACzB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,OAAO,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,oBAAY,uBAAuB;IAC/B,OAAO,IAAI;IACX,OAAO,IAAI;IACX,SAAS,IAAI;IACb,MAAM,IAAI;IACV,QAAQ,IAAI;IACZ,UAAU,IAAI;IACd,gBAAgB,IAAI;IACpB,SAAS,IAAI;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAC9B,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,MAAM,EAAE,uBAAuB,CAAC;CACnC;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IACzB,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,MAAM,CAAC;IACxB,IAAI,EAAE,gBAAgB,CAAC;IACvB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,GAAG,CAAC;IACd,aAAa,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,oBAAY,gBAAgB;IACxB,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,OAAO,YAAY;IACnB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,aAAa,kBAAkB;IAC/B,IAAI,SAAS;IACb,UAAU,eAAe;CAC5B;AAED,MAAM,WAAW,QAAQ;IACrB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,SAAS,GAAG,aAAa,GAAG,WAAW,GAAG,SAAS,CAAC;CAChE;AAED,MAAM,WAAW,IAAI;IACjB,IAAI,EAAE,QAAQ,EAAE,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,uBAAuB,iBAAiB,CAAC"}
@@ -0,0 +1,69 @@
1
+ /**
2
+ * STS Token Request Types
3
+ * These types define the structure for token requests to the Security Token Service
4
+ */
5
+ export type TokenType = 'apikey' | 'user' | 'project' | 'environment' | 'agent' | 'service_account';
6
+ interface BaseTokenRequest {
7
+ type: TokenType;
8
+ audience?: string;
9
+ }
10
+ export interface ApiKeyTokenRequest extends BaseTokenRequest {
11
+ type: 'apikey';
12
+ key: string;
13
+ }
14
+ export interface UserTokenRequest extends BaseTokenRequest {
15
+ type: 'user';
16
+ user_id?: string;
17
+ account_id?: string;
18
+ project_id?: string;
19
+ expires_at?: number;
20
+ on_behalf_of?: string;
21
+ }
22
+ export interface ProjectTokenRequest extends BaseTokenRequest {
23
+ type: 'project';
24
+ project_id: string;
25
+ account_id: string;
26
+ }
27
+ export interface EnvironmentTokenRequest extends BaseTokenRequest {
28
+ type: 'environment';
29
+ environment_id: string;
30
+ environment_name: string;
31
+ project_id: string;
32
+ account_id: string;
33
+ }
34
+ export interface AgentTokenRequest extends BaseTokenRequest {
35
+ type: 'agent';
36
+ account_id: string;
37
+ project_id: string;
38
+ name?: string;
39
+ on_behalf_of: string;
40
+ }
41
+ export interface ServiceAccountTokenRequest extends BaseTokenRequest {
42
+ type: 'service_account';
43
+ account_id: string;
44
+ project_id: string;
45
+ roles?: string[];
46
+ name?: string;
47
+ }
48
+ export type IssueTokenRequest = ApiKeyTokenRequest | UserTokenRequest | ProjectTokenRequest | EnvironmentTokenRequest | AgentTokenRequest | ServiceAccountTokenRequest;
49
+ export interface RefreshTokenRequest {
50
+ token: string;
51
+ }
52
+ export interface RevokeTokenRequest {
53
+ token: string;
54
+ }
55
+ export declare function isApiKeyRequest(req: IssueTokenRequest): req is ApiKeyTokenRequest;
56
+ export declare function isUserRequest(req: IssueTokenRequest): req is UserTokenRequest;
57
+ export declare function isProjectRequest(req: IssueTokenRequest): req is ProjectTokenRequest;
58
+ export declare function isEnvironmentRequest(req: IssueTokenRequest): req is EnvironmentTokenRequest;
59
+ export declare function isAgentRequest(req: IssueTokenRequest): req is AgentTokenRequest;
60
+ export declare function isServiceAccountRequest(req: IssueTokenRequest): req is ServiceAccountTokenRequest;
61
+ export interface TokenResponse {
62
+ token: string;
63
+ }
64
+ export interface ValidateTokenResponse {
65
+ valid: boolean;
66
+ payload?: any;
67
+ error?: string;
68
+ }
69
+ export {};
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sts-token-types.d.ts","sourceRoot":"","sources":["../../src/sts-token-types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,MAAM,SAAS,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,aAAa,GAAG,OAAO,GAAG,iBAAiB,CAAC;AAEpG,UAAU,gBAAgB;IACtB,IAAI,EAAE,SAAS,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAGD,MAAM,WAAW,kBAAmB,SAAQ,gBAAgB;IACxD,IAAI,EAAE,QAAQ,CAAC;IACf,GAAG,EAAE,MAAM,CAAC;CACf;AAGD,MAAM,WAAW,gBAAiB,SAAQ,gBAAgB;IACtD,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB,YAAY,CAAC,EAAE,MAAM,CAAC;CACzB;AAGD,MAAM,WAAW,mBAAoB,SAAQ,gBAAgB;IACzD,IAAI,EAAE,SAAS,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACtB;AAGD,MAAM,WAAW,uBAAwB,SAAQ,gBAAgB;IAC7D,IAAI,EAAE,aAAa,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IACvB,gBAAgB,EAAE,MAAM,CAAC;IACzB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACtB;AAGD,MAAM,WAAW,iBAAkB,SAAQ,gBAAgB;IACvD,IAAI,EAAE,OAAO,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,MAAM,CAAC;CACxB;AAGD,MAAM,WAAW,0BAA2B,SAAQ,gBAAgB;IAChE,IAAI,EAAE,iBAAiB,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,MAAM,iBAAiB,GACvB,kBAAkB,GAClB,gBAAgB,GAChB,mBAAmB,GACnB,uBAAuB,GACvB,iBAAiB,GACjB,0BAA0B,CAAC;AAEjC,MAAM,WAAW,mBAAmB;IAChC,KAAK,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,kBAAkB;IAC/B,KAAK,EAAE,MAAM,CAAC;CACjB;AAGD,wBAAgB,eAAe,CAAC,GAAG,EAAE,iBAAiB,GAAG,GAAG,IAAI,kBAAkB,CAEjF;AAED,wBAAgB,aAAa,CAAC,GAAG,EAAE,iBAAiB,GAAG,GAAG,IAAI,gBAAgB,CAE7E;AAED,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,iBAAiB,GAAG,GAAG,IAAI,mBAAmB,CAEnF;AAED,wBAAgB,oBAAoB,CAAC,GAAG,EAAE,iBAAiB,GAAG,GAAG,IAAI,uBAAuB,CAE3F;AAED,wBAAgB,cAAc,CAAC,GAAG,EAAE,iBAAiB,GAAG,GAAG,IAAI,iBAAiB,CAE/E;AAED,wBAAgB,uBAAuB,CAAC,GAAG,EAAE,iBAAiB,GAAG,GAAG,IAAI,0BAA0B,CAEjG;AAGD,MAAM,WAAW,aAAa;IAC1B,KAAK,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,qBAAqB;IAClC,KAAK,EAAE,OAAO,CAAC;IACf,OAAO,CAAC,EAAE,GAAG,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB"}
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This interface is used only on the client side and is shared between @vertesia/ui/session and the main app.
3
+ */
4
+ export interface UIResolvedTenant {
5
+ firebaseTenantId: string;
6
+ label?: string;
7
+ logo?: string;
8
+ provider?: string;
9
+ name?: string;
10
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tenant.d.ts","sourceRoot":"","sources":["../../src/tenant.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC7B,gBAAgB,EAAE,MAAM,CAAC;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB"}
@@ -0,0 +1,38 @@
1
+ import type { TrainingJob } from "@llumiverse/common";
2
+ import { ExecutionEnvironmentRef } from "./environment.js";
3
+ export declare enum TrainingSessionStatus {
4
+ 'created' = "created",
5
+ 'building' = "building",
6
+ 'prepared' = "prepared",
7
+ 'processing' = "processing",
8
+ 'completed' = "completed",
9
+ 'cancelled' = "cancelled",
10
+ 'failed' = "failed"
11
+ }
12
+ export interface TrainingSession {
13
+ id: string;
14
+ project: string;
15
+ name: string;
16
+ env: ExecutionEnvironmentRef;
17
+ model: string;
18
+ status: TrainingSessionStatus;
19
+ runs: string[];
20
+ dataset: string;
21
+ job: TrainingJob;
22
+ created_by: string;
23
+ updated_by: string;
24
+ created_at: Date;
25
+ updated_at: Date;
26
+ }
27
+ export interface TrainingSessionRef extends Omit<TrainingSession, 'runs'> {
28
+ }
29
+ export interface TrainingSessionCreatePayload {
30
+ name: string;
31
+ env: string;
32
+ model: string;
33
+ }
34
+ export interface ListTrainingSessionsQuery {
35
+ limit?: number;
36
+ offset?: number;
37
+ status?: TrainingSessionStatus;
38
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"training.d.ts","sourceRoot":"","sources":["../../src/training.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAC;AAE3D,oBAAY,qBAAqB;IAC7B,SAAS,YAAY;IACrB,UAAU,aAAa;IACvB,UAAU,aAAa;IACvB,YAAY,eAAe;IAC3B,WAAW,cAAc;IACzB,WAAW,cAAc;IACzB,QAAQ,WAAW;CACtB;AAED,MAAM,WAAW,eAAe;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,uBAAuB,CAAC;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,qBAAqB,CAAC;IAC9B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,GAAG,EAAE,WAAW,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,IAAI,CAAC;IACjB,UAAU,EAAE,IAAI,CAAC;CACpB;AAED,MAAM,WAAW,kBAAmB,SAAQ,IAAI,CAAC,eAAe,EAAE,MAAM,CAAC;CACxE;AAGD,MAAM,WAAW,4BAA4B;IACzC,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,yBAAyB;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,qBAAqB,CAAC;CAClC"}
@@ -0,0 +1,24 @@
1
+ import { ProjectRef, ProjectRoles } from "./project.js";
2
+ import { AccountRef, UserRef } from "./user.js";
3
+ export declare enum TransientTokenType {
4
+ userInvite = "user-invite",
5
+ migration = "migration"
6
+ }
7
+ export interface TransientToken<T> {
8
+ id: string;
9
+ type: TransientTokenType;
10
+ data: T;
11
+ expires: Date;
12
+ account?: string;
13
+ created_at: Date;
14
+ updated_at: Date;
15
+ }
16
+ export interface CreateOrUpdateTransientTokenPayload<T> extends Partial<TransientToken<T>> {
17
+ }
18
+ export interface UserInviteTokenData {
19
+ email: string;
20
+ role: ProjectRoles;
21
+ account: AccountRef;
22
+ project: ProjectRef;
23
+ invited_by: UserRef;
24
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transient-tokens.d.ts","sourceRoot":"","sources":["../../src/transient-tokens.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AACxD,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAGhD,oBAAY,kBAAkB;IAC1B,UAAU,gBAAgB;IAC1B,SAAS,cAAc;CAC1B;AAED,MAAM,WAAW,cAAc,CAAC,CAAC;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,kBAAkB,CAAC;IACzB,IAAI,EAAE,CAAC,CAAC;IACR,OAAO,EAAE,IAAI,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,IAAI,CAAC;IACjB,UAAU,EAAE,IAAI,CAAC;CACpB;AAGD,MAAM,WAAW,mCAAmC,CAAC,CAAC,CAAE,SAAQ,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC;CACzF;AAED,MAAM,WAAW,mBAAmB;IAChC,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,YAAY,CAAC;IACnB,OAAO,EAAE,UAAU,CAAC;IACpB,OAAO,EAAE,UAAU,CAAC;IACpB,UAAU,EAAE,OAAO,CAAC;CACvB"}
@@ -0,0 +1,113 @@
1
+ import { ApiKey } from "./apikey.js";
2
+ import { ProjectRoles } from "./project.js";
3
+ export interface UserWithAccounts extends User {
4
+ accounts: AccountRef[];
5
+ }
6
+ export interface User {
7
+ id: string;
8
+ externalId: string;
9
+ email: string;
10
+ name: string;
11
+ username?: string;
12
+ picture?: string;
13
+ language?: string;
14
+ phone?: string;
15
+ sign_in_provider?: string;
16
+ last_selected_account?: string;
17
+ source?: 'firebase' | 'scim';
18
+ }
19
+ export interface UserRef {
20
+ id: string;
21
+ name: string;
22
+ email: string;
23
+ picture?: string;
24
+ }
25
+ export declare const UserRefPopulate = "id name email picture";
26
+ export declare enum Datacenters {
27
+ aws = "aws",
28
+ gcp = "gcp",
29
+ azure = "azure"
30
+ }
31
+ export declare enum BillingMethod {
32
+ stripe = "stripe",
33
+ invoice = "invoice"
34
+ }
35
+ interface AccountBilling {
36
+ method: BillingMethod;
37
+ stripe_customer_id?: string;
38
+ }
39
+ export interface Account {
40
+ id: string;
41
+ name: string;
42
+ email_domains: string[];
43
+ members: {
44
+ role: ProjectRoles;
45
+ user: UserRef;
46
+ disabled: boolean;
47
+ }[];
48
+ onboarding: {
49
+ completed: boolean;
50
+ completed_at: Date;
51
+ };
52
+ datacenter: string;
53
+ billing: AccountBilling;
54
+ created_by: string;
55
+ updated_by: string;
56
+ created_at: string;
57
+ updated_at: string;
58
+ }
59
+ export interface UpdateAccountPayload {
60
+ name?: string;
61
+ email_domains?: string[];
62
+ billing?: AccountBilling;
63
+ }
64
+ export interface AccountRef {
65
+ id: string;
66
+ name: string;
67
+ }
68
+ export declare const AccountRefPopulate = "id name";
69
+ export interface InviteUserRequestPayload {
70
+ email: string;
71
+ role: ProjectRoles;
72
+ }
73
+ export interface InviteUserResponsePayload {
74
+ action: 'invited' | 'added';
75
+ }
76
+ type UserOrApiKey<T extends User | ApiKey> = T extends User ? User : ApiKey;
77
+ type SessionType<T extends User | ApiKey> = T extends User ? "user" : "apikey";
78
+ export interface SessionInfo<T extends User | ApiKey> {
79
+ isNew?: boolean;
80
+ type: SessionType<T>;
81
+ subject: UserOrApiKey<T>;
82
+ current_account: Account;
83
+ accounts: AccountRef[];
84
+ }
85
+ export interface UserSessionInfo extends SessionInfo<User> {
86
+ }
87
+ export interface ApiKeySessionInfo extends SessionInfo<ApiKey> {
88
+ }
89
+ export interface OnboardingProgress {
90
+ interactions: boolean;
91
+ prompts: boolean;
92
+ environments: boolean;
93
+ default_environment_defined: boolean;
94
+ }
95
+ /**
96
+ * Data collected at signup
97
+ * used for onboarding and segments
98
+ **/
99
+ export interface SignupData {
100
+ accountType: string;
101
+ companyName?: string;
102
+ companySize?: number;
103
+ companyWebsite?: string;
104
+ maturity?: string;
105
+ }
106
+ /**
107
+ * Signup Payload: used to create a new user
108
+ */
109
+ export interface SignupPayload {
110
+ firebaseToken: string;
111
+ signupData: SignupData;
112
+ }
113
+ export {};
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../src/user.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ import { ProjectRef } from "../project.js";
2
+ export declare function getTenantId(accountId: string, projectId: string): string;
3
+ export declare function getTenantIdFromProject(project: ProjectRef): string;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../../src/utils/auth.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C,wBAAgB,WAAW,CAAC,SAAS,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,CAMxE;AACD,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,UAAU,GAAG,MAAM,CAElE"}
@@ -0,0 +1,7 @@
1
+ import type { JSONSchema } from "@llumiverse/common";
2
+ import type { JSONSchema4 } from "json-schema";
3
+ import { InteractionRefWithSchema, PopulatedInteraction } from "../interaction.js";
4
+ import { PopulatedPromptSegmentDef, PromptSegmentDef, PromptTemplateRefWithSchema } from "../prompt.js";
5
+ export declare function mergeJSONSchemas(schemas: JSONSchema[]): JSONSchema | null;
6
+ export declare function _mergePromptsSchema(prompts: PromptSegmentDef<PromptTemplateRefWithSchema>[] | PopulatedPromptSegmentDef[]): JSONSchema4 | null;
7
+ export declare function mergePromptsSchema(interaction: InteractionRefWithSchema | PopulatedInteraction): JSONSchema4 | null;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../../src/utils/schemas.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AACnF,OAAO,EAAE,yBAAyB,EAAE,gBAAgB,EAAwB,2BAA2B,EAAE,MAAM,cAAc,CAAC;AAG9H,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,UAAU,EAAE,qBAerD;AAED,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,gBAAgB,CAAC,2BAA2B,CAAC,EAAE,GAAG,yBAAyB,EAAE,sBAiCzH;AAED,wBAAgB,kBAAkB,CAAC,WAAW,EAAE,wBAAwB,GAAG,oBAAoB,sBAG9F"}
@@ -0,0 +1,3 @@
1
+ export type RequireAtLeastOne<T, Keys extends keyof T = keyof T> = Pick<T, Exclude<keyof T, Keys>> & {
2
+ [K in Keys]-?: Required<Pick<T, K>> & Partial<Pick<T, Exclude<Keys, K>>>;
3
+ }[Keys];
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type-helpers.d.ts","sourceRoot":"","sources":["../../../src/utils/type-helpers.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,iBAAiB,CAAC,CAAC,EAAE,IAAI,SAAS,MAAM,CAAC,GAAG,MAAM,CAAC,IAC3D,IAAI,CAAC,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC,CAAC,GAC/B;KACK,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,EAAE,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;CAC3E,CAAC,IAAI,CAAC,CAAC"}
@@ -0,0 +1,3 @@
1
+ export declare enum ApiVersions {
2
+ COMPLETION_RESULT_V1 = 20250925
3
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"versions.d.ts","sourceRoot":"","sources":["../../src/versions.ts"],"names":[],"mappings":"AAAA,oBAAY,WAAW;IACnB,oBAAoB,WAAW;CAClC"}
@@ -0,0 +1,2 @@
1
+ var e,t,o,i,u,a;!function(e){e.int_read="interaction:read",e.int_write="interaction:write",e.int_delete="interaction:delete",e.int_execute="interaction:execute",e.run_read="run:read",e.run_write="run:write",e.env_admin="environment:admin",e.project_admin="project:admin",e.project_integration_read="project:integration_read",e.project_settings_write="project:settings_write",e.api_key_create="api_key:create",e.api_key_read="api_key:read",e.api_key_update="api_key:update",e.api_key_delete="api_key:delete",e.account_read="account:read",e.account_write="account:write",e.account_admin="account:admin",e.manage_billing="account:billing",e.account_member="account:member",e.content_read="content:read",e.content_write="content:write",e.content_delete="content:delete",e.content_admin="content:admin",e.content_superadmin="content:superadmin",e.workflow_run="workflow:run",e.workflow_admin="workflow:admin",e.studio_access="studio:access"}(e||(e={})),function(e){e.project="project",e.environment="environment",e.account="account",e.interaction="interaction",e.app="application"}(t||(t={})),function(e){e.user="user",e.group="group",e.apikey="apikey"}(o||(o={})),function(e){e.secret="sk"}(i||(i={})),function(e){e.User="user",e.Group="group",e.ApiKey="apikey",e.ServiceAccount="service_account"}(u||(u={})),function(e){e.openai="openai",e.azure_openai="azure_openai",e.azure_foundry="azure_foundry",e.huggingface_ie="huggingface_ie",e.replicate="replicate",e.bedrock="bedrock",e.vertexai="vertexai",e.togetherai="togetherai",e.mistralai="mistralai",e.groq="groq",e.watsonx="watsonx"}(a||(a={}));const d={openai:{id:a.openai,name:"OpenAI",requiresApiKey:!0,requiresEndpointUrl:!1,supportSearch:!1},azure_openai:{id:a.azure_openai,name:"Azure OpenAI",requiresApiKey:!1,requiresEndpointUrl:!0,supportSearch:!1},azure_foundry:{id:a.azure_foundry,name:"Azure Foundry",requiresApiKey:!0,requiresEndpointUrl:!0,supportSearch:!1},huggingface_ie:{id:a.huggingface_ie,name:"HuggingFace Inference Endpoint",requiresApiKey:!0,requiresEndpointUrl:!0},replicate:{id:a.replicate,name:"Replicate",requiresApiKey:!0,requiresEndpointUrl:!1,supportSearch:!0},bedrock:{id:a.bedrock,name:"AWS Bedrock",requiresApiKey:!1,requiresEndpointUrl:!1,endpointPlaceholder:"region name (eg. us-east-1)",supportSearch:!1},vertexai:{id:a.vertexai,name:"Google Vertex AI",requiresApiKey:!1,requiresEndpointUrl:!1,supportSearch:!1},togetherai:{id:a.togetherai,name:"Together AI",requiresApiKey:!1,requiresEndpointUrl:!1,supportSearch:!1},mistralai:{id:a.mistralai,name:"Mistral AI",requiresApiKey:!1,requiresEndpointUrl:!1,supportSearch:!1},groq:{id:a.groq,name:"Groq Cloud",requiresApiKey:!1,requiresEndpointUrl:!1,supportSearch:!1},watsonx:{id:a.watsonx,name:"IBM WatsonX",requiresApiKey:!0,requiresEndpointUrl:!0,supportSearch:!1}};var p,n,r,m,s,l,g;!function(e){e.max_tokens="max_tokens",e.temperature="temperature",e.top_p="top_p",e.top_k="top_k",e.presence_penalty="presence_penalty",e.frequency_penalty="frequency_penalty",e.stop_sequence="stop_sequence",e.seed="seed",e.number_of_images="number_of_images"}(p||(p={})),function(e){e.numeric="numeric",e.enum="enum",e.boolean="boolean",e.string_list="string_list"}(n||(n={})),function(e){e.safety="safety",e.system="system",e.user="user",e.assistant="assistant",e.negative="negative",e.mask="mask",e.tool="tool"}(r||(r={})),function(e){e.text="text",e.image="image"}(m||(m={})),function(e){e.Available="available",e.Pending="pending",e.Stopped="stopped",e.Unavailable="unavailable",e.Unknown="unknown",e.Legacy="legacy"}(s||(s={})),function(e){e.Classifier="classifier",e.Regressor="regressor",e.Clustering="clustering",e.AnomalyDetection="anomaly-detection",e.TimeSeries="time-series",e.Text="text",e.Image="image",e.Audio="audio",e.Video="video",e.Embedding="embedding",e.Chat="chat",e.Code="code",e.NLP="nlp",e.MultiModal="multi-modal",e.Test="test",e.Other="other",e.Unknown="unknown"}(l||(l={})),function(e){e.running="running",e.succeeded="succeeded",e.failed="failed",e.cancelled="cancelled"}(g||(g={}));const _={"o1-mini":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},o3:{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"deepseek-r1-0528":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"deepseek-v3-0324":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"mistral-medium-2505":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"mistral-nemo":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"llama-4-scout-17b-16e-instruct":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1}},v={"gpt-3.5-turbo":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"gpt-35-turbo":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"gpt-35":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"gpt-4":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"gpt-4.1":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"gpt-4.5":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"gpt-4o":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},gpt:{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},o1:{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"o1-preview":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"o1-pro":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"o3-mini":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"o4-mini":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},o4:{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"llama-3.1":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"llama-3.2":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"llama-3.3":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"llama-3":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"llama-4":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},llama:{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"mistral-large":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"mistral-small":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},mistral:{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"phi-4":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},phi:{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"deepseek-r1":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"deepseek-v3":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},deepseek:{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"ai21-jamba":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},ai21:{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},jamba:{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"cohere-command":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},cohere:{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},command:{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"grok-3":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},grok:{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0}},c=["image","vision"],b=["video"],x=["audio"],f=["text"],h=["image"],E=["video"],N=["audio"],T=["text"],I=["embed"],O=["tool","gpt-4","gpt-4o","o1","o3","o4","llama-3","mistral-large","mistral-small","jamba","cohere","command","grok"];function A(e,t){return t.some((t=>e.includes(t)))}function y(e,t){return t.startsWith("gpt-")||t.startsWith("o1")||t.startsWith("o3")||t.startsWith("o4")?e:{...e,tool_support:!1,tool_support_streaming:!1}}const D={"foundation-model/ai21.jamba-1-5-large-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"foundation-model/ai21.jamba-1-5-mini-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"foundation-model/ai21.jamba-instruct-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/amazon.nova-canvas-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{image:!0,text:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/amazon.nova-lite-v1:0":{input:{text:!0,image:!0,video:!0,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"foundation-model/amazon.nova-micro-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"foundation-model/amazon.nova-pro-v1:0":{input:{text:!0,image:!0,video:!0,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"foundation-model/amazon.titan-text-express-v1":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/amazon.titan-text-lite-v1":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/amazon.titan-text-premier-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/amazon.titan-tg1-large":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/anthropic.claude-3-5-haiku-20241022-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"foundation-model/anthropic.claude-3-5-sonnet-20240620-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"foundation-model/anthropic.claude-3-5-sonnet-20241022-v2:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"foundation-model/anthropic.claude-3-haiku-20240307-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"foundation-model/anthropic.claude-3-opus-20240229-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"foundation-model/anthropic.claude-3-sonnet-20240229-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"foundation-model/anthropic.claude-instant-v1":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/anthropic.claude-v2":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/anthropic.claude-v2:1":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/cohere.command-light-text-v14":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/cohere.command-r-plus-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"foundation-model/cohere.command-r-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"foundation-model/cohere.command-text-v14":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/meta.llama3-1-405b-instruct-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"foundation-model/meta.llama3-1-70b-instruct-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"foundation-model/meta.llama3-1-8b-instruct-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"foundation-model/meta.llama3-70b-instruct-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/meta.llama3-8b-instruct-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/mistral.mixtral-8x7b-instruct-v0:1":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/mistral.mistral-7b-instruct-v0:2":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/mistral.mistral-large-2402-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"foundation-model/mistral.mistral-large-2407-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"foundation-model/mistral.mistral-small-2402-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"foundation-model/openai.gpt-oss-20b-1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/openai.gpt-oss-120b-1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"inference-profile/us.amazon.nova-lite-v1:0":{input:{text:!0,image:!0,video:!0,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"inference-profile/us.amazon.nova-micro-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"inference-profile/us.amazon.nova-premier-v1:0":{input:{text:!0,image:!0,video:!0,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"inference-profile/us.amazon.nova-pro-v1:0":{input:{text:!0,image:!0,video:!0,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"inference-profile/us.anthropic.claude-3-5-haiku-20241022-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"inference-profile/us.anthropic.claude-3-5-sonnet-20240620-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"inference-profile/us.anthropic.claude-3-5-sonnet-20241022-v2:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"inference-profile/us.anthropic.claude-3-7-sonnet-20250219-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"inference-profile/us.anthropic.claude-3-haiku-20240307-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"inference-profile/us.anthropic.claude-3-opus-20240229-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"inference-profile/us.anthropic.claude-3-sonnet-20240229-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"inference-profile/us.anthropic.claude-opus-4-20250514-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"inference-profile/us.anthropic.claude-sonnet-4-20250514-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"inference-profile/us.deepseek.r1-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"inference-profile/us.meta.llama3-1-70b-instruct-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"inference-profile/us.meta.llama3-1-8b-instruct-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"inference-profile/us.meta.llama3-2-1b-instruct-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"inference-profile/us.meta.llama3-2-11b-instruct-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"inference-profile/us.meta.llama3-2-3b-instruct-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"inference-profile/us.meta.llama3-2-90b-instruct-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"inference-profile/us.meta.llama3-3-70b-instruct-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"inference-profile/us.meta.llama4-maverick-17b-instruct-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"inference-profile/us.meta.llama4-scout-17b-instruct-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"inference-profile/us.mistral.pixtral-large-2502-v1:0":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"inference-profile/us.writer.palmyra-x4-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"inference-profile/us.writer.palmyra-x5-v1:0":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1}},C={"foundation-model/ai21.jamba":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"foundation-model/amazon.nova":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!1,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"foundation-model/amazon.titan":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/anthropic.claude":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/anthropic.claude-3":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"foundation-model/anthropic.claude-3-5":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"foundation-model/anthropic.claude-3-7":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"foundation-model/cohere.command":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/meta.llama3":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"foundation-model/mistral.mistral":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/mistral.mistral-large":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"foundation-model/mistral.mixtral":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"foundation-model/openai.gpt-oss":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"inference-profile/us.anthropic.claude-3-haiku":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"inference-profile/us.anthropic.claude-3-5-sonnet":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!0},"inference-profile/us.anthropic.claude-3-opus":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"inference-profile/us.anthropic.claude-3-sonnet":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"inference-profile/us.anthropic.claude":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"inference-profile/us.deepseek.r1":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"inference-profile/us.meta.llama3":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"inference-profile/us.meta.llama4-maverick-17b":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"inference-profile/us.meta.llama4-scout-17b":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1,tool_support_streaming:!1},"inference-profile/us.mistral.pixtral":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1},"inference-profile/us.writer.palmyra":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0,tool_support_streaming:!1}};const R=["image"],w=["video"],U=["audio"],k=["text"],S=["image"],M=["video"],L=["audio"],q=["text"],j=["embed"],G=["tool","sonnet","opus","nova","palmyra","command-r","mistral-large","pixtral"];function P(e,t){return t.some((t=>e.includes(t)))}function z(e){let t=e;if(/^arn:aws:bedrock:[^:]+:[^:]*:(inference-profile|foundation-model)\/.+/i.test(e)){const o=e.lastIndexOf("foundation-model/"),i=e.lastIndexOf("inference-profile/");-1!==o?t=e.substring(o):-1!==i&&(t=e.substring(i))}t.startsWith("inference-profile/")&&(t=t.replace(/^inference-profile\/[^.]+\./,"inference-profile/us."));const o=D[t];if(o)return o;let i,u=0;for(const e of Object.keys(C))t.startsWith(e)&&e.length>u&&(i=e,u=e.length);if(i)return C[i];t=function(e){const t=e.toLowerCase();if(t.includes("inference-profile")){const e=t.split("/");if(e.length>1){const t=e[e.length-1],o=t.split(".");return o.length>1&&"deepseek"===o[1]?`deepseek-${o.slice(2).join(".")}`:o.length>2?o.slice(2).join("."):t}}return t}(t);return{input:{text:P(t,k)||void 0,image:P(t,R)||void 0,video:P(t,w)||void 0,audio:P(t,U)||void 0,embed:!1},output:{text:P(t,q)||void 0,image:P(t,S)||void 0,video:P(t,M)||void 0,audio:P(t,L)||void 0,embed:P(t,j)||void 0},tool_support:P(t,G)||void 0}}const K={"chatgpt-4o-latest":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-3.5-turbo":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-3.5-turbo-0125":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-3.5-turbo-1106":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-3.5-turbo-16k":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-3.5-turbo-instruct":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-3.5-turbo-instruct-0914":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-4":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-4-0125-preview":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-4-0613":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-4-1106-preview":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-4-turbo":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-4-turbo-2024-04-09":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-4-turbo-preview":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-4.1":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4.1-2025-04-14":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4.1-mini":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4.1-mini-2025-04-14":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4.1-nano":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4.1-nano-2025-04-14":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4.5-preview":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4.5-preview-2025-02-27":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4o":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4o-2024-05-13":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4o-2024-08-06":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4o-2024-11-20":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4o-mini":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4o-mini-2024-07-18":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4o-mini-search-preview":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4o-mini-search-preview-2025-03-11":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4o-search-preview":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4o-search-preview-2025-03-11":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-image-1":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!1,image:!0,video:!1,audio:!1,embed:!1},tool_support:!1},o1:{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"o1-2024-12-17":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"o1-mini":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"o1-mini-2024-09-12":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"o1-preview":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"o1-preview-2024-09-12":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"o1-pro":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"o1-pro-2025-03-19":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},o3:{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"o3-2025-04-16":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"o3-mini":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"o3-mini-2025-01-31":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"o4-mini":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"o4-mini-2025-04-16":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0}},W={gpt:{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-3.5":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-3.5-turbo":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-4":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gpt-4.1":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4.5":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gpt-4o":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},o1:{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"o1-mini":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"o1-pro":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},o3:{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"o3-mini":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"o4-mini":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0}},F=["image"],B=["video"],Y=["audio"],V=["text"],Z=["image"],Q=["video"],H=["audio"],X=["text"],J=["embed"],$=["tool","o1","o3","o4","gpt-4.1","gpt-4o"];function ee(e,t){return t.some((t=>e.includes(t)))}function te(e){const t=e.toLowerCase();const o=K[t];if(o)return o;let i,u=0;for(const e of Object.keys(W))t.startsWith(e)&&e.length>u&&(i=e,u=e.length);if(i)return W[i];return{input:{text:ee(t,V)||void 0,image:ee(t,F)||void 0,video:ee(t,B)||void 0,audio:ee(t,Y)||void 0,embed:!1},output:{text:ee(t,X)||void 0,image:ee(t,Z)||void 0,video:ee(t,Q)||void 0,audio:ee(t,H)||void 0,embed:ee(t,J)||void 0},tool_support:ee(t,$)||void 0}}const oe={"gemini-1.5-flash-002":{input:{text:!0,image:!0,video:!0,audio:!0,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gemini-1.5-pro-002":{input:{text:!0,image:!0,video:!0,audio:!0,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gemini-2.0-flash-001":{input:{text:!0,image:!0,video:!0,audio:!0,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gemini-2.0-flash-lite-001":{input:{text:!0,image:!0,video:!0,audio:!0,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1},"gemini-2.5-flash-preview-04-17":{input:{text:!0,image:!0,video:!0,audio:!0,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gemini-2.5-pro-preview-05-06":{input:{text:!0,image:!0,video:!0,audio:!0,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"imagen-3.0-generate-002":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!1,image:!0,video:!1,audio:!1,embed:!1},tool_support:!1},"imagen-3.0-capability-001":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!1,image:!0,video:!1,audio:!1,embed:!1},tool_support:!1},"imagen-4.0-generate-preview-05-20":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!1,image:!0,video:!1,audio:!1,embed:!1},tool_support:!1},"claude-3-opus":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"claude-3-haiku":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"claude-3-5-sonnet":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"claude-3-5-haiku":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"claude-3-5-sonnet-v2":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"claude-3-7-sonnet":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"claude-opus-4":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"claude-sonnet-4":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0}},ie={"gemini-1.5":{input:{text:!0,image:!0,video:!0,audio:!0,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gemini-2.0":{input:{text:!0,image:!0,video:!0,audio:!0,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gemini-2.5":{input:{text:!0,image:!0,video:!0,audio:!0,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"gemini-2.5-flash-image":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!0,video:!1,audio:!1,embed:!1},tool_support:!1},"imagen-3.0-generate":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!1,image:!0,video:!1,audio:!1,embed:!1},tool_support:!1},"imagen-3.0-fast-generate":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!1,image:!0,video:!1,audio:!1,embed:!1},tool_support:!1},"imagen-3.0-capability":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!1,image:!0,video:!1,audio:!1,embed:!1},tool_support:!1},"imagen-4.0-generate":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!1,image:!0,video:!1,audio:!1,embed:!1},tool_support:!1},"imagen-4.0-ultra-generate":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!1,image:!0,video:!1,audio:!1,embed:!1},tool_support:!1},"imagen-4.0-fast-generate":{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!1,image:!0,video:!1,audio:!1,embed:!1},tool_support:!1},"imagen-4.0-capability":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!1,image:!0,video:!1,audio:!1,embed:!1},tool_support:!1},"claude-3-5":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"claude-3-7":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},"claude-3":{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},claude:{input:{text:!0,image:!0,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!0},llama:{input:{text:!0,image:!1,video:!1,audio:!1,embed:!1},output:{text:!0,image:!1,video:!1,audio:!1,embed:!1},tool_support:!1}},ue=["image"],ae=["video"],de=["audio"],pe=["text"],ne=["image"],re=["video"],me=["audio"],se=["text"],le=["embed"],ge=["tool","sonnet","opus","gemini","claude-3-5","claude-3-7"];function _e(e,t){return t.some((t=>e.includes(t)))}function ve(e){const t=function(e){const t=e.toLowerCase().split("/");return t[t.length-1]}(e),o=oe[t];if(o)return o;let i,u=0;for(const e of Object.keys(ie))t.startsWith(e)&&e.length>u&&(i=e,u=e.length);if(i)return ie[i];return{input:{text:_e(t,pe)||void 0,image:_e(t,ue)||void 0,video:_e(t,ae)||void 0,audio:_e(t,de)||void 0,embed:!1},output:{text:_e(t,se)||void 0,image:_e(t,ne)||void 0,video:_e(t,re)||void 0,audio:_e(t,me)||void 0,embed:_e(t,le)||void 0},tool_support:_e(t,ge)||void 0}}function ce(e,t){if(e.startsWith("locations/")){const t=e.split("/");t.length>=3&&(e=t.slice(2).join("/"))}const o=function(e,t){switch(t?.toLowerCase()){case a.vertexai:return ve(e);case a.openai:return te(e);case a.bedrock:return z(e);case a.azure_foundry:return function(e){const{baseModel:t}=function(e){const t=e.split("::");return 2===t.length?{deploymentName:t[0],baseModel:t[1]}:{deploymentName:e,baseModel:e}}(e),o=t.toLowerCase(),i=_[o];if(i)return y(i,o);let u,a=0;for(const e of Object.keys(v))o.startsWith(e)&&e.length>a&&(u=e,a=e.length);if(u)return y(v[u],o);const d={text:A(o,f)||!0,image:A(o,c)||void 0,video:A(o,b)||void 0,audio:A(o,x)||void 0,embed:!1},p={text:A(o,T)||!0,image:A(o,h)||void 0,video:A(o,E)||void 0,audio:A(o,N)||void 0,embed:A(o,I)||void 0},n=A(o,O)||void 0;return y({input:d,output:p,tool_support:n,tool_support_streaming:n||void 0},o)}(e);default:return e.startsWith("gpt")?te(e):e.startsWith("publishers/")?ve(e):e.startsWith("arn:aws")?z(e):{input:{},output:{}}}}(e,t);return o.input.audio=!1,o.output.audio=!1,o.output.video=!1,o.tool_support_streaming=!1,o}function be(e,t,o=!1){const i=ce(e,t);return o?!!i.tool_support_streaming:!!i.tool_support}var xe,fe,he;p.max_tokens,n.numeric,p.temperature,n.numeric,p.top_p,n.numeric,p.top_k,n.numeric,p.presence_penalty,n.numeric,p.frequency_penalty,n.numeric,p.stop_sequence,n.string_list,function(e){e.TEXT_IMAGE="TEXT_IMAGE",e.EDIT_MODE_INPAINT_REMOVAL="EDIT_MODE_INPAINT_REMOVAL",e.EDIT_MODE_INPAINT_INSERTION="EDIT_MODE_INPAINT_INSERTION",e.EDIT_MODE_BGSWAP="EDIT_MODE_BGSWAP",e.EDIT_MODE_OUTPAINT="EDIT_MODE_OUTPAINT",e.CUSTOMIZATION_SUBJECT="CUSTOMIZATION_SUBJECT",e.CUSTOMIZATION_STYLE="CUSTOMIZATION_STYLE",e.CUSTOMIZATION_CONTROLLED="CUSTOMIZATION_CONTROLLED",e.CUSTOMIZATION_INSTRUCT="CUSTOMIZATION_INSTRUCT"}(xe||(xe={})),function(e){e.MASK_MODE_USER_PROVIDED="MASK_MODE_USER_PROVIDED",e.MASK_MODE_BACKGROUND="MASK_MODE_BACKGROUND",e.MASK_MODE_FOREGROUND="MASK_MODE_FOREGROUND",e.MASK_MODE_SEMANTIC="MASK_MODE_SEMANTIC"}(fe||(fe={})),function(e){e.virtual_lb="virtual_lb",e.virtual_mediator="virtual_mediator",e.test="test"}(he||(he={}));const Ee={...a,...he},Ne={virtual_lb:{id:he.virtual_lb,name:"Virtual - Load Balancer",requiresApiKey:!1,requiresEndpointUrl:!1,supportSearch:!1},virtual_mediator:{id:he.virtual_mediator,name:"Virtual - Mediator",requiresApiKey:!1,requiresEndpointUrl:!1,supportSearch:!1},test:{id:he.test,name:"Test LLM",requiresApiKey:!1,requiresEndpointUrl:!1,supportSearch:!1}},Te={...d,...Ne},Ie="id name provider enabled_models default_model endpoint_url allowed_projects account created_at updated_at",Oe="id name tags description";var Ae;!function(e){e.gladia="gladia",e.github="github",e.aws="aws",e.magic_pdf="magic_pdf",e.serper="serper"}(Ae||(Ae={}));const ye="id name endpoint parent description status version visibility tags updated_at prompts",De=`${ye} result_schema`;var Ce,Re,we,Ue;!function(e){e.draft="draft",e.published="published",e.archived="archived"}(Ce||(Ce={})),function(e){e.created="created",e.processing="processing",e.completed="completed",e.failed="failed"}(Re||(Re={})),function(e){e.STANDARD="STANDARD",e.RESTRICTED="RESTRICTED",e.DEBUG="DEBUG"}(we||(we={})),function(e){e.STANDARD="Run data is stored for both the model inputs and output.",e.RESTRICTED="No run data is stored for the model inputs — only the model output.",e.DEBUG="Run data is stored for the model inputs and output, schema, and final prompt."}(Ue||(Ue={}));const ke={[we.STANDARD]:Ue.STANDARD,[we.RESTRICTED]:Ue.RESTRICTED,[we.DEBUG]:Ue.DEBUG};var Se;!function(e){e.api="api",e.cli="cli",e.ui="ui",e.webhook="webhook",e.test="test-data",e.system="system"}(Se||(Se={}));const Me="-result -parameters -result_schema -prompt";var Le,qe;!function(e){e.RUN_AND_INTERACTION_CONFIG="RUN_AND_INTERACTION_CONFIG",e.RUN_CONFIG_ONLY="RUN_CONFIG_ONLY",e.INTERACTION_CONFIG_ONLY="INTERACTION_CONFIG_ONLY"}(Le||(Le={})),function(e){e.RUN_AND_INTERACTION_CONFIG="This run configuration is used. Undefined options are filled with interaction configuration.",e.RUN_CONFIG_ONLY="Only this run configuration is used. Undefined options remain undefined.",e.INTERACTION_CONFIG_ONLY="Only interaction configuration is used."}(qe||(qe={}));const je={[Le.RUN_AND_INTERACTION_CONFIG]:qe.RUN_AND_INTERACTION_CONFIG,[Le.RUN_CONFIG_ONLY]:qe.RUN_CONFIG_ONLY,[Le.INTERACTION_CONFIG_ONLY]:qe.INTERACTION_CONFIG_ONLY};var Ge,Pe,ze,Ke,We;!function(e){e.analyzed_pages="analyzed_pages",e.extracted_tables="extracted_tables",e.analyzed_images="analyzed_images",e.input_token_used="input_token_used",e.output_token_used="output_token_used",e.task_run="task_run"}(Ge||(Ge={}));class Fe{constructor(e,t,o){this.parent=e,this.parentUnits=t,this.spanUnits=o,this.unitsDone=0}done(e){const t=this.spanUnits-this.unitsDone;t&&((!e||e>t)&&(e=t),this.unitsDone+=e,this.parent.done(e*this.parentUnits/this.spanUnits))}get parentUnitsDone(){return Math.round(this.unitsDone*this.parentUnits/this.spanUnits)}get isDone(){return this.unitsDone>=this.spanUnits}}class Be{constructor(e){this.total=e,this.unitsDone=0}get fraction(){return this.unitsDone/this.total}get percent(){return Math.round(100*this.fraction)}get isDone(){return this.unitsDone>=this.total}done(e){const t=this.total-this.unitsDone;t&&((!e||e>t)&&(e=t),this.unitsDone+=e)}span(e,t){return new Fe(this,e,t||e)}}function Ye(e,t){switch(t){case Pe.owner:return!0;case Pe.admin:return e!==Pe.billing&&e!==Pe.owner;case Pe.developer:return e===Pe.developer;case Pe.billing:return e===Pe.billing;default:return!1}}!function(e){e.owner="owner",e.admin="admin",e.project_admin="project_admin",e.developer="developer",e.application="application",e.consumer="consumer",e.executor="executor",e.reader="reader",e.billing="billing",e.member="member",e.app_member="app_member",e.content_superadmin="content_superadmin"}(Pe||(Pe={})),function(e){e.public="public",e.account="account",e.project="project"}(ze||(ze={})),function(e){e.text="text",e.image="image",e.properties="properties"}(Ke||(Ke={})),function(e){e.full_text="full_text"}(We||(We={}));const Ve={...Ke,...We},Ze="id name account";var Qe,He,Xe,Je,$e;!function(e){e.draft="draft",e.published="published",e.archived="archived"}(Qe||(Qe={})),function(e){e.chat="chat",e.template="template"}(He||(He={})),function(e){e.text="text",e.js="js",e.jst="jst"}(Xe||(Xe={})),function(e){e.project="Project",e.projects="Projects",e.environment="Environment",e.user="User",e.account="Account",e.interaction="Interaction",e.userGroup="UserGroup"}(Je||(Je={})),function(e){e.active="active",e.archived="archived"}($e||($e={}));const et="id name description tags created_at updated_at",tt={type:"object",description:"Represent a rendition of a file stored in an object. It will be stored as a separate object in the database.",properties:{mime_type:{type:"string",description:"The format of the rendition. This is a MIME type."},source_etag:{type:"string",description:"The ETag of the file used for the rendition.",nullable:!0},height:{type:"integer",description:"The height of the rendition",nullable:!0},width:{type:"integer",description:"The width of the rendition",nullable:!0},multipart:{type:"boolean",description:"If the rendition is a multi-part rendition",nullable:!0,default:!1},total_parts:{type:"integer",description:"The total number of parts in the rendition",nullable:!0}},required:["mime_type"]},ot={type:"object",description:"Represent a semantic chunk of a document",properties:{source_etag:{type:"string",description:"The ETag of the file used for the rendition.",nullable:!0},part_number:{type:"integer",description:"The part number of the chunk"},title:{type:"string",description:"The title of the chunk",nullable:!0},source_line_start:{type:"integer",description:"The line number where the chunk starts",nullable:!0},source_line_end:{type:"integer",description:"The line number where the chunk ends",nullable:!0},type:{type:"string",description:"The type of the chunk",enum:["text","image","table","chart","diagram","code","other"],nullable:!0},page_number:{type:"integer",description:"The page number of the document part",nullable:!0},description:{type:"string",description:"The description of the document part, if it's an image, the exhaustive description of the image",nullable:!0},height:{type:"integer",description:"The height of the rendition",nullable:!0},width:{type:"integer",description:"The width of the rendition",nullable:!0}},required:["part_number"]};var it,ut,at,dt,pt,nt;!function(e){e.COLLECTION_ID="x-collection-id",e.PROCESSING_PRIORITY="x-processing-priority",e.CREATE_REVISION="x-create-revision",e.REVISION_LABEL="x-revision-label"}(it||(it={})),function(e){e.created="created",e.processing="processing",e.completed="completed",e.failed="failed",e.archived="archived"}(ut||(ut={})),function(e){e.single="single",e.multiple="multiple",e.none="none"}(at||(at={})),function(e){e.jpeg="jpeg",e.png="png",e.webp="webp"}(dt||(dt={})),function(e){e.docx="docx",e.pdf="pdf"}(pt||(pt={})),function(e){e.normal="normal",e.low="low"}(nt||(nt={}));const rt={TERMINATE:"TERMINATE",ABANDON:"ABANDON",REQUEST_CANCEL:"REQUEST_CANCEL",PARENT_CLOSE_POLICY_UNSPECIFIED:void 0,PARENT_CLOSE_POLICY_TERMINATE:"TERMINATE",PARENT_CLOSE_POLICY_ABANDON:"ABANDON",PARENT_CLOSE_POLICY_REQUEST_CANCEL:"REQUEST_CANCEL"};var mt,st,lt;function gt(e){return"objectIds"in e?e.objectIds:[]}!function(e){e.create="create",e.change_type="change_type",e.update="update",e.revision_created="revision_created",e.delete="delete",e.workflow_finished="workflow_finished",e.workflow_execution_request="workflow_execution_request",e.api_request="api_request"}(mt||(mt={})),function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.RUNNING=1]="RUNNING",e[e.COMPLETED=2]="COMPLETED",e[e.FAILED=3]="FAILED",e[e.CANCELED=4]="CANCELED",e[e.TERMINATED=5]="TERMINATED",e[e.CONTINUED_AS_NEW=6]="CONTINUED_AS_NEW",e[e.TIMED_OUT=7]="TIMED_OUT"}(st||(st={})),function(e){e.SYSTEM="system",e.THOUGHT="thought",e.PLAN="plan",e.UPDATE="update",e.COMPLETE="complete",e.WARNING="warning",e.ERROR="error",e.ANSWER="answer",e.QUESTION="question",e.REQUEST_INPUT="request_input",e.IDLE="idle",e.TERMINATED="terminated"}(lt||(lt={}));const _t="low_priority";var vt,ct;!function(e){e.created="created",e.building="building",e.prepared="prepared",e.processing="processing",e.completed="completed",e.cancelled="cancelled",e.failed="failed"}(vt||(vt={})),function(e){e.userInvite="user-invite",e.migration="migration"}(ct||(ct={}));const bt="id name email picture";var xt,ft;!function(e){e.aws="aws",e.gcp="gcp",e.azure="azure"}(xt||(xt={})),function(e){e.stripe="stripe",e.invoice="invoice"}(ft||(ft={}));const ht="id name";function Et(e,t){return e.slice(-6)+"_"+t.slice(-6)}function Nt(e){return Et(e.account,e.id)}function Tt(e){const t={};let o=[];for(const i of e)if(i.properties){if(i.required)for(const e of i.required)o.includes(e)||o.push(e);Object.assign(t,i.properties)}return Object.keys(t).length>0?{properties:t,required:o,type:"object"}:null}function It(e){const t={};let o=[];for(const i of e)if(i.template?.inputSchema?.properties){const e=i.template?.inputSchema;if(e.required)for(const t of e.required)o.includes(t)||o.push(t);Object.assign(t,e.properties)}else i.type===He.chat&&(Object.assign(t,{chat:{type:"array",items:{type:"object",properties:{role:{type:"string",enum:[r.assistant,r.user]},content:{type:"string"}},required:["role","content"]}}}),o.push("chat"));return Object.keys(t).length>0?{properties:t,required:o}:null}function Ot(e){return e.prompts?It(e.prompts):null}var At;!function(e){e[e.COMPLETION_RESULT_V1=20250925]="COMPLETION_RESULT_V1"}(At||(At={}));export{o as AccessControlPrincipalType,t as AccessControlResourceType,ht as AccountRefPopulate,lt as AgentMessageType,i as ApiKeyTypes,At as ApiVersions,ft as BillingMethod,$e as CollectionStatus,Le as ConfigModes,qe as ConfigModesDescription,je as ConfigModesOptions,mt as ContentEventName,it as ContentObjectApiHeaders,nt as ContentObjectProcessingPriority,ut as ContentObjectStatus,he as CustomProviders,Ne as CustomProvidersList,xt as Datacenters,ot as DocumentPartSchema,Ie as ExecutionEnvironmentRefPopulate,Me as ExecutionRunRefSelect,Re as ExecutionRunStatus,We as FullTextType,dt as ImageRenditionFormat,ye as InteractionRefPopulate,De as InteractionRefWithSchemaPopulate,Ce as InteractionStatus,_t as LOW_PRIORITY_TASK_QUEUE,pt as MarkdownRenditionFormat,Ge as MeterNames,rt as ParentClosePolicy,e as Permission,u as PrincipalType,Be as Progress,Ze as ProjectRefPopulate,Pe as ProjectRoles,He as PromptSegmentDefType,Qe as PromptStatus,tt as RenditionSchema,Je as ResolvableRefType,ze as ResourceVisibility,Ue as RunDataStorageDescription,we as RunDataStorageLevel,ke as RunDataStorageOptions,Se as RunSourceTypes,Ve as SearchTypes,Ke as SupportedEmbeddingTypes,Ae as SupportedIntegrations,Ee as SupportedProviders,Te as SupportedProvidersList,Xe as TemplateType,vt as TrainingSessionStatus,ct as TransientTokenType,Oe as UserGroupRefPopulate,bt as UserRefPopulate,et as WorkflowDefinitionRefPopulate,st as WorkflowExecutionStatus,at as WorkflowRuleInputType,It as _mergePromptsSchema,gt as getDocumentIds,Et as getTenantId,Nt as getTenantIdFromProject,Ye as isRoleIncludedIn,Tt as mergeJSONSchemas,Ot as mergePromptsSchema,be as supportsToolUse};
2
+ //# sourceMappingURL=vertesia-common.js.map