@mastra/deployer 0.13.3-alpha.0 → 0.14.0-alpha.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.
- package/dist/build/analyze.cjs +3 -3
- package/dist/build/analyze.d.ts.map +1 -1
- package/dist/build/analyze.js +1 -1
- package/dist/build/bundlerOptions.d.ts.map +1 -1
- package/dist/build/deployer.d.ts.map +1 -1
- package/dist/build/index.cjs +9 -9
- package/dist/build/index.js +3 -3
- package/dist/build/plugins/__fixtures__/basic-with-json.d.ts +3 -0
- package/dist/build/plugins/__fixtures__/basic-with-json.d.ts.map +1 -0
- package/dist/bundler/index.cjs +2 -2
- package/dist/bundler/index.js +1 -1
- package/dist/{chunk-J4CNHLNI.cjs → chunk-2QJ6ZW3U.cjs} +7 -7
- package/dist/{chunk-J4CNHLNI.cjs.map → chunk-2QJ6ZW3U.cjs.map} +1 -1
- package/dist/{chunk-7T2PU7VS.cjs → chunk-F3EQZ6KY.cjs} +13 -8
- package/dist/chunk-F3EQZ6KY.cjs.map +1 -0
- package/dist/{chunk-IA6E2T4X.js → chunk-JSDQFNHH.js} +4 -4
- package/dist/{chunk-IA6E2T4X.js.map → chunk-JSDQFNHH.js.map} +1 -1
- package/dist/{chunk-7U5E2KBV.js → chunk-LX5TJLI5.js} +3 -3
- package/dist/{chunk-7U5E2KBV.js.map → chunk-LX5TJLI5.js.map} +1 -1
- package/dist/{chunk-DO5ZQHCX.cjs → chunk-UUOQ3FAM.cjs} +9 -9
- package/dist/{chunk-DO5ZQHCX.cjs.map → chunk-UUOQ3FAM.cjs.map} +1 -1
- package/dist/{chunk-XJGTXD3R.js → chunk-VZK2Z2KV.js} +3 -3
- package/dist/{chunk-XJGTXD3R.js.map → chunk-VZK2Z2KV.js.map} +1 -1
- package/dist/{chunk-3OH2F6RQ.js → chunk-W4GA27OK.js} +12 -7
- package/dist/chunk-W4GA27OK.js.map +1 -0
- package/dist/{chunk-USWV4OQC.cjs → chunk-YKO2TTMS.cjs} +5 -5
- package/dist/{chunk-USWV4OQC.cjs.map → chunk-YKO2TTMS.cjs.map} +1 -1
- package/dist/index.cjs +8 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/server/handlers/routes/agents/router.d.ts.map +1 -1
- package/dist/server/index.cjs +9 -4
- package/dist/server/index.cjs.map +1 -1
- package/dist/server/index.js +9 -4
- package/dist/server/index.js.map +1 -1
- package/package.json +6 -5
- package/dist/chunk-3OH2F6RQ.js.map +0 -1
- package/dist/chunk-7T2PU7VS.cjs.map +0 -1
package/dist/server/index.js
CHANGED
|
@@ -1932,12 +1932,17 @@ function agentsRouter(bodyLimitOptions) {
|
|
|
1932
1932
|
schema: {
|
|
1933
1933
|
type: "object",
|
|
1934
1934
|
properties: {
|
|
1935
|
-
|
|
1936
|
-
type: "
|
|
1937
|
-
description: "The
|
|
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: ["
|
|
1945
|
+
required: ["modelId", "provider"]
|
|
1941
1946
|
}
|
|
1942
1947
|
}
|
|
1943
1948
|
}
|