@inkeep/agents-core 0.0.0-dev-20251010165126 → 0.0.0-dev-20251010180500
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-NEJ3QDK6.js → chunk-E4SFK6AI.js} +50 -30
- package/dist/{chunk-5LRSB445.js → chunk-ID4CFGVF.js} +88 -14
- package/dist/{chunk-2TJ2L67D.js → chunk-JTHQYGCX.js} +1 -1
- package/dist/client-exports.cjs +133 -43
- package/dist/client-exports.d.cts +2 -2
- package/dist/client-exports.d.ts +2 -2
- package/dist/client-exports.js +2 -2
- package/dist/db/schema.cjs +87 -13
- 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 +992 -424
- package/dist/index.d.cts +168 -54
- package/dist/index.d.ts +168 -54
- package/dist/index.js +835 -382
- package/dist/{schema-BwkT6bbU.d.cts → schema-Bjy5TkFv.d.cts} +358 -38
- package/dist/{schema-B6nVWV--.d.ts → schema-CfWbqju2.d.ts} +358 -38
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/{utility-D_8q6Vlh.d.cts → utility-Fxoh7s82.d.cts} +409 -137
- package/dist/{utility-D_8q6Vlh.d.ts → utility-Fxoh7s82.d.ts} +409 -137
- package/dist/validation/index.cjs +138 -41
- package/dist/validation/index.d.cts +2 -2
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/drizzle/0006_damp_lenny_balinger.sql +52 -0
- package/drizzle/meta/0006_snapshot.json +2751 -0
- package/drizzle/meta/_journal.json +7 -0
- package/package.json +1 -1
|
@@ -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 { 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-
|
|
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-Fxoh7s82.js';
|
|
4
4
|
|
|
5
5
|
declare const projects: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
6
6
|
name: "projects";
|
|
@@ -2665,13 +2665,6 @@ declare const tools: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
2665
2665
|
data: {
|
|
2666
2666
|
type: "mcp";
|
|
2667
2667
|
mcp: ToolMcpConfig;
|
|
2668
|
-
} | {
|
|
2669
|
-
type: "function";
|
|
2670
|
-
function?: {
|
|
2671
|
-
inputSchema: Record<string, unknown>;
|
|
2672
|
-
executeCode: string;
|
|
2673
|
-
dependencies: Record<string, unknown>;
|
|
2674
|
-
};
|
|
2675
2668
|
};
|
|
2676
2669
|
driverParam: Buffer<ArrayBufferLike>;
|
|
2677
2670
|
notNull: true;
|
|
@@ -2687,34 +2680,8 @@ declare const tools: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
2687
2680
|
$type: {
|
|
2688
2681
|
type: "mcp";
|
|
2689
2682
|
mcp: ToolMcpConfig;
|
|
2690
|
-
} | {
|
|
2691
|
-
type: "function";
|
|
2692
|
-
function?: {
|
|
2693
|
-
inputSchema: Record<string, unknown>;
|
|
2694
|
-
executeCode: string;
|
|
2695
|
-
dependencies: Record<string, unknown>;
|
|
2696
|
-
};
|
|
2697
2683
|
};
|
|
2698
2684
|
}>;
|
|
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
|
-
}>;
|
|
2718
2685
|
credentialReferenceId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2719
2686
|
name: "credential_reference_id";
|
|
2720
2687
|
tableName: "tools";
|
|
@@ -2870,6 +2837,184 @@ declare const tools: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
2870
2837
|
};
|
|
2871
2838
|
dialect: "sqlite";
|
|
2872
2839
|
}>;
|
|
2840
|
+
declare const functionTools: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
2841
|
+
name: "function_tools";
|
|
2842
|
+
schema: undefined;
|
|
2843
|
+
columns: {
|
|
2844
|
+
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2845
|
+
name: "created_at";
|
|
2846
|
+
tableName: "function_tools";
|
|
2847
|
+
dataType: "string";
|
|
2848
|
+
columnType: "SQLiteText";
|
|
2849
|
+
data: string;
|
|
2850
|
+
driverParam: string;
|
|
2851
|
+
notNull: true;
|
|
2852
|
+
hasDefault: true;
|
|
2853
|
+
isPrimaryKey: false;
|
|
2854
|
+
isAutoincrement: false;
|
|
2855
|
+
hasRuntimeDefault: false;
|
|
2856
|
+
enumValues: [string, ...string[]];
|
|
2857
|
+
baseColumn: never;
|
|
2858
|
+
identity: undefined;
|
|
2859
|
+
generated: undefined;
|
|
2860
|
+
}, {}, {
|
|
2861
|
+
length: number | undefined;
|
|
2862
|
+
}>;
|
|
2863
|
+
updatedAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2864
|
+
name: "updated_at";
|
|
2865
|
+
tableName: "function_tools";
|
|
2866
|
+
dataType: "string";
|
|
2867
|
+
columnType: "SQLiteText";
|
|
2868
|
+
data: string;
|
|
2869
|
+
driverParam: string;
|
|
2870
|
+
notNull: true;
|
|
2871
|
+
hasDefault: true;
|
|
2872
|
+
isPrimaryKey: false;
|
|
2873
|
+
isAutoincrement: false;
|
|
2874
|
+
hasRuntimeDefault: false;
|
|
2875
|
+
enumValues: [string, ...string[]];
|
|
2876
|
+
baseColumn: never;
|
|
2877
|
+
identity: undefined;
|
|
2878
|
+
generated: undefined;
|
|
2879
|
+
}, {}, {
|
|
2880
|
+
length: number | undefined;
|
|
2881
|
+
}>;
|
|
2882
|
+
name: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2883
|
+
name: "name";
|
|
2884
|
+
tableName: "function_tools";
|
|
2885
|
+
dataType: "string";
|
|
2886
|
+
columnType: "SQLiteText";
|
|
2887
|
+
data: string;
|
|
2888
|
+
driverParam: string;
|
|
2889
|
+
notNull: true;
|
|
2890
|
+
hasDefault: false;
|
|
2891
|
+
isPrimaryKey: false;
|
|
2892
|
+
isAutoincrement: false;
|
|
2893
|
+
hasRuntimeDefault: false;
|
|
2894
|
+
enumValues: [string, ...string[]];
|
|
2895
|
+
baseColumn: never;
|
|
2896
|
+
identity: undefined;
|
|
2897
|
+
generated: undefined;
|
|
2898
|
+
}, {}, {
|
|
2899
|
+
length: number | undefined;
|
|
2900
|
+
}>;
|
|
2901
|
+
description: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2902
|
+
name: "description";
|
|
2903
|
+
tableName: "function_tools";
|
|
2904
|
+
dataType: "string";
|
|
2905
|
+
columnType: "SQLiteText";
|
|
2906
|
+
data: string;
|
|
2907
|
+
driverParam: string;
|
|
2908
|
+
notNull: false;
|
|
2909
|
+
hasDefault: false;
|
|
2910
|
+
isPrimaryKey: false;
|
|
2911
|
+
isAutoincrement: false;
|
|
2912
|
+
hasRuntimeDefault: false;
|
|
2913
|
+
enumValues: [string, ...string[]];
|
|
2914
|
+
baseColumn: never;
|
|
2915
|
+
identity: undefined;
|
|
2916
|
+
generated: undefined;
|
|
2917
|
+
}, {}, {
|
|
2918
|
+
length: number | undefined;
|
|
2919
|
+
}>;
|
|
2920
|
+
functionId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2921
|
+
name: "function_id";
|
|
2922
|
+
tableName: "function_tools";
|
|
2923
|
+
dataType: "string";
|
|
2924
|
+
columnType: "SQLiteText";
|
|
2925
|
+
data: string;
|
|
2926
|
+
driverParam: string;
|
|
2927
|
+
notNull: true;
|
|
2928
|
+
hasDefault: false;
|
|
2929
|
+
isPrimaryKey: false;
|
|
2930
|
+
isAutoincrement: false;
|
|
2931
|
+
hasRuntimeDefault: false;
|
|
2932
|
+
enumValues: [string, ...string[]];
|
|
2933
|
+
baseColumn: never;
|
|
2934
|
+
identity: undefined;
|
|
2935
|
+
generated: undefined;
|
|
2936
|
+
}, {}, {
|
|
2937
|
+
length: number | undefined;
|
|
2938
|
+
}>;
|
|
2939
|
+
graphId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2940
|
+
name: "graph_id";
|
|
2941
|
+
tableName: "function_tools";
|
|
2942
|
+
dataType: "string";
|
|
2943
|
+
columnType: "SQLiteText";
|
|
2944
|
+
data: string;
|
|
2945
|
+
driverParam: string;
|
|
2946
|
+
notNull: true;
|
|
2947
|
+
hasDefault: false;
|
|
2948
|
+
isPrimaryKey: false;
|
|
2949
|
+
isAutoincrement: false;
|
|
2950
|
+
hasRuntimeDefault: false;
|
|
2951
|
+
enumValues: [string, ...string[]];
|
|
2952
|
+
baseColumn: never;
|
|
2953
|
+
identity: undefined;
|
|
2954
|
+
generated: undefined;
|
|
2955
|
+
}, {}, {
|
|
2956
|
+
length: number | undefined;
|
|
2957
|
+
}>;
|
|
2958
|
+
projectId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2959
|
+
name: "project_id";
|
|
2960
|
+
tableName: "function_tools";
|
|
2961
|
+
dataType: "string";
|
|
2962
|
+
columnType: "SQLiteText";
|
|
2963
|
+
data: string;
|
|
2964
|
+
driverParam: string;
|
|
2965
|
+
notNull: true;
|
|
2966
|
+
hasDefault: false;
|
|
2967
|
+
isPrimaryKey: false;
|
|
2968
|
+
isAutoincrement: false;
|
|
2969
|
+
hasRuntimeDefault: false;
|
|
2970
|
+
enumValues: [string, ...string[]];
|
|
2971
|
+
baseColumn: never;
|
|
2972
|
+
identity: undefined;
|
|
2973
|
+
generated: undefined;
|
|
2974
|
+
}, {}, {
|
|
2975
|
+
length: number | undefined;
|
|
2976
|
+
}>;
|
|
2977
|
+
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2978
|
+
name: "tenant_id";
|
|
2979
|
+
tableName: "function_tools";
|
|
2980
|
+
dataType: "string";
|
|
2981
|
+
columnType: "SQLiteText";
|
|
2982
|
+
data: string;
|
|
2983
|
+
driverParam: string;
|
|
2984
|
+
notNull: true;
|
|
2985
|
+
hasDefault: false;
|
|
2986
|
+
isPrimaryKey: false;
|
|
2987
|
+
isAutoincrement: false;
|
|
2988
|
+
hasRuntimeDefault: false;
|
|
2989
|
+
enumValues: [string, ...string[]];
|
|
2990
|
+
baseColumn: never;
|
|
2991
|
+
identity: undefined;
|
|
2992
|
+
generated: undefined;
|
|
2993
|
+
}, {}, {
|
|
2994
|
+
length: number | undefined;
|
|
2995
|
+
}>;
|
|
2996
|
+
id: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2997
|
+
name: "id";
|
|
2998
|
+
tableName: "function_tools";
|
|
2999
|
+
dataType: "string";
|
|
3000
|
+
columnType: "SQLiteText";
|
|
3001
|
+
data: string;
|
|
3002
|
+
driverParam: string;
|
|
3003
|
+
notNull: true;
|
|
3004
|
+
hasDefault: false;
|
|
3005
|
+
isPrimaryKey: false;
|
|
3006
|
+
isAutoincrement: false;
|
|
3007
|
+
hasRuntimeDefault: false;
|
|
3008
|
+
enumValues: [string, ...string[]];
|
|
3009
|
+
baseColumn: never;
|
|
3010
|
+
identity: undefined;
|
|
3011
|
+
generated: undefined;
|
|
3012
|
+
}, {}, {
|
|
3013
|
+
length: number | undefined;
|
|
3014
|
+
}>;
|
|
3015
|
+
};
|
|
3016
|
+
dialect: "sqlite";
|
|
3017
|
+
}>;
|
|
2873
3018
|
declare const functions: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
2874
3019
|
name: "functions";
|
|
2875
3020
|
schema: undefined;
|
|
@@ -3226,6 +3371,165 @@ declare const subAgentToolRelations: drizzle_orm_sqlite_core.SQLiteTableWithColu
|
|
|
3226
3371
|
};
|
|
3227
3372
|
dialect: "sqlite";
|
|
3228
3373
|
}>;
|
|
3374
|
+
declare const agentFunctionToolRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
3375
|
+
name: "agent_function_tool_relations";
|
|
3376
|
+
schema: undefined;
|
|
3377
|
+
columns: {
|
|
3378
|
+
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3379
|
+
name: "created_at";
|
|
3380
|
+
tableName: "agent_function_tool_relations";
|
|
3381
|
+
dataType: "string";
|
|
3382
|
+
columnType: "SQLiteText";
|
|
3383
|
+
data: string;
|
|
3384
|
+
driverParam: string;
|
|
3385
|
+
notNull: true;
|
|
3386
|
+
hasDefault: true;
|
|
3387
|
+
isPrimaryKey: false;
|
|
3388
|
+
isAutoincrement: false;
|
|
3389
|
+
hasRuntimeDefault: false;
|
|
3390
|
+
enumValues: [string, ...string[]];
|
|
3391
|
+
baseColumn: never;
|
|
3392
|
+
identity: undefined;
|
|
3393
|
+
generated: undefined;
|
|
3394
|
+
}, {}, {
|
|
3395
|
+
length: number | undefined;
|
|
3396
|
+
}>;
|
|
3397
|
+
updatedAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3398
|
+
name: "updated_at";
|
|
3399
|
+
tableName: "agent_function_tool_relations";
|
|
3400
|
+
dataType: "string";
|
|
3401
|
+
columnType: "SQLiteText";
|
|
3402
|
+
data: string;
|
|
3403
|
+
driverParam: string;
|
|
3404
|
+
notNull: true;
|
|
3405
|
+
hasDefault: true;
|
|
3406
|
+
isPrimaryKey: false;
|
|
3407
|
+
isAutoincrement: false;
|
|
3408
|
+
hasRuntimeDefault: false;
|
|
3409
|
+
enumValues: [string, ...string[]];
|
|
3410
|
+
baseColumn: never;
|
|
3411
|
+
identity: undefined;
|
|
3412
|
+
generated: undefined;
|
|
3413
|
+
}, {}, {
|
|
3414
|
+
length: number | undefined;
|
|
3415
|
+
}>;
|
|
3416
|
+
functionToolId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3417
|
+
name: "function_tool_id";
|
|
3418
|
+
tableName: "agent_function_tool_relations";
|
|
3419
|
+
dataType: "string";
|
|
3420
|
+
columnType: "SQLiteText";
|
|
3421
|
+
data: string;
|
|
3422
|
+
driverParam: string;
|
|
3423
|
+
notNull: true;
|
|
3424
|
+
hasDefault: false;
|
|
3425
|
+
isPrimaryKey: false;
|
|
3426
|
+
isAutoincrement: false;
|
|
3427
|
+
hasRuntimeDefault: false;
|
|
3428
|
+
enumValues: [string, ...string[]];
|
|
3429
|
+
baseColumn: never;
|
|
3430
|
+
identity: undefined;
|
|
3431
|
+
generated: undefined;
|
|
3432
|
+
}, {}, {
|
|
3433
|
+
length: number | undefined;
|
|
3434
|
+
}>;
|
|
3435
|
+
subAgentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3436
|
+
name: "sub_agent_id";
|
|
3437
|
+
tableName: "agent_function_tool_relations";
|
|
3438
|
+
dataType: "string";
|
|
3439
|
+
columnType: "SQLiteText";
|
|
3440
|
+
data: string;
|
|
3441
|
+
driverParam: string;
|
|
3442
|
+
notNull: true;
|
|
3443
|
+
hasDefault: false;
|
|
3444
|
+
isPrimaryKey: false;
|
|
3445
|
+
isAutoincrement: false;
|
|
3446
|
+
hasRuntimeDefault: false;
|
|
3447
|
+
enumValues: [string, ...string[]];
|
|
3448
|
+
baseColumn: never;
|
|
3449
|
+
identity: undefined;
|
|
3450
|
+
generated: undefined;
|
|
3451
|
+
}, {}, {
|
|
3452
|
+
length: number | undefined;
|
|
3453
|
+
}>;
|
|
3454
|
+
graphId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3455
|
+
name: "graph_id";
|
|
3456
|
+
tableName: "agent_function_tool_relations";
|
|
3457
|
+
dataType: "string";
|
|
3458
|
+
columnType: "SQLiteText";
|
|
3459
|
+
data: string;
|
|
3460
|
+
driverParam: string;
|
|
3461
|
+
notNull: true;
|
|
3462
|
+
hasDefault: false;
|
|
3463
|
+
isPrimaryKey: false;
|
|
3464
|
+
isAutoincrement: false;
|
|
3465
|
+
hasRuntimeDefault: false;
|
|
3466
|
+
enumValues: [string, ...string[]];
|
|
3467
|
+
baseColumn: never;
|
|
3468
|
+
identity: undefined;
|
|
3469
|
+
generated: undefined;
|
|
3470
|
+
}, {}, {
|
|
3471
|
+
length: number | undefined;
|
|
3472
|
+
}>;
|
|
3473
|
+
projectId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3474
|
+
name: "project_id";
|
|
3475
|
+
tableName: "agent_function_tool_relations";
|
|
3476
|
+
dataType: "string";
|
|
3477
|
+
columnType: "SQLiteText";
|
|
3478
|
+
data: string;
|
|
3479
|
+
driverParam: string;
|
|
3480
|
+
notNull: true;
|
|
3481
|
+
hasDefault: false;
|
|
3482
|
+
isPrimaryKey: false;
|
|
3483
|
+
isAutoincrement: false;
|
|
3484
|
+
hasRuntimeDefault: false;
|
|
3485
|
+
enumValues: [string, ...string[]];
|
|
3486
|
+
baseColumn: never;
|
|
3487
|
+
identity: undefined;
|
|
3488
|
+
generated: undefined;
|
|
3489
|
+
}, {}, {
|
|
3490
|
+
length: number | undefined;
|
|
3491
|
+
}>;
|
|
3492
|
+
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3493
|
+
name: "tenant_id";
|
|
3494
|
+
tableName: "agent_function_tool_relations";
|
|
3495
|
+
dataType: "string";
|
|
3496
|
+
columnType: "SQLiteText";
|
|
3497
|
+
data: string;
|
|
3498
|
+
driverParam: string;
|
|
3499
|
+
notNull: true;
|
|
3500
|
+
hasDefault: false;
|
|
3501
|
+
isPrimaryKey: false;
|
|
3502
|
+
isAutoincrement: false;
|
|
3503
|
+
hasRuntimeDefault: false;
|
|
3504
|
+
enumValues: [string, ...string[]];
|
|
3505
|
+
baseColumn: never;
|
|
3506
|
+
identity: undefined;
|
|
3507
|
+
generated: undefined;
|
|
3508
|
+
}, {}, {
|
|
3509
|
+
length: number | undefined;
|
|
3510
|
+
}>;
|
|
3511
|
+
id: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3512
|
+
name: "id";
|
|
3513
|
+
tableName: "agent_function_tool_relations";
|
|
3514
|
+
dataType: "string";
|
|
3515
|
+
columnType: "SQLiteText";
|
|
3516
|
+
data: string;
|
|
3517
|
+
driverParam: string;
|
|
3518
|
+
notNull: true;
|
|
3519
|
+
hasDefault: false;
|
|
3520
|
+
isPrimaryKey: false;
|
|
3521
|
+
isAutoincrement: false;
|
|
3522
|
+
hasRuntimeDefault: false;
|
|
3523
|
+
enumValues: [string, ...string[]];
|
|
3524
|
+
baseColumn: never;
|
|
3525
|
+
identity: undefined;
|
|
3526
|
+
generated: undefined;
|
|
3527
|
+
}, {}, {
|
|
3528
|
+
length: number | undefined;
|
|
3529
|
+
}>;
|
|
3530
|
+
};
|
|
3531
|
+
dialect: "sqlite";
|
|
3532
|
+
}>;
|
|
3229
3533
|
declare const conversations: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
3230
3534
|
name: "conversations";
|
|
3231
3535
|
schema: undefined;
|
|
@@ -4546,6 +4850,7 @@ declare const projectsRelations: drizzle_orm.Relations<"projects", {
|
|
|
4546
4850
|
subAgents: drizzle_orm.Many<"sub_agents">;
|
|
4547
4851
|
agentGraphs: drizzle_orm.Many<"agent_graph">;
|
|
4548
4852
|
tools: drizzle_orm.Many<"tools">;
|
|
4853
|
+
functions: drizzle_orm.Many<"functions">;
|
|
4549
4854
|
contextConfigs: drizzle_orm.Many<"context_configs">;
|
|
4550
4855
|
externalAgents: drizzle_orm.Many<"external_agents">;
|
|
4551
4856
|
conversations: drizzle_orm.Many<"conversations">;
|
|
@@ -4577,6 +4882,7 @@ declare const subAgentsRelations: drizzle_orm.Relations<"sub_agents", {
|
|
|
4577
4882
|
receivedMessages: drizzle_orm.Many<"messages">;
|
|
4578
4883
|
associatedMessages: drizzle_orm.Many<"messages">;
|
|
4579
4884
|
toolRelations: drizzle_orm.Many<"sub_agent_tool_relations">;
|
|
4885
|
+
functionToolRelations: drizzle_orm.Many<"agent_function_tool_relations">;
|
|
4580
4886
|
dataComponentRelations: drizzle_orm.Many<"sub_agent_data_components">;
|
|
4581
4887
|
artifactComponentRelations: drizzle_orm.Many<"sub_agent_artifact_components">;
|
|
4582
4888
|
}>;
|
|
@@ -4584,6 +4890,7 @@ declare const agentGraphRelations: drizzle_orm.Relations<"agent_graph", {
|
|
|
4584
4890
|
project: drizzle_orm.One<"projects", true>;
|
|
4585
4891
|
defaultSubAgent: drizzle_orm.One<"sub_agents", false>;
|
|
4586
4892
|
contextConfig: drizzle_orm.One<"context_configs", false>;
|
|
4893
|
+
functionTools: drizzle_orm.Many<"function_tools">;
|
|
4587
4894
|
}>;
|
|
4588
4895
|
declare const externalAgentsRelations: drizzle_orm.Relations<"external_agents", {
|
|
4589
4896
|
project: drizzle_orm.One<"projects", true>;
|
|
@@ -4605,7 +4912,6 @@ declare const toolsRelations: drizzle_orm.Relations<"tools", {
|
|
|
4605
4912
|
project: drizzle_orm.One<"projects", true>;
|
|
4606
4913
|
subAgentRelations: drizzle_orm.Many<"sub_agent_tool_relations">;
|
|
4607
4914
|
credentialReference: drizzle_orm.One<"credential_references", false>;
|
|
4608
|
-
function: drizzle_orm.One<"functions", false>;
|
|
4609
4915
|
}>;
|
|
4610
4916
|
declare const conversationsRelations: drizzle_orm.Relations<"conversations", {
|
|
4611
4917
|
project: drizzle_orm.One<"projects", true>;
|
|
@@ -4643,7 +4949,7 @@ declare const ledgerArtifactsRelations: drizzle_orm.Relations<"ledger_artifacts"
|
|
|
4643
4949
|
task: drizzle_orm.One<"tasks", true>;
|
|
4644
4950
|
}>;
|
|
4645
4951
|
declare const functionsRelations: drizzle_orm.Relations<"functions", {
|
|
4646
|
-
|
|
4952
|
+
functionTools: drizzle_orm.Many<"function_tools">;
|
|
4647
4953
|
}>;
|
|
4648
4954
|
declare const subAgentRelationsRelations: drizzle_orm.Relations<"sub_agent_relations", {
|
|
4649
4955
|
graph: drizzle_orm.One<"agent_graph", true>;
|
|
@@ -4651,7 +4957,19 @@ declare const subAgentRelationsRelations: drizzle_orm.Relations<"sub_agent_relat
|
|
|
4651
4957
|
targetSubAgent: drizzle_orm.One<"sub_agents", false>;
|
|
4652
4958
|
externalAgent: drizzle_orm.One<"external_agents", false>;
|
|
4653
4959
|
}>;
|
|
4960
|
+
declare const functionToolsRelations: drizzle_orm.Relations<"function_tools", {
|
|
4961
|
+
project: drizzle_orm.One<"projects", true>;
|
|
4962
|
+
graph: drizzle_orm.One<"agent_graph", true>;
|
|
4963
|
+
function: drizzle_orm.One<"functions", true>;
|
|
4964
|
+
agentRelations: drizzle_orm.Many<"agent_function_tool_relations">;
|
|
4965
|
+
}>;
|
|
4966
|
+
declare const agentFunctionToolRelationsRelations: drizzle_orm.Relations<"agent_function_tool_relations", {
|
|
4967
|
+
agent: drizzle_orm.One<"sub_agents", true>;
|
|
4968
|
+
functionTool: drizzle_orm.One<"function_tools", true>;
|
|
4969
|
+
}>;
|
|
4654
4970
|
|
|
4971
|
+
declare const schema_agentFunctionToolRelations: typeof agentFunctionToolRelations;
|
|
4972
|
+
declare const schema_agentFunctionToolRelationsRelations: typeof agentFunctionToolRelationsRelations;
|
|
4655
4973
|
declare const schema_agentGraph: typeof agentGraph;
|
|
4656
4974
|
declare const schema_agentGraphRelations: typeof agentGraphRelations;
|
|
4657
4975
|
declare const schema_agentToolRelationsRelations: typeof agentToolRelationsRelations;
|
|
@@ -4671,6 +4989,8 @@ declare const schema_dataComponents: typeof dataComponents;
|
|
|
4671
4989
|
declare const schema_dataComponentsRelations: typeof dataComponentsRelations;
|
|
4672
4990
|
declare const schema_externalAgents: typeof externalAgents;
|
|
4673
4991
|
declare const schema_externalAgentsRelations: typeof externalAgentsRelations;
|
|
4992
|
+
declare const schema_functionTools: typeof functionTools;
|
|
4993
|
+
declare const schema_functionToolsRelations: typeof functionToolsRelations;
|
|
4674
4994
|
declare const schema_functions: typeof functions;
|
|
4675
4995
|
declare const schema_functionsRelations: typeof functionsRelations;
|
|
4676
4996
|
declare const schema_ledgerArtifacts: typeof ledgerArtifacts;
|
|
@@ -4695,7 +5015,7 @@ declare const schema_tasksRelations: typeof tasksRelations;
|
|
|
4695
5015
|
declare const schema_tools: typeof tools;
|
|
4696
5016
|
declare const schema_toolsRelations: typeof toolsRelations;
|
|
4697
5017
|
declare namespace schema {
|
|
4698
|
-
export { schema_agentGraph as agentGraph, schema_agentGraphRelations as agentGraphRelations, schema_agentToolRelationsRelations as agentToolRelationsRelations, 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_subAgentArtifactComponents as subAgentArtifactComponents, schema_subAgentArtifactComponentsRelations as subAgentArtifactComponentsRelations, schema_subAgentDataComponents as subAgentDataComponents, schema_subAgentDataComponentsRelations as subAgentDataComponentsRelations, schema_subAgentRelations as subAgentRelations, schema_subAgentRelationsRelations as subAgentRelationsRelations, schema_subAgentToolRelations as subAgentToolRelations, schema_subAgents as subAgents, schema_subAgentsRelations as subAgentsRelations, schema_taskRelations as taskRelations, schema_taskRelationsRelations as taskRelationsRelations, schema_tasks as tasks, schema_tasksRelations as tasksRelations, schema_tools as tools, schema_toolsRelations as toolsRelations };
|
|
5018
|
+
export { schema_agentFunctionToolRelations as agentFunctionToolRelations, schema_agentFunctionToolRelationsRelations as agentFunctionToolRelationsRelations, schema_agentGraph as agentGraph, schema_agentGraphRelations as agentGraphRelations, schema_agentToolRelationsRelations as agentToolRelationsRelations, 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_functionTools as functionTools, schema_functionToolsRelations as functionToolsRelations, 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_subAgentArtifactComponents as subAgentArtifactComponents, schema_subAgentArtifactComponentsRelations as subAgentArtifactComponentsRelations, schema_subAgentDataComponents as subAgentDataComponents, schema_subAgentDataComponentsRelations as subAgentDataComponentsRelations, schema_subAgentRelations as subAgentRelations, schema_subAgentRelationsRelations as subAgentRelationsRelations, schema_subAgentToolRelations as subAgentToolRelations, schema_subAgents as subAgents, schema_subAgentsRelations as subAgentsRelations, schema_taskRelations as taskRelations, schema_taskRelationsRelations as taskRelationsRelations, schema_tasks as tasks, schema_tasksRelations as tasksRelations, schema_tools as tools, schema_toolsRelations as toolsRelations };
|
|
4699
5019
|
}
|
|
4700
5020
|
|
|
4701
|
-
export {
|
|
5021
|
+
export { taskRelationsRelations as A, contextConfigsRelations as B, contextCacheRelations as C, subAgentsRelations as D, agentGraphRelations as E, externalAgentsRelations as F, apiKeysRelations as G, agentToolRelationsRelations as H, credentialReferencesRelations as I, toolsRelations as J, conversationsRelations as K, messagesRelations as L, artifactComponentsRelations as M, subAgentArtifactComponentsRelations as N, dataComponentsRelations as O, subAgentDataComponentsRelations as P, ledgerArtifactsRelations as Q, functionsRelations as R, subAgentRelationsRelations as S, functionToolsRelations as T, agentFunctionToolRelationsRelations as U, agentGraph as a, contextCache as b, contextConfigs as c, subAgents as d, subAgentRelations as e, externalAgents as f, taskRelations as g, dataComponents as h, subAgentDataComponents as i, artifactComponents as j, subAgentArtifactComponents as k, tools as l, functionTools as m, functions as n, subAgentToolRelations as o, projects as p, agentFunctionToolRelations as q, conversations as r, schema as s, tasks as t, messages as u, ledgerArtifacts as v, apiKeys as w, credentialReferences as x, tasksRelations as y, projectsRelations as z };
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { g as CredentialStoreType } from '../utility-
|
|
2
|
-
export {
|
|
1
|
+
import { g as CredentialStoreType } from '../utility-Fxoh7s82.cjs';
|
|
2
|
+
export { b9 as A2AError, bF as A2ARequest, bG as A2AResponse, aK as APIKeySecurityScheme, aG as AgentCapabilities, aU as AgentCard, dl as AgentConversationHistoryConfig, d6 as AgentDefinition, bU as AgentGraphApiInsert, bT as AgentGraphApiSelect, bV as AgentGraphApiUpdate, x as AgentGraphInsert, bS as AgentGraphSelect, y as AgentGraphUpdate, aH as AgentProvider, N as AgentScopeConfig, aI as AgentSkill, cO as AllAgentSelect, cS as ApiKeyApiCreationResponse, cQ as ApiKeyApiInsert, cP as ApiKeyApiSelect, cR as ApiKeyApiUpdate, I as ApiKeyCreateResult, D as ApiKeyInsert, B as ApiKeySelect, E as ApiKeyUpdate, a9 as Artifact, cD as ArtifactComponentApiInsert, cC as ArtifactComponentApiSelect, cE as ArtifactComponentApiUpdate, K as ArtifactComponentInsert, J as ArtifactComponentSelect, L as ArtifactComponentUpdate, aN as AuthorizationCodeOAuthFlow, d4 as CanUseItem, bp as CancelTaskRequest, bA as CancelTaskResponse, bz as CancelTaskSuccessResponse, aO as ClientCredentialsOAuthFlow, b7 as ContentTypeNotSupportedError, cr as ContextCacheApiInsert, cq as ContextCacheApiSelect, cs as ContextCacheApiUpdate, dm as ContextCacheEntry, Q as ContextCacheInsert, O as ContextCacheSelect, cp as ContextCacheUpdate, cl as ContextConfigApiInsert, ck as ContextConfigApiSelect, cm as ContextConfigApiUpdate, R as ContextConfigInsert, s as ContextConfigSelect, U as ContextConfigUpdate, l as ContextFetchDefinition, ce as ConversationApiInsert, cd as ConversationApiSelect, cf as ConversationApiUpdate, C as ConversationHistoryConfig, W as ConversationInsert, o as ConversationMetadata, dk as ConversationScopeOptions, V as ConversationSelect, X as ConversationUpdate, H as CreateApiKeyParams, r as CredentialReferenceApiInsert, cT as CredentialReferenceApiSelect, cU as CredentialReferenceApiUpdate, _ as CredentialReferenceInsert, Y as CredentialReferenceSelect, $ as CredentialReferenceUpdate, cu as DataComponentApiInsert, ct as DataComponentApiSelect, cv as DataComponentApiUpdate, a1 as DataComponentInsert, a0 as DataComponentSelect, a2 as DataComponentUpdate, aE as DataPart, ax as ExecutionContext, cM as ExternalAgentApiInsert, cL as ExternalAgentApiSelect, cN as ExternalAgentApiUpdate, a3 as ExternalAgentInsert, a4 as ExternalAgentSelect, a5 as ExternalAgentUpdate, bR as ExternalSubAgentRelationApiInsert, am as ExternalSubAgentRelationInsert, co as FetchConfig, cn as FetchDefinition, aA as FileBase, aD as FilePart, aB as FileWithBytes, aC as FileWithUri, d3 as FullGraphAgentInsert, z as FullGraphDefinition, ae as FullProjectDefinition, a6 as FunctionApiInsert, ca as FunctionApiSelect, cb as FunctionApiUpdate, c8 as FunctionInsert, c7 as FunctionSelect, a7 as FunctionToolApiInsert, cc as FunctionToolApiSelect, a8 as FunctionToolApiUpdate, c9 as FunctionUpdate, br as GetTaskPushNotificationConfigRequest, bE as GetTaskPushNotificationConfigResponse, bD as GetTaskPushNotificationConfigSuccessResponse, bo as GetTaskRequest, by as GetTaskResponse, bx as GetTaskSuccessResponse, u as GraphScopeConfig, aL as HTTPAuthSecurityScheme, aP as ImplicitOAuthFlow, d5 as InternalAgentDefinition, b2 as InternalError, b8 as InvalidAgentResponseError, b1 as InvalidParamsError, a$ as InvalidRequestError, a_ as JSONParseError, bj as JSONRPCError, bl as JSONRPCErrorResponse, bh as JSONRPCMessage, bi as JSONRPCRequest, bk as JSONRPCResult, d1 as LedgerArtifactApiInsert, d0 as LedgerArtifactApiSelect, d2 as LedgerArtifactApiUpdate, c_ as LedgerArtifactInsert, aa as LedgerArtifactSelect, c$ as LedgerArtifactUpdate, dv as MCPServerType, t as MCPToolConfig, h as MCPTransportType, dn as McpAuthType, dp as McpServerAuth, dr as McpServerCapabilities, au as McpTool, ds as McpToolDefinition, dq as McpTransportConfig, aV as Message, ci as MessageApiInsert, ch as MessageApiSelect, cj as MessageApiUpdate, p as MessageContent, ac as MessageInsert, q as MessageMetadata, df as MessageMode, bH as MessagePart, de as MessageRole, cg as MessageSelect, bf as MessageSendConfiguration, bg as MessageSendParams, dd as MessageType, ad as MessageUpdate, ab as MessageVisibility, b0 as MethodNotFoundError, dg as Models, aR as OAuth2SecurityScheme, aM as OAuthFlows, aS as OpenIdConnectSecurityScheme, db as Pagination, w as PaginationConfig, ah as PaginationResult, P as Part, ay as PartBase, aQ as PasswordOAuthFlow, d9 as ProjectApiInsert, d8 as ProjectApiSelect, da as ProjectApiUpdate, af as ProjectInfo, aj as ProjectInsert, dh as ProjectModels, ai as ProjectResourceCounts, v as ProjectScopeConfig, ag as ProjectSelect, ak as ProjectUpdate, ba as PushNotificationAuthenticationInfo, bb as PushNotificationConfig, b5 as PushNotificationNotSupportedError, aT as SecurityScheme, aJ as SecuritySchemeBase, bm as SendMessageRequest, bu as SendMessageResponse, bt as SendMessageSuccessResponse, bn as SendStreamingMessageRequest, bw as SendStreamingMessageResponse, bv as SendStreamingMessageSuccessResponse, bq as SetTaskPushNotificationConfigRequest, bC as SetTaskPushNotificationConfigResponse, bB as SetTaskPushNotificationConfigSuccessResponse, dj as StatusComponent, di as StatusUpdateSettings, bK as SubAgentApiInsert, bJ as SubAgentApiSelect, bL as SubAgentApiUpdate, cJ as SubAgentArtifactComponentApiInsert, cI as SubAgentArtifactComponentApiSelect, cK as SubAgentArtifactComponentApiUpdate, cG as SubAgentArtifactComponentInsert, cF as SubAgentArtifactComponentSelect, cH as SubAgentArtifactComponentUpdate, cA as SubAgentDataComponentApiInsert, cz as SubAgentDataComponentApiSelect, cB as SubAgentDataComponentApiUpdate, cx as SubAgentDataComponentInsert, cw as SubAgentDataComponentSelect, cy as SubAgentDataComponentUpdate, ap as SubAgentInsert, bO as SubAgentRelationApiInsert, bN as SubAgentRelationApiSelect, bP as SubAgentRelationApiUpdate, al as SubAgentRelationInsert, bQ as SubAgentRelationQuery, bM as SubAgentRelationSelect, an as SubAgentRelationUpdate, ar as SubAgentSelect, cY as SubAgentToolRelationApiInsert, cX as SubAgentToolRelationApiSelect, cZ as SubAgentToolRelationApiUpdate, cW as SubAgentToolRelationInsert, cV as SubAgentToolRelationSelect, ao as SubAgentToolRelationUpdate, aq as SubAgentUpdate, dc as SummaryEvent, dt as TOOL_STATUS_VALUES, aX as Task, bY as TaskApiInsert, bX as TaskApiSelect, bZ as TaskApiUpdate, bI as TaskArtifact, aZ as TaskArtifactUpdateEvent, bd as TaskIdParams, as as TaskInsert, T as TaskMetadataConfig, b4 as TaskNotCancelableError, b3 as TaskNotFoundError, bc as TaskPushNotificationConfig, be as TaskQueryParams, c2 as TaskRelationApiInsert, c1 as TaskRelationApiSelect, c3 as TaskRelationApiUpdate, b$ as TaskRelationInsert, b_ as TaskRelationSelect, c0 as TaskRelationUpdate, bs as TaskResubscriptionRequest, at as TaskSelect, aF as TaskState, aW as TaskStatus, aY as TaskStatusUpdateEvent, bW as TaskUpdate, az as TextPart, c5 as ToolApiInsert, c4 as ToolApiSelect, c6 as ToolApiUpdate, d7 as ToolDefinition, av as ToolInsert, m as ToolMcpConfig, Z as ToolSelect, n as ToolServerCapabilities, aw as ToolUpdate, b6 as UnsupportedOperationError, du as VALID_RELATION_TYPES } from '../utility-Fxoh7s82.cjs';
|
|
3
3
|
import { Context } from 'hono';
|
|
4
4
|
import 'zod';
|
|
5
5
|
import 'drizzle-zod';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { g as CredentialStoreType } from '../utility-
|
|
2
|
-
export {
|
|
1
|
+
import { g as CredentialStoreType } from '../utility-Fxoh7s82.js';
|
|
2
|
+
export { b9 as A2AError, bF as A2ARequest, bG as A2AResponse, aK as APIKeySecurityScheme, aG as AgentCapabilities, aU as AgentCard, dl as AgentConversationHistoryConfig, d6 as AgentDefinition, bU as AgentGraphApiInsert, bT as AgentGraphApiSelect, bV as AgentGraphApiUpdate, x as AgentGraphInsert, bS as AgentGraphSelect, y as AgentGraphUpdate, aH as AgentProvider, N as AgentScopeConfig, aI as AgentSkill, cO as AllAgentSelect, cS as ApiKeyApiCreationResponse, cQ as ApiKeyApiInsert, cP as ApiKeyApiSelect, cR as ApiKeyApiUpdate, I as ApiKeyCreateResult, D as ApiKeyInsert, B as ApiKeySelect, E as ApiKeyUpdate, a9 as Artifact, cD as ArtifactComponentApiInsert, cC as ArtifactComponentApiSelect, cE as ArtifactComponentApiUpdate, K as ArtifactComponentInsert, J as ArtifactComponentSelect, L as ArtifactComponentUpdate, aN as AuthorizationCodeOAuthFlow, d4 as CanUseItem, bp as CancelTaskRequest, bA as CancelTaskResponse, bz as CancelTaskSuccessResponse, aO as ClientCredentialsOAuthFlow, b7 as ContentTypeNotSupportedError, cr as ContextCacheApiInsert, cq as ContextCacheApiSelect, cs as ContextCacheApiUpdate, dm as ContextCacheEntry, Q as ContextCacheInsert, O as ContextCacheSelect, cp as ContextCacheUpdate, cl as ContextConfigApiInsert, ck as ContextConfigApiSelect, cm as ContextConfigApiUpdate, R as ContextConfigInsert, s as ContextConfigSelect, U as ContextConfigUpdate, l as ContextFetchDefinition, ce as ConversationApiInsert, cd as ConversationApiSelect, cf as ConversationApiUpdate, C as ConversationHistoryConfig, W as ConversationInsert, o as ConversationMetadata, dk as ConversationScopeOptions, V as ConversationSelect, X as ConversationUpdate, H as CreateApiKeyParams, r as CredentialReferenceApiInsert, cT as CredentialReferenceApiSelect, cU as CredentialReferenceApiUpdate, _ as CredentialReferenceInsert, Y as CredentialReferenceSelect, $ as CredentialReferenceUpdate, cu as DataComponentApiInsert, ct as DataComponentApiSelect, cv as DataComponentApiUpdate, a1 as DataComponentInsert, a0 as DataComponentSelect, a2 as DataComponentUpdate, aE as DataPart, ax as ExecutionContext, cM as ExternalAgentApiInsert, cL as ExternalAgentApiSelect, cN as ExternalAgentApiUpdate, a3 as ExternalAgentInsert, a4 as ExternalAgentSelect, a5 as ExternalAgentUpdate, bR as ExternalSubAgentRelationApiInsert, am as ExternalSubAgentRelationInsert, co as FetchConfig, cn as FetchDefinition, aA as FileBase, aD as FilePart, aB as FileWithBytes, aC as FileWithUri, d3 as FullGraphAgentInsert, z as FullGraphDefinition, ae as FullProjectDefinition, a6 as FunctionApiInsert, ca as FunctionApiSelect, cb as FunctionApiUpdate, c8 as FunctionInsert, c7 as FunctionSelect, a7 as FunctionToolApiInsert, cc as FunctionToolApiSelect, a8 as FunctionToolApiUpdate, c9 as FunctionUpdate, br as GetTaskPushNotificationConfigRequest, bE as GetTaskPushNotificationConfigResponse, bD as GetTaskPushNotificationConfigSuccessResponse, bo as GetTaskRequest, by as GetTaskResponse, bx as GetTaskSuccessResponse, u as GraphScopeConfig, aL as HTTPAuthSecurityScheme, aP as ImplicitOAuthFlow, d5 as InternalAgentDefinition, b2 as InternalError, b8 as InvalidAgentResponseError, b1 as InvalidParamsError, a$ as InvalidRequestError, a_ as JSONParseError, bj as JSONRPCError, bl as JSONRPCErrorResponse, bh as JSONRPCMessage, bi as JSONRPCRequest, bk as JSONRPCResult, d1 as LedgerArtifactApiInsert, d0 as LedgerArtifactApiSelect, d2 as LedgerArtifactApiUpdate, c_ as LedgerArtifactInsert, aa as LedgerArtifactSelect, c$ as LedgerArtifactUpdate, dv as MCPServerType, t as MCPToolConfig, h as MCPTransportType, dn as McpAuthType, dp as McpServerAuth, dr as McpServerCapabilities, au as McpTool, ds as McpToolDefinition, dq as McpTransportConfig, aV as Message, ci as MessageApiInsert, ch as MessageApiSelect, cj as MessageApiUpdate, p as MessageContent, ac as MessageInsert, q as MessageMetadata, df as MessageMode, bH as MessagePart, de as MessageRole, cg as MessageSelect, bf as MessageSendConfiguration, bg as MessageSendParams, dd as MessageType, ad as MessageUpdate, ab as MessageVisibility, b0 as MethodNotFoundError, dg as Models, aR as OAuth2SecurityScheme, aM as OAuthFlows, aS as OpenIdConnectSecurityScheme, db as Pagination, w as PaginationConfig, ah as PaginationResult, P as Part, ay as PartBase, aQ as PasswordOAuthFlow, d9 as ProjectApiInsert, d8 as ProjectApiSelect, da as ProjectApiUpdate, af as ProjectInfo, aj as ProjectInsert, dh as ProjectModels, ai as ProjectResourceCounts, v as ProjectScopeConfig, ag as ProjectSelect, ak as ProjectUpdate, ba as PushNotificationAuthenticationInfo, bb as PushNotificationConfig, b5 as PushNotificationNotSupportedError, aT as SecurityScheme, aJ as SecuritySchemeBase, bm as SendMessageRequest, bu as SendMessageResponse, bt as SendMessageSuccessResponse, bn as SendStreamingMessageRequest, bw as SendStreamingMessageResponse, bv as SendStreamingMessageSuccessResponse, bq as SetTaskPushNotificationConfigRequest, bC as SetTaskPushNotificationConfigResponse, bB as SetTaskPushNotificationConfigSuccessResponse, dj as StatusComponent, di as StatusUpdateSettings, bK as SubAgentApiInsert, bJ as SubAgentApiSelect, bL as SubAgentApiUpdate, cJ as SubAgentArtifactComponentApiInsert, cI as SubAgentArtifactComponentApiSelect, cK as SubAgentArtifactComponentApiUpdate, cG as SubAgentArtifactComponentInsert, cF as SubAgentArtifactComponentSelect, cH as SubAgentArtifactComponentUpdate, cA as SubAgentDataComponentApiInsert, cz as SubAgentDataComponentApiSelect, cB as SubAgentDataComponentApiUpdate, cx as SubAgentDataComponentInsert, cw as SubAgentDataComponentSelect, cy as SubAgentDataComponentUpdate, ap as SubAgentInsert, bO as SubAgentRelationApiInsert, bN as SubAgentRelationApiSelect, bP as SubAgentRelationApiUpdate, al as SubAgentRelationInsert, bQ as SubAgentRelationQuery, bM as SubAgentRelationSelect, an as SubAgentRelationUpdate, ar as SubAgentSelect, cY as SubAgentToolRelationApiInsert, cX as SubAgentToolRelationApiSelect, cZ as SubAgentToolRelationApiUpdate, cW as SubAgentToolRelationInsert, cV as SubAgentToolRelationSelect, ao as SubAgentToolRelationUpdate, aq as SubAgentUpdate, dc as SummaryEvent, dt as TOOL_STATUS_VALUES, aX as Task, bY as TaskApiInsert, bX as TaskApiSelect, bZ as TaskApiUpdate, bI as TaskArtifact, aZ as TaskArtifactUpdateEvent, bd as TaskIdParams, as as TaskInsert, T as TaskMetadataConfig, b4 as TaskNotCancelableError, b3 as TaskNotFoundError, bc as TaskPushNotificationConfig, be as TaskQueryParams, c2 as TaskRelationApiInsert, c1 as TaskRelationApiSelect, c3 as TaskRelationApiUpdate, b$ as TaskRelationInsert, b_ as TaskRelationSelect, c0 as TaskRelationUpdate, bs as TaskResubscriptionRequest, at as TaskSelect, aF as TaskState, aW as TaskStatus, aY as TaskStatusUpdateEvent, bW as TaskUpdate, az as TextPart, c5 as ToolApiInsert, c4 as ToolApiSelect, c6 as ToolApiUpdate, d7 as ToolDefinition, av as ToolInsert, m as ToolMcpConfig, Z as ToolSelect, n as ToolServerCapabilities, aw as ToolUpdate, b6 as UnsupportedOperationError, du as VALID_RELATION_TYPES } from '../utility-Fxoh7s82.js';
|
|
3
3
|
import { Context } from 'hono';
|
|
4
4
|
import 'zod';
|
|
5
5
|
import 'drizzle-zod';
|