@inkeep/agents-core 0.47.0 → 0.47.2

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
@@ -22,7 +22,7 @@ declare const envSchema: z.ZodObject<{
22
22
  GITHUB_MCP_API_KEY: z.ZodOptional<z.ZodString>;
23
23
  SPICEDB_ENDPOINT: z.ZodOptional<z.ZodString>;
24
24
  SPICEDB_PRESHARED_KEY: z.ZodOptional<z.ZodString>;
25
- SPICEDB_TLS_ENABLED: z.ZodOptional<z.ZodCoercedBoolean<unknown>>;
25
+ SPICEDB_TLS_ENABLED: z.ZodOptional<z.ZodCodec<z.ZodString, z.ZodBoolean>>;
26
26
  }, z.core.$strip>;
27
27
  declare const env: {
28
28
  ENVIRONMENT?: "development" | "production" | "pentest" | "test" | undefined;
package/dist/env.js CHANGED
@@ -51,7 +51,7 @@ const envSchema = z.object({
51
51
  GITHUB_MCP_API_KEY: z.string().optional().describe("API key for the GitHub MCP"),
52
52
  SPICEDB_ENDPOINT: z.string().optional().describe("SpiceDB endpoint"),
53
53
  SPICEDB_PRESHARED_KEY: z.string().optional().describe("SpiceDB pre-shared key"),
54
- SPICEDB_TLS_ENABLED: z.coerce.boolean().optional().describe("SpiceDB TLS enabled")
54
+ SPICEDB_TLS_ENABLED: z.stringbool().optional().describe("SpiceDB TLS enabled")
55
55
  });
56
56
  const parseEnv = () => {
57
57
  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
  /**