@mastra/deployer 0.13.3-alpha.0 → 0.14.0-alpha.1

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 (39) hide show
  1. package/dist/build/analyze.cjs +3 -3
  2. package/dist/build/analyze.d.ts.map +1 -1
  3. package/dist/build/analyze.js +1 -1
  4. package/dist/build/bundlerOptions.d.ts.map +1 -1
  5. package/dist/build/deployer.d.ts.map +1 -1
  6. package/dist/build/index.cjs +9 -9
  7. package/dist/build/index.js +3 -3
  8. package/dist/build/plugins/__fixtures__/basic-with-json.d.ts +3 -0
  9. package/dist/build/plugins/__fixtures__/basic-with-json.d.ts.map +1 -0
  10. package/dist/bundler/index.cjs +2 -2
  11. package/dist/bundler/index.js +1 -1
  12. package/dist/{chunk-DO5ZQHCX.cjs → chunk-2U2PRVDT.cjs} +9 -9
  13. package/dist/{chunk-DO5ZQHCX.cjs.map → chunk-2U2PRVDT.cjs.map} +1 -1
  14. package/dist/{chunk-J4CNHLNI.cjs → chunk-BHBOHN5O.cjs} +7 -7
  15. package/dist/{chunk-J4CNHLNI.cjs.map → chunk-BHBOHN5O.cjs.map} +1 -1
  16. package/dist/{chunk-7T2PU7VS.cjs → chunk-J3ANFXPF.cjs} +8 -6
  17. package/dist/chunk-J3ANFXPF.cjs.map +1 -0
  18. package/dist/{chunk-IA6E2T4X.js → chunk-LL3IH4QP.js} +4 -4
  19. package/dist/{chunk-IA6E2T4X.js.map → chunk-LL3IH4QP.js.map} +1 -1
  20. package/dist/{chunk-XJGTXD3R.js → chunk-MSLITBUT.js} +3 -3
  21. package/dist/{chunk-XJGTXD3R.js.map → chunk-MSLITBUT.js.map} +1 -1
  22. package/dist/{chunk-3OH2F6RQ.js → chunk-QIR375OA.js} +7 -5
  23. package/dist/chunk-QIR375OA.js.map +1 -0
  24. package/dist/{chunk-7U5E2KBV.js → chunk-ZBRHSHJD.js} +3 -3
  25. package/dist/{chunk-7U5E2KBV.js.map → chunk-ZBRHSHJD.js.map} +1 -1
  26. package/dist/{chunk-USWV4OQC.cjs → chunk-ZHGM6JS4.cjs} +5 -5
  27. package/dist/{chunk-USWV4OQC.cjs.map → chunk-ZHGM6JS4.cjs.map} +1 -1
  28. package/dist/index.cjs +8 -5
  29. package/dist/index.cjs.map +1 -1
  30. package/dist/index.js +5 -3
  31. package/dist/index.js.map +1 -1
  32. package/dist/server/handlers/routes/agents/router.d.ts.map +1 -1
  33. package/dist/server/index.cjs +9 -4
  34. package/dist/server/index.cjs.map +1 -1
  35. package/dist/server/index.js +9 -4
  36. package/dist/server/index.js.map +1 -1
  37. package/package.json +6 -5
  38. package/dist/chunk-3OH2F6RQ.js.map +0 -1
  39. package/dist/chunk-7T2PU7VS.cjs.map +0 -1
@@ -1932,12 +1932,17 @@ function agentsRouter(bodyLimitOptions) {
1932
1932
  schema: {
1933
1933
  type: "object",
1934
1934
  properties: {
1935
- model: {
1936
- type: "object",
1937
- description: "The model to update the agent to"
1935
+ modelId: {
1936
+ type: "string",
1937
+ description: "The modelId to update the agent to"
1938
+ },
1939
+ provider: {
1940
+ type: "string",
1941
+ enum: ["openai", "anthropic", "groq", "xai", "google"],
1942
+ description: "The provider of the model to update the agent to"
1938
1943
  }
1939
1944
  },
1940
- required: ["model"]
1945
+ required: ["modelId", "provider"]
1941
1946
  }
1942
1947
  }
1943
1948
  }