@inkeep/agents-core 0.15.0 → 0.16.0
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/{chunk-FLKAMXLV.js → chunk-L53XWAYG.js} +1 -1
- package/dist/chunk-R2EERZSW.js +223 -0
- package/dist/{chunk-FMCAYVO7.js → chunk-TO2HNKGP.js} +167 -10
- package/dist/{chunk-AHSEMW6N.js → chunk-VPJ6Z5QZ.js} +43 -7
- package/dist/client-exports.cjs +215 -21
- package/dist/client-exports.d.cts +12 -8
- package/dist/client-exports.d.ts +12 -8
- package/dist/client-exports.js +4 -10
- package/dist/db/schema.cjs +42 -6
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/db/schema.js +1 -1
- package/dist/index.cjs +3274 -2819
- package/dist/index.d.cts +140 -89
- package/dist/index.d.ts +140 -89
- package/dist/index.js +2519 -2494
- package/dist/props-validation-BMR1qNiy.d.cts +15 -0
- package/dist/props-validation-BMR1qNiy.d.ts +15 -0
- package/dist/{schema-D0E2bG9V.d.ts → schema-BQk_FMBV.d.ts} +253 -64
- package/dist/{schema-CTBfyt-o.d.cts → schema-Ct2NlO81.d.cts} +253 -64
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/{utility-BMAHFZX6.d.cts → utility-s9c5CVOe.d.cts} +708 -161
- package/dist/{utility-BMAHFZX6.d.ts → utility-s9c5CVOe.d.ts} +708 -161
- package/dist/utils/schema-conversion.cjs +236 -0
- package/dist/utils/schema-conversion.d.cts +26 -0
- package/dist/utils/schema-conversion.d.ts +26 -0
- package/dist/utils/schema-conversion.js +1 -0
- package/dist/validation/index.cjs +218 -14
- package/dist/validation/index.d.cts +3 -2
- package/dist/validation/index.d.ts +3 -2
- package/dist/validation/index.js +2 -2
- package/drizzle/0002_bumpy_romulus.sql +3 -0
- package/drizzle/0003_soft_forgotten_one.sql +39 -0
- package/drizzle/0004_melted_omega_flight.sql +3 -0
- package/drizzle/meta/0002_snapshot.json +2428 -0
- package/drizzle/meta/0003_snapshot.json +2559 -0
- package/drizzle/meta/0004_snapshot.json +2547 -0
- package/drizzle/meta/_journal.json +21 -0
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
interface PropsValidationResult {
|
|
2
|
+
isValid: boolean;
|
|
3
|
+
errors: Array<{
|
|
4
|
+
field: string;
|
|
5
|
+
message: string;
|
|
6
|
+
value?: any;
|
|
7
|
+
}>;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Validates that a props object is a valid JSON Schema
|
|
11
|
+
* Uses AJV to validate the schema structure without resolving references
|
|
12
|
+
*/
|
|
13
|
+
declare function validatePropsAsJsonSchema(props: any): PropsValidationResult;
|
|
14
|
+
|
|
15
|
+
export { type PropsValidationResult as P, validatePropsAsJsonSchema as v };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
interface PropsValidationResult {
|
|
2
|
+
isValid: boolean;
|
|
3
|
+
errors: Array<{
|
|
4
|
+
field: string;
|
|
5
|
+
message: string;
|
|
6
|
+
value?: any;
|
|
7
|
+
}>;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Validates that a props object is a valid JSON Schema
|
|
11
|
+
* Uses AJV to validate the schema structure without resolving references
|
|
12
|
+
*/
|
|
13
|
+
declare function validatePropsAsJsonSchema(props: any): PropsValidationResult;
|
|
14
|
+
|
|
15
|
+
export { type PropsValidationResult as P, validatePropsAsJsonSchema as v };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as drizzle_orm from 'drizzle-orm';
|
|
2
2
|
import * as drizzle_orm_sqlite_core from 'drizzle-orm/sqlite-core';
|
|
3
|
-
import {
|
|
3
|
+
import { l as ContextFetchDefinition, C as ConversationHistoryConfig, T as TaskMetadataConfig, m as ToolMcpConfig, n as ToolServerCapabilities, o as ConversationMetadata, p as MessageContent, q as MessageMetadata, P as Part } from './utility-s9c5CVOe.js';
|
|
4
4
|
|
|
5
5
|
declare const projects: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
6
6
|
name: "projects";
|
|
@@ -114,6 +114,35 @@ declare const projects: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
114
114
|
stepCountIs?: number | undefined;
|
|
115
115
|
};
|
|
116
116
|
}>;
|
|
117
|
+
sandboxConfig: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
118
|
+
name: "sandbox_config";
|
|
119
|
+
tableName: "projects";
|
|
120
|
+
dataType: "json";
|
|
121
|
+
columnType: "SQLiteTextJson";
|
|
122
|
+
data: {
|
|
123
|
+
provider: "vercel" | "daytona" | "local";
|
|
124
|
+
runtime: "node22" | "typescript";
|
|
125
|
+
timeout?: number;
|
|
126
|
+
vcpus?: number;
|
|
127
|
+
};
|
|
128
|
+
driverParam: string;
|
|
129
|
+
notNull: false;
|
|
130
|
+
hasDefault: false;
|
|
131
|
+
isPrimaryKey: false;
|
|
132
|
+
isAutoincrement: false;
|
|
133
|
+
hasRuntimeDefault: false;
|
|
134
|
+
enumValues: undefined;
|
|
135
|
+
baseColumn: never;
|
|
136
|
+
identity: undefined;
|
|
137
|
+
generated: undefined;
|
|
138
|
+
}, {}, {
|
|
139
|
+
$type: {
|
|
140
|
+
provider: "vercel" | "daytona" | "local";
|
|
141
|
+
runtime: "node22" | "typescript";
|
|
142
|
+
timeout?: number;
|
|
143
|
+
vcpus?: number;
|
|
144
|
+
};
|
|
145
|
+
}>;
|
|
117
146
|
name: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
118
147
|
name: "name";
|
|
119
148
|
tableName: "projects";
|
|
@@ -547,8 +576,8 @@ declare const contextConfigs: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
547
576
|
}, {}, {
|
|
548
577
|
length: number | undefined;
|
|
549
578
|
}>;
|
|
550
|
-
|
|
551
|
-
name: "
|
|
579
|
+
headersSchema: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
580
|
+
name: "headers_schema";
|
|
552
581
|
tableName: "context_configs";
|
|
553
582
|
dataType: "json";
|
|
554
583
|
columnType: "SQLiteBlobJson";
|
|
@@ -585,44 +614,6 @@ declare const contextConfigs: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
585
614
|
}, {}, {
|
|
586
615
|
$type: Record<string, ContextFetchDefinition>;
|
|
587
616
|
}>;
|
|
588
|
-
name: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
589
|
-
name: "name";
|
|
590
|
-
tableName: "context_configs";
|
|
591
|
-
dataType: "string";
|
|
592
|
-
columnType: "SQLiteText";
|
|
593
|
-
data: string;
|
|
594
|
-
driverParam: string;
|
|
595
|
-
notNull: true;
|
|
596
|
-
hasDefault: false;
|
|
597
|
-
isPrimaryKey: false;
|
|
598
|
-
isAutoincrement: false;
|
|
599
|
-
hasRuntimeDefault: false;
|
|
600
|
-
enumValues: [string, ...string[]];
|
|
601
|
-
baseColumn: never;
|
|
602
|
-
identity: undefined;
|
|
603
|
-
generated: undefined;
|
|
604
|
-
}, {}, {
|
|
605
|
-
length: number | undefined;
|
|
606
|
-
}>;
|
|
607
|
-
description: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
608
|
-
name: "description";
|
|
609
|
-
tableName: "context_configs";
|
|
610
|
-
dataType: "string";
|
|
611
|
-
columnType: "SQLiteText";
|
|
612
|
-
data: string;
|
|
613
|
-
driverParam: string;
|
|
614
|
-
notNull: true;
|
|
615
|
-
hasDefault: false;
|
|
616
|
-
isPrimaryKey: false;
|
|
617
|
-
isAutoincrement: false;
|
|
618
|
-
hasRuntimeDefault: false;
|
|
619
|
-
enumValues: [string, ...string[]];
|
|
620
|
-
baseColumn: never;
|
|
621
|
-
identity: undefined;
|
|
622
|
-
generated: undefined;
|
|
623
|
-
}, {}, {
|
|
624
|
-
length: number | undefined;
|
|
625
|
-
}>;
|
|
626
617
|
graphId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
627
618
|
name: "graph_id";
|
|
628
619
|
tableName: "context_configs";
|
|
@@ -2329,27 +2320,8 @@ declare const artifactComponents: drizzle_orm_sqlite_core.SQLiteTableWithColumns
|
|
|
2329
2320
|
}, {}, {
|
|
2330
2321
|
length: number | undefined;
|
|
2331
2322
|
}>;
|
|
2332
|
-
|
|
2333
|
-
name: "
|
|
2334
|
-
tableName: "artifact_components";
|
|
2335
|
-
dataType: "json";
|
|
2336
|
-
columnType: "SQLiteBlobJson";
|
|
2337
|
-
data: Record<string, unknown>;
|
|
2338
|
-
driverParam: Buffer<ArrayBufferLike>;
|
|
2339
|
-
notNull: false;
|
|
2340
|
-
hasDefault: false;
|
|
2341
|
-
isPrimaryKey: false;
|
|
2342
|
-
isAutoincrement: false;
|
|
2343
|
-
hasRuntimeDefault: false;
|
|
2344
|
-
enumValues: undefined;
|
|
2345
|
-
baseColumn: never;
|
|
2346
|
-
identity: undefined;
|
|
2347
|
-
generated: undefined;
|
|
2348
|
-
}, {}, {
|
|
2349
|
-
$type: Record<string, unknown>;
|
|
2350
|
-
}>;
|
|
2351
|
-
fullProps: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2352
|
-
name: "full_props";
|
|
2323
|
+
props: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2324
|
+
name: "props";
|
|
2353
2325
|
tableName: "artifact_components";
|
|
2354
2326
|
dataType: "json";
|
|
2355
2327
|
columnType: "SQLiteBlobJson";
|
|
@@ -2666,6 +2638,25 @@ declare const tools: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
2666
2638
|
}, {}, {
|
|
2667
2639
|
length: number | undefined;
|
|
2668
2640
|
}>;
|
|
2641
|
+
description: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2642
|
+
name: "description";
|
|
2643
|
+
tableName: "tools";
|
|
2644
|
+
dataType: "string";
|
|
2645
|
+
columnType: "SQLiteText";
|
|
2646
|
+
data: string;
|
|
2647
|
+
driverParam: string;
|
|
2648
|
+
notNull: false;
|
|
2649
|
+
hasDefault: false;
|
|
2650
|
+
isPrimaryKey: false;
|
|
2651
|
+
isAutoincrement: false;
|
|
2652
|
+
hasRuntimeDefault: false;
|
|
2653
|
+
enumValues: [string, ...string[]];
|
|
2654
|
+
baseColumn: never;
|
|
2655
|
+
identity: undefined;
|
|
2656
|
+
generated: undefined;
|
|
2657
|
+
}, {}, {
|
|
2658
|
+
length: number | undefined;
|
|
2659
|
+
}>;
|
|
2669
2660
|
config: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2670
2661
|
name: "config";
|
|
2671
2662
|
tableName: "tools";
|
|
@@ -2674,6 +2665,13 @@ declare const tools: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
2674
2665
|
data: {
|
|
2675
2666
|
type: "mcp";
|
|
2676
2667
|
mcp: ToolMcpConfig;
|
|
2668
|
+
} | {
|
|
2669
|
+
type: "function";
|
|
2670
|
+
function?: {
|
|
2671
|
+
inputSchema: Record<string, unknown>;
|
|
2672
|
+
executeCode: string;
|
|
2673
|
+
dependencies: Record<string, unknown>;
|
|
2674
|
+
};
|
|
2677
2675
|
};
|
|
2678
2676
|
driverParam: Buffer<ArrayBufferLike>;
|
|
2679
2677
|
notNull: true;
|
|
@@ -2689,8 +2687,34 @@ declare const tools: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
2689
2687
|
$type: {
|
|
2690
2688
|
type: "mcp";
|
|
2691
2689
|
mcp: ToolMcpConfig;
|
|
2690
|
+
} | {
|
|
2691
|
+
type: "function";
|
|
2692
|
+
function?: {
|
|
2693
|
+
inputSchema: Record<string, unknown>;
|
|
2694
|
+
executeCode: string;
|
|
2695
|
+
dependencies: Record<string, unknown>;
|
|
2696
|
+
};
|
|
2692
2697
|
};
|
|
2693
2698
|
}>;
|
|
2699
|
+
functionId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2700
|
+
name: "function_id";
|
|
2701
|
+
tableName: "tools";
|
|
2702
|
+
dataType: "string";
|
|
2703
|
+
columnType: "SQLiteText";
|
|
2704
|
+
data: string;
|
|
2705
|
+
driverParam: string;
|
|
2706
|
+
notNull: false;
|
|
2707
|
+
hasDefault: false;
|
|
2708
|
+
isPrimaryKey: false;
|
|
2709
|
+
isAutoincrement: false;
|
|
2710
|
+
hasRuntimeDefault: false;
|
|
2711
|
+
enumValues: [string, ...string[]];
|
|
2712
|
+
baseColumn: never;
|
|
2713
|
+
identity: undefined;
|
|
2714
|
+
generated: undefined;
|
|
2715
|
+
}, {}, {
|
|
2716
|
+
length: number | undefined;
|
|
2717
|
+
}>;
|
|
2694
2718
|
credentialReferenceId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2695
2719
|
name: "credential_reference_id";
|
|
2696
2720
|
tableName: "tools";
|
|
@@ -2846,6 +2870,165 @@ declare const tools: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
2846
2870
|
};
|
|
2847
2871
|
dialect: "sqlite";
|
|
2848
2872
|
}>;
|
|
2873
|
+
declare const functions: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
2874
|
+
name: "functions";
|
|
2875
|
+
schema: undefined;
|
|
2876
|
+
columns: {
|
|
2877
|
+
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2878
|
+
name: "created_at";
|
|
2879
|
+
tableName: "functions";
|
|
2880
|
+
dataType: "string";
|
|
2881
|
+
columnType: "SQLiteText";
|
|
2882
|
+
data: string;
|
|
2883
|
+
driverParam: string;
|
|
2884
|
+
notNull: true;
|
|
2885
|
+
hasDefault: true;
|
|
2886
|
+
isPrimaryKey: false;
|
|
2887
|
+
isAutoincrement: false;
|
|
2888
|
+
hasRuntimeDefault: false;
|
|
2889
|
+
enumValues: [string, ...string[]];
|
|
2890
|
+
baseColumn: never;
|
|
2891
|
+
identity: undefined;
|
|
2892
|
+
generated: undefined;
|
|
2893
|
+
}, {}, {
|
|
2894
|
+
length: number | undefined;
|
|
2895
|
+
}>;
|
|
2896
|
+
updatedAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2897
|
+
name: "updated_at";
|
|
2898
|
+
tableName: "functions";
|
|
2899
|
+
dataType: "string";
|
|
2900
|
+
columnType: "SQLiteText";
|
|
2901
|
+
data: string;
|
|
2902
|
+
driverParam: string;
|
|
2903
|
+
notNull: true;
|
|
2904
|
+
hasDefault: true;
|
|
2905
|
+
isPrimaryKey: false;
|
|
2906
|
+
isAutoincrement: false;
|
|
2907
|
+
hasRuntimeDefault: false;
|
|
2908
|
+
enumValues: [string, ...string[]];
|
|
2909
|
+
baseColumn: never;
|
|
2910
|
+
identity: undefined;
|
|
2911
|
+
generated: undefined;
|
|
2912
|
+
}, {}, {
|
|
2913
|
+
length: number | undefined;
|
|
2914
|
+
}>;
|
|
2915
|
+
inputSchema: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2916
|
+
name: "input_schema";
|
|
2917
|
+
tableName: "functions";
|
|
2918
|
+
dataType: "json";
|
|
2919
|
+
columnType: "SQLiteBlobJson";
|
|
2920
|
+
data: Record<string, unknown>;
|
|
2921
|
+
driverParam: Buffer<ArrayBufferLike>;
|
|
2922
|
+
notNull: false;
|
|
2923
|
+
hasDefault: false;
|
|
2924
|
+
isPrimaryKey: false;
|
|
2925
|
+
isAutoincrement: false;
|
|
2926
|
+
hasRuntimeDefault: false;
|
|
2927
|
+
enumValues: undefined;
|
|
2928
|
+
baseColumn: never;
|
|
2929
|
+
identity: undefined;
|
|
2930
|
+
generated: undefined;
|
|
2931
|
+
}, {}, {
|
|
2932
|
+
$type: Record<string, unknown>;
|
|
2933
|
+
}>;
|
|
2934
|
+
executeCode: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2935
|
+
name: "execute_code";
|
|
2936
|
+
tableName: "functions";
|
|
2937
|
+
dataType: "string";
|
|
2938
|
+
columnType: "SQLiteText";
|
|
2939
|
+
data: string;
|
|
2940
|
+
driverParam: string;
|
|
2941
|
+
notNull: true;
|
|
2942
|
+
hasDefault: false;
|
|
2943
|
+
isPrimaryKey: false;
|
|
2944
|
+
isAutoincrement: false;
|
|
2945
|
+
hasRuntimeDefault: false;
|
|
2946
|
+
enumValues: [string, ...string[]];
|
|
2947
|
+
baseColumn: never;
|
|
2948
|
+
identity: undefined;
|
|
2949
|
+
generated: undefined;
|
|
2950
|
+
}, {}, {
|
|
2951
|
+
length: number | undefined;
|
|
2952
|
+
}>;
|
|
2953
|
+
dependencies: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2954
|
+
name: "dependencies";
|
|
2955
|
+
tableName: "functions";
|
|
2956
|
+
dataType: "json";
|
|
2957
|
+
columnType: "SQLiteBlobJson";
|
|
2958
|
+
data: Record<string, string>;
|
|
2959
|
+
driverParam: Buffer<ArrayBufferLike>;
|
|
2960
|
+
notNull: false;
|
|
2961
|
+
hasDefault: false;
|
|
2962
|
+
isPrimaryKey: false;
|
|
2963
|
+
isAutoincrement: false;
|
|
2964
|
+
hasRuntimeDefault: false;
|
|
2965
|
+
enumValues: undefined;
|
|
2966
|
+
baseColumn: never;
|
|
2967
|
+
identity: undefined;
|
|
2968
|
+
generated: undefined;
|
|
2969
|
+
}, {}, {
|
|
2970
|
+
$type: Record<string, string>;
|
|
2971
|
+
}>;
|
|
2972
|
+
projectId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2973
|
+
name: "project_id";
|
|
2974
|
+
tableName: "functions";
|
|
2975
|
+
dataType: "string";
|
|
2976
|
+
columnType: "SQLiteText";
|
|
2977
|
+
data: string;
|
|
2978
|
+
driverParam: string;
|
|
2979
|
+
notNull: true;
|
|
2980
|
+
hasDefault: false;
|
|
2981
|
+
isPrimaryKey: false;
|
|
2982
|
+
isAutoincrement: false;
|
|
2983
|
+
hasRuntimeDefault: false;
|
|
2984
|
+
enumValues: [string, ...string[]];
|
|
2985
|
+
baseColumn: never;
|
|
2986
|
+
identity: undefined;
|
|
2987
|
+
generated: undefined;
|
|
2988
|
+
}, {}, {
|
|
2989
|
+
length: number | undefined;
|
|
2990
|
+
}>;
|
|
2991
|
+
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2992
|
+
name: "tenant_id";
|
|
2993
|
+
tableName: "functions";
|
|
2994
|
+
dataType: "string";
|
|
2995
|
+
columnType: "SQLiteText";
|
|
2996
|
+
data: string;
|
|
2997
|
+
driverParam: string;
|
|
2998
|
+
notNull: true;
|
|
2999
|
+
hasDefault: false;
|
|
3000
|
+
isPrimaryKey: false;
|
|
3001
|
+
isAutoincrement: false;
|
|
3002
|
+
hasRuntimeDefault: false;
|
|
3003
|
+
enumValues: [string, ...string[]];
|
|
3004
|
+
baseColumn: never;
|
|
3005
|
+
identity: undefined;
|
|
3006
|
+
generated: undefined;
|
|
3007
|
+
}, {}, {
|
|
3008
|
+
length: number | undefined;
|
|
3009
|
+
}>;
|
|
3010
|
+
id: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3011
|
+
name: "id";
|
|
3012
|
+
tableName: "functions";
|
|
3013
|
+
dataType: "string";
|
|
3014
|
+
columnType: "SQLiteText";
|
|
3015
|
+
data: string;
|
|
3016
|
+
driverParam: string;
|
|
3017
|
+
notNull: true;
|
|
3018
|
+
hasDefault: false;
|
|
3019
|
+
isPrimaryKey: false;
|
|
3020
|
+
isAutoincrement: false;
|
|
3021
|
+
hasRuntimeDefault: false;
|
|
3022
|
+
enumValues: [string, ...string[]];
|
|
3023
|
+
baseColumn: never;
|
|
3024
|
+
identity: undefined;
|
|
3025
|
+
generated: undefined;
|
|
3026
|
+
}, {}, {
|
|
3027
|
+
length: number | undefined;
|
|
3028
|
+
}>;
|
|
3029
|
+
};
|
|
3030
|
+
dialect: "sqlite";
|
|
3031
|
+
}>;
|
|
2849
3032
|
declare const agentToolRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
2850
3033
|
name: "agent_tool_relations";
|
|
2851
3034
|
schema: undefined;
|
|
@@ -4441,6 +4624,7 @@ declare const toolsRelations: drizzle_orm.Relations<"tools", {
|
|
|
4441
4624
|
project: drizzle_orm.One<"projects", true>;
|
|
4442
4625
|
agentRelations: drizzle_orm.Many<"agent_tool_relations">;
|
|
4443
4626
|
credentialReference: drizzle_orm.One<"credential_references", false>;
|
|
4627
|
+
function: drizzle_orm.One<"functions", false>;
|
|
4444
4628
|
}>;
|
|
4445
4629
|
declare const conversationsRelations: drizzle_orm.Relations<"conversations", {
|
|
4446
4630
|
project: drizzle_orm.One<"projects", true>;
|
|
@@ -4477,6 +4661,9 @@ declare const ledgerArtifactsRelations: drizzle_orm.Relations<"ledger_artifacts"
|
|
|
4477
4661
|
project: drizzle_orm.One<"projects", true>;
|
|
4478
4662
|
task: drizzle_orm.One<"tasks", true>;
|
|
4479
4663
|
}>;
|
|
4664
|
+
declare const functionsRelations: drizzle_orm.Relations<"functions", {
|
|
4665
|
+
tools: drizzle_orm.Many<"tools">;
|
|
4666
|
+
}>;
|
|
4480
4667
|
declare const agentRelationsRelations: drizzle_orm.Relations<"agent_relations", {
|
|
4481
4668
|
graph: drizzle_orm.One<"agent_graph", true>;
|
|
4482
4669
|
sourceAgent: drizzle_orm.One<"agents", true>;
|
|
@@ -4512,6 +4699,8 @@ declare const schema_dataComponents: typeof dataComponents;
|
|
|
4512
4699
|
declare const schema_dataComponentsRelations: typeof dataComponentsRelations;
|
|
4513
4700
|
declare const schema_externalAgents: typeof externalAgents;
|
|
4514
4701
|
declare const schema_externalAgentsRelations: typeof externalAgentsRelations;
|
|
4702
|
+
declare const schema_functions: typeof functions;
|
|
4703
|
+
declare const schema_functionsRelations: typeof functionsRelations;
|
|
4515
4704
|
declare const schema_ledgerArtifacts: typeof ledgerArtifacts;
|
|
4516
4705
|
declare const schema_ledgerArtifactsRelations: typeof ledgerArtifactsRelations;
|
|
4517
4706
|
declare const schema_messages: typeof messages;
|
|
@@ -4525,7 +4714,7 @@ declare const schema_tasksRelations: typeof tasksRelations;
|
|
|
4525
4714
|
declare const schema_tools: typeof tools;
|
|
4526
4715
|
declare const schema_toolsRelations: typeof toolsRelations;
|
|
4527
4716
|
declare namespace schema {
|
|
4528
|
-
export { schema_agentArtifactComponents as agentArtifactComponents, schema_agentArtifactComponentsRelations as agentArtifactComponentsRelations, schema_agentDataComponents as agentDataComponents, schema_agentDataComponentsRelations as agentDataComponentsRelations, schema_agentGraph as agentGraph, schema_agentGraphRelations as agentGraphRelations, schema_agentRelations as agentRelations, schema_agentRelationsRelations as agentRelationsRelations, schema_agentToolRelations as agentToolRelations, schema_agentToolRelationsRelations as agentToolRelationsRelations, schema_agents as agents, schema_agentsRelations as agentsRelations, schema_apiKeys as apiKeys, schema_apiKeysRelations as apiKeysRelations, schema_artifactComponents as artifactComponents, schema_artifactComponentsRelations as artifactComponentsRelations, schema_contextCache as contextCache, schema_contextCacheRelations as contextCacheRelations, schema_contextConfigs as contextConfigs, schema_contextConfigsRelations as contextConfigsRelations, schema_conversations as conversations, schema_conversationsRelations as conversationsRelations, schema_credentialReferences as credentialReferences, schema_credentialReferencesRelations as credentialReferencesRelations, schema_dataComponents as dataComponents, schema_dataComponentsRelations as dataComponentsRelations, schema_externalAgents as externalAgents, schema_externalAgentsRelations as externalAgentsRelations, schema_ledgerArtifacts as ledgerArtifacts, schema_ledgerArtifactsRelations as ledgerArtifactsRelations, schema_messages as messages, schema_messagesRelations as messagesRelations, schema_projects as projects, schema_projectsRelations as projectsRelations, schema_taskRelations as taskRelations, schema_taskRelationsRelations as taskRelationsRelations, schema_tasks as tasks, schema_tasksRelations as tasksRelations, schema_tools as tools, schema_toolsRelations as toolsRelations };
|
|
4717
|
+
export { schema_agentArtifactComponents as agentArtifactComponents, schema_agentArtifactComponentsRelations as agentArtifactComponentsRelations, schema_agentDataComponents as agentDataComponents, schema_agentDataComponentsRelations as agentDataComponentsRelations, schema_agentGraph as agentGraph, schema_agentGraphRelations as agentGraphRelations, schema_agentRelations as agentRelations, schema_agentRelationsRelations as agentRelationsRelations, schema_agentToolRelations as agentToolRelations, schema_agentToolRelationsRelations as agentToolRelationsRelations, schema_agents as agents, schema_agentsRelations as agentsRelations, schema_apiKeys as apiKeys, schema_apiKeysRelations as apiKeysRelations, schema_artifactComponents as artifactComponents, schema_artifactComponentsRelations as artifactComponentsRelations, schema_contextCache as contextCache, schema_contextCacheRelations as contextCacheRelations, schema_contextConfigs as contextConfigs, schema_contextConfigsRelations as contextConfigsRelations, schema_conversations as conversations, schema_conversationsRelations as conversationsRelations, schema_credentialReferences as credentialReferences, schema_credentialReferencesRelations as credentialReferencesRelations, schema_dataComponents as dataComponents, schema_dataComponentsRelations as dataComponentsRelations, schema_externalAgents as externalAgents, schema_externalAgentsRelations as externalAgentsRelations, schema_functions as functions, schema_functionsRelations as functionsRelations, schema_ledgerArtifacts as ledgerArtifacts, schema_ledgerArtifactsRelations as ledgerArtifactsRelations, schema_messages as messages, schema_messagesRelations as messagesRelations, schema_projects as projects, schema_projectsRelations as projectsRelations, schema_taskRelations as taskRelations, schema_taskRelationsRelations as taskRelationsRelations, schema_tasks as tasks, schema_tasksRelations as tasksRelations, schema_tools as tools, schema_toolsRelations as toolsRelations };
|
|
4529
4718
|
}
|
|
4530
4719
|
|
|
4531
|
-
export {
|
|
4720
|
+
export { contextCacheRelations as A, agentsRelations as B, agentGraphRelations as C, externalAgentsRelations as D, apiKeysRelations as E, agentToolRelationsRelations as F, credentialReferencesRelations as G, toolsRelations as H, conversationsRelations as I, messagesRelations as J, artifactComponentsRelations as K, agentArtifactComponentsRelations as L, dataComponentsRelations as M, agentDataComponentsRelations as N, ledgerArtifactsRelations as O, functionsRelations as P, agentRelationsRelations as Q, agentGraph as a, contextCache as b, contextConfigs as c, agents as d, agentRelations as e, externalAgents as f, taskRelations as g, dataComponents as h, agentDataComponents as i, artifactComponents as j, agentArtifactComponents as k, tools as l, functions as m, agentToolRelations as n, conversations as o, projects as p, messages as q, ledgerArtifacts as r, schema as s, tasks as t, apiKeys as u, credentialReferences as v, tasksRelations as w, projectsRelations as x, taskRelationsRelations as y, contextConfigsRelations as z };
|