@vertesia/client 0.42.2

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 (193) hide show
  1. package/LICENSE +13 -0
  2. package/lib/cjs/AccountApi.js +66 -0
  3. package/lib/cjs/AccountApi.js.map +1 -0
  4. package/lib/cjs/AccountsApi.js +13 -0
  5. package/lib/cjs/AccountsApi.js.map +1 -0
  6. package/lib/cjs/AnalyticsApi.js +13 -0
  7. package/lib/cjs/AnalyticsApi.js.map +1 -0
  8. package/lib/cjs/ApiKeysApi.js +63 -0
  9. package/lib/cjs/ApiKeysApi.js.map +1 -0
  10. package/lib/cjs/CommandsApi.js +19 -0
  11. package/lib/cjs/CommandsApi.js.map +1 -0
  12. package/lib/cjs/EnvironmentsApi.js +58 -0
  13. package/lib/cjs/EnvironmentsApi.js.map +1 -0
  14. package/lib/cjs/IamApi.js +51 -0
  15. package/lib/cjs/IamApi.js.map +1 -0
  16. package/lib/cjs/InteractionBase.js +44 -0
  17. package/lib/cjs/InteractionBase.js.map +1 -0
  18. package/lib/cjs/InteractionsApi.js +184 -0
  19. package/lib/cjs/InteractionsApi.js.map +1 -0
  20. package/lib/cjs/ProjectsApi.js +48 -0
  21. package/lib/cjs/ProjectsApi.js.map +1 -0
  22. package/lib/cjs/PromptsApi.js +133 -0
  23. package/lib/cjs/PromptsApi.js.map +1 -0
  24. package/lib/cjs/RefsApi.js +14 -0
  25. package/lib/cjs/RefsApi.js.map +1 -0
  26. package/lib/cjs/RunsApi.js +79 -0
  27. package/lib/cjs/RunsApi.js.map +1 -0
  28. package/lib/cjs/StreamSource.js +17 -0
  29. package/lib/cjs/StreamSource.js.map +1 -0
  30. package/lib/cjs/TrainingApi.js +54 -0
  31. package/lib/cjs/TrainingApi.js.map +1 -0
  32. package/lib/cjs/UsersApi.js +13 -0
  33. package/lib/cjs/UsersApi.js.map +1 -0
  34. package/lib/cjs/client.js +161 -0
  35. package/lib/cjs/client.js.map +1 -0
  36. package/lib/cjs/execute.js +146 -0
  37. package/lib/cjs/execute.js.map +1 -0
  38. package/lib/cjs/index.js +22 -0
  39. package/lib/cjs/index.js.map +1 -0
  40. package/lib/cjs/package.json +3 -0
  41. package/lib/cjs/store/CommandsApi.js +33 -0
  42. package/lib/cjs/store/CommandsApi.js.map +1 -0
  43. package/lib/cjs/store/FilesApi.js +122 -0
  44. package/lib/cjs/store/FilesApi.js.map +1 -0
  45. package/lib/cjs/store/ObjectsApi.js +185 -0
  46. package/lib/cjs/store/ObjectsApi.js.map +1 -0
  47. package/lib/cjs/store/TypesApi.js +52 -0
  48. package/lib/cjs/store/TypesApi.js.map +1 -0
  49. package/lib/cjs/store/WorkflowsApi.js +92 -0
  50. package/lib/cjs/store/WorkflowsApi.js.map +1 -0
  51. package/lib/cjs/store/client.js +49 -0
  52. package/lib/cjs/store/client.js.map +1 -0
  53. package/lib/cjs/store/errors.js +11 -0
  54. package/lib/cjs/store/errors.js.map +1 -0
  55. package/lib/cjs/store/index.js +22 -0
  56. package/lib/cjs/store/index.js.map +1 -0
  57. package/lib/esm/AccountApi.js +63 -0
  58. package/lib/esm/AccountApi.js.map +1 -0
  59. package/lib/esm/AccountsApi.js +10 -0
  60. package/lib/esm/AccountsApi.js.map +1 -0
  61. package/lib/esm/AnalyticsApi.js +10 -0
  62. package/lib/esm/AnalyticsApi.js.map +1 -0
  63. package/lib/esm/ApiKeysApi.js +59 -0
  64. package/lib/esm/ApiKeysApi.js.map +1 -0
  65. package/lib/esm/CommandsApi.js +16 -0
  66. package/lib/esm/CommandsApi.js.map +1 -0
  67. package/lib/esm/EnvironmentsApi.js +55 -0
  68. package/lib/esm/EnvironmentsApi.js.map +1 -0
  69. package/lib/esm/IamApi.js +45 -0
  70. package/lib/esm/IamApi.js.map +1 -0
  71. package/lib/esm/InteractionBase.js +40 -0
  72. package/lib/esm/InteractionBase.js.map +1 -0
  73. package/lib/esm/InteractionsApi.js +181 -0
  74. package/lib/esm/InteractionsApi.js.map +1 -0
  75. package/lib/esm/ProjectsApi.js +45 -0
  76. package/lib/esm/ProjectsApi.js.map +1 -0
  77. package/lib/esm/PromptsApi.js +130 -0
  78. package/lib/esm/PromptsApi.js.map +1 -0
  79. package/lib/esm/RefsApi.js +10 -0
  80. package/lib/esm/RefsApi.js.map +1 -0
  81. package/lib/esm/RunsApi.js +75 -0
  82. package/lib/esm/RunsApi.js.map +1 -0
  83. package/lib/esm/StreamSource.js +13 -0
  84. package/lib/esm/StreamSource.js.map +1 -0
  85. package/lib/esm/TrainingApi.js +51 -0
  86. package/lib/esm/TrainingApi.js.map +1 -0
  87. package/lib/esm/UsersApi.js +10 -0
  88. package/lib/esm/UsersApi.js.map +1 -0
  89. package/lib/esm/client.js +154 -0
  90. package/lib/esm/client.js.map +1 -0
  91. package/lib/esm/execute.js +108 -0
  92. package/lib/esm/execute.js.map +1 -0
  93. package/lib/esm/index.js +6 -0
  94. package/lib/esm/index.js.map +1 -0
  95. package/lib/esm/store/CommandsApi.js +28 -0
  96. package/lib/esm/store/CommandsApi.js.map +1 -0
  97. package/lib/esm/store/FilesApi.js +117 -0
  98. package/lib/esm/store/FilesApi.js.map +1 -0
  99. package/lib/esm/store/ObjectsApi.js +181 -0
  100. package/lib/esm/store/ObjectsApi.js.map +1 -0
  101. package/lib/esm/store/TypesApi.js +48 -0
  102. package/lib/esm/store/TypesApi.js.map +1 -0
  103. package/lib/esm/store/WorkflowsApi.js +86 -0
  104. package/lib/esm/store/WorkflowsApi.js.map +1 -0
  105. package/lib/esm/store/client.js +45 -0
  106. package/lib/esm/store/client.js.map +1 -0
  107. package/lib/esm/store/errors.js +7 -0
  108. package/lib/esm/store/errors.js.map +1 -0
  109. package/lib/esm/store/index.js +6 -0
  110. package/lib/esm/store/index.js.map +1 -0
  111. package/lib/tsconfig.tsbuildinfo +1 -0
  112. package/lib/types/AccountApi.d.ts +43 -0
  113. package/lib/types/AccountApi.d.ts.map +1 -0
  114. package/lib/types/AccountsApi.d.ts +6 -0
  115. package/lib/types/AccountsApi.d.ts.map +1 -0
  116. package/lib/types/AnalyticsApi.d.ts +6 -0
  117. package/lib/types/AnalyticsApi.d.ts.map +1 -0
  118. package/lib/types/ApiKeysApi.d.ts +42 -0
  119. package/lib/types/ApiKeysApi.d.ts.map +1 -0
  120. package/lib/types/CommandsApi.d.ts +10 -0
  121. package/lib/types/CommandsApi.d.ts.map +1 -0
  122. package/lib/types/EnvironmentsApi.d.ts +30 -0
  123. package/lib/types/EnvironmentsApi.d.ts.map +1 -0
  124. package/lib/types/IamApi.d.ts +39 -0
  125. package/lib/types/IamApi.d.ts.map +1 -0
  126. package/lib/types/InteractionBase.d.ts +22 -0
  127. package/lib/types/InteractionBase.d.ts.map +1 -0
  128. package/lib/types/InteractionsApi.d.ts +129 -0
  129. package/lib/types/InteractionsApi.d.ts.map +1 -0
  130. package/lib/types/ProjectsApi.d.ts +17 -0
  131. package/lib/types/ProjectsApi.d.ts.map +1 -0
  132. package/lib/types/PromptsApi.d.ts +106 -0
  133. package/lib/types/PromptsApi.d.ts.map +1 -0
  134. package/lib/types/RefsApi.d.ts +6 -0
  135. package/lib/types/RefsApi.d.ts.map +1 -0
  136. package/lib/types/RunsApi.d.ts +62 -0
  137. package/lib/types/RunsApi.d.ts.map +1 -0
  138. package/lib/types/StreamSource.d.ts +7 -0
  139. package/lib/types/StreamSource.d.ts.map +1 -0
  140. package/lib/types/TrainingApi.d.ts +27 -0
  141. package/lib/types/TrainingApi.d.ts.map +1 -0
  142. package/lib/types/UsersApi.d.ts +6 -0
  143. package/lib/types/UsersApi.d.ts.map +1 -0
  144. package/lib/types/client.d.ts +85 -0
  145. package/lib/types/client.d.ts.map +1 -0
  146. package/lib/types/execute.d.ts +32 -0
  147. package/lib/types/execute.d.ts.map +1 -0
  148. package/lib/types/index.d.ts +8 -0
  149. package/lib/types/index.d.ts.map +1 -0
  150. package/lib/types/store/CommandsApi.d.ts +13 -0
  151. package/lib/types/store/CommandsApi.d.ts.map +1 -0
  152. package/lib/types/store/FilesApi.d.ts +41 -0
  153. package/lib/types/store/FilesApi.d.ts.map +1 -0
  154. package/lib/types/store/ObjectsApi.d.ts +76 -0
  155. package/lib/types/store/ObjectsApi.d.ts.map +1 -0
  156. package/lib/types/store/TypesApi.d.ts +13 -0
  157. package/lib/types/store/TypesApi.d.ts.map +1 -0
  158. package/lib/types/store/WorkflowsApi.d.ts +39 -0
  159. package/lib/types/store/WorkflowsApi.d.ts.map +1 -0
  160. package/lib/types/store/client.d.ts +23 -0
  161. package/lib/types/store/client.d.ts.map +1 -0
  162. package/lib/types/store/errors.d.ts +4 -0
  163. package/lib/types/store/errors.d.ts.map +1 -0
  164. package/lib/types/store/index.d.ts +5 -0
  165. package/lib/types/store/index.d.ts.map +1 -0
  166. package/package.json +36 -0
  167. package/src/AccountApi.ts +75 -0
  168. package/src/AccountsApi.ts +18 -0
  169. package/src/AnalyticsApi.ts +20 -0
  170. package/src/ApiKeysApi.ts +67 -0
  171. package/src/CommandsApi.ts +23 -0
  172. package/src/EnvironmentsApi.ts +70 -0
  173. package/src/IamApi.ts +68 -0
  174. package/src/InteractionBase.ts +44 -0
  175. package/src/InteractionsApi.ts +210 -0
  176. package/src/ProjectsApi.ts +58 -0
  177. package/src/PromptsApi.ts +160 -0
  178. package/src/RefsApi.ts +18 -0
  179. package/src/RunsApi.ts +103 -0
  180. package/src/StreamSource.ts +3 -0
  181. package/src/TrainingApi.ts +71 -0
  182. package/src/UsersApi.ts +18 -0
  183. package/src/client.ts +191 -0
  184. package/src/execute.ts +114 -0
  185. package/src/index.ts +8 -0
  186. package/src/store/CommandsApi.ts +42 -0
  187. package/src/store/FilesApi.ts +139 -0
  188. package/src/store/ObjectsApi.ts +245 -0
  189. package/src/store/TypesApi.ts +61 -0
  190. package/src/store/WorkflowsApi.ts +121 -0
  191. package/src/store/client.ts +61 -0
  192. package/src/store/errors.ts +7 -0
  193. package/src/store/index.ts +6 -0
