@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.
- package/dist/auth/auth-schema.d.ts +86 -86
- package/dist/auth/auth-validation-schemas.d.ts +154 -154
- package/dist/auth/init.js +12 -2
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/data-access/manage/agents.d.ts +60 -60
- package/dist/data-access/manage/artifactComponents.d.ts +4 -4
- package/dist/data-access/manage/contextConfigs.d.ts +8 -8
- package/dist/data-access/manage/functionTools.d.ts +6 -6
- package/dist/data-access/manage/skills.d.ts +9 -9
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgents.d.ts +36 -36
- package/dist/data-access/manage/tools.d.ts +18 -18
- package/dist/data-access/manage/triggers.d.ts +1 -1
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/apps.d.ts +10 -10
- package/dist/data-access/runtime/conversations.d.ts +24 -24
- package/dist/data-access/runtime/messages.d.ts +6 -6
- package/dist/data-access/runtime/tasks.d.ts +5 -5
- package/dist/db/manage/manage-schema.d.ts +360 -360
- package/dist/db/runtime/runtime-schema.d.ts +4 -4
- package/dist/middleware/no-auth.d.ts +2 -2
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +2258 -2258
- package/package.json +1 -1
|
@@ -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: "
|
|
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: "
|
|
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" | "
|
|
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" | "
|
|
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
|
|
1
|
+
import * as hono3 from "hono";
|
|
2
2
|
|
|
3
3
|
//#region src/middleware/no-auth.d.ts
|
|
4
|
-
declare const noAuth: () =>
|
|
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
|
|
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>>):
|
|
7
|
-
declare function createInsertSchemaWithModifiers<T extends AnySQLiteTable>(table: T, overrides?: Partial<Record<keyof T['_']['columns'], (schema: z.ZodTypeAny) => z.ZodTypeAny>>):
|
|
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
|
/**
|