@inkeep/create-agents 0.53.2 → 0.53.3

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.
@@ -75,7 +75,14 @@ describe('create-agents quickstart e2e', () => {
75
75
  console.log('.env file verified');
76
76
  // Verify inkeep.config.ts was created
77
77
  console.log('Verifying inkeep.config.ts...');
78
- await verifyFile(path.join(projectDir, 'src/inkeep.config.ts'));
78
+ await verifyFile(path.join(projectDir, 'src/inkeep.config.ts'), [
79
+ /defineConfig/,
80
+ /tenantId:/,
81
+ /agentsApi:/,
82
+ /apiKey:/,
83
+ /url:/,
84
+ /manageUiUrl:/,
85
+ ]);
79
86
  console.log('inkeep.config.ts verified');
80
87
  // Link to local monorepo packages (also runs pnpm install --no-frozen-lockfile)
81
88
  console.log('Linking local monorepo packages...');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/create-agents",
3
- "version": "0.53.2",
3
+ "version": "0.53.3",
4
4
  "description": "Create an Inkeep Agent Framework project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -33,7 +33,7 @@
33
33
  "degit": "^2.8.4",
34
34
  "fs-extra": "^11.0.0",
35
35
  "picocolors": "^1.0.0",
36
- "@inkeep/agents-core": "0.53.2"
36
+ "@inkeep/agents-core": "0.53.3"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/degit": "^2.8.6",