@inkeep/agents-cli 0.7.2 → 0.8.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 (2) hide show
  1. package/dist/index.js +7 -2
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -1766,6 +1766,7 @@ var init_schema = __esm({
1766
1766
  id: text("id").notNull(),
1767
1767
  toolId: text("tool_id").notNull(),
1768
1768
  selectedTools: blob("selected_tools", { mode: "json" }).$type(),
1769
+ headers: blob("headers", { mode: "json" }).$type(),
1769
1770
  createdAt: text("created_at").notNull().default(sql`CURRENT_TIMESTAMP`),
1770
1771
  updatedAt: text("updated_at").notNull().default(sql`CURRENT_TIMESTAMP`)
1771
1772
  },
@@ -2736,7 +2737,8 @@ var init_schemas = __esm({
2736
2737
  id: resourceIdSchema,
2737
2738
  agentId: resourceIdSchema,
2738
2739
  toolId: resourceIdSchema,
2739
- selectedTools: z.array(z.string()).nullish()
2740
+ selectedTools: z.array(z.string()).nullish(),
2741
+ headers: z.record(z.string(), z.string()).nullish()
2740
2742
  });
2741
2743
  AgentToolRelationUpdateSchema = AgentToolRelationInsertSchema.partial();
2742
2744
  AgentToolRelationApiSelectSchema = createGraphScopedApiSchema(
@@ -2772,7 +2774,8 @@ var init_schemas = __esm({
2772
2774
  });
2773
2775
  CanUseItemSchema = z.object({
2774
2776
  toolId: z.string(),
2775
- toolSelection: z.array(z.string()).nullable().optional()
2777
+ toolSelection: z.array(z.string()).nullish(),
2778
+ headers: z.record(z.string(), z.string()).nullish()
2776
2779
  });
2777
2780
  FullGraphAgentInsertSchema = AgentApiInsertSchema.extend({
2778
2781
  type: z.literal("internal"),
@@ -20577,6 +20580,8 @@ var init_env = __esm({
20577
20580
  envSchema = z9.object({
20578
20581
  ENVIRONMENT: z9.enum(["development", "production", "pentest", "test"]).optional(),
20579
20582
  DB_FILE_NAME: z9.string().optional(),
20583
+ TURSO_DATABASE_URL: z9.string().optional(),
20584
+ TURSO_AUTH_TOKEN: z9.string().optional(),
20580
20585
  OTEL_TRACES_FORCE_FLUSH_ENABLED: z9.coerce.boolean().optional()
20581
20586
  });
20582
20587
  parseEnv = () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-cli",
3
- "version": "0.7.2",
3
+ "version": "0.8.1",
4
4
  "description": "Inkeep CLI tool",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -45,8 +45,8 @@
45
45
  "recast": "^0.23.0",
46
46
  "ts-morph": "^26.0.0",
47
47
  "tsx": "^4.20.5",
48
- "@inkeep/agents-core": "^0.7.2",
49
- "@inkeep/agents-manage-ui": "^0.7.2"
48
+ "@inkeep/agents-core": "^0.8.1",
49
+ "@inkeep/agents-manage-ui": "^0.8.1"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/degit": "^2.8.6",