@@ -0,0 +1 @@
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../common/lib/types/integrations.d.ts","../../common/lib/types/apikey.d.ts","../../common/lib/types/user.d.ts","../../common/lib/types/project.d.ts","../../common/lib/types/access-control.d.ts","../../common/lib/types/analytics.d.ts","../../common/lib/types/common.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema/index.d.ts","../../../llumiverse/core/lib/types/formatters/claude.d.ts","../../../llumiverse/core/lib/types/formatters/commons.d.ts","../../../llumiverse/core/lib/types/formatters/generic.d.ts","../../../llumiverse/core/lib/types/formatters/llama2.d.ts","../../../llumiverse/core/lib/types/formatters/llama3.d.ts","../../../llumiverse/core/lib/types/formatters/openai.d.ts","../../../llumiverse/core/lib/types/formatters/nova.d.ts","../../../llumiverse/core/lib/types/formatters/index.d.ts","../../../llumiverse/core/lib/types/json.d.ts","../../../llumiverse/core/lib/types/types.d.ts","../../../llumiverse/core/lib/types/driver.d.ts","../../../llumiverse/core/lib/types/stream.d.ts","../../../llumiverse/core/lib/types/index.d.ts","../../common/lib/types/environment.d.ts","../../common/lib/types/facets.d.ts","../../common/lib/types/prompt.d.ts","../../common/lib/types/interaction.d.ts","../../common/lib/types/query.d.ts","../../common/lib/types/payload.d.ts","../../common/lib/types/refs.d.ts","../../common/lib/types/runs.d.ts","../../common/lib/types/store/activity-catalog.d.ts","../../common/lib/types/store/common.d.ts","../../common/lib/types/store/temporalio.d.ts","../../common/lib/types/store/dsl-workflow.d.ts","../../../node_modules/.pnpm/fast-uri@3.0.3/node_modules/fast-uri/types/index.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/codegen/code.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/codegen/scope.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/codegen/index.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/rules.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/util.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/validate/subschema.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/errors.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/validate/index.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/validate/datatype.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/additionalitems.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/propertynames.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/additionalproperties.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/not.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/anyof.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/oneof.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/if.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/index.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/limitnumber.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/multipleof.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/required.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/uniqueitems.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/const.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/enum.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/index.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/format/format.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedproperties.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluateditems.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/dependentrequired.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/errors.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/types/json-schema.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/types/jtd-schema.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/runtime/validation_error.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/ref_error.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/core.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/resolve.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/index.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/types/index.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/ajv.d.ts","../../common/lib/types/store/object-types.d.ts","../../common/lib/types/store/store.d.ts","../../common/lib/types/store/workflow.d.ts","../../common/lib/types/store/index.d.ts","../../common/lib/types/training.d.ts","../../common/lib/types/transient-tokens.d.ts","../../common/lib/types/utils/auth.d.ts","../../common/lib/types/utils/schemas.d.ts","../../common/lib/types/index.d.ts","../../api-fetch-client/lib/types/errors.d.ts","../../api-fetch-client/lib/types/base.d.ts","../../api-fetch-client/lib/types/client.d.ts","../../api-fetch-client/lib/types/sse/textdecoderstream.d.ts","../../../node_modules/.pnpm/eventsource-parser@1.1.2/node_modules/eventsource-parser/dist/index.d.ts","../../api-fetch-client/lib/types/sse/index.d.ts","../../api-fetch-client/lib/types/index.d.ts","../src/accountapi.ts","../src/accountsapi.ts","../src/analyticsapi.ts","../src/apikeysapi.ts","../src/commandsapi.ts","../src/environmentsapi.ts","../src/iamapi.ts","../../../node_modules/.pnpm/@types+eventsource@1.1.15/node_modules/@types/eventsource/dom-monkeypatch.d.ts","../../../node_modules/.pnpm/@types+eventsource@1.1.15/node_modules/@types/eventsource/index.d.ts","../src/execute.ts","../src/interactionsapi.ts","../src/projectsapi.ts","../src/promptsapi.ts","../src/refsapi.ts","../src/runsapi.ts","../src/store/commandsapi.ts","../src/store/errors.ts","../src/streamsource.ts","../src/store/filesapi.ts","../src/store/objectsapi.ts","../src/store/typesapi.ts","../src/store/workflowsapi.ts","../src/store/client.ts","../src/trainingapi.ts","../src/usersapi.ts","../src/client.ts","../src/interactionbase.ts","../src/store/index.ts","../src/index.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.17.10/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+estree@1.0.6/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@types+eslint@9.6.1/node_modules/@types/eslint/use-at-your-own-risk.d.ts","../../../node_modules/.pnpm/@types+eslint@9.6.1/node_modules/@types/eslint/index.d.ts","../../../node_modules/.pnpm/@types+eslint-scope@3.7.7/node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/.pnpm/@types+prettier@2.7.3/node_modules/@types/prettier/index.d.ts"],"fileIdsList":[[76,187,229],[66,79,187,229],[66,187,229],[66,76,187,229],[66,67,68,69,70,71,72,73,76,187,229],[75,76,77,78,187,229],[187,229],[66,74,75,187,229],[187,229,279,281],[66,187,229,279,280],[187,229,281],[160,187,229],[187,226,229],[187,228,229],[229],[187,229,234,263],[187,229,230,235,241,242,249,260,271],[187,229,230,231,241,249],[182,183,184,187,229],[187,229,232,272],[187,229,233,234,242,250],[187,229,234,260,268],[187,229,235,237,241,249],[187,228,229,236],[187,229,237,238],[187,229,241],[187,229,239,241],[187,228,229,241],[187,229,241,242,243,260,271],[187,229,241,242,243,256,260,263],[187,224,229,276],[187,229,237,241,244,249,260,271],[187,229,241,242,244,245,249,260,268,271],[187,229,244,246,260,268,271],[185,186,187,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277],[187,229,241,247],[187,229,248,271,276],[187,229,237,241,249,260],[187,229,250],[187,229,251],[187,228,229,252],[187,226,227,228,229,230,231,232,233,234,235,236,237,238,239,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277],[187,229,254],[187,229,255],[187,229,241,256,257],[187,229,256,258,272,274],[187,229,241,260,261,262,263],[187,229,260,262],[187,229,260,261],[187,229,263],[187,229,264],[187,226,229,260],[187,229,241,266,267],[187,229,266,267],[187,229,234,249,260,268],[187,229,269],[187,229,249,270],[187,229,244,255,271],[187,229,234,272],[187,229,260,273],[187,229,248,274],[187,229,275],[187,229,234,241,243,252,260,271,274,276],[187,229,260,277],[95,96,100,127,128,130,131,132,134,135,187,229],[93,94,187,229],[93,187,229],[95,135,187,229],[95,96,132,133,135,187,229],[135,187,229],[92,135,136,187,229],[95,96,134,135,187,229],[95,96,98,99,134,135,187,229],[95,96,97,134,135,187,229],[95,96,100,127,128,129,130,131,134,135,187,229],[92,95,96,100,132,134,187,229],[100,135,187,229],[102,103,104,105,106,107,108,109,110,111,135,187,229],[125,135,187,229],[101,112,120,121,122,123,124,126,187,229],[105,135,187,229],[113,114,115,116,117,118,119,135,187,229],[187,196,200,229,271],[187,196,229,260,271],[187,191,229],[187,193,196,229,268,271],[187,229,249,268],[187,229,278],[187,191,229,278],[187,193,196,229,249,271],[187,188,189,192,195,229,241,260,271],[187,196,203,229],[187,188,194,229],[187,196,217,218,229],[187,192,196,229,263,271,278],[187,217,229,278],[187,190,191,229,278],[187,196,229],[187,190,191,192,193,194,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,229],[187,196,211,229],[187,196,203,204,229],[187,194,196,204,205,229],[187,195,229],[187,188,191,196,229],[187,196,200,204,205,229],[187,200,229],[187,194,196,199,229,271],[187,188,193,196,203,229],[187,229,260],[187,191,196,217,229,276,278],[146,187,229],[146,147,187,229],[146,147,148,151,187,229],[149,150,187,229],[145,152,187,229],[145,152,153,154,155,156,157,158,159,163,164,165,166,167,175,176,177,187,229],[79,145,152,187,229],[145,161,178,187,229],[163,165,167,170,178,179,180,187,229],[145,162,178,187,229],[145,152,162,178,187,229],[145,152,178,187,229],[145,152,168,169,171,172,173,174,187,229],[152,187,229],[145,152,170,187,229],[168,172,173,174,175,187,229],[145,152,170,175,187,229],[62,187,229],[61,62,187,229],[79,187,229],[59,60,61,62,63,64,65,80,81,82,83,84,85,86,87,140,141,142,143,144,187,229],[61,62,66,79,80,82,187,229],[81,84,187,229],[59,61,187,229],[62,66,79,187,229],[62,83,187,229],[81,83,187,229],[89,90,140,187,229],[88,89,90,91,137,138,139,187,229],[136,187,229],[62,84,85,89,140,187,229],[79,80,187,229],[60,62,187,229],[66,82,83,187,229]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"f14f1e7ecda1683224eba1d71f9e87d0d2819708fcabb9c4f5cf54ba565fd794","5a0e379e1cc522a06d556c368d72c897f56e44103f31122310e5e26e5db2f9a2","bfc9715ac315941e53ba7d37f3ee29ddfdfe8568bdc81597a008a6c3e571f267","68d4ca7d59239c1dc08e8ff162c82afab9264ba8062f146f2c625bf0844c45f9","c189323269a129df500de769449f15af857c2534eecaf06194a8a27bd2cdeace","ea28ec664e799744575daef3631f6eb8dd39e68b5ca78023748320147b4b29b8","14953010fdc845f396ce365ba65bd00195bba433063e2ad9084415cc4b30f6bd",{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},"f1a23f418dd59dd74229d34c85557a8d351becaf64818e615ff4c767244ea8af","613fe7a125daefccc0bdca405e696e9db47de1b3cd5ad0eede660bee52e0008a","44a3468a320dad1ab0f1a7752293eb439f272ef9f4bdd0bee6e5169c784563bb","b217b22b02ce82a3a9c95ffa4f2fad77071eb2cf7e077c6ac4ed873d2a49c1aa","75f88e1fd684416bff2cffa02c612c846176807a82ec09cd794a3611b8a70ff2","ae5dbcf4bf77cb06d7929b6bd32b80944aee9b8129e2fc9b5173a77ae042f31b","258499a5e2e9c093c018341cef22d5771083a559ccc0f6a049354b6107dd758a","cadfea44e9de9b450d6b8aa92feec6155af9c156c1838ae826d9777eea6b8f9e","44673868bf543f47c03809ab86c778d706bb327720828323579a14444f68662d","ff2a33a5a4d24137a7bb1da1496a56d1da301fbc50035ff5978da51572a7217a","9278180387e8a4d0067516653512a2d1299cdacf03f9cd781542e08ed5a21116","b73d600496b165388844e00078d123e4ef659042158ef39abad04f3004d928c1","2eaf448af6470b50ab12b75bfc77a25094140b353f91972b53f62110749f96f5","14458309034b2563aec8d679b937232b70f0c0e615ee1192e9e9b46413308f19","a8e024280a8c67960686d288049c11425b7ff38601408d818e37225f2d5282e1","eac19d048054aa723b09eb4aaa872411fce9c0cd65d5efe52e83739054fb1bb1","6ceb6153a41ad60e950692509bb5a0e9bb1c51978b6c22a9799296f73b46eb24","683ffe27a78f1f1ea6b7b003ab2b437c306f726739b0ec95de4b3a315d4027e8","ccd9e42059edaec2885fa7bb7b6ac2d7934b96daf1ed9568081a87c61f95c6cb","9d9e2389b0d85e7875a9328074e5aa50a0cf37f7f421529cc7465b382a7ef5de","119fe10945b525141fef08745e032e6d1a681ad0019d66d73c8210f6ade84fc8","35c4fe74503cc30500c1da75ecd8f82f29d3cb9cb02ba7b1db64e89e6500d9f4","4794391cdfc09fed24b49948455909d4ff1ac698617f25057be948bba387878b","6918e8c3abaa5a9630cd69ca10fabd61176d119040e17f90b2c6632d1f1d8654","128eec30962c7e24ba886e4d1b54ca30e232187c6174da1469f1fc73b6d1c63f",{"version":"ee660a1f2acd3d7fc7b28df06c4e2125229666c4d72e5455ae3841bfd222f684","impliedFormat":1},{"version":"2d225e7bda2871c066a7079c88174340950fb604f624f2586d3ea27bb9e5f4ff","impliedFormat":1},{"version":"6a785f84e63234035e511817dd48ada756d984dd8f9344e56eb8b2bdcd8fd001","impliedFormat":1},{"version":"c1422d016f7df2ccd3594c06f2923199acd09898f2c42f50ea8159f1f856f618","impliedFormat":1},{"version":"2973b1b7857ca144251375b97f98474e9847a890331e27132d5a8b3aea9350a8","impliedFormat":1},{"version":"0eb6152d37c84d6119295493dfcc20c331c6fda1304a513d159cdaa599dcb78b","impliedFormat":1},{"version":"237df26f8c326ca00cd9d2deb40214a079749062156386b6d75bdcecc6988a6b","impliedFormat":1},{"version":"cd44995ee13d5d23df17a10213fed7b483fabfd5ea08f267ab52c07ce0b6b4da","impliedFormat":1},{"version":"58ce1486f851942bd2d3056b399079bc9cb978ec933fe9833ea417e33eab676e","impliedFormat":1},{"version":"7557d4d7f19f94341f4413575a3453ba7f6039c9591015bcf4282a8e75414043","impliedFormat":1},{"version":"a3b2cc16f3ce2d882eca44e1066f57a24751545f2a5e4a153d4de31b4cac9bb5","impliedFormat":1},{"version":"ac2b3b377d3068bfb6e1cb8889c99098f2c875955e2325315991882a74d92cc8","impliedFormat":1},{"version":"8deb39d89095469957f73bd194d11f01d9894b8c1f1e27fbf3f6e8122576b336","impliedFormat":1},{"version":"a38a9c41f433b608a0d37e645a31eecf7233ef3d3fffeb626988d3219f80e32f","impliedFormat":1},{"version":"8e1428dcba6a984489863935049893631170a37f9584c0479f06e1a5b1f04332","impliedFormat":1},{"version":"1fce9ecb87a2d3898941c60df617e52e50fb0c03c9b7b2ba8381972448327285","impliedFormat":1},{"version":"5ef0597b8238443908b2c4bf69149ed3894ac0ddd0515ac583d38c7595b151f1","impliedFormat":1},{"version":"ac52b775a80badff5f4ac329c5725a26bd5aaadd57afa7ad9e98b4844767312a","impliedFormat":1},{"version":"6ae5b4a63010c82bf2522b4ecfc29ffe6a8b0c5eea6b2b35120077e9ac54d7a1","impliedFormat":1},{"version":"dd7109c49f416f218915921d44f0f28975df78e04e437c62e1e1eb3be5e18a35","impliedFormat":1},{"version":"eee181112e420b345fc78422a6cc32385ede3d27e2eaf8b8c4ad8b2c29e3e52e","impliedFormat":1},{"version":"25fbe57c8ee3079e2201fe580578fab4f3a78881c98865b7c96233af00bf9624","impliedFormat":1},{"version":"62cc8477858487b4c4de7d7ae5e745a8ce0015c1592f398b63ee05d6e64ca295","impliedFormat":1},{"version":"cc2a9ec3cb10e4c0b8738b02c31798fad312d21ef20b6a2f5be1d077e9f5409d","impliedFormat":1},{"version":"4b4fadcda7d34034737598c07e2dca5d7e1e633cb3ba8dd4d2e6a7782b30b296","impliedFormat":1},{"version":"360fdc8829a51c5428636f1f83e7db36fef6c5a15ed4411b582d00a1c2bd6e97","impliedFormat":1},{"version":"1cf0d15e6ab1ecabbf329b906ae8543e6b8955133b7f6655f04d433e3a0597ab","impliedFormat":1},{"version":"7c9f98fe812643141502b30fb2b5ec56d16aaf94f98580276ae37b7924dd44a4","impliedFormat":1},{"version":"b3547893f24f59d0a644c52f55901b15a3fa1a115bc5ea9a582911469b9348b7","impliedFormat":1},{"version":"596e5b88b6ca8399076afcc22af6e6e0c4700c7cd1f420a78d637c3fb44a885e","impliedFormat":1},{"version":"adddf736e08132c7059ee572b128fdacb1c2650ace80d0f582e93d097ed4fbaf","impliedFormat":1},{"version":"d4cad9dc13e9c5348637170ddd5d95f7ed5fdfc856ddca40234fa55518bc99a6","impliedFormat":1},{"version":"d70675ba7ba7d02e52b7070a369957a70827e4b2bca2c1680c38a832e87b61fd","impliedFormat":1},{"version":"3be71f4ce8988a01e2f5368bdd58e1d60236baf511e4510ee9291c7b3729a27e","impliedFormat":1},{"version":"423d2ccc38e369a7527988d682fafc40267bcd6688a7473e59c5eea20a29b64f","impliedFormat":1},{"version":"2f9fde0868ed030277c678b435f63fcf03d27c04301299580a4017963cc04ce6","impliedFormat":1},{"version":"feeb73d48cc41c6dd23d17473521b0af877751504c30c18dc84267c8eeea429a","impliedFormat":1},{"version":"25f1159094dc0bf3a71313a74e0885426af21c5d6564a254004f2cadf9c5b052","impliedFormat":1},{"version":"cde493e09daad4bb29922fe633f760be9f0e8e2f39cdca999cce3b8690b5e13a","impliedFormat":1},{"version":"3d7f9eb12aface876f7b535cc89dcd416daf77f0b3573333f16ec0a70bcf902a","impliedFormat":1},{"version":"b83139ae818dd20f365118f9999335ca4cd84ae518348619adc5728e7e0372d5","impliedFormat":1},{"version":"e0205f04611bea8b5b82168065b8ef1476a8e96236201494eb8c785331c43118","impliedFormat":1},{"version":"62d26d8ba4fa15ab425c1b57a050ed76c5b0ecbffaa53f182110aa3a02405a07","impliedFormat":1},{"version":"9941cbf7ca695e95d588f5f1692ab040b078d44a95d231fa9a8f828186b7b77d","impliedFormat":1},{"version":"41b8775befd7ded7245a627e9f4de6110236688ce4c124d2d40c37bc1a3bfe05","impliedFormat":1},"f69344b53ac3c798fa4bd7c3f31d22e1c765660a895cbe6cd74ea53ca668cde8","4d01e447f1179df0aa839f725b000c64dc52a3311739ab0595fb8f23749a23b1","7c68a28a93a00b6f3ed41d9cae3d255aea2187db10e56ab17d2b74bcd1cd0b68","c3515883b10a47f40b3eb056aad5e16237eb47a01a98af7197f80bbcb62fd2e1","3a4508cd6ab215a15bf26ca75702bc27eb7a45d2d212bda5b510319694b2adc9","574582fe40c934dc9fba0e2a40478025c48ad88be90d48fd2f8f1ed6faf07980","fcb64842c13a76cd853c94e8dfa20984d53c97266a628ee8fc000596dc901d22","08c4d33a96330924e0538aa7d00f61cff2ba42e6aa446682e99a4c4d64558d97","42d0990079e423c46578a329d4851c1b9e2b8e31419dd538c884f43f39dcacc3","06cbf01c04ea45a0b349dbb546c0250e4b5b2ccf166e1fd4a8849d62e0a34bfb","dc80bd9c482dad4810fd16261dd3d4c9503f98cf6ba4308924af8628bb7075b4","b95babd04eb72ac811c630810eecb4d375cfea0219ecdc74ea5a550505174685","2a13882843e7fbedd26b324a1078bcc3d440f3337357a4d4ca92b57d8fe28a9a",{"version":"5900e3a151f31f3e1b2acef8acfb7f95600cbd3532b10dab5e633d0a40a3ae66","impliedFormat":99},"b6ae88a77ff7385482dada6c71f408b170a2c5ba80a330d9addc4ac35ce88195","fc8fc261cad7e7bdee28772430058e777f6adbde45efa1b8f61a661526d63b32",{"version":"36323040f7b5396dc531b2672e1edf382e9af888d290442193fa7f2848698208","signature":"8190838a39e0b7a21c63b1287a39cba29417613929085cf09cf314170c99fe1b"},{"version":"f34145e2f77e982e0fec03ce5eb159a1149ad083ccc6dbc81dd7aaf07d28e441","signature":"58bd40189c5fc105534e69c739357024f86fdde25f818af1acf22e37c0e5acb0"},{"version":"e75ece68b5b6a38abc85d8ae0c3f6ea6141c122956a6e9f22445ec3bf86b420a","signature":"c86c7417e40f3c2f3dcc3ec0311307195ba533e34f3232f50a265e3da2d56594"},{"version":"c98fe8520340361ace95c0c76e6697c1e0d725b998adb9288e4f01ab75e108c3","signature":"a7489d3a951f6d7300af6e97587a18490c17e9ac48433ae4d7a67df40aae1062"},{"version":"418184e436b0bd18fdd0faad852174b0bd1815db06f27701fec90cb8ae1b6584","signature":"b27373f00d00d7ceb9ca8478c104a06139a3388ee62ca7faba3d527ebfc0ad53"},{"version":"af1c6e91261631b8bfdf31067ba3f7addc85b46fe3c88ca39e7fe20700f9edfa","signature":"1c777499165e7c904f347da90055457d2d997b9cc685a62fbfc9461f0d70e3e7"},{"version":"71f2e818260a20107fbb4aff493060d6e18c7a83290f56833c5a8930b643620c","signature":"2b532a9e9c4528beca8a1c1b02fda1908d85fd43d02c4f19e5530a2eea467146"},{"version":"0b812af1c8e8062774c99f008bea098f290db21fd3b4efb0c539356e722e9f6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c6bb7e4c7e80685ad60e2b286ee7eea9fffb05d48e24e52dbbb67d7214596e33","impliedFormat":1},{"version":"a34e89fa6fe47d854e3a41f3207b2882a26edede943ab8767d87380355cda189","signature":"e4b704ff3d850c00b6b1d7e9034e7aadc37aa9d47ea718f8e58dfbe2e517ddf3"},{"version":"3e93cc27da97245349912c3316fad54d8a1cbb8894f220fdd5e3271b3e3ba8d6","signature":"413bf65aad60db122fc97ba37c3e23e3d11bd53cee341bf6d9dfe766374f5021"},{"version":"44b951b1d3331a93c69784c16bfe03fadba8c531669098b38b2519371601d631","signature":"65112ec4b692a2163e795f05c4d6c77a80da7cef42be52c0ebbd8814b136c2d9"},{"version":"e247ead19757500c1116bdd2865b020c0faf99833df3fc7af544b3e18b2a288c","signature":"fcbb12344da5e884f23bb6f292a6f2857dddb310481a3df6a5997df2c3b5b337"},{"version":"8e175c5bd9f2c23ec2070fad61c183d8f6115f2f78d8860cffd17ce84fb4a5b4","signature":"cb931eb2e4ac186a1f4817eb878cb16b240bbf5d1613ecedade3c4446712c14b"},{"version":"3eea1102bf8bf733d55317b13df3ead95071a2f623e345519ea0ed0bd545d9c0","signature":"ea9e1e1411ba0bb59ac76c2097279df3949fe750070c10513989baabc1647d6d"},{"version":"6735d3c249823e7ecbb9c2524fc8bebbc0464f95f75639b797413b456afe98ba","signature":"5144c79c2f3f29b0f3f57808aec992c048ff1a7d409c65657d87bbe9e602e9c4"},{"version":"b54830122de395f9a36aa972ba0c514ab052ebd20e0a34d9880f21e7ac6af1cf","signature":"7c366915fe4e812a9e734cefed4a379ad94ae5468ac1e3663a6ae3395fbd59dd"},{"version":"4eeba12e151a4edbfdc5d66216bfea593df1eb5ebf10e1c8a2b953b2100816ae","signature":"1041e4f82d99310b16b7dbb3e6d3dbe56749947fb0cbdf2036b79f38b94cc2ff"},{"version":"f7b15b96d90808e8858a1ca3b351ce4ef629d4fac31075946bfeffc4c96b9d59","signature":"74de0ac281a1c26dee4b7b4e505781b821e22bd71cb980145ffbed709a413dfb"},{"version":"f0735466f7bcc4faadde8308734fe9cb9de0bb504452f0bc10f0da83b9b456c8","signature":"fee8e82dd0734b45c35949ff64f2075bc1be0a0980f4e99811e32158d3f4b6a0"},{"version":"54c487e891fda72b3b8bca410b0ce4388e0a510a66c1cce65d4e0acd04744de3","signature":"e12b6c1c56b26541b7b48fb070a17659d31c47fd97d87be15017144968c18aeb"},{"version":"d4ef6c2dd30ff7a57736a0957bcc5b04b2fb7ea0b74693b96031bb4910c1f26f","signature":"984a1cd547fa7cb2e3bbc676db3f6ea2044622a70d3f333e56b99cc21647e1c3"},{"version":"3fb950c1fb9de99819d8842bd206d922e238478f2e89854eb1ce9bb296ac9f15","signature":"7b8524a92e8d5e13a737ff513f0bc5b61a8a54f9dd124c181bd639bd58619633"},{"version":"d5c9cfc763ebd87ac7f9ab8b0f2a8cbe3f8bad983a79ba13d335809678415d26","signature":"b179499b2b595c061f700b2819e53d1707dbcf7406fb6bdc20780a73fe582502"},{"version":"44a5b5070d59d03c2960bdcf4607a5f412607e6b0fd466fea1848f0a41912178","signature":"5c0770f5832d630af7ea40f4d1928e1b6da98984f435680e1d0aeeb470902e0c"},{"version":"4c45dceb1f2e0455fe1ab5415fa7cbefb8db9cf495d03f2e2e9e1d2aed48eb95","signature":"c4c5f4c3260c17379e7072dcc69e19a5a8ee9451816f100b6909f0eb98b6eddb"},{"version":"1883f1f85ec01a0f96bc91924918786b8f85801074fba51911561e1395bd43b6","signature":"d9f075f6d795e570b0e8abcf12bca7a3173f4d0c8788ca527ff12897c2e23110"},{"version":"6c28a9df3eb3a98e0ed5c05d9efbd1121b028872929aa4bbac940e4e70e63119","signature":"89f6e2c9c6be59b0d9ac5388648bf210dce5548bb603b120cf58e53c1f58efe5"},"c101872ee70ac91bccdf46033c8e7c1d66c7b0807e3f5a2d25f8adad37ff71d7",{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fd06258805d26c72f5997e07a23155d322d5f05387adb3744a791fe6a0b042d","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"ca6d304b929748ea15c33f28c1f159df18a94470b424ab78c52d68d40a41e1e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"a72ffc815104fb5c075106ebca459b2d55d07862a773768fce89efc621b3964b","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36","impliedFormat":1},{"version":"d674383111e06b6741c4ad2db962131b5b0fa4d0294b998566c635e86195a453","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"a3e8bafb2af8e850c644f4be7f5156cf7d23b7bfdc3b786bd4d10ed40329649c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"f77d9188e41291acf14f476e931972460a303e1952538f9546e7b370cb8d0d20","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","impliedFormat":1},{"version":"3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","impliedFormat":1},{"version":"5a369483ac4cfbdf0331c248deeb36140e6907db5e1daed241546b4a2055f82c","impliedFormat":1},{"version":"e8f5b5cc36615c17d330eaf8eebbc0d6bdd942c25991f96ef122f246f4ff722f","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"4d7da7075068195f8f127f41c61e304cdca5aafb1be2d0f4fb67c6b4c3e98d50","affectsGlobalScope":true,"impliedFormat":1},{"version":"a4bdde4e601e9554a844e1e0d0ccfa05e183ef9d82ab3ac25f17c1709033d360","impliedFormat":1},{"version":"ad23fd126ff06e72728dd7bfc84326a8ca8cec2b9d2dac0193d42a777df0e7d8","impliedFormat":1},{"version":"c60db41f7bee80fb80c0b12819f5e465c8c8b465578da43e36d04f4a4646f57d","impliedFormat":1},{"version":"93bd413918fa921c8729cef45302b24d8b6c7855d72d5bf82d3972595ae8dcbf","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"dccdf1677e531e33f8ac961a68bc537418c9a414797c1ea7e91307501cdc3f5e","impliedFormat":1},{"version":"1f4fc6905c4c3ae701838f89484f477b8d9b3ef39270e016b5488600d247d9a5","affectsGlobalScope":true,"impliedFormat":1},{"version":"d206b4baf4ddcc15d9d69a9a2f4999a72a2c6adeaa8af20fa7a9960816287555","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"70731d10d5311bd4cf710ef7f6539b62660f4b0bfdbb3f9fbe1d25fe6366a7fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"a20f1e119615bf7632729fd89b6c0b5ffdc2df3b512d6304146294528e3ebe19","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"137c2894e8f3e9672d401cc0a305dc7b1db7c69511cf6d3970fb53302f9eae09","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"235bfb54b4869c26f7e98e3d1f68dbfc85acf4cf5c38a4444a006fbf74a8a43d","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"bb715efb4857eb94539eafb420352105a0cff40746837c5140bf6b035dd220ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"fdedf82878e4c744bc2a1c1e802ae407d63474da51f14a54babe039018e53d8f","affectsGlobalScope":true,"impliedFormat":1},{"version":"08353b04a3501d84fc8d7b49de99f6c1cc26026e6d9d697a18315f3bfe92ed03","affectsGlobalScope":true,"impliedFormat":1},{"version":"578d8bb6dcb2a1c03c4c3f8eb71abc9677e1a5c788b7f24848e3138ce17f3400","impliedFormat":1},{"version":"4f029899f9bae07e225c43aef893590541b2b43267383bf5e32e3a884d219ed5","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"5b566927cad2ed2139655d55d690ffa87df378b956e7fe1c96024c4d9f75c4cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"bce947017cb7a2deebcc4f5ba04cead891ce6ad1602a4438ae45ed9aa1f39104","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"e2c72c065a36bc9ab2a00ac6a6f51e71501619a72c0609defd304d46610487a4","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"616075a6ac578cf5a013ee12964188b4412823796ce0b202c6f1d2e4ca8480d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"a4a39b5714adfcadd3bbea6698ca2e942606d833bde62ad5fb6ec55f5e438ff8","impliedFormat":1},{"version":"bbc1d029093135d7d9bfa4b38cbf8761db505026cc458b5e9c8b74f4000e5e75","impliedFormat":1},{"version":"1f68ab0e055994eb337b67aa87d2a15e0200951e9664959b3866ee6f6b11a0fe","impliedFormat":1},{"version":"d88a5e779faf033be3d52142a04fbe1cb96009868e3bbdd296b2bc6c59e06c0e","impliedFormat":1}],"root":[[153,159],[162,181]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declarationDir":"./types","esModuleInterop":true,"experimentalDecorators":true,"module":99,"noFallthroughCasesInSwitch":true,"noPropertyAccessFromIndexSignature":false,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"useDefineForClassFields":true,"useUnknownInCatchVariables":true},"referencedMap":[[77,1],[67,2],[68,3],[69,4],[74,5],[70,2],[71,2],[73,2],[72,1],[79,6],[75,7],[78,7],[76,8],[282,9],[281,10],[280,11],[279,7],[160,7],[161,12],[66,7],[226,13],[227,13],[228,14],[187,15],[229,16],[230,17],[231,18],[182,7],[185,19],[183,7],[184,7],[232,20],[233,21],[234,22],[235,23],[236,24],[237,25],[238,25],[240,26],[239,27],[241,28],[242,29],[243,30],[225,31],[186,7],[244,32],[245,33],[246,34],[278,35],[247,36],[248,37],[249,38],[250,39],[251,40],[252,41],[253,42],[254,43],[255,44],[256,45],[257,45],[258,46],[259,7],[260,47],[262,48],[261,49],[263,50],[264,51],[265,52],[266,53],[267,54],[268,55],[269,56],[270,57],[271,58],[272,59],[273,60],[274,61],[275,62],[276,63],[277,64],[283,7],[136,65],[93,7],[95,66],[94,67],[99,68],[134,69],[131,70],[133,71],[96,70],[97,72],[101,72],[100,73],[98,74],[132,75],[130,70],[135,76],[128,7],[129,7],[102,77],[107,70],[109,70],[104,70],[105,77],[111,70],[112,78],[103,70],[108,70],[110,70],[106,70],[126,79],[125,70],[127,80],[121,70],[123,70],[122,70],[118,70],[124,81],[119,70],[120,82],[113,70],[114,70],[115,70],[116,70],[117,70],[150,7],[92,7],[57,7],[58,7],[10,7],[12,7],[11,7],[2,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[20,7],[3,7],[21,7],[22,7],[4,7],[23,7],[27,7],[24,7],[25,7],[26,7],[28,7],[29,7],[30,7],[5,7],[31,7],[32,7],[33,7],[34,7],[6,7],[38,7],[35,7],[36,7],[37,7],[39,7],[7,7],[40,7],[45,7],[46,7],[41,7],[42,7],[43,7],[44,7],[8,7],[50,7],[47,7],[48,7],[49,7],[51,7],[9,7],[52,7],[53,7],[54,7],[56,7],[55,7],[1,7],[203,83],[213,84],[202,83],[223,85],[194,86],[193,87],[222,88],[216,89],[221,90],[196,91],[210,92],[195,93],[219,94],[191,95],[190,88],[220,96],[192,97],[197,98],[198,7],[201,98],[188,7],[224,99],[214,100],[205,101],[206,102],[208,103],[204,104],[207,105],[217,88],[199,106],[200,107],[209,108],[189,109],[212,100],[211,98],[215,7],[218,110],[147,111],[148,112],[146,7],[152,113],[151,114],[149,7],[153,115],[154,115],[155,115],[156,115],[178,116],[157,115],[158,117],[162,118],[159,115],[181,119],[179,120],[163,121],[164,115],[165,115],[166,115],[167,122],[175,123],[168,115],[169,124],[171,125],[180,126],[172,127],[173,115],[174,115],[170,7],[176,117],[177,115],[63,128],[64,7],[60,129],[65,7],[80,130],[81,7],[145,131],[59,7],[83,132],[85,133],[62,134],[82,135],[84,136],[86,7],[87,137],[88,7],[89,7],[91,138],[140,139],[137,140],[138,141],[90,7],[139,7],[141,142],[142,129],[61,143],[143,128],[144,144]],"latestChangedDtsFile":"./types/index.d.ts","version":"5.7.2"}
@@ -0,0 +1,43 @@
1
+ import { Account, InviteUserRequestPayload, InviteUserResponsePayload, OnboardingProgress, ProjectRef, TransientToken, UpdateAccountPayload, User, UserInviteTokenData } from "@vertesia/common";
2
+ import { ApiTopic, ClientBase } from "@vertesia/api-fetch-client";
3
+ export default class AccountApi extends ApiTopic {
4
+ constructor(parent: ClientBase);
5
+ /**
6
+ * Retrieve all account information for current account
7
+ * @returns Account[]
8
+ */
9
+ info(): Promise<Account>;
10
+ /**
11
+ * Update account information
12
+ * @returns Account
13
+ */
14
+ update(payload: UpdateAccountPayload): Promise<Account>;
15
+ /**
16
+ * Get all projects for account
17
+ */
18
+ projects(): Promise<ProjectRef[]>;
19
+ members(): Promise<User[]>;
20
+ /**
21
+ * Invite User to account
22
+ */
23
+ inviteUser(payload: InviteUserRequestPayload): Promise<InviteUserResponsePayload>;
24
+ /**
25
+ * Fetch Invites for account
26
+ * @returns UserInviteTokenData[]
27
+ * */
28
+ listInvites(): Promise<TransientToken<UserInviteTokenData>[]>;
29
+ /**
30
+ * Accept Invite for account
31
+ * @returns UserInviteTokenData
32
+ * */
33
+ acceptInvite(id: string): Promise<UserInviteTokenData>;
34
+ /**
35
+ * Delete Invite for account
36
+ * @returns UserInviteTokenData
37
+ * */
38
+ rejectInvite(id: string): Promise<UserInviteTokenData>;
39
+ /**
40
+ * Get Onboarding Progress for account
41
+ */
42
+ onboardingProgress(): Promise<OnboardingProgress>;
43
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AccountApi.d.ts","sourceRoot":"","sources":["../../src/AccountApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,wBAAwB,EAAE,yBAAyB,EAAE,kBAAkB,EAAE,UAAU,EAAE,cAAc,EAAE,oBAAoB,EAAE,IAAI,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AACjM,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,CAAC,OAAO,OAAO,UAAW,SAAQ,QAAQ;gBAEhC,MAAM,EAAE,UAAU;IAI9B;;;OAGG;IACH,IAAI,IAAI,OAAO,CAAC,OAAO,CAAC;IAIxB;;;OAGG;IACH,MAAM,CAAC,OAAO,EAAE,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC;IAIvD;;MAEE;IACF,QAAQ,IAAI,OAAO,CAAC,UAAU,EAAE,CAAC;IAIjC,OAAO,IAAI,OAAO,CAAC,IAAI,EAAE,CAAC;IAI1B;;OAEG;IACH,UAAU,CAAC,OAAO,EAAE,wBAAwB,GAAG,OAAO,CAAC,yBAAyB,CAAC;IAIjF;;;SAGK;IACL,WAAW,IAAI,OAAO,CAAC,cAAc,CAAC,mBAAmB,CAAC,EAAE,CAAC;IAI7D;;;SAGK;IACL,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,mBAAmB,CAAC;IAItD;;;SAGK;IACL,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,mBAAmB,CAAC;IAItD;;OAEG;IACH,kBAAkB,IAAI,OAAO,CAAC,kBAAkB,CAAC;CAIpD"}
@@ -0,0 +1,6 @@
1
+ import { Account } from "@vertesia/common";
2
+ import { ApiTopic, ClientBase } from "@vertesia/api-fetch-client";
3
+ export default class AccountsApi extends ApiTopic {
4
+ constructor(parent: ClientBase);
5
+ create(name: string): Promise<Account>;
6
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AccountsApi.d.ts","sourceRoot":"","sources":["../../src/AccountsApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,QAAQ;gBAEjC,MAAM,EAAE,UAAU;IAI9B,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;CAQzC"}
@@ -0,0 +1,6 @@
1
+ import { RunAnalyticsQuery, RunAnalyticsResult } from "@vertesia/common";
2
+ import { ApiTopic, ClientBase } from "@vertesia/api-fetch-client";
3
+ export default class AnalyticsApi extends ApiTopic {
4
+ constructor(parent: ClientBase);
5
+ runs(params: RunAnalyticsQuery): Promise<RunAnalyticsResult[]>;
6
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AnalyticsApi.d.ts","sourceRoot":"","sources":["../../src/AnalyticsApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACzE,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAKlE,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,QAAQ;gBAElC,MAAM,EAAE,UAAU;IAI9B,IAAI,CAAC,MAAM,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,EAAE,CAAC;CAOjE"}
@@ -0,0 +1,42 @@
1
+ import { ApiKey, ApiKeyWithValue, CreateOrUpdateApiKeyPayload, CreatePublicKeyPayload } from "@vertesia/common";
2
+ import { ApiTopic, ClientBase } from "@vertesia/api-fetch-client";
3
+ export declare class ApiKeysApi extends ApiTopic {
4
+ constructor(parent: ClientBase);
5
+ /**
6
+ * List all keys for account without values
7
+ * @returns ApiKey[]
8
+ */
9
+ list(): Promise<ApiKey[]>;
10
+ /**
11
+ * Create an new ApiKey for account
12
+ * BE VERY CAREFUL USING THIS API
13
+ * ALL REQUESTS ARE LOGGED IN SECURITY AUDIT LOG
14
+ * @returns ApiKeyWithValue
15
+ */
16
+ create(payload: CreateOrUpdateApiKeyPayload): Promise<ApiKeyWithValue>;
17
+ /**
18
+ * Update an existing ApiKey for account
19
+ * @returns ApiKey
20
+ */
21
+ update(id: string, payload: CreateOrUpdateApiKeyPayload): Promise<ApiKey>;
22
+ /**
23
+ * Retrieve an ApiKey and its value
24
+ * BE VERY CAREFUL USING THIS API AS IT EXPOSE THE API KEY VALUE
25
+ * ALL REQUESTS ARE LOGGED IN SECURITY AUDIT LOG
26
+ * @returns ApiKeyWithValue
27
+ * */
28
+ retrieve(id: string, withValue?: boolean): Promise<ApiKey | ApiKeyWithValue>;
29
+ /**
30
+ * get or create a temporary public key which can be used from browser to browse and execute itneractions.
31
+ * If a public key already exists for the given project (or for the current organization) then it is returned, otherwise a new one is created.
32
+ * The payload object can contain the following properties:
33
+ * - name: the name of the public key. If not specified a random name is generated.
34
+ * - projectId: the id of the project to which the public key will be associated.
35
+ * If not specified the key is associated with the current organization. (i.e. account).
36
+ * - ttl: the time to live of the public key in seconds.
37
+ * The ttl defaults to 1h.
38
+ * @param opts
39
+ * @returns
40
+ */
41
+ requestPublicKey(payload?: CreatePublicKeyPayload): Promise<string>;
42
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ApiKeysApi.d.ts","sourceRoot":"","sources":["../../src/ApiKeysApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,eAAe,EAAE,2BAA2B,EAAE,sBAAsB,EAAE,MAAM,kBAAkB,CAAC;AAChH,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAElE,qBAAa,UAAW,SAAQ,QAAQ;gBAGxB,MAAM,EAAE,UAAU;IAK9B;;;OAGG;IACH,IAAI,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;IAIzB;;;;;OAKG;IACH,MAAM,CAAC,OAAO,EAAE,2BAA2B,GAAG,OAAO,CAAC,eAAe,CAAC;IAItE;;;OAGG;IACH,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,2BAA2B,GAAG,OAAO,CAAC,MAAM,CAAC;IAIzE;;;;;SAKK;IACL,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,SAAS,GAAE,OAAe,GAAG,OAAO,CAAC,MAAM,GAAG,eAAe,CAAC;IAQnF;;;;;;;;;;;OAWG;IACH,gBAAgB,CAAC,OAAO,GAAE,sBAA2B,GAAG,OAAO,CAAC,MAAM,CAAC;CAG1E"}
@@ -0,0 +1,10 @@
1
+ import { ApiTopic, ClientBase } from "@vertesia/api-fetch-client";
2
+ import { GenericCommandResponse } from "@vertesia/common";
3
+ /**
4
+ * Various utility commands
5
+ */
6
+ export default class CommandsApi extends ApiTopic {
7
+ constructor(parent: ClientBase);
8
+ isNamespaceAvailable(name: string): Promise<boolean>;
9
+ initSamples(): Promise<GenericCommandResponse>;
10
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommandsApi.d.ts","sourceRoot":"","sources":["../../src/CommandsApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAClE,OAAO,EAAE,sBAAsB,EAAE,MAAM,kBAAkB,CAAC;AAG1D;;GAEG;AAEH,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,QAAQ;gBAEjC,MAAM,EAAE,UAAU;IAIxB,oBAAoB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAIpD,WAAW,IAAI,OAAO,CAAC,sBAAsB,CAAC;CAIvD"}
@@ -0,0 +1,30 @@
1
+ import { ExecutionEnvironment, ExecutionEnvironmentCreatePayload, ExecutionEnvironmentRef, ExecutionEnvironmentUpdatePayload, LoadBalancingEnvConfig, MediatorEnvConfig } from "@vertesia/common";
2
+ import { AIModel, EmbeddingsOptions, EmbeddingsResult, ModelSearchPayload } from "@llumiverse/core";
3
+ import { ApiTopic, ClientBase } from "@vertesia/api-fetch-client";
4
+ export default class EnvironmentsApi extends ApiTopic {
5
+ constructor(parent: ClientBase);
6
+ /**
7
+ * List all environments for the current project
8
+ * @param all if true, list all environments, otherwise only the ones for the current project
9
+ */
10
+ list(all?: boolean): Promise<ExecutionEnvironmentRef[]>;
11
+ create(payload: ExecutionEnvironmentCreatePayload): Promise<ExecutionEnvironment>;
12
+ retrieve(id: string): Promise<ExecutionEnvironment>;
13
+ update(id: string, payload: ExecutionEnvironmentUpdatePayload): Promise<ExecutionEnvironment>;
14
+ /**
15
+ * udpate enabled models and / or config. If enabled_models is not provided, the existing enabled models will not change.
16
+ * Same, if config is not provioded the exiting config is not changed.
17
+ * If the config is provided then it will be updated without removing fields that are not provided.
18
+ *
19
+ * @param id
20
+ * @param payload
21
+ * @returns
22
+ */
23
+ updateConfig(id: string, payload: {
24
+ enabled_models?: AIModel[];
25
+ config?: MediatorEnvConfig | LoadBalancingEnvConfig;
26
+ }): Promise<ExecutionEnvironment>;
27
+ listModels(id: string, payload?: ModelSearchPayload): Promise<AIModel[]>;
28
+ listTrainableModels(id: string): Promise<AIModel[]>;
29
+ embeddings(id: string, payload?: EmbeddingsOptions): Promise<EmbeddingsResult>;
30
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EnvironmentsApi.d.ts","sourceRoot":"","sources":["../../src/EnvironmentsApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,iCAAiC,EAAE,uBAAuB,EAAE,iCAAiC,EAAE,sBAAsB,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAClM,OAAO,EAAE,OAAO,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACpG,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,CAAC,OAAO,OAAO,eAAgB,SAAQ,QAAQ;gBACrC,MAAM,EAAE,UAAU;IAI9B;;;OAGG;IACH,IAAI,CAAC,GAAG,GAAE,OAAe,GAAG,OAAO,CAAC,uBAAuB,EAAE,CAAC;IAM9D,MAAM,CAAC,OAAO,EAAE,iCAAiC,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAMjF,QAAQ,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAInD,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,iCAAiC,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAM7F;;;;;;;;OAQG;IACH,YAAY,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE;QAC9B,cAAc,CAAC,EAAE,OAAO,EAAE,CAAC;QAC3B,MAAM,CAAC,EAAE,iBAAiB,GAAG,sBAAsB,CAAA;KACtD,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAMjC,UAAU,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAMxE,mBAAmB,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAInD,UAAU,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,iBAAiB,GAAG,OAAO,CAAC,gBAAgB,CAAC;CAMjF"}
@@ -0,0 +1,39 @@
1
+ import { AccessControlEntry, ACECreatePayload, AcesQueryOptions, Permission, ProjectRoles } from "@vertesia/common";
2
+ import { ApiTopic, ClientBase } from "@vertesia/api-fetch-client";
3
+ export interface FilterOption {
4
+ id: string;
5
+ name: string;
6
+ count: number;
7
+ }
8
+ export declare class IamApi extends ApiTopic {
9
+ constructor(parent: ClientBase);
10
+ aces: AcesApi;
11
+ roles: RolesApi;
12
+ }
13
+ export declare class RolesApi extends ApiTopic {
14
+ constructor(parent: ClientBase);
15
+ list(): Promise<{
16
+ name: ProjectRoles;
17
+ permissions: Permission[];
18
+ }[]>;
19
+ }
20
+ export declare class AcesApi extends ApiTopic {
21
+ constructor(parent: ClientBase);
22
+ /**
23
+ * Get the list of all runs
24
+ * @param project optional project id to filter by
25
+ * @param interaction optional interaction id to filter by
26
+ * @returns InteractionResult[]
27
+ **/
28
+ list(options: AcesQueryOptions): Promise<AccessControlEntry[]>;
29
+ /**
30
+ * Get an ACE by its Id
31
+ * @param id
32
+ * @returns InteractionResult
33
+ **/
34
+ retrieve(id: string): Promise<AccessControlEntry>;
35
+ create(payload: ACECreatePayload): Promise<AccessControlEntry>;
36
+ delete(id: string): Promise<{
37
+ id: string;
38
+ }>;
39
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IamApi.d.ts","sourceRoot":"","sources":["../../src/IamApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AACpH,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAGlE,MAAM,WAAW,YAAY;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAA;CAChB;AAGD,qBAAa,MAAO,SAAQ,QAAQ;gBAEpB,MAAM,EAAE,UAAU;IAI9B,IAAI,UAAoB;IACxB,KAAK,WAAqB;CAC7B;AAED,qBAAa,QAAS,SAAQ,QAAQ;gBAEtB,MAAM,EAAE,UAAU;IAI9B,IAAI,IAAI,OAAO,CAAC;QAAE,IAAI,EAAE,YAAY,CAAC;QAAC,WAAW,EAAE,UAAU,EAAE,CAAA;KAAE,EAAE,CAAC;CAIvE;AAGD,qBAAa,OAAQ,SAAQ,QAAQ;gBAErB,MAAM,EAAE,UAAU;IAI9B;;;;;QAKI;IACJ,IAAI,CAAC,OAAO,EAAE,gBAAgB,GAAG,OAAO,CAAC,kBAAkB,EAAE,CAAC;IAI9D;;;;QAII;IACJ,QAAQ,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,kBAAkB,CAAC;IAIjD,MAAM,CAAC,OAAO,EAAE,gBAAgB,GAAG,OAAO,CAAC,kBAAkB,CAAC;IAI9D,MAAM,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,CAAC;CAI9C"}
@@ -0,0 +1,22 @@
1
+ import { ExecutionRun, InteractionUpdatePayload, InteractionExecutionPayload } from "@vertesia/common";
2
+ import { ComposableClient, ComposableClientProps } from "./client.js";
3
+ export declare class InteractionBase<P = any, R = any> {
4
+ id: string;
5
+ client: ComposableClient;
6
+ constructor(id: string, clientOrOpts: ComposableClient | ComposableClientProps);
7
+ retrieve(): Promise<import("@vertesia/common").Interaction>;
8
+ update(payload: InteractionUpdatePayload): Promise<import("@vertesia/common").Interaction>;
9
+ render(data: P): void;
10
+ /**
11
+ * Execute an interaction and return a promise which will be resolved with the executed run when
12
+ * the run completes or fails.
13
+ * If the onChunk callback is passed then the streaming of the result is enabled.
14
+ * The onChunk callback with be called with the next chunk of the result as soon as it is available.
15
+ * When all chunks are received the fucntion will return the resolved promise
16
+ * @param id of the interaction to execute
17
+ * @param payload InteractionExecutionPayload
18
+ * @param onChunk callback to be called when the next chunk of the response is available
19
+ * @returns the resolved execution run as Promise<ExecutionRun>
20
+ */
21
+ execute(payload?: InteractionExecutionPayload, onChunk?: (chunk: string) => void): Promise<ExecutionRun<P, R>>;
22
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InteractionBase.d.ts","sourceRoot":"","sources":["../../src/InteractionBase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,wBAAwB,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AACvG,OAAO,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAC;AAGtE,qBAAa,eAAe,CAAC,CAAC,GAAG,GAAG,EAAE,CAAC,GAAG,GAAG;IAGtB,EAAE,EAAE,MAAM;IAF7B,MAAM,EAAE,gBAAgB,CAAC;gBAEN,EAAE,EAAE,MAAM,EAAE,YAAY,EAAE,gBAAgB,GAAG,qBAAqB;IAQrF,QAAQ;IAIR,MAAM,CAAC,OAAO,EAAE,wBAAwB;IAIxC,MAAM,CAAC,IAAI,EAAE,CAAC;IAKd;;;;;;;;;;OAUG;IACG,OAAO,CAAC,OAAO,GAAE,2BAAgC,EACnD,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;CAGtE"}
@@ -0,0 +1,129 @@
1
+ import { ComputeInteractionFacetPayload, ExecutionRun, GenerateInteractionPayload, GenerateTestDataPayload, ImprovePromptPayload, Interaction, InteractionCreatePayload, InteractionExecutionPayload, InteractionForkPayload, InteractionPublishPayload, InteractionRef, InteractionRefWithSchema, InteractionUpdatePayload, InteractionsExportPayload, InteractionSearchPayload } from "@vertesia/common";
2
+ import { ApiTopic, ClientBase } from "@vertesia/api-fetch-client";
3
+ export interface ComputeInteractionFacetsResponse {
4
+ tags?: {
5
+ _id: string;
6
+ count: number;
7
+ }[];
8
+ status?: {
9
+ _id: string;
10
+ count: number;
11
+ }[];
12
+ total?: {
13
+ count: number;
14
+ }[];
15
+ }
16
+ export default class InteractionsApi extends ApiTopic {
17
+ constructor(parent: ClientBase);
18
+ /**
19
+ * Get the list of all interactions in the current project
20
+ * @returns InteractionRef[]
21
+ **/
22
+ list(payload?: InteractionSearchPayload): Promise<InteractionRef[]>;
23
+ /**
24
+ * Get the list of all interactions facets
25
+ * @param payload query payload to filter facet search
26
+ * @returns ComputeInteractionFacetsResponse[]
27
+ **/
28
+ computeFacets(query: ComputeInteractionFacetPayload): Promise<ComputeInteractionFacetsResponse>;
29
+ /**
30
+ * List interaction names in the current project
31
+ * @returns
32
+ */
33
+ listNames(): Promise<{
34
+ id: string;
35
+ name: string;
36
+ }[]>;
37
+ /**
38
+ * Get the list of all interactions in the current project. Schemas will be returned too.
39
+ * @returns InteractionRefWithSchema[]
40
+ **/
41
+ export(payload: InteractionsExportPayload): Promise<InteractionRefWithSchema[]>;
42
+ /**
43
+ * Create a new interaction
44
+ * @param payload InteractionCreatePayload
45
+ * @returns Interaction
46
+ * @throws ApiError
47
+ * @throws 400 if payload is invalid
48
+ * @throws 500 if interaction creation fails
49
+ **/
50
+ create(payload: InteractionCreatePayload): Promise<Interaction>;
51
+ /**
52
+ * Retrieve an existing interaction definiton
53
+ * @param id of the interaction to retrieve
54
+ * @returns Interaction
55
+ **/
56
+ retrieve(id: string): Promise<Interaction>;
57
+ /**
58
+ * Update an existing interaction definiton
59
+ * @param id of the interaction to update
60
+ * @param payload InteractionUpdatePayload
61
+ * @returns Interaction
62
+ * @throws ApiError
63
+ * @throws 400 if payload is invalid
64
+ * @throws 500 if interaction update fails
65
+ * @throws 404 if interaction not found
66
+ **/
67
+ update(id: string, payload: InteractionUpdatePayload): Promise<Interaction>;
68
+ /**
69
+ * Execute an interaction and return a promise which will be resolved with the executed run when
70
+ * the run completes or fails.
71
+ * If the onChunk callback is passed then the streaming of the result is enabled.
72
+ * The onChunk callback with be called with the next chunk of the result as soon as it is available.
73
+ * When all chunks are received the fucntion will return the resolved promise
74
+ * @param id of the interaction to execute
75
+ * @param payload InteractionExecutionPayload
76
+ * @param onChunk callback to be called when the next chunk of the response is available
77
+ * @returns Promise<ExecutionRun>
78
+ * @throws ApiError
79
+ * @throws 404 if interaction not found
80
+ * @throws 400 if payload is invalid
81
+ * @throws 500 if interaction execution fails
82
+ * @throws 500 if interaction execution times out
83
+ **/
84
+ execute<P = any, R = any>(id: string, payload?: InteractionExecutionPayload, onChunk?: (chunk: string) => void): Promise<ExecutionRun<P, R>>;
85
+ /**
86
+ * Same as execute but uses the interaction name selector instead of the id.
87
+ *
88
+ * A name selector is the interaction endpoint name suffuxed with an optional tag or version wich is starting with a `@` character.
89
+ * The special `draft` tag is used to select the draft version of the interaction. If no tag or version is specified then the latest version is selected.
90
+ * Examples of selectors:
91
+ * - `ReviewContract` - select the latest version of the ReviewContract interaction
92
+ * - `ReviewContract@1` - select the version 1 of the ReviewContract interaction
93
+ * - `ReviewContract@draft` - select the draft version of the ReviewContract interaction
94
+ * - `ReviewContract@fixed` - select the ReviewContract interaction which is tagged with 'fixed' tag.
95
+ * @param nameWithTag
96
+ * @param payload
97
+ * @param onChunk
98
+ * @returns
99
+ */
100
+ executeByName<P = any, R = any>(nameWithTag: string, payload?: InteractionExecutionPayload, onChunk?: (chunk: string) => void): Promise<ExecutionRun<P, R>>;
101
+ publish(id: string, payload: InteractionPublishPayload): Promise<Interaction>;
102
+ fork(id: string, payload: InteractionForkPayload): Promise<Interaction>;
103
+ /**
104
+ * Generate Composable definition of an interaction
105
+ **/
106
+ generateInteraction(id: string, payload: GenerateInteractionPayload): Promise<any[]>;
107
+ /**
108
+ * Generate Test Data for an interaction
109
+ **/
110
+ generateTestData(id: string, payload: GenerateTestDataPayload): Promise<any[]>;
111
+ /**
112
+ * Suggest Improvement for a prompt
113
+ */
114
+ suggestImprovements(id: string, payload: ImprovePromptPayload): Promise<{
115
+ result: string;
116
+ }>;
117
+ /**
118
+ * List the versions of the interaction. Returns an empty array if no versions are found
119
+ * @param id
120
+ * @returns the versions list or an empty array if no versions are found
121
+ */
122
+ listVersions(id: string): Promise<InteractionRef[]>;
123
+ /**
124
+ * List the forks of the interaction. Returns an empty array if no forks are found
125
+ * @param id
126
+ * @returns the versions list or an empty array if no forks are found
127
+ */
128
+ listForks(id: string): Promise<InteractionRef[]>;
129
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InteractionsApi.d.ts","sourceRoot":"","sources":["../../src/InteractionsApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,8BAA8B,EAAE,YAAY,EAAE,0BAA0B,EAAE,uBAAuB,EAAE,oBAAoB,EAAE,WAAW,EAAE,wBAAwB,EAAE,2BAA2B,EAAE,sBAAsB,EAAE,yBAAyB,EAAE,cAAc,EAAE,wBAAwB,EAAE,wBAAwB,EAAE,yBAAyB,EAAE,wBAAwB,EAA0B,MAAM,kBAAkB,CAAC;AACna,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAe,MAAM,4BAA4B,CAAC;AAI/E,MAAM,WAAW,gCAAgC;IAC7C,IAAI,CAAC,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IACxC,MAAM,CAAC,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IAC1C,KAAK,CAAC,EAAE;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CAC/B;AAED,MAAM,CAAC,OAAO,OAAO,eAAgB,SAAQ,QAAQ;gBACrC,MAAM,EAAE,UAAU;IAI9B;;;QAGI;IACJ,IAAI,CAAC,OAAO,GAAE,wBAA6B,GAAG,OAAO,CAAC,cAAc,EAAE,CAAC;IAUvE;;;;QAII;IACJ,aAAa,CAAC,KAAK,EAAE,8BAA8B,GAAG,OAAO,CAAC,gCAAgC,CAAC;IAM/F;;;OAGG;IACH,SAAS,IAAI,OAAO,CAAC;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IAIpD;;;QAGI;IACJ,MAAM,CAAC,OAAO,EAAE,yBAAyB,GAAG,OAAO,CAAC,wBAAwB,EAAE,CAAC;IAI/E;;;;;;;QAOI;IACJ,MAAM,CAAC,OAAO,EAAE,wBAAwB,GAAG,OAAO,CAAC,WAAW,CAAC;IAM/D;;;;QAII;IACJ,QAAQ,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC;IAI1C;;;;;;;;;QASI;IACJ,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,wBAAwB,GAAG,OAAO,CAAC,WAAW,CAAC;IAM3E;;;;;;;;;;;;;;;QAeI;IACJ,OAAO,CAAC,CAAC,GAAG,GAAG,EAAE,CAAC,GAAG,GAAG,EAAE,EAAE,EAAE,MAAM,EAAE,OAAO,GAAE,2BAAgC,EAC3E,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IAUnE;;;;;;;;;;;;;;OAcG;IACH,aAAa,CAAC,CAAC,GAAG,GAAG,EAAE,CAAC,GAAG,GAAG,EAAE,WAAW,EAAE,MAAM,EAAE,OAAO,GAAE,2BAAgC,EAC1F,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IAUnE,OAAO,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,yBAAyB,GAAG,OAAO,CAAC,WAAW,CAAC;IAM7E,IAAI,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,sBAAsB,GAAG,OAAO,CAAC,WAAW,CAAC;IAMvE;;QAEI;IACJ,mBAAmB,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,0BAA0B,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC;IAQpF;;QAEI;IACJ,gBAAgB,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,uBAAuB,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC;IAO9E;;OAEG;IACH,mBAAmB,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,oBAAoB,GAAG,OAAO,CAAC;QAAE,MAAM,EAAE,MAAM,CAAC;KAAE,CAAC;IAM5F;;;;OAIG;IACH,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,EAAE,CAAC;IAInD;;;;OAIG;IACH,SAAS,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,EAAE,CAAC;CAInD"}
@@ -0,0 +1,17 @@
1
+ import { ApiTopic, ClientBase } from "@vertesia/api-fetch-client";
2
+ import { AwsConfiguration, GithubConfiguration, GladiaConfiguration, ICreateProjectPayload, Project, ProjectIntegrationListEntry, ProjectRef, SupportedIntegrations } from "@vertesia/common";
3
+ export default class ProjectsApi extends ApiTopic {
4
+ constructor(parent: ClientBase);
5
+ list(account?: string[]): Promise<ProjectRef[]>;
6
+ retrieve(projectId: string): Promise<Project>;
7
+ create(payload: ICreateProjectPayload): Promise<Project>;
8
+ update(projectId: string, payload: Partial<Project>): Promise<Project>;
9
+ integrations: IntegrationsConfigurationApi;
10
+ }
11
+ declare class IntegrationsConfigurationApi extends ApiTopic {
12
+ constructor(parent: ClientBase);
13
+ list(projectId: string): Promise<ProjectIntegrationListEntry[]>;
14
+ retrieve(projectId: string, integrationId: SupportedIntegrations): Promise<GladiaConfiguration | GithubConfiguration | AwsConfiguration | undefined>;
15
+ update(projectId: string, integrationId: string, payload: any): Promise<GladiaConfiguration | GithubConfiguration>;
16
+ }
17
+ export {};
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ProjectsApi.d.ts","sourceRoot":"","sources":["../../src/ProjectsApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAClE,OAAO,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,OAAO,EAAE,2BAA2B,EAAE,UAAU,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAC;AAE9L,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,QAAQ;gBACjC,MAAM,EAAE,UAAU;IAI9B,IAAI,CAAC,OAAO,CAAC,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC;IAI/C,QAAQ,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAI7C,MAAM,CAAC,OAAO,EAAE,qBAAqB,GAAG,OAAO,CAAC,OAAO,CAAC;IAMxD,MAAM,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC,OAAO,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC;IAMtE,YAAY,EAAE,4BAA4B,CAA0C;CAEvF;AAED,cAAM,4BAA6B,SAAQ,QAAQ;gBAEnC,MAAM,EAAE,UAAU;IAI9B,IAAI,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,2BAA2B,EAAE,CAAC;IAI/D,QAAQ,CAAC,SAAS,EAAE,MAAM,EAAE,aAAa,EAAE,qBAAqB,GAAG,OAAO,CAAC,mBAAmB,GAAG,mBAAmB,GAAG,gBAAgB,GAAG,SAAS,CAAC;IASpJ,MAAM,CAAC,SAAS,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,mBAAmB,GAAG,mBAAmB,CAAC;CAMrH"}