@inkeep/agents-core 0.0.0-dev-20260330224432 → 0.0.0-dev-20260331031331
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-validation-schemas.d.ts +154 -154
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/data-access/manage/agents.d.ts +23 -23
- package/dist/data-access/manage/artifactComponents.d.ts +6 -6
- package/dist/data-access/manage/contextConfigs.d.ts +4 -4
- package/dist/data-access/manage/dataComponents.d.ts +2 -2
- 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 +14 -14
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgents.d.ts +9 -9
- package/dist/data-access/manage/tools.d.ts +12 -12
- package/dist/data-access/runtime/apiKeys.d.ts +8 -8
- package/dist/data-access/runtime/apps.d.ts +14 -14
- package/dist/data-access/runtime/conversations.d.ts +16 -16
- package/dist/data-access/runtime/messages.d.ts +21 -21
- package/dist/data-access/runtime/tasks.d.ts +5 -5
- package/dist/db/manage/manage-schema.d.ts +347 -347
- package/dist/db/runtime/runtime-schema.d.ts +337 -337
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas/skills.d.ts +23 -23
- package/dist/validation/schemas.d.ts +1926 -1926
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { z } from "@hono/zod-openapi";
|
|
2
|
-
import * as
|
|
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>>):
|
|
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_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
|
/**
|
|
@@ -337,9 +337,9 @@ declare const SkillFileInsertSchema: z.ZodObject<{
|
|
|
337
337
|
}>;
|
|
338
338
|
declare const SkillInsertSchema: z.ZodObject<{
|
|
339
339
|
name: z.ZodString;
|
|
340
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
341
340
|
description: z.ZodString;
|
|
342
341
|
content: z.ZodString;
|
|
342
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
343
343
|
}, {
|
|
344
344
|
out: {};
|
|
345
345
|
in: {};
|
|
@@ -353,11 +353,11 @@ declare const SkillUpdateSchema: z.ZodObject<{
|
|
|
353
353
|
declare const SkillApiSelectSchema: z.ZodObject<{
|
|
354
354
|
id: z.ZodString;
|
|
355
355
|
name: z.ZodString;
|
|
356
|
-
createdAt: z.ZodString;
|
|
357
|
-
updatedAt: z.ZodString;
|
|
358
|
-
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
359
356
|
description: z.ZodString;
|
|
360
357
|
content: z.ZodString;
|
|
358
|
+
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
359
|
+
createdAt: z.ZodString;
|
|
360
|
+
updatedAt: z.ZodString;
|
|
361
361
|
}, z.core.$strip>;
|
|
362
362
|
declare const SkillApiInsertSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
363
363
|
files: z.ZodArray<z.ZodObject<{
|
|
@@ -410,9 +410,9 @@ declare const SkillApiUpdateSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
410
410
|
}, z.core.$strict>>;
|
|
411
411
|
declare const SkillFileApiSelectSchema: z.ZodObject<{
|
|
412
412
|
id: z.ZodString;
|
|
413
|
+
content: z.ZodString;
|
|
413
414
|
createdAt: z.ZodString;
|
|
414
415
|
updatedAt: z.ZodString;
|
|
415
|
-
content: z.ZodString;
|
|
416
416
|
skillId: z.ZodString;
|
|
417
417
|
filePath: z.ZodString;
|
|
418
418
|
}, z.core.$strip>;
|
|
@@ -426,16 +426,16 @@ declare const SkillFileApiUpdateSchema: z.ZodObject<{
|
|
|
426
426
|
declare const SkillWithFilesApiSelectSchema: z.ZodObject<{
|
|
427
427
|
id: z.ZodString;
|
|
428
428
|
name: z.ZodString;
|
|
429
|
-
createdAt: z.ZodString;
|
|
430
|
-
updatedAt: z.ZodString;
|
|
431
|
-
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
432
429
|
description: z.ZodString;
|
|
433
430
|
content: z.ZodString;
|
|
431
|
+
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
432
|
+
createdAt: z.ZodString;
|
|
433
|
+
updatedAt: z.ZodString;
|
|
434
434
|
files: z.ZodArray<z.ZodObject<{
|
|
435
435
|
id: z.ZodString;
|
|
436
|
+
content: z.ZodString;
|
|
436
437
|
createdAt: z.ZodString;
|
|
437
438
|
updatedAt: z.ZodString;
|
|
438
|
-
content: z.ZodString;
|
|
439
439
|
skillId: z.ZodString;
|
|
440
440
|
filePath: z.ZodString;
|
|
441
441
|
}, z.core.$strip>>;
|
|
@@ -516,11 +516,11 @@ declare const SubAgentSkillApiUpdateSchema: z.ZodObject<{
|
|
|
516
516
|
declare const SubAgentSkillWithIndexSchema: z.ZodObject<{
|
|
517
517
|
id: z.ZodString;
|
|
518
518
|
name: z.ZodString;
|
|
519
|
-
createdAt: z.ZodString;
|
|
520
|
-
updatedAt: z.ZodString;
|
|
521
|
-
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
522
519
|
description: z.ZodString;
|
|
523
520
|
content: z.ZodString;
|
|
521
|
+
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
522
|
+
createdAt: z.ZodString;
|
|
523
|
+
updatedAt: z.ZodString;
|
|
524
524
|
subAgentSkillId: z.ZodString;
|
|
525
525
|
subAgentId: z.ZodString;
|
|
526
526
|
index: z.ZodInt;
|
|
@@ -529,9 +529,9 @@ declare const SubAgentSkillWithIndexSchema: z.ZodObject<{
|
|
|
529
529
|
declare const SkillFileResponse: z.ZodObject<{
|
|
530
530
|
data: z.ZodObject<{
|
|
531
531
|
id: z.ZodString;
|
|
532
|
+
content: z.ZodString;
|
|
532
533
|
createdAt: z.ZodString;
|
|
533
534
|
updatedAt: z.ZodString;
|
|
534
|
-
content: z.ZodString;
|
|
535
535
|
skillId: z.ZodString;
|
|
536
536
|
filePath: z.ZodString;
|
|
537
537
|
}, z.core.$strip>;
|
|
@@ -540,16 +540,16 @@ declare const SkillWithFilesResponse: z.ZodObject<{
|
|
|
540
540
|
data: z.ZodObject<{
|
|
541
541
|
id: z.ZodString;
|
|
542
542
|
name: z.ZodString;
|
|
543
|
-
createdAt: z.ZodString;
|
|
544
|
-
updatedAt: z.ZodString;
|
|
545
|
-
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
546
543
|
description: z.ZodString;
|
|
547
544
|
content: z.ZodString;
|
|
545
|
+
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
546
|
+
createdAt: z.ZodString;
|
|
547
|
+
updatedAt: z.ZodString;
|
|
548
548
|
files: z.ZodArray<z.ZodObject<{
|
|
549
549
|
id: z.ZodString;
|
|
550
|
+
content: z.ZodString;
|
|
550
551
|
createdAt: z.ZodString;
|
|
551
552
|
updatedAt: z.ZodString;
|
|
552
|
-
content: z.ZodString;
|
|
553
553
|
skillId: z.ZodString;
|
|
554
554
|
filePath: z.ZodString;
|
|
555
555
|
}, z.core.$strip>>;
|
|
@@ -559,11 +559,11 @@ declare const SkillListResponse: z.ZodObject<{
|
|
|
559
559
|
data: z.ZodArray<z.ZodObject<{
|
|
560
560
|
id: z.ZodString;
|
|
561
561
|
name: z.ZodString;
|
|
562
|
-
createdAt: z.ZodString;
|
|
563
|
-
updatedAt: z.ZodString;
|
|
564
|
-
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
565
562
|
description: z.ZodString;
|
|
566
563
|
content: z.ZodString;
|
|
564
|
+
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
565
|
+
createdAt: z.ZodString;
|
|
566
|
+
updatedAt: z.ZodString;
|
|
567
567
|
}, z.core.$strip>>;
|
|
568
568
|
pagination: z.ZodObject<{
|
|
569
569
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -587,11 +587,11 @@ declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
|
|
|
587
587
|
data: z.ZodArray<z.ZodObject<{
|
|
588
588
|
id: z.ZodString;
|
|
589
589
|
name: z.ZodString;
|
|
590
|
-
createdAt: z.ZodString;
|
|
591
|
-
updatedAt: z.ZodString;
|
|
592
|
-
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
593
590
|
description: z.ZodString;
|
|
594
591
|
content: z.ZodString;
|
|
592
|
+
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
593
|
+
createdAt: z.ZodString;
|
|
594
|
+
updatedAt: z.ZodString;
|
|
595
595
|
subAgentSkillId: z.ZodString;
|
|
596
596
|
subAgentId: z.ZodString;
|
|
597
597
|
index: z.ZodInt;
|