@blaxel/core 0.2.36-dev.184 → 0.2.36-dev.190

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 (172) hide show
  1. package/dist/cjs/.tsbuildinfo +1 -0
  2. package/dist/{common → cjs/common}/internal.js +5 -5
  3. package/dist/{common → cjs/common}/settings.js +2 -2
  4. package/dist/{tools → cjs/types/tools}/index.d.ts +1 -0
  5. package/dist/esm/.tsbuildinfo +1 -0
  6. package/dist/esm/agents/index.js +104 -0
  7. package/dist/esm/authentication/apikey.js +20 -0
  8. package/dist/esm/authentication/clientcredentials.js +81 -0
  9. package/dist/esm/authentication/credentials.js +13 -0
  10. package/dist/esm/authentication/deviceMode.js +66 -0
  11. package/dist/esm/authentication/index.js +56 -0
  12. package/dist/esm/authentication/types.js +1 -0
  13. package/dist/esm/cache/index.js +20 -0
  14. package/dist/esm/client/authentication.js +11 -0
  15. package/dist/esm/client/client.gen.js +5 -0
  16. package/dist/esm/client/client.js +1 -0
  17. package/dist/esm/client/index.js +3 -0
  18. package/dist/esm/client/interceptors.js +14 -0
  19. package/dist/esm/client/sdk.gen.js +1649 -0
  20. package/dist/esm/client/types.gen.js +3 -0
  21. package/dist/esm/common/autoload.js +23 -0
  22. package/dist/esm/common/env.js +36 -0
  23. package/dist/esm/common/errors.js +14 -0
  24. package/dist/esm/common/internal.js +182 -0
  25. package/dist/esm/common/internal.test.js +37 -0
  26. package/dist/esm/common/logger.js +65 -0
  27. package/dist/esm/common/node.js +20 -0
  28. package/dist/esm/common/settings.js +167 -0
  29. package/dist/esm/index.browser.test.js +10 -0
  30. package/dist/esm/index.js +17 -0
  31. package/dist/esm/jobs/index.js +3 -0
  32. package/dist/esm/jobs/jobs.js +86 -0
  33. package/dist/esm/jobs/start.js +62 -0
  34. package/dist/esm/jobs/types.js +1 -0
  35. package/dist/esm/mcp/client.js +243 -0
  36. package/dist/esm/mcp/index.js +2 -0
  37. package/dist/esm/mcp/server.js +176 -0
  38. package/dist/esm/models/index.js +25 -0
  39. package/dist/esm/package.json +1 -0
  40. package/dist/esm/sandbox/action.js +79 -0
  41. package/dist/esm/sandbox/client/client.gen.js +3 -0
  42. package/dist/esm/sandbox/client/index.js +3 -0
  43. package/dist/esm/sandbox/client/sdk.gen.js +270 -0
  44. package/dist/esm/sandbox/client/types.gen.js +2 -0
  45. package/dist/esm/sandbox/filesystem/filesystem.js +272 -0
  46. package/dist/esm/sandbox/filesystem/index.js +2 -0
  47. package/dist/esm/sandbox/filesystem/types.js +1 -0
  48. package/dist/esm/sandbox/index.js +7 -0
  49. package/dist/esm/sandbox/network/index.js +1 -0
  50. package/dist/esm/sandbox/network/network.js +6 -0
  51. package/dist/esm/sandbox/preview.js +141 -0
  52. package/dist/esm/sandbox/process/index.js +1 -0
  53. package/dist/esm/sandbox/process/process.js +185 -0
  54. package/dist/esm/sandbox/sandbox.js +174 -0
  55. package/dist/esm/sandbox/session.js +119 -0
  56. package/dist/esm/sandbox/types.js +76 -0
  57. package/dist/esm/telemetry/telemetry.js +74 -0
  58. package/dist/esm/tools/index.js +44 -0
  59. package/dist/esm/tools/mcpTool.js +213 -0
  60. package/dist/esm/tools/types.js +1 -0
  61. package/dist/esm/tools/zodSchema.js +43 -0
  62. package/dist/esm/volume/index.js +109 -0
  63. package/package.json +17 -30
  64. /package/dist/{agents → cjs/agents}/index.js +0 -0
  65. /package/dist/{authentication → cjs/authentication}/apikey.js +0 -0
  66. /package/dist/{authentication → cjs/authentication}/clientcredentials.js +0 -0
  67. /package/dist/{authentication → cjs/authentication}/credentials.js +0 -0
  68. /package/dist/{authentication → cjs/authentication}/deviceMode.js +0 -0
  69. /package/dist/{authentication → cjs/authentication}/index.js +0 -0
  70. /package/dist/{authentication → cjs/authentication}/types.js +0 -0
  71. /package/dist/{cache → cjs/cache}/index.js +0 -0
  72. /package/dist/{client → cjs/client}/authentication.js +0 -0
  73. /package/dist/{client → cjs/client}/client.gen.js +0 -0
  74. /package/dist/{client → cjs/client}/client.js +0 -0
  75. /package/dist/{client → cjs/client}/index.js +0 -0
  76. /package/dist/{client → cjs/client}/interceptors.js +0 -0
  77. /package/dist/{client → cjs/client}/sdk.gen.js +0 -0
  78. /package/dist/{client → cjs/client}/types.gen.js +0 -0
  79. /package/dist/{common → cjs/common}/autoload.js +0 -0
  80. /package/dist/{common → cjs/common}/env.js +0 -0
  81. /package/dist/{common → cjs/common}/errors.js +0 -0
  82. /package/dist/{common → cjs/common}/internal.test.js +0 -0
  83. /package/dist/{common → cjs/common}/logger.js +0 -0
  84. /package/dist/{common → cjs/common}/node.js +0 -0
  85. /package/dist/{index.browser.test.js → cjs/index.browser.test.js} +0 -0
  86. /package/dist/{index.js → cjs/index.js} +0 -0
  87. /package/dist/{jobs → cjs/jobs}/index.js +0 -0
  88. /package/dist/{jobs → cjs/jobs}/jobs.js +0 -0
  89. /package/dist/{jobs → cjs/jobs}/start.js +0 -0
  90. /package/dist/{jobs → cjs/jobs}/types.js +0 -0
  91. /package/dist/{mcp → cjs/mcp}/client.js +0 -0
  92. /package/dist/{mcp → cjs/mcp}/index.js +0 -0
  93. /package/dist/{mcp → cjs/mcp}/server.js +0 -0
  94. /package/dist/{models → cjs/models}/index.js +0 -0
  95. /package/dist/{sandbox → cjs/sandbox}/action.js +0 -0
  96. /package/dist/{sandbox → cjs/sandbox}/client/client.gen.js +0 -0
  97. /package/dist/{sandbox → cjs/sandbox}/client/index.js +0 -0
  98. /package/dist/{sandbox → cjs/sandbox}/client/sdk.gen.js +0 -0
  99. /package/dist/{sandbox → cjs/sandbox}/client/types.gen.js +0 -0
  100. /package/dist/{sandbox → cjs/sandbox}/filesystem/filesystem.js +0 -0
  101. /package/dist/{sandbox → cjs/sandbox}/filesystem/index.js +0 -0
  102. /package/dist/{sandbox → cjs/sandbox}/filesystem/types.js +0 -0
  103. /package/dist/{sandbox → cjs/sandbox}/index.js +0 -0
  104. /package/dist/{sandbox → cjs/sandbox}/network/index.js +0 -0
  105. /package/dist/{sandbox → cjs/sandbox}/network/network.js +0 -0
  106. /package/dist/{sandbox → cjs/sandbox}/preview.js +0 -0
  107. /package/dist/{sandbox → cjs/sandbox}/process/index.js +0 -0
  108. /package/dist/{sandbox → cjs/sandbox}/process/process.js +0 -0
  109. /package/dist/{sandbox → cjs/sandbox}/sandbox.js +0 -0
  110. /package/dist/{sandbox → cjs/sandbox}/session.js +0 -0
  111. /package/dist/{sandbox → cjs/sandbox}/types.js +0 -0
  112. /package/dist/{telemetry → cjs/telemetry}/telemetry.js +0 -0
  113. /package/dist/{tools → cjs/tools}/index.js +0 -0
  114. /package/dist/{tools → cjs/tools}/mcpTool.js +0 -0
  115. /package/dist/{tools → cjs/tools}/types.js +0 -0
  116. /package/dist/{tools → cjs/tools}/zodSchema.js +0 -0
  117. /package/dist/{agents → cjs/types/agents}/index.d.ts +0 -0
  118. /package/dist/{authentication → cjs/types/authentication}/apikey.d.ts +0 -0
  119. /package/dist/{authentication → cjs/types/authentication}/clientcredentials.d.ts +0 -0
  120. /package/dist/{authentication → cjs/types/authentication}/credentials.d.ts +0 -0
  121. /package/dist/{authentication → cjs/types/authentication}/deviceMode.d.ts +0 -0
  122. /package/dist/{authentication → cjs/types/authentication}/index.d.ts +0 -0
  123. /package/dist/{authentication → cjs/types/authentication}/types.d.ts +0 -0
  124. /package/dist/{cache → cjs/types/cache}/index.d.ts +0 -0
  125. /package/dist/{client → cjs/types/client}/authentication.d.ts +0 -0
  126. /package/dist/{client → cjs/types/client}/client.d.ts +0 -0
  127. /package/dist/{client → cjs/types/client}/client.gen.d.ts +0 -0
  128. /package/dist/{client → cjs/types/client}/index.d.ts +0 -0
  129. /package/dist/{client → cjs/types/client}/interceptors.d.ts +0 -0
  130. /package/dist/{client → cjs/types/client}/sdk.gen.d.ts +0 -0
  131. /package/dist/{client → cjs/types/client}/types.gen.d.ts +0 -0
  132. /package/dist/{common → cjs/types/common}/autoload.d.ts +0 -0
  133. /package/dist/{common → cjs/types/common}/env.d.ts +0 -0
  134. /package/dist/{common → cjs/types/common}/errors.d.ts +0 -0
  135. /package/dist/{common → cjs/types/common}/internal.d.ts +0 -0
  136. /package/dist/{common → cjs/types/common}/internal.test.d.ts +0 -0
  137. /package/dist/{common → cjs/types/common}/logger.d.ts +0 -0
  138. /package/dist/{common → cjs/types/common}/node.d.ts +0 -0
  139. /package/dist/{common → cjs/types/common}/settings.d.ts +0 -0
  140. /package/dist/{index.browser.test.d.ts → cjs/types/index.browser.test.d.ts} +0 -0
  141. /package/dist/{index.d.ts → cjs/types/index.d.ts} +0 -0
  142. /package/dist/{jobs → cjs/types/jobs}/index.d.ts +0 -0
  143. /package/dist/{jobs → cjs/types/jobs}/jobs.d.ts +0 -0
  144. /package/dist/{jobs → cjs/types/jobs}/start.d.ts +0 -0
  145. /package/dist/{jobs → cjs/types/jobs}/types.d.ts +0 -0
  146. /package/dist/{mcp → cjs/types/mcp}/client.d.ts +0 -0
  147. /package/dist/{mcp → cjs/types/mcp}/index.d.ts +0 -0
  148. /package/dist/{mcp → cjs/types/mcp}/server.d.ts +0 -0
  149. /package/dist/{models → cjs/types/models}/index.d.ts +0 -0
  150. /package/dist/{sandbox → cjs/types/sandbox}/action.d.ts +0 -0
  151. /package/dist/{sandbox → cjs/types/sandbox}/client/client.gen.d.ts +0 -0
  152. /package/dist/{sandbox → cjs/types/sandbox}/client/index.d.ts +0 -0
  153. /package/dist/{sandbox → cjs/types/sandbox}/client/sdk.gen.d.ts +0 -0
  154. /package/dist/{sandbox → cjs/types/sandbox}/client/types.gen.d.ts +0 -0
  155. /package/dist/{sandbox → cjs/types/sandbox}/filesystem/filesystem.d.ts +0 -0
  156. /package/dist/{sandbox → cjs/types/sandbox}/filesystem/index.d.ts +0 -0
  157. /package/dist/{sandbox → cjs/types/sandbox}/filesystem/types.d.ts +0 -0
  158. /package/dist/{sandbox → cjs/types/sandbox}/index.d.ts +0 -0
  159. /package/dist/{sandbox → cjs/types/sandbox}/network/index.d.ts +0 -0
  160. /package/dist/{sandbox → cjs/types/sandbox}/network/network.d.ts +0 -0
  161. /package/dist/{sandbox → cjs/types/sandbox}/preview.d.ts +0 -0
  162. /package/dist/{sandbox → cjs/types/sandbox}/process/index.d.ts +0 -0
  163. /package/dist/{sandbox → cjs/types/sandbox}/process/process.d.ts +0 -0
  164. /package/dist/{sandbox → cjs/types/sandbox}/sandbox.d.ts +0 -0
  165. /package/dist/{sandbox → cjs/types/sandbox}/session.d.ts +0 -0
  166. /package/dist/{sandbox → cjs/types/sandbox}/types.d.ts +0 -0
  167. /package/dist/{telemetry → cjs/types/telemetry}/telemetry.d.ts +0 -0
  168. /package/dist/{tools → cjs/types/tools}/mcpTool.d.ts +0 -0
  169. /package/dist/{tools → cjs/types/tools}/types.d.ts +0 -0
  170. /package/dist/{tools → cjs/types/tools}/zodSchema.d.ts +0 -0
  171. /package/dist/{volume → cjs/types/volume}/index.d.ts +0 -0
  172. /package/dist/{volume → cjs/volume}/index.js +0 -0
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes