@inkeep/agents-core 0.0.0-dev-20260330201301 → 0.0.0-dev-20260330205052

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.
@@ -5181,7 +5181,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core557.PgTableWithColu
5181
5181
  tableName: "work_app_github_installations";
5182
5182
  dataType: "string";
5183
5183
  columnType: "PgVarchar";
5184
- data: "User" | "Organization";
5184
+ data: "Organization" | "User";
5185
5185
  driverParam: string;
5186
5186
  notNull: true;
5187
5187
  hasDefault: false;
@@ -5194,7 +5194,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core557.PgTableWithColu
5194
5194
  generated: undefined;
5195
5195
  }, {}, {
5196
5196
  length: 20;
5197
- $type: "User" | "Organization";
5197
+ $type: "Organization" | "User";
5198
5198
  }>;
5199
5199
  status: drizzle_orm_pg_core557.PgColumn<{
5200
5200
  name: "status";
@@ -1,10 +1,10 @@
1
1
  import { z } from "@hono/zod-openapi";
2
- import * as drizzle_zod359 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_zod359.BuildSchema<"select", T["_"]["columns"], drizzle_zod359.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_zod359.BuildSchema<"insert", T["_"]["columns"], drizzle_zod359.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
  /**