@inkeep/agents-core 0.0.0-dev-20260203023016 → 0.0.0-dev-20260203024837

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/env.d.ts CHANGED
@@ -13,11 +13,11 @@ declare const envSchema: z.ZodObject<{
13
13
  INKEEP_AGENTS_RUN_DATABASE_URL: z.ZodOptional<z.ZodString>;
14
14
  POSTGRES_POOL_SIZE: z.ZodOptional<z.ZodString>;
15
15
  INKEEP_AGENTS_JWT_SIGNING_SECRET: z.ZodOptional<z.ZodString>;
16
- INKEEP_AGENTS_MANAGE_UI_URL: z.ZodOptional<z.ZodString>;
17
- INKEEP_AGENTS_API_URL: z.ZodOptional<z.ZodString>;
18
16
  BETTER_AUTH_SECRET: z.ZodOptional<z.ZodString>;
19
17
  TRUSTED_ORIGIN: z.ZodOptional<z.ZodString>;
20
18
  OAUTH_PROXY_PRODUCTION_URL: z.ZodOptional<z.ZodString>;
19
+ INKEEP_AGENTS_MANAGE_UI_URL: z.ZodOptional<z.ZodString>;
20
+ INKEEP_AGENTS_API_URL: z.ZodOptional<z.ZodString>;
21
21
  GITHUB_MCP_API_KEY: z.ZodOptional<z.ZodString>;
22
22
  }, z.core.$strip>;
23
23
  declare const env: {
@@ -26,11 +26,11 @@ declare const env: {
26
26
  INKEEP_AGENTS_RUN_DATABASE_URL?: string | undefined;
27
27
  POSTGRES_POOL_SIZE?: string | undefined;
28
28
  INKEEP_AGENTS_JWT_SIGNING_SECRET?: string | undefined;
29
- INKEEP_AGENTS_MANAGE_UI_URL?: string | undefined;
30
- INKEEP_AGENTS_API_URL?: string | undefined;
31
29
  BETTER_AUTH_SECRET?: string | undefined;
32
30
  TRUSTED_ORIGIN?: string | undefined;
33
31
  OAUTH_PROXY_PRODUCTION_URL?: string | undefined;
32
+ INKEEP_AGENTS_MANAGE_UI_URL?: string | undefined;
33
+ INKEEP_AGENTS_API_URL?: string | undefined;
34
34
  GITHUB_MCP_API_KEY?: string | undefined;
35
35
  };
36
36
  type Env = z.infer<typeof envSchema>;
package/dist/env.js CHANGED
@@ -37,17 +37,17 @@ const envSchema = z.object({
37
37
  "production",
38
38
  "pentest",
39
39
  "test"
40
- ]).optional(),
41
- INKEEP_AGENTS_MANAGE_DATABASE_URL: z.string().optional(),
42
- INKEEP_AGENTS_RUN_DATABASE_URL: z.string().optional(),
43
- POSTGRES_POOL_SIZE: z.string().optional(),
44
- INKEEP_AGENTS_JWT_SIGNING_SECRET: z.string().min(32, "INKEEP_AGENTS_JWT_SIGNING_SECRET must be at least 32 characters").optional(),
45
- INKEEP_AGENTS_MANAGE_UI_URL: z.string().optional(),
46
- INKEEP_AGENTS_API_URL: z.string().optional(),
47
- BETTER_AUTH_SECRET: z.string().optional(),
48
- TRUSTED_ORIGIN: z.string().optional(),
49
- OAUTH_PROXY_PRODUCTION_URL: z.string().optional(),
50
- GITHUB_MCP_API_KEY: z.string().optional()
40
+ ]).optional().describe("Application environment mode"),
41
+ INKEEP_AGENTS_MANAGE_DATABASE_URL: z.string().optional().describe("PostgreSQL connection URL for the management database (Doltgres with Git version control)"),
42
+ INKEEP_AGENTS_RUN_DATABASE_URL: z.string().optional().describe("PostgreSQL connection URL for the runtime database (Doltgres with Git version control)"),
43
+ POSTGRES_POOL_SIZE: z.string().optional().describe("Maximum number of connections in the PostgreSQL connection pool"),
44
+ INKEEP_AGENTS_JWT_SIGNING_SECRET: z.string().min(32, "INKEEP_AGENTS_JWT_SIGNING_SECRET must be at least 32 characters").optional().describe("Secret key for signing JWT tokens (minimum 32 characters)"),
45
+ BETTER_AUTH_SECRET: z.string().optional().describe("Secret key for Better Auth session encryption (change in production)"),
46
+ TRUSTED_ORIGIN: z.string().optional().describe("Trusted origin URL for CORS in local/preview environments"),
47
+ OAUTH_PROXY_PRODUCTION_URL: z.string().optional().describe("OAuth proxy URL for production environment (used in local/preview environments)"),
48
+ INKEEP_AGENTS_MANAGE_UI_URL: z.string().optional().describe("URL where the management UI is hosted"),
49
+ INKEEP_AGENTS_API_URL: z.string().optional().describe("URL where the agents management API is running"),
50
+ GITHUB_MCP_API_KEY: z.string().optional().describe("API key for the GitHub MCP")
51
51
  });
52
52
  const parseEnv = () => {
53
53
  try {
@@ -1,10 +1,10 @@
1
1
  import { z } from "@hono/zod-openapi";
2
- import * as drizzle_zod0 from "drizzle-zod";
2
+ import * as drizzle_zod15 from "drizzle-zod";
3
3
  import { AnySQLiteTable } from "drizzle-orm/sqlite-core";
4
4
 
5
5
  //#region src/validation/drizzle-schema-helpers.d.ts
6
- declare function createSelectSchemaWithModifiers<T extends AnySQLiteTable>(table: T, overrides?: Partial<Record<keyof T['_']['columns'], (schema: z.ZodTypeAny) => z.ZodTypeAny>>): drizzle_zod0.BuildSchema<"select", T["_"]["columns"], drizzle_zod0.BuildRefine<T["_"]["columns"], undefined>, undefined>;
7
- declare function createInsertSchemaWithModifiers<T extends AnySQLiteTable>(table: T, overrides?: Partial<Record<keyof T['_']['columns'], (schema: z.ZodTypeAny) => z.ZodTypeAny>>): drizzle_zod0.BuildSchema<"insert", T["_"]["columns"], drizzle_zod0.BuildRefine<Pick<T["_"]["columns"], keyof T["$inferInsert"]>, undefined>, undefined>;
6
+ declare function createSelectSchemaWithModifiers<T extends AnySQLiteTable>(table: T, overrides?: Partial<Record<keyof T['_']['columns'], (schema: z.ZodTypeAny) => z.ZodTypeAny>>): drizzle_zod15.BuildSchema<"select", T["_"]["columns"], drizzle_zod15.BuildRefine<T["_"]["columns"], undefined>, undefined>;
7
+ declare function createInsertSchemaWithModifiers<T extends AnySQLiteTable>(table: T, overrides?: Partial<Record<keyof T['_']['columns'], (schema: z.ZodTypeAny) => z.ZodTypeAny>>): drizzle_zod15.BuildSchema<"insert", T["_"]["columns"], drizzle_zod15.BuildRefine<Pick<T["_"]["columns"], keyof T["$inferInsert"]>, undefined>, undefined>;
8
8
  declare const createSelectSchema: typeof createSelectSchemaWithModifiers;
9
9
  declare const createInsertSchema: typeof createInsertSchemaWithModifiers;
10
10
  /**