@inkeep/agents-core 0.0.0-dev-20260205203133 → 0.0.0-dev-20260205231249

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
@@ -18,6 +18,7 @@ declare const envSchema: z.ZodObject<{
18
18
  OAUTH_PROXY_PRODUCTION_URL: z.ZodOptional<z.ZodString>;
19
19
  INKEEP_AGENTS_MANAGE_UI_URL: z.ZodOptional<z.ZodString>;
20
20
  INKEEP_AGENTS_API_URL: z.ZodOptional<z.ZodString>;
21
+ AUTH_COOKIE_DOMAIN: z.ZodOptional<z.ZodString>;
21
22
  GITHUB_MCP_API_KEY: z.ZodOptional<z.ZodString>;
22
23
  }, z.core.$strip>;
23
24
  declare const env: {
@@ -31,6 +32,7 @@ declare const env: {
31
32
  OAUTH_PROXY_PRODUCTION_URL?: string | undefined;
32
33
  INKEEP_AGENTS_MANAGE_UI_URL?: string | undefined;
33
34
  INKEEP_AGENTS_API_URL?: string | undefined;
35
+ AUTH_COOKIE_DOMAIN?: string | undefined;
34
36
  GITHUB_MCP_API_KEY?: string | undefined;
35
37
  };
36
38
  type Env = z.infer<typeof envSchema>;
package/dist/env.js CHANGED
@@ -47,6 +47,7 @@ const envSchema = z.object({
47
47
  OAUTH_PROXY_PRODUCTION_URL: z.string().optional().describe("OAuth proxy URL for production environment (used in local/preview environments)"),
48
48
  INKEEP_AGENTS_MANAGE_UI_URL: z.string().optional().describe("URL where the management UI is hosted"),
49
49
  INKEEP_AGENTS_API_URL: z.string().optional().describe("URL where the agents management API is running"),
50
+ AUTH_COOKIE_DOMAIN: z.string().optional().describe("Explicit cookie domain for cross-subdomain auth (e.g., .inkeep.com). Required when the API and UI do not share a common 3-part parent domain."),
50
51
  GITHUB_MCP_API_KEY: z.string().optional().describe("API key for the GitHub MCP")
51
52
  });
52
53
  const parseEnv = () => {
@@ -32,8 +32,8 @@ declare const BranchNameParamsSchema: z.ZodObject<{
32
32
  }, z.core.$strip>;
33
33
  declare const ResolvedRefSchema: z.ZodObject<{
34
34
  type: z.ZodEnum<{
35
- tag: "tag";
36
35
  commit: "commit";
36
+ tag: "tag";
37
37
  branch: "branch";
38
38
  }>;
39
39
  name: z.ZodString;
@@ -1,10 +1,10 @@
1
1
  import { z } from "@hono/zod-openapi";
2
- import * as drizzle_zod15 from "drizzle-zod";
2
+ import * as drizzle_zod0 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_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>;
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>;
8
8
  declare const createSelectSchema: typeof createSelectSchemaWithModifiers;
9
9
  declare const createInsertSchema: typeof createInsertSchemaWithModifiers;
10
10
  /**