@inkeep/agents-core 0.0.0-dev-20260327195114 → 0.0.0-dev-20260328075633

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.
@@ -4720,7 +4720,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core1825.PgTableWithCol
4720
4720
  tableName: "work_app_github_installations";
4721
4721
  dataType: "string";
4722
4722
  columnType: "PgVarchar";
4723
- data: "User" | "Organization";
4723
+ data: "Organization" | "User";
4724
4724
  driverParam: string;
4725
4725
  notNull: true;
4726
4726
  hasDefault: false;
@@ -4733,14 +4733,14 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core1825.PgTableWithCol
4733
4733
  generated: undefined;
4734
4734
  }, {}, {
4735
4735
  length: 20;
4736
- $type: "User" | "Organization";
4736
+ $type: "Organization" | "User";
4737
4737
  }>;
4738
4738
  status: drizzle_orm_pg_core1825.PgColumn<{
4739
4739
  name: "status";
4740
4740
  tableName: "work_app_github_installations";
4741
4741
  dataType: "string";
4742
4742
  columnType: "PgVarchar";
4743
- data: "pending" | "suspended" | "active" | "disconnected";
4743
+ data: "pending" | "active" | "suspended" | "disconnected";
4744
4744
  driverParam: string;
4745
4745
  notNull: true;
4746
4746
  hasDefault: true;
@@ -4753,7 +4753,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core1825.PgTableWithCol
4753
4753
  generated: undefined;
4754
4754
  }, {}, {
4755
4755
  length: 20;
4756
- $type: "pending" | "suspended" | "active" | "disconnected";
4756
+ $type: "pending" | "active" | "suspended" | "disconnected";
4757
4757
  }>;
4758
4758
  tenantId: drizzle_orm_pg_core1825.PgColumn<{
4759
4759
  name: "tenant_id";
@@ -1,6 +1,6 @@
1
- import * as hono0 from "hono";
1
+ import * as hono3 from "hono";
2
2
 
3
3
  //#region src/middleware/no-auth.d.ts
4
- declare const noAuth: () => hono0.MiddlewareHandler<any, string, {}, Response>;
4
+ declare const noAuth: () => hono3.MiddlewareHandler<any, string, {}, Response>;
5
5
  //#endregion
6
6
  export { noAuth };
@@ -1,10 +1,10 @@
1
1
  import { z } from "@hono/zod-openapi";
2
- import * as drizzle_zod15 from "drizzle-zod";
2
+ import * as drizzle_zod381 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_zod381.BuildSchema<"select", T["_"]["columns"], drizzle_zod381.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_zod381.BuildSchema<"insert", T["_"]["columns"], drizzle_zod381.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
  /**