@inkeep/agents-sdk 0.14.0 → 0.14.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.
- package/dist/index.cjs +3 -3
- package/dist/index.js +3 -3
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -2876,9 +2876,9 @@ var Project = class {
|
|
|
2876
2876
|
}
|
|
2877
2877
|
}
|
|
2878
2878
|
}
|
|
2879
|
-
const
|
|
2880
|
-
if (
|
|
2881
|
-
const contextVariables =
|
|
2879
|
+
const graphContextConfig = graph.contextConfig;
|
|
2880
|
+
if (graphContextConfig) {
|
|
2881
|
+
const contextVariables = graphContextConfig.getContextVariables?.() || graphContextConfig.contextVariables;
|
|
2882
2882
|
if (contextVariables) {
|
|
2883
2883
|
for (const [key, variable] of Object.entries(contextVariables)) {
|
|
2884
2884
|
if (variable?.credential) {
|
package/dist/index.js
CHANGED
|
@@ -2874,9 +2874,9 @@ var Project = class {
|
|
|
2874
2874
|
}
|
|
2875
2875
|
}
|
|
2876
2876
|
}
|
|
2877
|
-
const
|
|
2878
|
-
if (
|
|
2879
|
-
const contextVariables =
|
|
2877
|
+
const graphContextConfig = graph.contextConfig;
|
|
2878
|
+
if (graphContextConfig) {
|
|
2879
|
+
const contextVariables = graphContextConfig.getContextVariables?.() || graphContextConfig.contextVariables;
|
|
2880
2880
|
if (contextVariables) {
|
|
2881
2881
|
for (const [key, variable] of Object.entries(contextVariables)) {
|
|
2882
2882
|
if (variable?.credential) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-sdk",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"description": "Agents SDK for building and managing agents in the Inkeep Agent Framework",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"nanoid": "^5.1.5",
|
|
10
10
|
"zod": "^4.1.11",
|
|
11
|
-
"@inkeep/agents-core": "^0.14.
|
|
11
|
+
"@inkeep/agents-core": "^0.14.1"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@types/node": "^20.11.24",
|