@inkeep/agents-sdk 0.0.0-dev-20250919192523 → 0.0.0-dev-20250920001717

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 CHANGED
@@ -3104,18 +3104,6 @@ var Project = class {
3104
3104
  updatedAt: (/* @__PURE__ */ new Date()).toISOString()
3105
3105
  };
3106
3106
  }
3107
- /**
3108
- * Convert project configuration to API format
3109
- */
3110
- toApiFormat() {
3111
- return {
3112
- id: this.projectId,
3113
- name: this.projectName,
3114
- description: this.projectDescription || "",
3115
- models: this.models,
3116
- stopWhen: this.stopWhen
3117
- };
3118
- }
3119
3107
  };
3120
3108
 
3121
3109
  // src/utils/generateIdFromName.ts
package/dist/index.d.cts CHANGED
@@ -721,6 +721,9 @@ interface ProjectConfig {
721
721
  };
722
722
  stopWhen?: StopWhen;
723
723
  graphs?: () => AgentGraph[];
724
+ tools?: () => ToolConfig[];
725
+ dataComponents?: () => DataComponentConfig[];
726
+ artifactComponents?: () => ArtifactComponentConfig[];
724
727
  }
725
728
  /**
726
729
  * Project interface for operations
@@ -869,10 +872,6 @@ declare class Project implements ProjectInterface {
869
872
  * Convert the Project to FullProjectDefinition format
870
873
  */
871
874
  private toFullProjectDefinition;
872
- /**
873
- * Convert project configuration to API format
874
- */
875
- private toApiFormat;
876
875
  }
877
876
 
878
877
  /**
package/dist/index.d.ts CHANGED
@@ -721,6 +721,9 @@ interface ProjectConfig {
721
721
  };
722
722
  stopWhen?: StopWhen;
723
723
  graphs?: () => AgentGraph[];
724
+ tools?: () => ToolConfig[];
725
+ dataComponents?: () => DataComponentConfig[];
726
+ artifactComponents?: () => ArtifactComponentConfig[];
724
727
  }
725
728
  /**
726
729
  * Project interface for operations
@@ -869,10 +872,6 @@ declare class Project implements ProjectInterface {
869
872
  * Convert the Project to FullProjectDefinition format
870
873
  */
871
874
  private toFullProjectDefinition;
872
- /**
873
- * Convert project configuration to API format
874
- */
875
- private toApiFormat;
876
875
  }
877
876
 
878
877
  /**
package/dist/index.js CHANGED
@@ -3102,18 +3102,6 @@ var Project = class {
3102
3102
  updatedAt: (/* @__PURE__ */ new Date()).toISOString()
3103
3103
  };
3104
3104
  }
3105
- /**
3106
- * Convert project configuration to API format
3107
- */
3108
- toApiFormat() {
3109
- return {
3110
- id: this.projectId,
3111
- name: this.projectName,
3112
- description: this.projectDescription || "",
3113
- models: this.models,
3114
- stopWhen: this.stopWhen
3115
- };
3116
- }
3117
3105
  };
3118
3106
 
3119
3107
  // src/utils/generateIdFromName.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-sdk",
3
- "version": "0.0.0-dev-20250919192523",
3
+ "version": "0.0.0-dev-20250920001717",
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.5",
11
- "@inkeep/agents-core": "^0.0.0-dev-20250919192523"
11
+ "@inkeep/agents-core": "^0.0.0-dev-20250920001717"
12
12
  },
13
13
  "devDependencies": {
14
14
  "@types/node": "^20.11.24",