@inkeep/agents-core 0.19.0 → 0.19.1
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-3XUV5Q4D.js → chunk-4FMDWUE4.js} +1 -1
- package/dist/{chunk-3GZBRBXP.js → chunk-VICWT3WO.js} +208 -66
- package/dist/client-exports.cjs +215 -72
- 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.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/index.cjs +243 -65
- package/dist/index.d.cts +10 -10
- package/dist/index.d.ts +10 -10
- package/dist/index.js +4 -4
- package/dist/{schema-DrDaCn6H.d.cts → schema-CcSN2XcZ.d.cts} +1 -1
- package/dist/{schema-Dp-qgdBT.d.ts → schema-D8h85qdU.d.ts} +1 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/{utility-BxbySenH.d.cts → utility-HqRMF7sM.d.cts} +1608 -4
- package/dist/{utility-BxbySenH.d.ts → utility-HqRMF7sM.d.ts} +1608 -4
- package/dist/validation/index.cjs +243 -65
- package/dist/validation/index.d.cts +2 -2
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/package.json +1 -1
|
@@ -3166,9 +3166,9 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
3166
3166
|
}>;
|
|
3167
3167
|
declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
3168
3168
|
id: z.ZodString;
|
|
3169
|
+
title: z.ZodNullable<z.ZodString>;
|
|
3169
3170
|
createdAt: z.ZodString;
|
|
3170
3171
|
updatedAt: z.ZodString;
|
|
3171
|
-
title: z.ZodNullable<z.ZodString>;
|
|
3172
3172
|
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
3173
3173
|
userId: z.ZodNullable<z.ZodString>;
|
|
3174
3174
|
activeSubAgentId: z.ZodString;
|
|
@@ -3176,9 +3176,9 @@ declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
|
3176
3176
|
}, z.core.$strip>;
|
|
3177
3177
|
declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
3178
3178
|
id: z.ZodString;
|
|
3179
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3179
3180
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
3180
3181
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3181
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3182
3182
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
3183
3183
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
3184
3184
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3187,9 +3187,9 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
3187
3187
|
}, z.core.$strip>;
|
|
3188
3188
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
3189
3189
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3190
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3190
3191
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3191
3192
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3192
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3193
3193
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3194
3194
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
3195
3195
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8662,6 +8662,1610 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8662
8662
|
out: {};
|
|
8663
8663
|
in: {};
|
|
8664
8664
|
}>;
|
|
8665
|
+
declare const ProjectResponse: z.ZodObject<{
|
|
8666
|
+
data: z.ZodObject<{
|
|
8667
|
+
id: z.ZodString;
|
|
8668
|
+
name: z.ZodString;
|
|
8669
|
+
description: z.ZodString;
|
|
8670
|
+
createdAt: z.ZodString;
|
|
8671
|
+
updatedAt: z.ZodString;
|
|
8672
|
+
models: z.ZodNullable<z.ZodType<{
|
|
8673
|
+
base: {
|
|
8674
|
+
model?: string | undefined;
|
|
8675
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8676
|
+
};
|
|
8677
|
+
structuredOutput?: {
|
|
8678
|
+
model?: string | undefined;
|
|
8679
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8680
|
+
} | undefined;
|
|
8681
|
+
summarizer?: {
|
|
8682
|
+
model?: string | undefined;
|
|
8683
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8684
|
+
} | undefined;
|
|
8685
|
+
}, {
|
|
8686
|
+
base: {
|
|
8687
|
+
model?: string | undefined;
|
|
8688
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8689
|
+
};
|
|
8690
|
+
structuredOutput?: {
|
|
8691
|
+
model?: string | undefined;
|
|
8692
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8693
|
+
} | undefined;
|
|
8694
|
+
summarizer?: {
|
|
8695
|
+
model?: string | undefined;
|
|
8696
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8697
|
+
} | undefined;
|
|
8698
|
+
}, z.core.$ZodTypeInternals<{
|
|
8699
|
+
base: {
|
|
8700
|
+
model?: string | undefined;
|
|
8701
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8702
|
+
};
|
|
8703
|
+
structuredOutput?: {
|
|
8704
|
+
model?: string | undefined;
|
|
8705
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8706
|
+
} | undefined;
|
|
8707
|
+
summarizer?: {
|
|
8708
|
+
model?: string | undefined;
|
|
8709
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8710
|
+
} | undefined;
|
|
8711
|
+
}, {
|
|
8712
|
+
base: {
|
|
8713
|
+
model?: string | undefined;
|
|
8714
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8715
|
+
};
|
|
8716
|
+
structuredOutput?: {
|
|
8717
|
+
model?: string | undefined;
|
|
8718
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8719
|
+
} | undefined;
|
|
8720
|
+
summarizer?: {
|
|
8721
|
+
model?: string | undefined;
|
|
8722
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8723
|
+
} | undefined;
|
|
8724
|
+
}>>>;
|
|
8725
|
+
stopWhen: z.ZodNullable<z.ZodType<{
|
|
8726
|
+
transferCountIs?: number | undefined;
|
|
8727
|
+
stepCountIs?: number | undefined;
|
|
8728
|
+
}, {
|
|
8729
|
+
transferCountIs?: number | undefined;
|
|
8730
|
+
stepCountIs?: number | undefined;
|
|
8731
|
+
}, z.core.$ZodTypeInternals<{
|
|
8732
|
+
transferCountIs?: number | undefined;
|
|
8733
|
+
stepCountIs?: number | undefined;
|
|
8734
|
+
}, {
|
|
8735
|
+
transferCountIs?: number | undefined;
|
|
8736
|
+
stepCountIs?: number | undefined;
|
|
8737
|
+
}>>>;
|
|
8738
|
+
sandboxConfig: z.ZodNullable<z.ZodType<{
|
|
8739
|
+
provider: "vercel" | "local";
|
|
8740
|
+
runtime: "node22" | "typescript";
|
|
8741
|
+
timeout?: number;
|
|
8742
|
+
vcpus?: number;
|
|
8743
|
+
}, {
|
|
8744
|
+
provider: "vercel" | "local";
|
|
8745
|
+
runtime: "node22" | "typescript";
|
|
8746
|
+
timeout?: number;
|
|
8747
|
+
vcpus?: number;
|
|
8748
|
+
}, z.core.$ZodTypeInternals<{
|
|
8749
|
+
provider: "vercel" | "local";
|
|
8750
|
+
runtime: "node22" | "typescript";
|
|
8751
|
+
timeout?: number;
|
|
8752
|
+
vcpus?: number;
|
|
8753
|
+
}, {
|
|
8754
|
+
provider: "vercel" | "local";
|
|
8755
|
+
runtime: "node22" | "typescript";
|
|
8756
|
+
timeout?: number;
|
|
8757
|
+
vcpus?: number;
|
|
8758
|
+
}>>>;
|
|
8759
|
+
}, {
|
|
8760
|
+
out: {};
|
|
8761
|
+
in: {};
|
|
8762
|
+
}>;
|
|
8763
|
+
}, z.core.$strip>;
|
|
8764
|
+
declare const SubAgentResponse: z.ZodObject<{
|
|
8765
|
+
data: z.ZodObject<{
|
|
8766
|
+
id: z.ZodString;
|
|
8767
|
+
name: z.ZodString;
|
|
8768
|
+
description: z.ZodString;
|
|
8769
|
+
prompt: z.ZodString;
|
|
8770
|
+
createdAt: z.ZodString;
|
|
8771
|
+
updatedAt: z.ZodString;
|
|
8772
|
+
models: z.ZodNullable<z.ZodType<{
|
|
8773
|
+
base?: {
|
|
8774
|
+
model?: string | undefined;
|
|
8775
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8776
|
+
} | undefined;
|
|
8777
|
+
structuredOutput?: {
|
|
8778
|
+
model?: string | undefined;
|
|
8779
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8780
|
+
} | undefined;
|
|
8781
|
+
summarizer?: {
|
|
8782
|
+
model?: string | undefined;
|
|
8783
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8784
|
+
} | undefined;
|
|
8785
|
+
}, {
|
|
8786
|
+
base?: {
|
|
8787
|
+
model?: string | undefined;
|
|
8788
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8789
|
+
} | undefined;
|
|
8790
|
+
structuredOutput?: {
|
|
8791
|
+
model?: string | undefined;
|
|
8792
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8793
|
+
} | undefined;
|
|
8794
|
+
summarizer?: {
|
|
8795
|
+
model?: string | undefined;
|
|
8796
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8797
|
+
} | undefined;
|
|
8798
|
+
}, z.core.$ZodTypeInternals<{
|
|
8799
|
+
base?: {
|
|
8800
|
+
model?: string | undefined;
|
|
8801
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8802
|
+
} | undefined;
|
|
8803
|
+
structuredOutput?: {
|
|
8804
|
+
model?: string | undefined;
|
|
8805
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8806
|
+
} | undefined;
|
|
8807
|
+
summarizer?: {
|
|
8808
|
+
model?: string | undefined;
|
|
8809
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8810
|
+
} | undefined;
|
|
8811
|
+
}, {
|
|
8812
|
+
base?: {
|
|
8813
|
+
model?: string | undefined;
|
|
8814
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8815
|
+
} | undefined;
|
|
8816
|
+
structuredOutput?: {
|
|
8817
|
+
model?: string | undefined;
|
|
8818
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8819
|
+
} | undefined;
|
|
8820
|
+
summarizer?: {
|
|
8821
|
+
model?: string | undefined;
|
|
8822
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8823
|
+
} | undefined;
|
|
8824
|
+
}>>>;
|
|
8825
|
+
stopWhen: z.ZodNullable<z.ZodType<{
|
|
8826
|
+
stepCountIs?: number | undefined;
|
|
8827
|
+
}, {
|
|
8828
|
+
stepCountIs?: number | undefined;
|
|
8829
|
+
}, z.core.$ZodTypeInternals<{
|
|
8830
|
+
stepCountIs?: number | undefined;
|
|
8831
|
+
}, {
|
|
8832
|
+
stepCountIs?: number | undefined;
|
|
8833
|
+
}>>>;
|
|
8834
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
8835
|
+
}, z.core.$strip>;
|
|
8836
|
+
}, z.core.$strip>;
|
|
8837
|
+
declare const AgentResponse: z.ZodObject<{
|
|
8838
|
+
data: z.ZodObject<{
|
|
8839
|
+
id: z.ZodString;
|
|
8840
|
+
name: z.ZodString;
|
|
8841
|
+
description: z.ZodNullable<z.ZodString>;
|
|
8842
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
8843
|
+
createdAt: z.ZodString;
|
|
8844
|
+
updatedAt: z.ZodString;
|
|
8845
|
+
models: z.ZodNullable<z.ZodType<{
|
|
8846
|
+
base?: {
|
|
8847
|
+
model?: string | undefined;
|
|
8848
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8849
|
+
} | undefined;
|
|
8850
|
+
structuredOutput?: {
|
|
8851
|
+
model?: string | undefined;
|
|
8852
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8853
|
+
} | undefined;
|
|
8854
|
+
summarizer?: {
|
|
8855
|
+
model?: string | undefined;
|
|
8856
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8857
|
+
} | undefined;
|
|
8858
|
+
}, {
|
|
8859
|
+
base?: {
|
|
8860
|
+
model?: string | undefined;
|
|
8861
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8862
|
+
} | undefined;
|
|
8863
|
+
structuredOutput?: {
|
|
8864
|
+
model?: string | undefined;
|
|
8865
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8866
|
+
} | undefined;
|
|
8867
|
+
summarizer?: {
|
|
8868
|
+
model?: string | undefined;
|
|
8869
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8870
|
+
} | undefined;
|
|
8871
|
+
}, z.core.$ZodTypeInternals<{
|
|
8872
|
+
base?: {
|
|
8873
|
+
model?: string | undefined;
|
|
8874
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8875
|
+
} | undefined;
|
|
8876
|
+
structuredOutput?: {
|
|
8877
|
+
model?: string | undefined;
|
|
8878
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8879
|
+
} | undefined;
|
|
8880
|
+
summarizer?: {
|
|
8881
|
+
model?: string | undefined;
|
|
8882
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8883
|
+
} | undefined;
|
|
8884
|
+
}, {
|
|
8885
|
+
base?: {
|
|
8886
|
+
model?: string | undefined;
|
|
8887
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8888
|
+
} | undefined;
|
|
8889
|
+
structuredOutput?: {
|
|
8890
|
+
model?: string | undefined;
|
|
8891
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8892
|
+
} | undefined;
|
|
8893
|
+
summarizer?: {
|
|
8894
|
+
model?: string | undefined;
|
|
8895
|
+
providerOptions?: Record<string, any> | undefined;
|
|
8896
|
+
} | undefined;
|
|
8897
|
+
}>>>;
|
|
8898
|
+
stopWhen: z.ZodNullable<z.ZodType<{
|
|
8899
|
+
transferCountIs?: number | undefined;
|
|
8900
|
+
}, {
|
|
8901
|
+
transferCountIs?: number | undefined;
|
|
8902
|
+
}, z.core.$ZodTypeInternals<{
|
|
8903
|
+
transferCountIs?: number | undefined;
|
|
8904
|
+
}, {
|
|
8905
|
+
transferCountIs?: number | undefined;
|
|
8906
|
+
}>>>;
|
|
8907
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8908
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
8909
|
+
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
8910
|
+
enabled?: boolean | undefined;
|
|
8911
|
+
numEvents?: number | undefined;
|
|
8912
|
+
timeInSeconds?: number | undefined;
|
|
8913
|
+
prompt?: string | undefined;
|
|
8914
|
+
statusComponents?: {
|
|
8915
|
+
type: string;
|
|
8916
|
+
description?: string | undefined;
|
|
8917
|
+
detailsSchema?: {
|
|
8918
|
+
type: "object";
|
|
8919
|
+
properties: Record<string, any>;
|
|
8920
|
+
required?: string[] | undefined;
|
|
8921
|
+
} | undefined;
|
|
8922
|
+
}[] | undefined;
|
|
8923
|
+
}, {
|
|
8924
|
+
enabled?: boolean | undefined;
|
|
8925
|
+
numEvents?: number | undefined;
|
|
8926
|
+
timeInSeconds?: number | undefined;
|
|
8927
|
+
prompt?: string | undefined;
|
|
8928
|
+
statusComponents?: {
|
|
8929
|
+
type: string;
|
|
8930
|
+
description?: string | undefined;
|
|
8931
|
+
detailsSchema?: {
|
|
8932
|
+
type: "object";
|
|
8933
|
+
properties: Record<string, any>;
|
|
8934
|
+
required?: string[] | undefined;
|
|
8935
|
+
} | undefined;
|
|
8936
|
+
}[] | undefined;
|
|
8937
|
+
}, z.core.$ZodTypeInternals<{
|
|
8938
|
+
enabled?: boolean | undefined;
|
|
8939
|
+
numEvents?: number | undefined;
|
|
8940
|
+
timeInSeconds?: number | undefined;
|
|
8941
|
+
prompt?: string | undefined;
|
|
8942
|
+
statusComponents?: {
|
|
8943
|
+
type: string;
|
|
8944
|
+
description?: string | undefined;
|
|
8945
|
+
detailsSchema?: {
|
|
8946
|
+
type: "object";
|
|
8947
|
+
properties: Record<string, any>;
|
|
8948
|
+
required?: string[] | undefined;
|
|
8949
|
+
} | undefined;
|
|
8950
|
+
}[] | undefined;
|
|
8951
|
+
}, {
|
|
8952
|
+
enabled?: boolean | undefined;
|
|
8953
|
+
numEvents?: number | undefined;
|
|
8954
|
+
timeInSeconds?: number | undefined;
|
|
8955
|
+
prompt?: string | undefined;
|
|
8956
|
+
statusComponents?: {
|
|
8957
|
+
type: string;
|
|
8958
|
+
description?: string | undefined;
|
|
8959
|
+
detailsSchema?: {
|
|
8960
|
+
type: "object";
|
|
8961
|
+
properties: Record<string, any>;
|
|
8962
|
+
required?: string[] | undefined;
|
|
8963
|
+
} | undefined;
|
|
8964
|
+
}[] | undefined;
|
|
8965
|
+
}>>>;
|
|
8966
|
+
}, z.core.$strip>;
|
|
8967
|
+
}, z.core.$strip>;
|
|
8968
|
+
declare const ToolResponse: z.ZodObject<{
|
|
8969
|
+
data: z.ZodObject<{
|
|
8970
|
+
id: z.ZodString;
|
|
8971
|
+
name: z.ZodString;
|
|
8972
|
+
description: z.ZodNullable<z.ZodString>;
|
|
8973
|
+
config: z.ZodType<{
|
|
8974
|
+
type: "mcp";
|
|
8975
|
+
mcp: ToolMcpConfig;
|
|
8976
|
+
}, {
|
|
8977
|
+
type: "mcp";
|
|
8978
|
+
mcp: ToolMcpConfig;
|
|
8979
|
+
}, z.core.$ZodTypeInternals<{
|
|
8980
|
+
type: "mcp";
|
|
8981
|
+
mcp: ToolMcpConfig;
|
|
8982
|
+
}, {
|
|
8983
|
+
type: "mcp";
|
|
8984
|
+
mcp: ToolMcpConfig;
|
|
8985
|
+
}>>;
|
|
8986
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
8987
|
+
createdAt: z.ZodString;
|
|
8988
|
+
updatedAt: z.ZodString;
|
|
8989
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
8990
|
+
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
8991
|
+
imageUrl: z.ZodNullable<z.ZodString>;
|
|
8992
|
+
lastError: z.ZodNullable<z.ZodString>;
|
|
8993
|
+
}, z.core.$strip>;
|
|
8994
|
+
}, z.core.$strip>;
|
|
8995
|
+
declare const ExternalAgentResponse: z.ZodObject<{
|
|
8996
|
+
data: z.ZodObject<{
|
|
8997
|
+
id: z.ZodString;
|
|
8998
|
+
name: z.ZodString;
|
|
8999
|
+
description: z.ZodString;
|
|
9000
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9001
|
+
createdAt: z.ZodString;
|
|
9002
|
+
updatedAt: z.ZodString;
|
|
9003
|
+
baseUrl: z.ZodString;
|
|
9004
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
9005
|
+
}, z.core.$strip>;
|
|
9006
|
+
}, z.core.$strip>;
|
|
9007
|
+
declare const ContextConfigResponse: z.ZodObject<{
|
|
9008
|
+
data: z.ZodObject<{
|
|
9009
|
+
id: z.ZodString;
|
|
9010
|
+
createdAt: z.ZodString;
|
|
9011
|
+
updatedAt: z.ZodString;
|
|
9012
|
+
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
9013
|
+
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
9014
|
+
}, z.core.$strip>;
|
|
9015
|
+
}, z.core.$strip>;
|
|
9016
|
+
declare const ApiKeyResponse: z.ZodObject<{
|
|
9017
|
+
data: z.ZodObject<{
|
|
9018
|
+
id: z.ZodString;
|
|
9019
|
+
name: z.ZodNullable<z.ZodString>;
|
|
9020
|
+
agentId: z.ZodString;
|
|
9021
|
+
publicId: z.ZodString;
|
|
9022
|
+
keyPrefix: z.ZodString;
|
|
9023
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
9024
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
9025
|
+
createdAt: z.ZodString;
|
|
9026
|
+
updatedAt: z.ZodString;
|
|
9027
|
+
}, {
|
|
9028
|
+
out: {};
|
|
9029
|
+
in: {};
|
|
9030
|
+
}>;
|
|
9031
|
+
}, z.core.$strip>;
|
|
9032
|
+
declare const CredentialReferenceResponse: z.ZodObject<{
|
|
9033
|
+
data: z.ZodObject<{
|
|
9034
|
+
id: z.ZodString;
|
|
9035
|
+
createdAt: z.ZodString;
|
|
9036
|
+
updatedAt: z.ZodString;
|
|
9037
|
+
credentialStoreId: z.ZodString;
|
|
9038
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
9039
|
+
type: z.ZodEnum<{
|
|
9040
|
+
readonly memory: "memory";
|
|
9041
|
+
readonly keychain: "keychain";
|
|
9042
|
+
readonly nango: "nango";
|
|
9043
|
+
}>;
|
|
9044
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod.BuildSchema<"select", {
|
|
9045
|
+
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9046
|
+
name: "created_at";
|
|
9047
|
+
tableName: "tools";
|
|
9048
|
+
dataType: "string";
|
|
9049
|
+
columnType: "SQLiteText";
|
|
9050
|
+
data: string;
|
|
9051
|
+
driverParam: string;
|
|
9052
|
+
notNull: true;
|
|
9053
|
+
hasDefault: true;
|
|
9054
|
+
isPrimaryKey: false;
|
|
9055
|
+
isAutoincrement: false;
|
|
9056
|
+
hasRuntimeDefault: false;
|
|
9057
|
+
enumValues: [string, ...string[]];
|
|
9058
|
+
baseColumn: never;
|
|
9059
|
+
identity: undefined;
|
|
9060
|
+
generated: undefined;
|
|
9061
|
+
}, {}, {
|
|
9062
|
+
length: number | undefined;
|
|
9063
|
+
}>;
|
|
9064
|
+
updatedAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9065
|
+
name: "updated_at";
|
|
9066
|
+
tableName: "tools";
|
|
9067
|
+
dataType: "string";
|
|
9068
|
+
columnType: "SQLiteText";
|
|
9069
|
+
data: string;
|
|
9070
|
+
driverParam: string;
|
|
9071
|
+
notNull: true;
|
|
9072
|
+
hasDefault: true;
|
|
9073
|
+
isPrimaryKey: false;
|
|
9074
|
+
isAutoincrement: false;
|
|
9075
|
+
hasRuntimeDefault: false;
|
|
9076
|
+
enumValues: [string, ...string[]];
|
|
9077
|
+
baseColumn: never;
|
|
9078
|
+
identity: undefined;
|
|
9079
|
+
generated: undefined;
|
|
9080
|
+
}, {}, {
|
|
9081
|
+
length: number | undefined;
|
|
9082
|
+
}>;
|
|
9083
|
+
name: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9084
|
+
name: "name";
|
|
9085
|
+
tableName: "tools";
|
|
9086
|
+
dataType: "string";
|
|
9087
|
+
columnType: "SQLiteText";
|
|
9088
|
+
data: string;
|
|
9089
|
+
driverParam: string;
|
|
9090
|
+
notNull: true;
|
|
9091
|
+
hasDefault: false;
|
|
9092
|
+
isPrimaryKey: false;
|
|
9093
|
+
isAutoincrement: false;
|
|
9094
|
+
hasRuntimeDefault: false;
|
|
9095
|
+
enumValues: [string, ...string[]];
|
|
9096
|
+
baseColumn: never;
|
|
9097
|
+
identity: undefined;
|
|
9098
|
+
generated: undefined;
|
|
9099
|
+
}, {}, {
|
|
9100
|
+
length: number | undefined;
|
|
9101
|
+
}>;
|
|
9102
|
+
description: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9103
|
+
name: "description";
|
|
9104
|
+
tableName: "tools";
|
|
9105
|
+
dataType: "string";
|
|
9106
|
+
columnType: "SQLiteText";
|
|
9107
|
+
data: string;
|
|
9108
|
+
driverParam: string;
|
|
9109
|
+
notNull: false;
|
|
9110
|
+
hasDefault: false;
|
|
9111
|
+
isPrimaryKey: false;
|
|
9112
|
+
isAutoincrement: false;
|
|
9113
|
+
hasRuntimeDefault: false;
|
|
9114
|
+
enumValues: [string, ...string[]];
|
|
9115
|
+
baseColumn: never;
|
|
9116
|
+
identity: undefined;
|
|
9117
|
+
generated: undefined;
|
|
9118
|
+
}, {}, {
|
|
9119
|
+
length: number | undefined;
|
|
9120
|
+
}>;
|
|
9121
|
+
config: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9122
|
+
name: "config";
|
|
9123
|
+
tableName: "tools";
|
|
9124
|
+
dataType: "json";
|
|
9125
|
+
columnType: "SQLiteBlobJson";
|
|
9126
|
+
data: {
|
|
9127
|
+
type: "mcp";
|
|
9128
|
+
mcp: ToolMcpConfig;
|
|
9129
|
+
};
|
|
9130
|
+
driverParam: Buffer<ArrayBufferLike>;
|
|
9131
|
+
notNull: true;
|
|
9132
|
+
hasDefault: false;
|
|
9133
|
+
isPrimaryKey: false;
|
|
9134
|
+
isAutoincrement: false;
|
|
9135
|
+
hasRuntimeDefault: false;
|
|
9136
|
+
enumValues: undefined;
|
|
9137
|
+
baseColumn: never;
|
|
9138
|
+
identity: undefined;
|
|
9139
|
+
generated: undefined;
|
|
9140
|
+
}, {}, {
|
|
9141
|
+
$type: {
|
|
9142
|
+
type: "mcp";
|
|
9143
|
+
mcp: ToolMcpConfig;
|
|
9144
|
+
};
|
|
9145
|
+
}>;
|
|
9146
|
+
credentialReferenceId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9147
|
+
name: "credential_reference_id";
|
|
9148
|
+
tableName: "tools";
|
|
9149
|
+
dataType: "string";
|
|
9150
|
+
columnType: "SQLiteText";
|
|
9151
|
+
data: string;
|
|
9152
|
+
driverParam: string;
|
|
9153
|
+
notNull: false;
|
|
9154
|
+
hasDefault: false;
|
|
9155
|
+
isPrimaryKey: false;
|
|
9156
|
+
isAutoincrement: false;
|
|
9157
|
+
hasRuntimeDefault: false;
|
|
9158
|
+
enumValues: [string, ...string[]];
|
|
9159
|
+
baseColumn: never;
|
|
9160
|
+
identity: undefined;
|
|
9161
|
+
generated: undefined;
|
|
9162
|
+
}, {}, {
|
|
9163
|
+
length: number | undefined;
|
|
9164
|
+
}>;
|
|
9165
|
+
headers: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9166
|
+
name: "headers";
|
|
9167
|
+
tableName: "tools";
|
|
9168
|
+
dataType: "json";
|
|
9169
|
+
columnType: "SQLiteBlobJson";
|
|
9170
|
+
data: Record<string, string>;
|
|
9171
|
+
driverParam: Buffer<ArrayBufferLike>;
|
|
9172
|
+
notNull: false;
|
|
9173
|
+
hasDefault: false;
|
|
9174
|
+
isPrimaryKey: false;
|
|
9175
|
+
isAutoincrement: false;
|
|
9176
|
+
hasRuntimeDefault: false;
|
|
9177
|
+
enumValues: undefined;
|
|
9178
|
+
baseColumn: never;
|
|
9179
|
+
identity: undefined;
|
|
9180
|
+
generated: undefined;
|
|
9181
|
+
}, {}, {
|
|
9182
|
+
$type: Record<string, string>;
|
|
9183
|
+
}>;
|
|
9184
|
+
imageUrl: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9185
|
+
name: "image_url";
|
|
9186
|
+
tableName: "tools";
|
|
9187
|
+
dataType: "string";
|
|
9188
|
+
columnType: "SQLiteText";
|
|
9189
|
+
data: string;
|
|
9190
|
+
driverParam: string;
|
|
9191
|
+
notNull: false;
|
|
9192
|
+
hasDefault: false;
|
|
9193
|
+
isPrimaryKey: false;
|
|
9194
|
+
isAutoincrement: false;
|
|
9195
|
+
hasRuntimeDefault: false;
|
|
9196
|
+
enumValues: [string, ...string[]];
|
|
9197
|
+
baseColumn: never;
|
|
9198
|
+
identity: undefined;
|
|
9199
|
+
generated: undefined;
|
|
9200
|
+
}, {}, {
|
|
9201
|
+
length: number | undefined;
|
|
9202
|
+
}>;
|
|
9203
|
+
capabilities: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9204
|
+
name: "capabilities";
|
|
9205
|
+
tableName: "tools";
|
|
9206
|
+
dataType: "json";
|
|
9207
|
+
columnType: "SQLiteBlobJson";
|
|
9208
|
+
data: ToolServerCapabilities;
|
|
9209
|
+
driverParam: Buffer<ArrayBufferLike>;
|
|
9210
|
+
notNull: false;
|
|
9211
|
+
hasDefault: false;
|
|
9212
|
+
isPrimaryKey: false;
|
|
9213
|
+
isAutoincrement: false;
|
|
9214
|
+
hasRuntimeDefault: false;
|
|
9215
|
+
enumValues: undefined;
|
|
9216
|
+
baseColumn: never;
|
|
9217
|
+
identity: undefined;
|
|
9218
|
+
generated: undefined;
|
|
9219
|
+
}, {}, {
|
|
9220
|
+
$type: ToolServerCapabilities;
|
|
9221
|
+
}>;
|
|
9222
|
+
lastError: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9223
|
+
name: "last_error";
|
|
9224
|
+
tableName: "tools";
|
|
9225
|
+
dataType: "string";
|
|
9226
|
+
columnType: "SQLiteText";
|
|
9227
|
+
data: string;
|
|
9228
|
+
driverParam: string;
|
|
9229
|
+
notNull: false;
|
|
9230
|
+
hasDefault: false;
|
|
9231
|
+
isPrimaryKey: false;
|
|
9232
|
+
isAutoincrement: false;
|
|
9233
|
+
hasRuntimeDefault: false;
|
|
9234
|
+
enumValues: [string, ...string[]];
|
|
9235
|
+
baseColumn: never;
|
|
9236
|
+
identity: undefined;
|
|
9237
|
+
generated: undefined;
|
|
9238
|
+
}, {}, {
|
|
9239
|
+
length: number | undefined;
|
|
9240
|
+
}>;
|
|
9241
|
+
projectId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9242
|
+
name: "project_id";
|
|
9243
|
+
tableName: "tools";
|
|
9244
|
+
dataType: "string";
|
|
9245
|
+
columnType: "SQLiteText";
|
|
9246
|
+
data: string;
|
|
9247
|
+
driverParam: string;
|
|
9248
|
+
notNull: true;
|
|
9249
|
+
hasDefault: false;
|
|
9250
|
+
isPrimaryKey: false;
|
|
9251
|
+
isAutoincrement: false;
|
|
9252
|
+
hasRuntimeDefault: false;
|
|
9253
|
+
enumValues: [string, ...string[]];
|
|
9254
|
+
baseColumn: never;
|
|
9255
|
+
identity: undefined;
|
|
9256
|
+
generated: undefined;
|
|
9257
|
+
}, {}, {
|
|
9258
|
+
length: number | undefined;
|
|
9259
|
+
}>;
|
|
9260
|
+
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9261
|
+
name: "tenant_id";
|
|
9262
|
+
tableName: "tools";
|
|
9263
|
+
dataType: "string";
|
|
9264
|
+
columnType: "SQLiteText";
|
|
9265
|
+
data: string;
|
|
9266
|
+
driverParam: string;
|
|
9267
|
+
notNull: true;
|
|
9268
|
+
hasDefault: false;
|
|
9269
|
+
isPrimaryKey: false;
|
|
9270
|
+
isAutoincrement: false;
|
|
9271
|
+
hasRuntimeDefault: false;
|
|
9272
|
+
enumValues: [string, ...string[]];
|
|
9273
|
+
baseColumn: never;
|
|
9274
|
+
identity: undefined;
|
|
9275
|
+
generated: undefined;
|
|
9276
|
+
}, {}, {
|
|
9277
|
+
length: number | undefined;
|
|
9278
|
+
}>;
|
|
9279
|
+
id: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9280
|
+
name: "id";
|
|
9281
|
+
tableName: "tools";
|
|
9282
|
+
dataType: "string";
|
|
9283
|
+
columnType: "SQLiteText";
|
|
9284
|
+
data: string;
|
|
9285
|
+
driverParam: string;
|
|
9286
|
+
notNull: true;
|
|
9287
|
+
hasDefault: false;
|
|
9288
|
+
isPrimaryKey: false;
|
|
9289
|
+
isAutoincrement: false;
|
|
9290
|
+
hasRuntimeDefault: false;
|
|
9291
|
+
enumValues: [string, ...string[]];
|
|
9292
|
+
baseColumn: never;
|
|
9293
|
+
identity: undefined;
|
|
9294
|
+
generated: undefined;
|
|
9295
|
+
}, {}, {
|
|
9296
|
+
length: number | undefined;
|
|
9297
|
+
}>;
|
|
9298
|
+
}, undefined, undefined>>>;
|
|
9299
|
+
}, z.core.$strip>;
|
|
9300
|
+
}, z.core.$strip>;
|
|
9301
|
+
declare const FunctionResponse: z.ZodObject<{
|
|
9302
|
+
data: z.ZodObject<{
|
|
9303
|
+
id: z.ZodString;
|
|
9304
|
+
createdAt: z.ZodString;
|
|
9305
|
+
updatedAt: z.ZodString;
|
|
9306
|
+
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
9307
|
+
executeCode: z.ZodString;
|
|
9308
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
9309
|
+
}, z.core.$strip>;
|
|
9310
|
+
}, z.core.$strip>;
|
|
9311
|
+
declare const FunctionToolResponse: z.ZodObject<{
|
|
9312
|
+
data: z.ZodObject<{
|
|
9313
|
+
id: z.ZodString;
|
|
9314
|
+
name: z.ZodString;
|
|
9315
|
+
description: z.ZodNullable<z.ZodString>;
|
|
9316
|
+
agentId: z.ZodString;
|
|
9317
|
+
createdAt: z.ZodString;
|
|
9318
|
+
updatedAt: z.ZodString;
|
|
9319
|
+
functionId: z.ZodString;
|
|
9320
|
+
}, z.core.$strip>;
|
|
9321
|
+
}, z.core.$strip>;
|
|
9322
|
+
declare const DataComponentResponse: z.ZodObject<{
|
|
9323
|
+
data: z.ZodObject<{
|
|
9324
|
+
id: z.ZodString;
|
|
9325
|
+
name: z.ZodString;
|
|
9326
|
+
description: z.ZodString;
|
|
9327
|
+
createdAt: z.ZodString;
|
|
9328
|
+
updatedAt: z.ZodString;
|
|
9329
|
+
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
9330
|
+
}, z.core.$strip>;
|
|
9331
|
+
}, z.core.$strip>;
|
|
9332
|
+
declare const ArtifactComponentResponse: z.ZodObject<{
|
|
9333
|
+
data: z.ZodObject<{
|
|
9334
|
+
id: z.ZodString;
|
|
9335
|
+
name: z.ZodString;
|
|
9336
|
+
description: z.ZodString;
|
|
9337
|
+
createdAt: z.ZodString;
|
|
9338
|
+
updatedAt: z.ZodString;
|
|
9339
|
+
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
9340
|
+
}, z.core.$strip>;
|
|
9341
|
+
}, z.core.$strip>;
|
|
9342
|
+
declare const SubAgentRelationResponse: z.ZodObject<{
|
|
9343
|
+
data: z.ZodObject<{
|
|
9344
|
+
id: z.ZodString;
|
|
9345
|
+
createdAt: z.ZodString;
|
|
9346
|
+
updatedAt: z.ZodString;
|
|
9347
|
+
sourceSubAgentId: z.ZodString;
|
|
9348
|
+
targetSubAgentId: z.ZodNullable<z.ZodString>;
|
|
9349
|
+
externalSubAgentId: z.ZodNullable<z.ZodString>;
|
|
9350
|
+
relationType: z.ZodNullable<z.ZodString>;
|
|
9351
|
+
}, z.core.$strip>;
|
|
9352
|
+
}, z.core.$strip>;
|
|
9353
|
+
declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
9354
|
+
data: z.ZodObject<{
|
|
9355
|
+
id: z.ZodString;
|
|
9356
|
+
createdAt: z.ZodString;
|
|
9357
|
+
updatedAt: z.ZodString;
|
|
9358
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
9359
|
+
toolId: z.ZodString;
|
|
9360
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
9361
|
+
subAgentId: z.ZodString;
|
|
9362
|
+
}, z.core.$strip>;
|
|
9363
|
+
}, z.core.$strip>;
|
|
9364
|
+
declare const ConversationResponse: z.ZodObject<{
|
|
9365
|
+
data: z.ZodObject<{
|
|
9366
|
+
id: z.ZodString;
|
|
9367
|
+
title: z.ZodNullable<z.ZodString>;
|
|
9368
|
+
createdAt: z.ZodString;
|
|
9369
|
+
updatedAt: z.ZodString;
|
|
9370
|
+
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
9371
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
9372
|
+
activeSubAgentId: z.ZodString;
|
|
9373
|
+
lastContextResolution: z.ZodNullable<z.ZodString>;
|
|
9374
|
+
}, z.core.$strip>;
|
|
9375
|
+
}, z.core.$strip>;
|
|
9376
|
+
declare const MessageResponse: z.ZodObject<{
|
|
9377
|
+
data: z.ZodObject<{
|
|
9378
|
+
id: z.ZodString;
|
|
9379
|
+
createdAt: z.ZodString;
|
|
9380
|
+
updatedAt: z.ZodString;
|
|
9381
|
+
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
9382
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
9383
|
+
conversationId: z.ZodString;
|
|
9384
|
+
role: z.ZodString;
|
|
9385
|
+
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
9386
|
+
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
9387
|
+
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
9388
|
+
toExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
9389
|
+
visibility: z.ZodString;
|
|
9390
|
+
messageType: z.ZodString;
|
|
9391
|
+
taskId: z.ZodNullable<z.ZodString>;
|
|
9392
|
+
parentMessageId: z.ZodNullable<z.ZodString>;
|
|
9393
|
+
a2aTaskId: z.ZodNullable<z.ZodString>;
|
|
9394
|
+
a2aSessionId: z.ZodNullable<z.ZodString>;
|
|
9395
|
+
}, z.core.$strip>;
|
|
9396
|
+
}, z.core.$strip>;
|
|
9397
|
+
declare const ProjectListResponse: z.ZodObject<{
|
|
9398
|
+
data: z.ZodArray<z.ZodObject<{
|
|
9399
|
+
id: z.ZodString;
|
|
9400
|
+
name: z.ZodString;
|
|
9401
|
+
description: z.ZodString;
|
|
9402
|
+
createdAt: z.ZodString;
|
|
9403
|
+
updatedAt: z.ZodString;
|
|
9404
|
+
models: z.ZodNullable<z.ZodType<{
|
|
9405
|
+
base: {
|
|
9406
|
+
model?: string | undefined;
|
|
9407
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9408
|
+
};
|
|
9409
|
+
structuredOutput?: {
|
|
9410
|
+
model?: string | undefined;
|
|
9411
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9412
|
+
} | undefined;
|
|
9413
|
+
summarizer?: {
|
|
9414
|
+
model?: string | undefined;
|
|
9415
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9416
|
+
} | undefined;
|
|
9417
|
+
}, {
|
|
9418
|
+
base: {
|
|
9419
|
+
model?: string | undefined;
|
|
9420
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9421
|
+
};
|
|
9422
|
+
structuredOutput?: {
|
|
9423
|
+
model?: string | undefined;
|
|
9424
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9425
|
+
} | undefined;
|
|
9426
|
+
summarizer?: {
|
|
9427
|
+
model?: string | undefined;
|
|
9428
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9429
|
+
} | undefined;
|
|
9430
|
+
}, z.core.$ZodTypeInternals<{
|
|
9431
|
+
base: {
|
|
9432
|
+
model?: string | undefined;
|
|
9433
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9434
|
+
};
|
|
9435
|
+
structuredOutput?: {
|
|
9436
|
+
model?: string | undefined;
|
|
9437
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9438
|
+
} | undefined;
|
|
9439
|
+
summarizer?: {
|
|
9440
|
+
model?: string | undefined;
|
|
9441
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9442
|
+
} | undefined;
|
|
9443
|
+
}, {
|
|
9444
|
+
base: {
|
|
9445
|
+
model?: string | undefined;
|
|
9446
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9447
|
+
};
|
|
9448
|
+
structuredOutput?: {
|
|
9449
|
+
model?: string | undefined;
|
|
9450
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9451
|
+
} | undefined;
|
|
9452
|
+
summarizer?: {
|
|
9453
|
+
model?: string | undefined;
|
|
9454
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9455
|
+
} | undefined;
|
|
9456
|
+
}>>>;
|
|
9457
|
+
stopWhen: z.ZodNullable<z.ZodType<{
|
|
9458
|
+
transferCountIs?: number | undefined;
|
|
9459
|
+
stepCountIs?: number | undefined;
|
|
9460
|
+
}, {
|
|
9461
|
+
transferCountIs?: number | undefined;
|
|
9462
|
+
stepCountIs?: number | undefined;
|
|
9463
|
+
}, z.core.$ZodTypeInternals<{
|
|
9464
|
+
transferCountIs?: number | undefined;
|
|
9465
|
+
stepCountIs?: number | undefined;
|
|
9466
|
+
}, {
|
|
9467
|
+
transferCountIs?: number | undefined;
|
|
9468
|
+
stepCountIs?: number | undefined;
|
|
9469
|
+
}>>>;
|
|
9470
|
+
sandboxConfig: z.ZodNullable<z.ZodType<{
|
|
9471
|
+
provider: "vercel" | "local";
|
|
9472
|
+
runtime: "node22" | "typescript";
|
|
9473
|
+
timeout?: number;
|
|
9474
|
+
vcpus?: number;
|
|
9475
|
+
}, {
|
|
9476
|
+
provider: "vercel" | "local";
|
|
9477
|
+
runtime: "node22" | "typescript";
|
|
9478
|
+
timeout?: number;
|
|
9479
|
+
vcpus?: number;
|
|
9480
|
+
}, z.core.$ZodTypeInternals<{
|
|
9481
|
+
provider: "vercel" | "local";
|
|
9482
|
+
runtime: "node22" | "typescript";
|
|
9483
|
+
timeout?: number;
|
|
9484
|
+
vcpus?: number;
|
|
9485
|
+
}, {
|
|
9486
|
+
provider: "vercel" | "local";
|
|
9487
|
+
runtime: "node22" | "typescript";
|
|
9488
|
+
timeout?: number;
|
|
9489
|
+
vcpus?: number;
|
|
9490
|
+
}>>>;
|
|
9491
|
+
}, {
|
|
9492
|
+
out: {};
|
|
9493
|
+
in: {};
|
|
9494
|
+
}>>;
|
|
9495
|
+
pagination: z.ZodObject<{
|
|
9496
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
9497
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
9498
|
+
total: z.ZodNumber;
|
|
9499
|
+
pages: z.ZodNumber;
|
|
9500
|
+
}, z.core.$strip>;
|
|
9501
|
+
}, z.core.$strip>;
|
|
9502
|
+
declare const SubAgentListResponse: z.ZodObject<{
|
|
9503
|
+
data: z.ZodArray<z.ZodObject<{
|
|
9504
|
+
id: z.ZodString;
|
|
9505
|
+
name: z.ZodString;
|
|
9506
|
+
description: z.ZodString;
|
|
9507
|
+
prompt: z.ZodString;
|
|
9508
|
+
createdAt: z.ZodString;
|
|
9509
|
+
updatedAt: z.ZodString;
|
|
9510
|
+
models: z.ZodNullable<z.ZodType<{
|
|
9511
|
+
base?: {
|
|
9512
|
+
model?: string | undefined;
|
|
9513
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9514
|
+
} | undefined;
|
|
9515
|
+
structuredOutput?: {
|
|
9516
|
+
model?: string | undefined;
|
|
9517
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9518
|
+
} | undefined;
|
|
9519
|
+
summarizer?: {
|
|
9520
|
+
model?: string | undefined;
|
|
9521
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9522
|
+
} | undefined;
|
|
9523
|
+
}, {
|
|
9524
|
+
base?: {
|
|
9525
|
+
model?: string | undefined;
|
|
9526
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9527
|
+
} | undefined;
|
|
9528
|
+
structuredOutput?: {
|
|
9529
|
+
model?: string | undefined;
|
|
9530
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9531
|
+
} | undefined;
|
|
9532
|
+
summarizer?: {
|
|
9533
|
+
model?: string | undefined;
|
|
9534
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9535
|
+
} | undefined;
|
|
9536
|
+
}, z.core.$ZodTypeInternals<{
|
|
9537
|
+
base?: {
|
|
9538
|
+
model?: string | undefined;
|
|
9539
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9540
|
+
} | undefined;
|
|
9541
|
+
structuredOutput?: {
|
|
9542
|
+
model?: string | undefined;
|
|
9543
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9544
|
+
} | undefined;
|
|
9545
|
+
summarizer?: {
|
|
9546
|
+
model?: string | undefined;
|
|
9547
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9548
|
+
} | undefined;
|
|
9549
|
+
}, {
|
|
9550
|
+
base?: {
|
|
9551
|
+
model?: string | undefined;
|
|
9552
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9553
|
+
} | undefined;
|
|
9554
|
+
structuredOutput?: {
|
|
9555
|
+
model?: string | undefined;
|
|
9556
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9557
|
+
} | undefined;
|
|
9558
|
+
summarizer?: {
|
|
9559
|
+
model?: string | undefined;
|
|
9560
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9561
|
+
} | undefined;
|
|
9562
|
+
}>>>;
|
|
9563
|
+
stopWhen: z.ZodNullable<z.ZodType<{
|
|
9564
|
+
stepCountIs?: number | undefined;
|
|
9565
|
+
}, {
|
|
9566
|
+
stepCountIs?: number | undefined;
|
|
9567
|
+
}, z.core.$ZodTypeInternals<{
|
|
9568
|
+
stepCountIs?: number | undefined;
|
|
9569
|
+
}, {
|
|
9570
|
+
stepCountIs?: number | undefined;
|
|
9571
|
+
}>>>;
|
|
9572
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
9573
|
+
}, z.core.$strip>>;
|
|
9574
|
+
pagination: z.ZodObject<{
|
|
9575
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
9576
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
9577
|
+
total: z.ZodNumber;
|
|
9578
|
+
pages: z.ZodNumber;
|
|
9579
|
+
}, z.core.$strip>;
|
|
9580
|
+
}, z.core.$strip>;
|
|
9581
|
+
declare const AgentListResponse: z.ZodObject<{
|
|
9582
|
+
data: z.ZodArray<z.ZodObject<{
|
|
9583
|
+
id: z.ZodString;
|
|
9584
|
+
name: z.ZodString;
|
|
9585
|
+
description: z.ZodNullable<z.ZodString>;
|
|
9586
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
9587
|
+
createdAt: z.ZodString;
|
|
9588
|
+
updatedAt: z.ZodString;
|
|
9589
|
+
models: z.ZodNullable<z.ZodType<{
|
|
9590
|
+
base?: {
|
|
9591
|
+
model?: string | undefined;
|
|
9592
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9593
|
+
} | undefined;
|
|
9594
|
+
structuredOutput?: {
|
|
9595
|
+
model?: string | undefined;
|
|
9596
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9597
|
+
} | undefined;
|
|
9598
|
+
summarizer?: {
|
|
9599
|
+
model?: string | undefined;
|
|
9600
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9601
|
+
} | undefined;
|
|
9602
|
+
}, {
|
|
9603
|
+
base?: {
|
|
9604
|
+
model?: string | undefined;
|
|
9605
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9606
|
+
} | undefined;
|
|
9607
|
+
structuredOutput?: {
|
|
9608
|
+
model?: string | undefined;
|
|
9609
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9610
|
+
} | undefined;
|
|
9611
|
+
summarizer?: {
|
|
9612
|
+
model?: string | undefined;
|
|
9613
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9614
|
+
} | undefined;
|
|
9615
|
+
}, z.core.$ZodTypeInternals<{
|
|
9616
|
+
base?: {
|
|
9617
|
+
model?: string | undefined;
|
|
9618
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9619
|
+
} | undefined;
|
|
9620
|
+
structuredOutput?: {
|
|
9621
|
+
model?: string | undefined;
|
|
9622
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9623
|
+
} | undefined;
|
|
9624
|
+
summarizer?: {
|
|
9625
|
+
model?: string | undefined;
|
|
9626
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9627
|
+
} | undefined;
|
|
9628
|
+
}, {
|
|
9629
|
+
base?: {
|
|
9630
|
+
model?: string | undefined;
|
|
9631
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9632
|
+
} | undefined;
|
|
9633
|
+
structuredOutput?: {
|
|
9634
|
+
model?: string | undefined;
|
|
9635
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9636
|
+
} | undefined;
|
|
9637
|
+
summarizer?: {
|
|
9638
|
+
model?: string | undefined;
|
|
9639
|
+
providerOptions?: Record<string, any> | undefined;
|
|
9640
|
+
} | undefined;
|
|
9641
|
+
}>>>;
|
|
9642
|
+
stopWhen: z.ZodNullable<z.ZodType<{
|
|
9643
|
+
transferCountIs?: number | undefined;
|
|
9644
|
+
}, {
|
|
9645
|
+
transferCountIs?: number | undefined;
|
|
9646
|
+
}, z.core.$ZodTypeInternals<{
|
|
9647
|
+
transferCountIs?: number | undefined;
|
|
9648
|
+
}, {
|
|
9649
|
+
transferCountIs?: number | undefined;
|
|
9650
|
+
}>>>;
|
|
9651
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
9652
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
9653
|
+
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
9654
|
+
enabled?: boolean | undefined;
|
|
9655
|
+
numEvents?: number | undefined;
|
|
9656
|
+
timeInSeconds?: number | undefined;
|
|
9657
|
+
prompt?: string | undefined;
|
|
9658
|
+
statusComponents?: {
|
|
9659
|
+
type: string;
|
|
9660
|
+
description?: string | undefined;
|
|
9661
|
+
detailsSchema?: {
|
|
9662
|
+
type: "object";
|
|
9663
|
+
properties: Record<string, any>;
|
|
9664
|
+
required?: string[] | undefined;
|
|
9665
|
+
} | undefined;
|
|
9666
|
+
}[] | undefined;
|
|
9667
|
+
}, {
|
|
9668
|
+
enabled?: boolean | undefined;
|
|
9669
|
+
numEvents?: number | undefined;
|
|
9670
|
+
timeInSeconds?: number | undefined;
|
|
9671
|
+
prompt?: string | undefined;
|
|
9672
|
+
statusComponents?: {
|
|
9673
|
+
type: string;
|
|
9674
|
+
description?: string | undefined;
|
|
9675
|
+
detailsSchema?: {
|
|
9676
|
+
type: "object";
|
|
9677
|
+
properties: Record<string, any>;
|
|
9678
|
+
required?: string[] | undefined;
|
|
9679
|
+
} | undefined;
|
|
9680
|
+
}[] | undefined;
|
|
9681
|
+
}, z.core.$ZodTypeInternals<{
|
|
9682
|
+
enabled?: boolean | undefined;
|
|
9683
|
+
numEvents?: number | undefined;
|
|
9684
|
+
timeInSeconds?: number | undefined;
|
|
9685
|
+
prompt?: string | undefined;
|
|
9686
|
+
statusComponents?: {
|
|
9687
|
+
type: string;
|
|
9688
|
+
description?: string | undefined;
|
|
9689
|
+
detailsSchema?: {
|
|
9690
|
+
type: "object";
|
|
9691
|
+
properties: Record<string, any>;
|
|
9692
|
+
required?: string[] | undefined;
|
|
9693
|
+
} | undefined;
|
|
9694
|
+
}[] | undefined;
|
|
9695
|
+
}, {
|
|
9696
|
+
enabled?: boolean | undefined;
|
|
9697
|
+
numEvents?: number | undefined;
|
|
9698
|
+
timeInSeconds?: number | undefined;
|
|
9699
|
+
prompt?: string | undefined;
|
|
9700
|
+
statusComponents?: {
|
|
9701
|
+
type: string;
|
|
9702
|
+
description?: string | undefined;
|
|
9703
|
+
detailsSchema?: {
|
|
9704
|
+
type: "object";
|
|
9705
|
+
properties: Record<string, any>;
|
|
9706
|
+
required?: string[] | undefined;
|
|
9707
|
+
} | undefined;
|
|
9708
|
+
}[] | undefined;
|
|
9709
|
+
}>>>;
|
|
9710
|
+
}, z.core.$strip>>;
|
|
9711
|
+
pagination: z.ZodObject<{
|
|
9712
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
9713
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
9714
|
+
total: z.ZodNumber;
|
|
9715
|
+
pages: z.ZodNumber;
|
|
9716
|
+
}, z.core.$strip>;
|
|
9717
|
+
}, z.core.$strip>;
|
|
9718
|
+
declare const ToolListResponse: z.ZodObject<{
|
|
9719
|
+
data: z.ZodArray<z.ZodObject<{
|
|
9720
|
+
id: z.ZodString;
|
|
9721
|
+
name: z.ZodString;
|
|
9722
|
+
description: z.ZodNullable<z.ZodString>;
|
|
9723
|
+
config: z.ZodType<{
|
|
9724
|
+
type: "mcp";
|
|
9725
|
+
mcp: ToolMcpConfig;
|
|
9726
|
+
}, {
|
|
9727
|
+
type: "mcp";
|
|
9728
|
+
mcp: ToolMcpConfig;
|
|
9729
|
+
}, z.core.$ZodTypeInternals<{
|
|
9730
|
+
type: "mcp";
|
|
9731
|
+
mcp: ToolMcpConfig;
|
|
9732
|
+
}, {
|
|
9733
|
+
type: "mcp";
|
|
9734
|
+
mcp: ToolMcpConfig;
|
|
9735
|
+
}>>;
|
|
9736
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
9737
|
+
createdAt: z.ZodString;
|
|
9738
|
+
updatedAt: z.ZodString;
|
|
9739
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
9740
|
+
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
9741
|
+
imageUrl: z.ZodNullable<z.ZodString>;
|
|
9742
|
+
lastError: z.ZodNullable<z.ZodString>;
|
|
9743
|
+
}, z.core.$strip>>;
|
|
9744
|
+
pagination: z.ZodObject<{
|
|
9745
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
9746
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
9747
|
+
total: z.ZodNumber;
|
|
9748
|
+
pages: z.ZodNumber;
|
|
9749
|
+
}, z.core.$strip>;
|
|
9750
|
+
}, z.core.$strip>;
|
|
9751
|
+
declare const ExternalAgentListResponse: z.ZodObject<{
|
|
9752
|
+
data: z.ZodArray<z.ZodObject<{
|
|
9753
|
+
id: z.ZodString;
|
|
9754
|
+
name: z.ZodString;
|
|
9755
|
+
description: z.ZodString;
|
|
9756
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9757
|
+
createdAt: z.ZodString;
|
|
9758
|
+
updatedAt: z.ZodString;
|
|
9759
|
+
baseUrl: z.ZodString;
|
|
9760
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
9761
|
+
}, z.core.$strip>>;
|
|
9762
|
+
pagination: z.ZodObject<{
|
|
9763
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
9764
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
9765
|
+
total: z.ZodNumber;
|
|
9766
|
+
pages: z.ZodNumber;
|
|
9767
|
+
}, z.core.$strip>;
|
|
9768
|
+
}, z.core.$strip>;
|
|
9769
|
+
declare const ContextConfigListResponse: z.ZodObject<{
|
|
9770
|
+
data: z.ZodArray<z.ZodObject<{
|
|
9771
|
+
id: z.ZodString;
|
|
9772
|
+
createdAt: z.ZodString;
|
|
9773
|
+
updatedAt: z.ZodString;
|
|
9774
|
+
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
9775
|
+
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
9776
|
+
}, z.core.$strip>>;
|
|
9777
|
+
pagination: z.ZodObject<{
|
|
9778
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
9779
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
9780
|
+
total: z.ZodNumber;
|
|
9781
|
+
pages: z.ZodNumber;
|
|
9782
|
+
}, z.core.$strip>;
|
|
9783
|
+
}, z.core.$strip>;
|
|
9784
|
+
declare const ApiKeyListResponse: z.ZodObject<{
|
|
9785
|
+
data: z.ZodArray<z.ZodObject<{
|
|
9786
|
+
id: z.ZodString;
|
|
9787
|
+
name: z.ZodNullable<z.ZodString>;
|
|
9788
|
+
agentId: z.ZodString;
|
|
9789
|
+
publicId: z.ZodString;
|
|
9790
|
+
keyPrefix: z.ZodString;
|
|
9791
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
9792
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
9793
|
+
createdAt: z.ZodString;
|
|
9794
|
+
updatedAt: z.ZodString;
|
|
9795
|
+
}, {
|
|
9796
|
+
out: {};
|
|
9797
|
+
in: {};
|
|
9798
|
+
}>>;
|
|
9799
|
+
pagination: z.ZodObject<{
|
|
9800
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
9801
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
9802
|
+
total: z.ZodNumber;
|
|
9803
|
+
pages: z.ZodNumber;
|
|
9804
|
+
}, z.core.$strip>;
|
|
9805
|
+
}, z.core.$strip>;
|
|
9806
|
+
declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
9807
|
+
data: z.ZodArray<z.ZodObject<{
|
|
9808
|
+
id: z.ZodString;
|
|
9809
|
+
createdAt: z.ZodString;
|
|
9810
|
+
updatedAt: z.ZodString;
|
|
9811
|
+
credentialStoreId: z.ZodString;
|
|
9812
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
9813
|
+
type: z.ZodEnum<{
|
|
9814
|
+
readonly memory: "memory";
|
|
9815
|
+
readonly keychain: "keychain";
|
|
9816
|
+
readonly nango: "nango";
|
|
9817
|
+
}>;
|
|
9818
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod.BuildSchema<"select", {
|
|
9819
|
+
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9820
|
+
name: "created_at";
|
|
9821
|
+
tableName: "tools";
|
|
9822
|
+
dataType: "string";
|
|
9823
|
+
columnType: "SQLiteText";
|
|
9824
|
+
data: string;
|
|
9825
|
+
driverParam: string;
|
|
9826
|
+
notNull: true;
|
|
9827
|
+
hasDefault: true;
|
|
9828
|
+
isPrimaryKey: false;
|
|
9829
|
+
isAutoincrement: false;
|
|
9830
|
+
hasRuntimeDefault: false;
|
|
9831
|
+
enumValues: [string, ...string[]];
|
|
9832
|
+
baseColumn: never;
|
|
9833
|
+
identity: undefined;
|
|
9834
|
+
generated: undefined;
|
|
9835
|
+
}, {}, {
|
|
9836
|
+
length: number | undefined;
|
|
9837
|
+
}>;
|
|
9838
|
+
updatedAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9839
|
+
name: "updated_at";
|
|
9840
|
+
tableName: "tools";
|
|
9841
|
+
dataType: "string";
|
|
9842
|
+
columnType: "SQLiteText";
|
|
9843
|
+
data: string;
|
|
9844
|
+
driverParam: string;
|
|
9845
|
+
notNull: true;
|
|
9846
|
+
hasDefault: true;
|
|
9847
|
+
isPrimaryKey: false;
|
|
9848
|
+
isAutoincrement: false;
|
|
9849
|
+
hasRuntimeDefault: false;
|
|
9850
|
+
enumValues: [string, ...string[]];
|
|
9851
|
+
baseColumn: never;
|
|
9852
|
+
identity: undefined;
|
|
9853
|
+
generated: undefined;
|
|
9854
|
+
}, {}, {
|
|
9855
|
+
length: number | undefined;
|
|
9856
|
+
}>;
|
|
9857
|
+
name: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9858
|
+
name: "name";
|
|
9859
|
+
tableName: "tools";
|
|
9860
|
+
dataType: "string";
|
|
9861
|
+
columnType: "SQLiteText";
|
|
9862
|
+
data: string;
|
|
9863
|
+
driverParam: string;
|
|
9864
|
+
notNull: true;
|
|
9865
|
+
hasDefault: false;
|
|
9866
|
+
isPrimaryKey: false;
|
|
9867
|
+
isAutoincrement: false;
|
|
9868
|
+
hasRuntimeDefault: false;
|
|
9869
|
+
enumValues: [string, ...string[]];
|
|
9870
|
+
baseColumn: never;
|
|
9871
|
+
identity: undefined;
|
|
9872
|
+
generated: undefined;
|
|
9873
|
+
}, {}, {
|
|
9874
|
+
length: number | undefined;
|
|
9875
|
+
}>;
|
|
9876
|
+
description: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9877
|
+
name: "description";
|
|
9878
|
+
tableName: "tools";
|
|
9879
|
+
dataType: "string";
|
|
9880
|
+
columnType: "SQLiteText";
|
|
9881
|
+
data: string;
|
|
9882
|
+
driverParam: string;
|
|
9883
|
+
notNull: false;
|
|
9884
|
+
hasDefault: false;
|
|
9885
|
+
isPrimaryKey: false;
|
|
9886
|
+
isAutoincrement: false;
|
|
9887
|
+
hasRuntimeDefault: false;
|
|
9888
|
+
enumValues: [string, ...string[]];
|
|
9889
|
+
baseColumn: never;
|
|
9890
|
+
identity: undefined;
|
|
9891
|
+
generated: undefined;
|
|
9892
|
+
}, {}, {
|
|
9893
|
+
length: number | undefined;
|
|
9894
|
+
}>;
|
|
9895
|
+
config: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9896
|
+
name: "config";
|
|
9897
|
+
tableName: "tools";
|
|
9898
|
+
dataType: "json";
|
|
9899
|
+
columnType: "SQLiteBlobJson";
|
|
9900
|
+
data: {
|
|
9901
|
+
type: "mcp";
|
|
9902
|
+
mcp: ToolMcpConfig;
|
|
9903
|
+
};
|
|
9904
|
+
driverParam: Buffer<ArrayBufferLike>;
|
|
9905
|
+
notNull: true;
|
|
9906
|
+
hasDefault: false;
|
|
9907
|
+
isPrimaryKey: false;
|
|
9908
|
+
isAutoincrement: false;
|
|
9909
|
+
hasRuntimeDefault: false;
|
|
9910
|
+
enumValues: undefined;
|
|
9911
|
+
baseColumn: never;
|
|
9912
|
+
identity: undefined;
|
|
9913
|
+
generated: undefined;
|
|
9914
|
+
}, {}, {
|
|
9915
|
+
$type: {
|
|
9916
|
+
type: "mcp";
|
|
9917
|
+
mcp: ToolMcpConfig;
|
|
9918
|
+
};
|
|
9919
|
+
}>;
|
|
9920
|
+
credentialReferenceId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9921
|
+
name: "credential_reference_id";
|
|
9922
|
+
tableName: "tools";
|
|
9923
|
+
dataType: "string";
|
|
9924
|
+
columnType: "SQLiteText";
|
|
9925
|
+
data: string;
|
|
9926
|
+
driverParam: string;
|
|
9927
|
+
notNull: false;
|
|
9928
|
+
hasDefault: false;
|
|
9929
|
+
isPrimaryKey: false;
|
|
9930
|
+
isAutoincrement: false;
|
|
9931
|
+
hasRuntimeDefault: false;
|
|
9932
|
+
enumValues: [string, ...string[]];
|
|
9933
|
+
baseColumn: never;
|
|
9934
|
+
identity: undefined;
|
|
9935
|
+
generated: undefined;
|
|
9936
|
+
}, {}, {
|
|
9937
|
+
length: number | undefined;
|
|
9938
|
+
}>;
|
|
9939
|
+
headers: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9940
|
+
name: "headers";
|
|
9941
|
+
tableName: "tools";
|
|
9942
|
+
dataType: "json";
|
|
9943
|
+
columnType: "SQLiteBlobJson";
|
|
9944
|
+
data: Record<string, string>;
|
|
9945
|
+
driverParam: Buffer<ArrayBufferLike>;
|
|
9946
|
+
notNull: false;
|
|
9947
|
+
hasDefault: false;
|
|
9948
|
+
isPrimaryKey: false;
|
|
9949
|
+
isAutoincrement: false;
|
|
9950
|
+
hasRuntimeDefault: false;
|
|
9951
|
+
enumValues: undefined;
|
|
9952
|
+
baseColumn: never;
|
|
9953
|
+
identity: undefined;
|
|
9954
|
+
generated: undefined;
|
|
9955
|
+
}, {}, {
|
|
9956
|
+
$type: Record<string, string>;
|
|
9957
|
+
}>;
|
|
9958
|
+
imageUrl: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9959
|
+
name: "image_url";
|
|
9960
|
+
tableName: "tools";
|
|
9961
|
+
dataType: "string";
|
|
9962
|
+
columnType: "SQLiteText";
|
|
9963
|
+
data: string;
|
|
9964
|
+
driverParam: string;
|
|
9965
|
+
notNull: false;
|
|
9966
|
+
hasDefault: false;
|
|
9967
|
+
isPrimaryKey: false;
|
|
9968
|
+
isAutoincrement: false;
|
|
9969
|
+
hasRuntimeDefault: false;
|
|
9970
|
+
enumValues: [string, ...string[]];
|
|
9971
|
+
baseColumn: never;
|
|
9972
|
+
identity: undefined;
|
|
9973
|
+
generated: undefined;
|
|
9974
|
+
}, {}, {
|
|
9975
|
+
length: number | undefined;
|
|
9976
|
+
}>;
|
|
9977
|
+
capabilities: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9978
|
+
name: "capabilities";
|
|
9979
|
+
tableName: "tools";
|
|
9980
|
+
dataType: "json";
|
|
9981
|
+
columnType: "SQLiteBlobJson";
|
|
9982
|
+
data: ToolServerCapabilities;
|
|
9983
|
+
driverParam: Buffer<ArrayBufferLike>;
|
|
9984
|
+
notNull: false;
|
|
9985
|
+
hasDefault: false;
|
|
9986
|
+
isPrimaryKey: false;
|
|
9987
|
+
isAutoincrement: false;
|
|
9988
|
+
hasRuntimeDefault: false;
|
|
9989
|
+
enumValues: undefined;
|
|
9990
|
+
baseColumn: never;
|
|
9991
|
+
identity: undefined;
|
|
9992
|
+
generated: undefined;
|
|
9993
|
+
}, {}, {
|
|
9994
|
+
$type: ToolServerCapabilities;
|
|
9995
|
+
}>;
|
|
9996
|
+
lastError: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
9997
|
+
name: "last_error";
|
|
9998
|
+
tableName: "tools";
|
|
9999
|
+
dataType: "string";
|
|
10000
|
+
columnType: "SQLiteText";
|
|
10001
|
+
data: string;
|
|
10002
|
+
driverParam: string;
|
|
10003
|
+
notNull: false;
|
|
10004
|
+
hasDefault: false;
|
|
10005
|
+
isPrimaryKey: false;
|
|
10006
|
+
isAutoincrement: false;
|
|
10007
|
+
hasRuntimeDefault: false;
|
|
10008
|
+
enumValues: [string, ...string[]];
|
|
10009
|
+
baseColumn: never;
|
|
10010
|
+
identity: undefined;
|
|
10011
|
+
generated: undefined;
|
|
10012
|
+
}, {}, {
|
|
10013
|
+
length: number | undefined;
|
|
10014
|
+
}>;
|
|
10015
|
+
projectId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
10016
|
+
name: "project_id";
|
|
10017
|
+
tableName: "tools";
|
|
10018
|
+
dataType: "string";
|
|
10019
|
+
columnType: "SQLiteText";
|
|
10020
|
+
data: string;
|
|
10021
|
+
driverParam: string;
|
|
10022
|
+
notNull: true;
|
|
10023
|
+
hasDefault: false;
|
|
10024
|
+
isPrimaryKey: false;
|
|
10025
|
+
isAutoincrement: false;
|
|
10026
|
+
hasRuntimeDefault: false;
|
|
10027
|
+
enumValues: [string, ...string[]];
|
|
10028
|
+
baseColumn: never;
|
|
10029
|
+
identity: undefined;
|
|
10030
|
+
generated: undefined;
|
|
10031
|
+
}, {}, {
|
|
10032
|
+
length: number | undefined;
|
|
10033
|
+
}>;
|
|
10034
|
+
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
10035
|
+
name: "tenant_id";
|
|
10036
|
+
tableName: "tools";
|
|
10037
|
+
dataType: "string";
|
|
10038
|
+
columnType: "SQLiteText";
|
|
10039
|
+
data: string;
|
|
10040
|
+
driverParam: string;
|
|
10041
|
+
notNull: true;
|
|
10042
|
+
hasDefault: false;
|
|
10043
|
+
isPrimaryKey: false;
|
|
10044
|
+
isAutoincrement: false;
|
|
10045
|
+
hasRuntimeDefault: false;
|
|
10046
|
+
enumValues: [string, ...string[]];
|
|
10047
|
+
baseColumn: never;
|
|
10048
|
+
identity: undefined;
|
|
10049
|
+
generated: undefined;
|
|
10050
|
+
}, {}, {
|
|
10051
|
+
length: number | undefined;
|
|
10052
|
+
}>;
|
|
10053
|
+
id: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
10054
|
+
name: "id";
|
|
10055
|
+
tableName: "tools";
|
|
10056
|
+
dataType: "string";
|
|
10057
|
+
columnType: "SQLiteText";
|
|
10058
|
+
data: string;
|
|
10059
|
+
driverParam: string;
|
|
10060
|
+
notNull: true;
|
|
10061
|
+
hasDefault: false;
|
|
10062
|
+
isPrimaryKey: false;
|
|
10063
|
+
isAutoincrement: false;
|
|
10064
|
+
hasRuntimeDefault: false;
|
|
10065
|
+
enumValues: [string, ...string[]];
|
|
10066
|
+
baseColumn: never;
|
|
10067
|
+
identity: undefined;
|
|
10068
|
+
generated: undefined;
|
|
10069
|
+
}, {}, {
|
|
10070
|
+
length: number | undefined;
|
|
10071
|
+
}>;
|
|
10072
|
+
}, undefined, undefined>>>;
|
|
10073
|
+
}, z.core.$strip>>;
|
|
10074
|
+
pagination: z.ZodObject<{
|
|
10075
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10076
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10077
|
+
total: z.ZodNumber;
|
|
10078
|
+
pages: z.ZodNumber;
|
|
10079
|
+
}, z.core.$strip>;
|
|
10080
|
+
}, z.core.$strip>;
|
|
10081
|
+
declare const FunctionListResponse: z.ZodObject<{
|
|
10082
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10083
|
+
id: z.ZodString;
|
|
10084
|
+
createdAt: z.ZodString;
|
|
10085
|
+
updatedAt: z.ZodString;
|
|
10086
|
+
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
10087
|
+
executeCode: z.ZodString;
|
|
10088
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
10089
|
+
}, z.core.$strip>>;
|
|
10090
|
+
pagination: z.ZodObject<{
|
|
10091
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10092
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10093
|
+
total: z.ZodNumber;
|
|
10094
|
+
pages: z.ZodNumber;
|
|
10095
|
+
}, z.core.$strip>;
|
|
10096
|
+
}, z.core.$strip>;
|
|
10097
|
+
declare const FunctionToolListResponse: z.ZodObject<{
|
|
10098
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10099
|
+
id: z.ZodString;
|
|
10100
|
+
name: z.ZodString;
|
|
10101
|
+
description: z.ZodNullable<z.ZodString>;
|
|
10102
|
+
agentId: z.ZodString;
|
|
10103
|
+
createdAt: z.ZodString;
|
|
10104
|
+
updatedAt: z.ZodString;
|
|
10105
|
+
functionId: z.ZodString;
|
|
10106
|
+
}, z.core.$strip>>;
|
|
10107
|
+
pagination: z.ZodObject<{
|
|
10108
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10109
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10110
|
+
total: z.ZodNumber;
|
|
10111
|
+
pages: z.ZodNumber;
|
|
10112
|
+
}, z.core.$strip>;
|
|
10113
|
+
}, z.core.$strip>;
|
|
10114
|
+
declare const DataComponentListResponse: z.ZodObject<{
|
|
10115
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10116
|
+
id: z.ZodString;
|
|
10117
|
+
name: z.ZodString;
|
|
10118
|
+
description: z.ZodString;
|
|
10119
|
+
createdAt: z.ZodString;
|
|
10120
|
+
updatedAt: z.ZodString;
|
|
10121
|
+
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
10122
|
+
}, z.core.$strip>>;
|
|
10123
|
+
pagination: z.ZodObject<{
|
|
10124
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10125
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10126
|
+
total: z.ZodNumber;
|
|
10127
|
+
pages: z.ZodNumber;
|
|
10128
|
+
}, z.core.$strip>;
|
|
10129
|
+
}, z.core.$strip>;
|
|
10130
|
+
declare const ArtifactComponentListResponse: z.ZodObject<{
|
|
10131
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10132
|
+
id: z.ZodString;
|
|
10133
|
+
name: z.ZodString;
|
|
10134
|
+
description: z.ZodString;
|
|
10135
|
+
createdAt: z.ZodString;
|
|
10136
|
+
updatedAt: z.ZodString;
|
|
10137
|
+
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
10138
|
+
}, z.core.$strip>>;
|
|
10139
|
+
pagination: z.ZodObject<{
|
|
10140
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10141
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10142
|
+
total: z.ZodNumber;
|
|
10143
|
+
pages: z.ZodNumber;
|
|
10144
|
+
}, z.core.$strip>;
|
|
10145
|
+
}, z.core.$strip>;
|
|
10146
|
+
declare const SubAgentRelationListResponse: z.ZodObject<{
|
|
10147
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10148
|
+
id: z.ZodString;
|
|
10149
|
+
createdAt: z.ZodString;
|
|
10150
|
+
updatedAt: z.ZodString;
|
|
10151
|
+
sourceSubAgentId: z.ZodString;
|
|
10152
|
+
targetSubAgentId: z.ZodNullable<z.ZodString>;
|
|
10153
|
+
externalSubAgentId: z.ZodNullable<z.ZodString>;
|
|
10154
|
+
relationType: z.ZodNullable<z.ZodString>;
|
|
10155
|
+
}, z.core.$strip>>;
|
|
10156
|
+
pagination: z.ZodObject<{
|
|
10157
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10158
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10159
|
+
total: z.ZodNumber;
|
|
10160
|
+
pages: z.ZodNumber;
|
|
10161
|
+
}, z.core.$strip>;
|
|
10162
|
+
}, z.core.$strip>;
|
|
10163
|
+
declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
10164
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10165
|
+
id: z.ZodString;
|
|
10166
|
+
createdAt: z.ZodString;
|
|
10167
|
+
updatedAt: z.ZodString;
|
|
10168
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
10169
|
+
toolId: z.ZodString;
|
|
10170
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
10171
|
+
subAgentId: z.ZodString;
|
|
10172
|
+
}, z.core.$strip>>;
|
|
10173
|
+
pagination: z.ZodObject<{
|
|
10174
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10175
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10176
|
+
total: z.ZodNumber;
|
|
10177
|
+
pages: z.ZodNumber;
|
|
10178
|
+
}, z.core.$strip>;
|
|
10179
|
+
}, z.core.$strip>;
|
|
10180
|
+
declare const ConversationListResponse: z.ZodObject<{
|
|
10181
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10182
|
+
id: z.ZodString;
|
|
10183
|
+
title: z.ZodNullable<z.ZodString>;
|
|
10184
|
+
createdAt: z.ZodString;
|
|
10185
|
+
updatedAt: z.ZodString;
|
|
10186
|
+
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
10187
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
10188
|
+
activeSubAgentId: z.ZodString;
|
|
10189
|
+
lastContextResolution: z.ZodNullable<z.ZodString>;
|
|
10190
|
+
}, z.core.$strip>>;
|
|
10191
|
+
pagination: z.ZodObject<{
|
|
10192
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10193
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10194
|
+
total: z.ZodNumber;
|
|
10195
|
+
pages: z.ZodNumber;
|
|
10196
|
+
}, z.core.$strip>;
|
|
10197
|
+
}, z.core.$strip>;
|
|
10198
|
+
declare const MessageListResponse: z.ZodObject<{
|
|
10199
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10200
|
+
id: z.ZodString;
|
|
10201
|
+
createdAt: z.ZodString;
|
|
10202
|
+
updatedAt: z.ZodString;
|
|
10203
|
+
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
10204
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
10205
|
+
conversationId: z.ZodString;
|
|
10206
|
+
role: z.ZodString;
|
|
10207
|
+
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
10208
|
+
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
10209
|
+
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
10210
|
+
toExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
10211
|
+
visibility: z.ZodString;
|
|
10212
|
+
messageType: z.ZodString;
|
|
10213
|
+
taskId: z.ZodNullable<z.ZodString>;
|
|
10214
|
+
parentMessageId: z.ZodNullable<z.ZodString>;
|
|
10215
|
+
a2aTaskId: z.ZodNullable<z.ZodString>;
|
|
10216
|
+
a2aSessionId: z.ZodNullable<z.ZodString>;
|
|
10217
|
+
}, z.core.$strip>>;
|
|
10218
|
+
pagination: z.ZodObject<{
|
|
10219
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10220
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10221
|
+
total: z.ZodNumber;
|
|
10222
|
+
pages: z.ZodNumber;
|
|
10223
|
+
}, z.core.$strip>;
|
|
10224
|
+
}, z.core.$strip>;
|
|
10225
|
+
declare const SubAgentDataComponentResponse: z.ZodObject<{
|
|
10226
|
+
data: z.ZodObject<{
|
|
10227
|
+
id: z.ZodString;
|
|
10228
|
+
createdAt: z.ZodString;
|
|
10229
|
+
subAgentId: z.ZodString;
|
|
10230
|
+
dataComponentId: z.ZodString;
|
|
10231
|
+
}, z.core.$strip>;
|
|
10232
|
+
}, z.core.$strip>;
|
|
10233
|
+
declare const SubAgentArtifactComponentResponse: z.ZodObject<{
|
|
10234
|
+
data: z.ZodObject<{
|
|
10235
|
+
id: z.ZodString;
|
|
10236
|
+
createdAt: z.ZodString;
|
|
10237
|
+
subAgentId: z.ZodString;
|
|
10238
|
+
artifactComponentId: z.ZodString;
|
|
10239
|
+
}, z.core.$strip>;
|
|
10240
|
+
}, z.core.$strip>;
|
|
10241
|
+
declare const SubAgentDataComponentListResponse: z.ZodObject<{
|
|
10242
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10243
|
+
id: z.ZodString;
|
|
10244
|
+
createdAt: z.ZodString;
|
|
10245
|
+
subAgentId: z.ZodString;
|
|
10246
|
+
dataComponentId: z.ZodString;
|
|
10247
|
+
}, z.core.$strip>>;
|
|
10248
|
+
pagination: z.ZodObject<{
|
|
10249
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10250
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10251
|
+
total: z.ZodNumber;
|
|
10252
|
+
pages: z.ZodNumber;
|
|
10253
|
+
}, z.core.$strip>;
|
|
10254
|
+
}, z.core.$strip>;
|
|
10255
|
+
declare const SubAgentArtifactComponentListResponse: z.ZodObject<{
|
|
10256
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10257
|
+
id: z.ZodString;
|
|
10258
|
+
createdAt: z.ZodString;
|
|
10259
|
+
subAgentId: z.ZodString;
|
|
10260
|
+
artifactComponentId: z.ZodString;
|
|
10261
|
+
}, z.core.$strip>>;
|
|
10262
|
+
pagination: z.ZodObject<{
|
|
10263
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10264
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
10265
|
+
total: z.ZodNumber;
|
|
10266
|
+
pages: z.ZodNumber;
|
|
10267
|
+
}, z.core.$strip>;
|
|
10268
|
+
}, z.core.$strip>;
|
|
8665
10269
|
declare const HeadersScopeSchema: z.ZodObject<{
|
|
8666
10270
|
'x-inkeep-tenant-id': z.ZodOptional<z.ZodString>;
|
|
8667
10271
|
'x-inkeep-project-id': z.ZodOptional<z.ZodString>;
|
|
@@ -9093,4 +10697,4 @@ interface ExecutionContext {
|
|
|
9093
10697
|
subAgentId?: string;
|
|
9094
10698
|
}
|
|
9095
10699
|
|
|
9096
|
-
export { type CredentialReferenceInsert as $, ApiKeyApiUpdateSchema as A, type FullAgentDefinition as B, type ConversationHistoryConfig as C, type AgentSelect as D, type ApiKeySelect as E, FunctionApiInsertSchema as F, type ApiKeyInsert as G, type ApiKeyUpdate as H, type CreateApiKeyParams as I, type ApiKeyCreateResult as J, type ArtifactComponentSelect as K, type ArtifactComponentInsert as L, ModelSettingsSchema as M, type ArtifactComponentUpdate as N, type SubAgentScopeConfig as O, type Part as P, type ContextCacheSelect as Q, type ContextCacheInsert as R, StopWhenSchema as S, type TaskMetadataConfig as T, type ContextConfigInsert as U, type ContextConfigUpdate as V, type ConversationSelect as W, type ConversationInsert as X, type ConversationUpdate as Y, type CredentialReferenceSelect as Z, type ToolSelect as _, FullAgentAgentInsertSchema as a, type JSONParseError as a$, type CredentialReferenceUpdate as a0, type DataComponentSelect as a1, type DataComponentInsert as a2, type DataComponentUpdate as a3, type ExternalAgentInsert as a4, type ExternalAgentSelect as a5, type ExternalAgentUpdate as a6, type FunctionApiInsert as a7, type FunctionToolApiInsert as a8, type FunctionToolApiUpdate as a9, type TextPart as aA, type FileBase as aB, type FileWithBytes as aC, type FileWithUri as aD, type FilePart as aE, type DataPart as aF, TaskState as aG, type AgentCapabilities as aH, type AgentProvider as aI, type AgentSkill as aJ, type SecuritySchemeBase as aK, type APIKeySecurityScheme as aL, type HTTPAuthSecurityScheme as aM, type OAuthFlows as aN, type AuthorizationCodeOAuthFlow as aO, type ClientCredentialsOAuthFlow as aP, type ImplicitOAuthFlow as aQ, type PasswordOAuthFlow as aR, type OAuth2SecurityScheme as aS, type OpenIdConnectSecurityScheme as aT, type SecurityScheme as aU, type AgentCard as aV, type Message as aW, type TaskStatus as aX, type Task as aY, type TaskStatusUpdateEvent as aZ, type TaskArtifactUpdateEvent as a_, type Artifact as aa, type LedgerArtifactSelect as ab, type MessageVisibility as ac, type MessageInsert as ad, type MessageUpdate as ae, type FullProjectDefinition as af, type ProjectInfo as ag, type ProjectSelect as ah, type PaginationResult as ai, type ProjectResourceCounts as aj, type ProjectInsert as ak, type ProjectUpdate as al, type SubAgentRelationInsert as am, type ExternalSubAgentRelationInsert as an, type SubAgentRelationUpdate as ao, type SubAgentToolRelationUpdate as ap, type SubAgentInsert as aq, type SubAgentUpdate as ar, type SubAgentSelect as as, type TaskInsert as at, type TaskSelect as au, type McpTool as av, type ToolInsert as aw, type ToolUpdate as ax, type ExecutionContext as ay, type PartBase as az, AgentStopWhenSchema as b, type TaskRelationInsert as b$, type InvalidRequestError as b0, type MethodNotFoundError as b1, type InvalidParamsError as b2, type InternalError as b3, type TaskNotFoundError as b4, type TaskNotCancelableError as b5, type PushNotificationNotSupportedError as b6, type UnsupportedOperationError as b7, type ContentTypeNotSupportedError as b8, type InvalidAgentResponseError as b9, type CancelTaskSuccessResponse as bA, type CancelTaskResponse as bB, type SetTaskPushNotificationConfigSuccessResponse as bC, type SetTaskPushNotificationConfigResponse as bD, type GetTaskPushNotificationConfigSuccessResponse as bE, type GetTaskPushNotificationConfigResponse as bF, type A2ARequest as bG, type A2AResponse as bH, type MessagePart as bI, type TaskArtifact as bJ, type SubAgentApiSelect as bK, type SubAgentApiInsert as bL, type SubAgentApiUpdate as bM, type SubAgentRelationSelect as bN, type SubAgentRelationApiSelect as bO, type SubAgentRelationApiInsert as bP, type SubAgentRelationApiUpdate as bQ, type SubAgentRelationQuery as bR, type ExternalSubAgentRelationApiInsert as bS, type AgentApiSelect as bT, type AgentApiInsert as bU, type AgentApiUpdate as bV, type TaskUpdate as bW, type TaskApiSelect as bX, type TaskApiInsert as bY, type TaskApiUpdate as bZ, type TaskRelationSelect as b_, type A2AError as ba, type PushNotificationAuthenticationInfo as bb, type PushNotificationConfig as bc, type TaskPushNotificationConfig as bd, type TaskIdParams as be, type TaskQueryParams as bf, type MessageSendConfiguration as bg, type MessageSendParams as bh, type JSONRPCMessage as bi, type JSONRPCRequest as bj, type JSONRPCError as bk, type JSONRPCResult as bl, type JSONRPCErrorResponse as bm, type SendMessageRequest as bn, type SendStreamingMessageRequest as bo, type GetTaskRequest as bp, type CancelTaskRequest as bq, type SetTaskPushNotificationConfigRequest as br, type GetTaskPushNotificationConfigRequest as bs, type TaskResubscriptionRequest as bt, type SendMessageSuccessResponse as bu, type SendMessageResponse as bv, type SendStreamingMessageSuccessResponse as bw, type SendStreamingMessageResponse as bx, type GetTaskSuccessResponse as by, type GetTaskResponse as bz, SubAgentStopWhenSchema as c, type LedgerArtifactUpdate as c$, type TaskRelationUpdate as c0, type TaskRelationApiSelect as c1, type TaskRelationApiInsert as c2, type TaskRelationApiUpdate as c3, type ToolApiSelect as c4, type ToolApiInsert as c5, type ToolApiUpdate as c6, type FunctionSelect as c7, type FunctionInsert as c8, type FunctionUpdate as c9, type SubAgentDataComponentApiInsert as cA, type SubAgentDataComponentApiUpdate as cB, type ArtifactComponentApiSelect as cC, type ArtifactComponentApiInsert as cD, type ArtifactComponentApiUpdate as cE, type SubAgentArtifactComponentSelect as cF, type SubAgentArtifactComponentInsert as cG, type SubAgentArtifactComponentUpdate as cH, type SubAgentArtifactComponentApiSelect as cI, type SubAgentArtifactComponentApiInsert as cJ, type SubAgentArtifactComponentApiUpdate as cK, type ExternalAgentApiSelect as cL, type ExternalSubAgentApiInsert as cM, type ExternalAgentApiUpdate as cN, type AllAgentSelect as cO, type ApiKeyApiSelect as cP, type ApiKeyApiInsert as cQ, type ApiKeyApiUpdate as cR, type ApiKeyApiCreationResponse as cS, type CredentialReferenceApiSelect as cT, type CredentialReferenceApiUpdate as cU, type SubAgentToolRelationSelect as cV, type SubAgentToolRelationInsert as cW, type SubAgentToolRelationApiSelect as cX, type SubAgentToolRelationApiInsert as cY, type SubAgentToolRelationApiUpdate as cZ, type LedgerArtifactInsert as c_, type FunctionApiSelect as ca, type FunctionApiUpdate as cb, type FunctionToolApiSelect as cc, type ConversationApiSelect as cd, type ConversationApiInsert as ce, type ConversationApiUpdate as cf, type MessageSelect as cg, type MessageApiSelect as ch, type MessageApiInsert as ci, type MessageApiUpdate as cj, type ContextConfigApiSelect as ck, type ContextConfigApiInsert as cl, type ContextConfigApiUpdate as cm, type FetchDefinition as cn, type FetchConfig as co, type ContextCacheUpdate as cp, type ContextCacheApiSelect as cq, type ContextCacheApiInsert as cr, type ContextCacheApiUpdate as cs, type DataComponentApiSelect as ct, type DataComponentApiInsert as cu, type DataComponentApiUpdate as cv, type SubAgentDataComponentSelect as cw, type SubAgentDataComponentInsert as cx, type SubAgentDataComponentUpdate as cy, type SubAgentDataComponentApiSelect as cz, type StopWhen as d, TaskInsertSchema as d$, type LedgerArtifactApiSelect as d0, type LedgerArtifactApiInsert as d1, type LedgerArtifactApiUpdate as d2, type FullAgentAgentInsert as d3, type CanUseItem as d4, type InternalSubAgentDefinition as d5, type SubAgentDefinition as d6, type ToolDefinition as d7, type ProjectApiSelect as d8, type ProjectApiInsert as d9, ModelSchema as dA, ProjectModelSchema as dB, type SandboxConfig as dC, FunctionToolConfigSchema as dD, type FunctionToolConfig as dE, SubAgentSelectSchema as dF, SubAgentInsertSchema as dG, SubAgentUpdateSchema as dH, SubAgentApiSelectSchema as dI, SubAgentApiInsertSchema as dJ, SubAgentApiUpdateSchema as dK, SubAgentRelationSelectSchema as dL, SubAgentRelationInsertSchema as dM, SubAgentRelationUpdateSchema as dN, SubAgentRelationApiSelectSchema as dO, SubAgentRelationApiInsertSchema as dP, SubAgentRelationApiUpdateSchema as dQ, SubAgentRelationQuerySchema as dR, ExternalSubAgentRelationInsertSchema as dS, ExternalSubAgentRelationApiInsertSchema as dT, AgentSelectSchema as dU, AgentInsertSchema as dV, AgentUpdateSchema as dW, AgentApiSelectSchema as dX, AgentApiInsertSchema as dY, AgentApiUpdateSchema as dZ, TaskSelectSchema as d_, type ProjectApiUpdate as da, type Pagination as db, type SummaryEvent as dc, type MessageType as dd, type MessageRole as de, type MessageMode as df, type Models as dg, type ProjectModels as dh, type StatusUpdateSettings as di, type StatusComponent as dj, type ConversationScopeOptions as dk, type AgentConversationHistoryConfig as dl, type ContextCacheEntry as dm, type McpAuthType as dn, type McpServerAuth as dp, type McpTransportConfig as dq, type McpServerCapabilities as dr, type McpToolDefinition as ds, TOOL_STATUS_VALUES as dt, VALID_RELATION_TYPES as du, MCPServerType as dv, MIN_ID_LENGTH as dw, MAX_ID_LENGTH as dx, URL_SAFE_ID_PATTERN as dy, resourceIdSchema as dz, type AgentStopWhen as e, ExternalAgentApiUpdateSchema as e$, TaskUpdateSchema as e0, TaskApiSelectSchema as e1, TaskApiInsertSchema as e2, TaskApiUpdateSchema as e3, TaskRelationSelectSchema as e4, TaskRelationInsertSchema as e5, TaskRelationUpdateSchema as e6, TaskRelationApiSelectSchema as e7, TaskRelationApiInsertSchema as e8, TaskRelationApiUpdateSchema as e9, DataComponentUpdateSchema as eA, DataComponentApiSelectSchema as eB, DataComponentApiInsertSchema as eC, DataComponentApiUpdateSchema as eD, SubAgentDataComponentSelectSchema as eE, SubAgentDataComponentInsertSchema as eF, SubAgentDataComponentUpdateSchema as eG, SubAgentDataComponentApiSelectSchema as eH, SubAgentDataComponentApiInsertSchema as eI, SubAgentDataComponentApiUpdateSchema as eJ, ArtifactComponentSelectSchema as eK, ArtifactComponentInsertSchema as eL, ArtifactComponentUpdateSchema as eM, ArtifactComponentApiSelectSchema as eN, ArtifactComponentApiInsertSchema as eO, ArtifactComponentApiUpdateSchema as eP, SubAgentArtifactComponentSelectSchema as eQ, SubAgentArtifactComponentInsertSchema as eR, SubAgentArtifactComponentUpdateSchema as eS, SubAgentArtifactComponentApiSelectSchema as eT, SubAgentArtifactComponentApiInsertSchema as eU, SubAgentArtifactComponentApiUpdateSchema as eV, ExternalAgentSelectSchema as eW, ExternalAgentInsertSchema as eX, ExternalAgentUpdateSchema as eY, ExternalAgentApiSelectSchema as eZ, ExternalAgentApiInsertSchema as e_, McpTransportConfigSchema as ea, ToolStatusSchema as eb, McpToolDefinitionSchema as ec, ToolSelectSchema as ed, ToolInsertSchema as ee, ConversationSelectSchema as ef, ConversationInsertSchema as eg, ConversationUpdateSchema as eh, ConversationApiSelectSchema as ei, ConversationApiInsertSchema as ej, ConversationApiUpdateSchema as ek, MessageSelectSchema as el, MessageInsertSchema as em, MessageUpdateSchema as en, MessageApiSelectSchema as eo, MessageApiInsertSchema as ep, MessageApiUpdateSchema as eq, ContextCacheSelectSchema as er, ContextCacheInsertSchema as es, ContextCacheUpdateSchema as et, ContextCacheApiSelectSchema as eu, ContextCacheApiInsertSchema as ev, ContextCacheApiUpdateSchema as ew, DataComponentSelectSchema as ex, DataComponentInsertSchema as ey, DataComponentBaseSchema as ez, type SubAgentStopWhen as f, ProjectApiUpdateSchema as f$, AllAgentSchema as f0, ApiKeySelectSchema as f1, ApiKeyInsertSchema as f2, ApiKeyUpdateSchema as f3, ApiKeyApiSelectSchema as f4, ApiKeyApiCreationResponseSchema as f5, ApiKeyApiInsertSchema as f6, CredentialReferenceSelectSchema as f7, CredentialReferenceInsertSchema as f8, CredentialReferenceUpdateSchema as f9, SubAgentToolRelationSelectSchema as fA, SubAgentToolRelationInsertSchema as fB, SubAgentToolRelationUpdateSchema as fC, SubAgentToolRelationApiSelectSchema as fD, SubAgentToolRelationApiInsertSchema as fE, SubAgentToolRelationApiUpdateSchema as fF, LedgerArtifactSelectSchema as fG, LedgerArtifactInsertSchema as fH, LedgerArtifactUpdateSchema as fI, LedgerArtifactApiSelectSchema as fJ, LedgerArtifactApiInsertSchema as fK, LedgerArtifactApiUpdateSchema as fL, StatusComponentSchema as fM, StatusUpdateSchema as fN, CanUseItemSchema as fO, AgentWithinContextOfProjectSchema as fP, PaginationSchema as fQ, ListResponseSchema as fR, SingleResponseSchema as fS, ErrorResponseSchema as fT, ExistsResponseSchema as fU, RemovedResponseSchema as fV, ProjectSelectSchema as fW, ProjectInsertSchema as fX, ProjectUpdateSchema as fY, ProjectApiSelectSchema as fZ, ProjectApiInsertSchema as f_, CredentialReferenceApiSelectSchema as fa, CredentialReferenceApiInsertSchema as fb, CredentialReferenceApiUpdateSchema as fc, McpToolSchema as fd, MCPToolConfigSchema as fe, ToolUpdateSchema as ff, ToolApiSelectSchema as fg, ToolApiInsertSchema as fh, ToolApiUpdateSchema as fi, FunctionToolSelectSchema as fj, FunctionToolInsertSchema as fk, FunctionToolUpdateSchema as fl, FunctionToolApiSelectSchema as fm, FunctionToolApiInsertSchema as fn, FunctionToolApiUpdateSchema as fo, FunctionSelectSchema as fp, FunctionInsertSchema as fq, FunctionUpdateSchema as fr, FetchConfigSchema as fs, FetchDefinitionSchema as ft, ContextConfigSelectSchema as fu, ContextConfigInsertSchema as fv, ContextConfigUpdateSchema as fw, ContextConfigApiSelectSchema as fx, ContextConfigApiInsertSchema as fy, ContextConfigApiUpdateSchema as fz, type ModelSettings as g, FullProjectDefinitionSchema as g0, HeadersScopeSchema as g1, TenantParamsSchema as g2, TenantIdParamsSchema as g3, TenantProjectParamsSchema as g4, TenantProjectIdParamsSchema as g5, TenantProjectAgentParamsSchema as g6, TenantProjectAgentIdParamsSchema as g7, TenantProjectAgentSubAgentParamsSchema as g8, TenantProjectAgentSubAgentIdParamsSchema as g9, PaginationQueryParamsSchema as ga, CredentialStoreType as h, MCPTransportType as i, FunctionApiSelectSchema as j, FunctionApiUpdateSchema as k, SandboxConfigSchema as l, type ContextFetchDefinition as m, type ToolMcpConfig as n, type ToolServerCapabilities as o, type ConversationMetadata as p, type MessageContent as q, type MessageMetadata as r, type CredentialReferenceApiInsert as s, type ContextConfigSelect as t, type MCPToolConfig as u, type AgentScopeConfig as v, type ProjectScopeConfig as w, type PaginationConfig as x, type AgentInsert as y, type AgentUpdate as z };
|
|
10700
|
+
export { type CredentialReferenceInsert as $, ApiKeyApiUpdateSchema as A, type FullAgentDefinition as B, type ConversationHistoryConfig as C, type AgentSelect as D, type ApiKeySelect as E, FunctionApiInsertSchema as F, type ApiKeyInsert as G, type ApiKeyUpdate as H, type CreateApiKeyParams as I, type ApiKeyCreateResult as J, type ArtifactComponentSelect as K, type ArtifactComponentInsert as L, ModelSettingsSchema as M, type ArtifactComponentUpdate as N, type SubAgentScopeConfig as O, type Part as P, type ContextCacheSelect as Q, type ContextCacheInsert as R, StopWhenSchema as S, type TaskMetadataConfig as T, type ContextConfigInsert as U, type ContextConfigUpdate as V, type ConversationSelect as W, type ConversationInsert as X, type ConversationUpdate as Y, type CredentialReferenceSelect as Z, type ToolSelect as _, FullAgentAgentInsertSchema as a, type JSONParseError as a$, type CredentialReferenceUpdate as a0, type DataComponentSelect as a1, type DataComponentInsert as a2, type DataComponentUpdate as a3, type ExternalAgentInsert as a4, type ExternalAgentSelect as a5, type ExternalAgentUpdate as a6, type FunctionApiInsert as a7, type FunctionToolApiInsert as a8, type FunctionToolApiUpdate as a9, type TextPart as aA, type FileBase as aB, type FileWithBytes as aC, type FileWithUri as aD, type FilePart as aE, type DataPart as aF, TaskState as aG, type AgentCapabilities as aH, type AgentProvider as aI, type AgentSkill as aJ, type SecuritySchemeBase as aK, type APIKeySecurityScheme as aL, type HTTPAuthSecurityScheme as aM, type OAuthFlows as aN, type AuthorizationCodeOAuthFlow as aO, type ClientCredentialsOAuthFlow as aP, type ImplicitOAuthFlow as aQ, type PasswordOAuthFlow as aR, type OAuth2SecurityScheme as aS, type OpenIdConnectSecurityScheme as aT, type SecurityScheme as aU, type AgentCard as aV, type Message as aW, type TaskStatus as aX, type Task as aY, type TaskStatusUpdateEvent as aZ, type TaskArtifactUpdateEvent as a_, type Artifact as aa, type LedgerArtifactSelect as ab, type MessageVisibility as ac, type MessageInsert as ad, type MessageUpdate as ae, type FullProjectDefinition as af, type ProjectInfo as ag, type ProjectSelect as ah, type PaginationResult as ai, type ProjectResourceCounts as aj, type ProjectInsert as ak, type ProjectUpdate as al, type SubAgentRelationInsert as am, type ExternalSubAgentRelationInsert as an, type SubAgentRelationUpdate as ao, type SubAgentToolRelationUpdate as ap, type SubAgentInsert as aq, type SubAgentUpdate as ar, type SubAgentSelect as as, type TaskInsert as at, type TaskSelect as au, type McpTool as av, type ToolInsert as aw, type ToolUpdate as ax, type ExecutionContext as ay, type PartBase as az, AgentStopWhenSchema as b, type TaskRelationInsert as b$, type InvalidRequestError as b0, type MethodNotFoundError as b1, type InvalidParamsError as b2, type InternalError as b3, type TaskNotFoundError as b4, type TaskNotCancelableError as b5, type PushNotificationNotSupportedError as b6, type UnsupportedOperationError as b7, type ContentTypeNotSupportedError as b8, type InvalidAgentResponseError as b9, type CancelTaskSuccessResponse as bA, type CancelTaskResponse as bB, type SetTaskPushNotificationConfigSuccessResponse as bC, type SetTaskPushNotificationConfigResponse as bD, type GetTaskPushNotificationConfigSuccessResponse as bE, type GetTaskPushNotificationConfigResponse as bF, type A2ARequest as bG, type A2AResponse as bH, type MessagePart as bI, type TaskArtifact as bJ, type SubAgentApiSelect as bK, type SubAgentApiInsert as bL, type SubAgentApiUpdate as bM, type SubAgentRelationSelect as bN, type SubAgentRelationApiSelect as bO, type SubAgentRelationApiInsert as bP, type SubAgentRelationApiUpdate as bQ, type SubAgentRelationQuery as bR, type ExternalSubAgentRelationApiInsert as bS, type AgentApiSelect as bT, type AgentApiInsert as bU, type AgentApiUpdate as bV, type TaskUpdate as bW, type TaskApiSelect as bX, type TaskApiInsert as bY, type TaskApiUpdate as bZ, type TaskRelationSelect as b_, type A2AError as ba, type PushNotificationAuthenticationInfo as bb, type PushNotificationConfig as bc, type TaskPushNotificationConfig as bd, type TaskIdParams as be, type TaskQueryParams as bf, type MessageSendConfiguration as bg, type MessageSendParams as bh, type JSONRPCMessage as bi, type JSONRPCRequest as bj, type JSONRPCError as bk, type JSONRPCResult as bl, type JSONRPCErrorResponse as bm, type SendMessageRequest as bn, type SendStreamingMessageRequest as bo, type GetTaskRequest as bp, type CancelTaskRequest as bq, type SetTaskPushNotificationConfigRequest as br, type GetTaskPushNotificationConfigRequest as bs, type TaskResubscriptionRequest as bt, type SendMessageSuccessResponse as bu, type SendMessageResponse as bv, type SendStreamingMessageSuccessResponse as bw, type SendStreamingMessageResponse as bx, type GetTaskSuccessResponse as by, type GetTaskResponse as bz, SubAgentStopWhenSchema as c, type LedgerArtifactUpdate as c$, type TaskRelationUpdate as c0, type TaskRelationApiSelect as c1, type TaskRelationApiInsert as c2, type TaskRelationApiUpdate as c3, type ToolApiSelect as c4, type ToolApiInsert as c5, type ToolApiUpdate as c6, type FunctionSelect as c7, type FunctionInsert as c8, type FunctionUpdate as c9, type SubAgentDataComponentApiInsert as cA, type SubAgentDataComponentApiUpdate as cB, type ArtifactComponentApiSelect as cC, type ArtifactComponentApiInsert as cD, type ArtifactComponentApiUpdate as cE, type SubAgentArtifactComponentSelect as cF, type SubAgentArtifactComponentInsert as cG, type SubAgentArtifactComponentUpdate as cH, type SubAgentArtifactComponentApiSelect as cI, type SubAgentArtifactComponentApiInsert as cJ, type SubAgentArtifactComponentApiUpdate as cK, type ExternalAgentApiSelect as cL, type ExternalSubAgentApiInsert as cM, type ExternalAgentApiUpdate as cN, type AllAgentSelect as cO, type ApiKeyApiSelect as cP, type ApiKeyApiInsert as cQ, type ApiKeyApiUpdate as cR, type ApiKeyApiCreationResponse as cS, type CredentialReferenceApiSelect as cT, type CredentialReferenceApiUpdate as cU, type SubAgentToolRelationSelect as cV, type SubAgentToolRelationInsert as cW, type SubAgentToolRelationApiSelect as cX, type SubAgentToolRelationApiInsert as cY, type SubAgentToolRelationApiUpdate as cZ, type LedgerArtifactInsert as c_, type FunctionApiSelect as ca, type FunctionApiUpdate as cb, type FunctionToolApiSelect as cc, type ConversationApiSelect as cd, type ConversationApiInsert as ce, type ConversationApiUpdate as cf, type MessageSelect as cg, type MessageApiSelect as ch, type MessageApiInsert as ci, type MessageApiUpdate as cj, type ContextConfigApiSelect as ck, type ContextConfigApiInsert as cl, type ContextConfigApiUpdate as cm, type FetchDefinition as cn, type FetchConfig as co, type ContextCacheUpdate as cp, type ContextCacheApiSelect as cq, type ContextCacheApiInsert as cr, type ContextCacheApiUpdate as cs, type DataComponentApiSelect as ct, type DataComponentApiInsert as cu, type DataComponentApiUpdate as cv, type SubAgentDataComponentSelect as cw, type SubAgentDataComponentInsert as cx, type SubAgentDataComponentUpdate as cy, type SubAgentDataComponentApiSelect as cz, type StopWhen as d, TaskInsertSchema as d$, type LedgerArtifactApiSelect as d0, type LedgerArtifactApiInsert as d1, type LedgerArtifactApiUpdate as d2, type FullAgentAgentInsert as d3, type CanUseItem as d4, type InternalSubAgentDefinition as d5, type SubAgentDefinition as d6, type ToolDefinition as d7, type ProjectApiSelect as d8, type ProjectApiInsert as d9, ModelSchema as dA, ProjectModelSchema as dB, type SandboxConfig as dC, FunctionToolConfigSchema as dD, type FunctionToolConfig as dE, SubAgentSelectSchema as dF, SubAgentInsertSchema as dG, SubAgentUpdateSchema as dH, SubAgentApiSelectSchema as dI, SubAgentApiInsertSchema as dJ, SubAgentApiUpdateSchema as dK, SubAgentRelationSelectSchema as dL, SubAgentRelationInsertSchema as dM, SubAgentRelationUpdateSchema as dN, SubAgentRelationApiSelectSchema as dO, SubAgentRelationApiInsertSchema as dP, SubAgentRelationApiUpdateSchema as dQ, SubAgentRelationQuerySchema as dR, ExternalSubAgentRelationInsertSchema as dS, ExternalSubAgentRelationApiInsertSchema as dT, AgentSelectSchema as dU, AgentInsertSchema as dV, AgentUpdateSchema as dW, AgentApiSelectSchema as dX, AgentApiInsertSchema as dY, AgentApiUpdateSchema as dZ, TaskSelectSchema as d_, type ProjectApiUpdate as da, type Pagination as db, type SummaryEvent as dc, type MessageType as dd, type MessageRole as de, type MessageMode as df, type Models as dg, type ProjectModels as dh, type StatusUpdateSettings as di, type StatusComponent as dj, type ConversationScopeOptions as dk, type AgentConversationHistoryConfig as dl, type ContextCacheEntry as dm, type McpAuthType as dn, type McpServerAuth as dp, type McpTransportConfig as dq, type McpServerCapabilities as dr, type McpToolDefinition as ds, TOOL_STATUS_VALUES as dt, VALID_RELATION_TYPES as du, MCPServerType as dv, MIN_ID_LENGTH as dw, MAX_ID_LENGTH as dx, URL_SAFE_ID_PATTERN as dy, resourceIdSchema as dz, type AgentStopWhen as e, ExternalAgentApiUpdateSchema as e$, TaskUpdateSchema as e0, TaskApiSelectSchema as e1, TaskApiInsertSchema as e2, TaskApiUpdateSchema as e3, TaskRelationSelectSchema as e4, TaskRelationInsertSchema as e5, TaskRelationUpdateSchema as e6, TaskRelationApiSelectSchema as e7, TaskRelationApiInsertSchema as e8, TaskRelationApiUpdateSchema as e9, DataComponentUpdateSchema as eA, DataComponentApiSelectSchema as eB, DataComponentApiInsertSchema as eC, DataComponentApiUpdateSchema as eD, SubAgentDataComponentSelectSchema as eE, SubAgentDataComponentInsertSchema as eF, SubAgentDataComponentUpdateSchema as eG, SubAgentDataComponentApiSelectSchema as eH, SubAgentDataComponentApiInsertSchema as eI, SubAgentDataComponentApiUpdateSchema as eJ, ArtifactComponentSelectSchema as eK, ArtifactComponentInsertSchema as eL, ArtifactComponentUpdateSchema as eM, ArtifactComponentApiSelectSchema as eN, ArtifactComponentApiInsertSchema as eO, ArtifactComponentApiUpdateSchema as eP, SubAgentArtifactComponentSelectSchema as eQ, SubAgentArtifactComponentInsertSchema as eR, SubAgentArtifactComponentUpdateSchema as eS, SubAgentArtifactComponentApiSelectSchema as eT, SubAgentArtifactComponentApiInsertSchema as eU, SubAgentArtifactComponentApiUpdateSchema as eV, ExternalAgentSelectSchema as eW, ExternalAgentInsertSchema as eX, ExternalAgentUpdateSchema as eY, ExternalAgentApiSelectSchema as eZ, ExternalAgentApiInsertSchema as e_, McpTransportConfigSchema as ea, ToolStatusSchema as eb, McpToolDefinitionSchema as ec, ToolSelectSchema as ed, ToolInsertSchema as ee, ConversationSelectSchema as ef, ConversationInsertSchema as eg, ConversationUpdateSchema as eh, ConversationApiSelectSchema as ei, ConversationApiInsertSchema as ej, ConversationApiUpdateSchema as ek, MessageSelectSchema as el, MessageInsertSchema as em, MessageUpdateSchema as en, MessageApiSelectSchema as eo, MessageApiInsertSchema as ep, MessageApiUpdateSchema as eq, ContextCacheSelectSchema as er, ContextCacheInsertSchema as es, ContextCacheUpdateSchema as et, ContextCacheApiSelectSchema as eu, ContextCacheApiInsertSchema as ev, ContextCacheApiUpdateSchema as ew, DataComponentSelectSchema as ex, DataComponentInsertSchema as ey, DataComponentBaseSchema as ez, type SubAgentStopWhen as f, ProjectApiUpdateSchema as f$, AllAgentSchema as f0, ApiKeySelectSchema as f1, ApiKeyInsertSchema as f2, ApiKeyUpdateSchema as f3, ApiKeyApiSelectSchema as f4, ApiKeyApiCreationResponseSchema as f5, ApiKeyApiInsertSchema as f6, CredentialReferenceSelectSchema as f7, CredentialReferenceInsertSchema as f8, CredentialReferenceUpdateSchema as f9, SubAgentToolRelationSelectSchema as fA, SubAgentToolRelationInsertSchema as fB, SubAgentToolRelationUpdateSchema as fC, SubAgentToolRelationApiSelectSchema as fD, SubAgentToolRelationApiInsertSchema as fE, SubAgentToolRelationApiUpdateSchema as fF, LedgerArtifactSelectSchema as fG, LedgerArtifactInsertSchema as fH, LedgerArtifactUpdateSchema as fI, LedgerArtifactApiSelectSchema as fJ, LedgerArtifactApiInsertSchema as fK, LedgerArtifactApiUpdateSchema as fL, StatusComponentSchema as fM, StatusUpdateSchema as fN, CanUseItemSchema as fO, AgentWithinContextOfProjectSchema as fP, PaginationSchema as fQ, ListResponseSchema as fR, SingleResponseSchema as fS, ErrorResponseSchema as fT, ExistsResponseSchema as fU, RemovedResponseSchema as fV, ProjectSelectSchema as fW, ProjectInsertSchema as fX, ProjectUpdateSchema as fY, ProjectApiSelectSchema as fZ, ProjectApiInsertSchema as f_, CredentialReferenceApiSelectSchema as fa, CredentialReferenceApiInsertSchema as fb, CredentialReferenceApiUpdateSchema as fc, McpToolSchema as fd, MCPToolConfigSchema as fe, ToolUpdateSchema as ff, ToolApiSelectSchema as fg, ToolApiInsertSchema as fh, ToolApiUpdateSchema as fi, FunctionToolSelectSchema as fj, FunctionToolInsertSchema as fk, FunctionToolUpdateSchema as fl, FunctionToolApiSelectSchema as fm, FunctionToolApiInsertSchema as fn, FunctionToolApiUpdateSchema as fo, FunctionSelectSchema as fp, FunctionInsertSchema as fq, FunctionUpdateSchema as fr, FetchConfigSchema as fs, FetchDefinitionSchema as ft, ContextConfigSelectSchema as fu, ContextConfigInsertSchema as fv, ContextConfigUpdateSchema as fw, ContextConfigApiSelectSchema as fx, ContextConfigApiInsertSchema as fy, ContextConfigApiUpdateSchema as fz, type ModelSettings as g, FullProjectDefinitionSchema as g0, ProjectResponse as g1, SubAgentResponse as g2, AgentResponse as g3, ToolResponse as g4, ExternalAgentResponse as g5, ContextConfigResponse as g6, ApiKeyResponse as g7, CredentialReferenceResponse as g8, FunctionResponse as g9, SubAgentArtifactComponentListResponse as gA, HeadersScopeSchema as gB, TenantParamsSchema as gC, TenantIdParamsSchema as gD, TenantProjectParamsSchema as gE, TenantProjectIdParamsSchema as gF, TenantProjectAgentParamsSchema as gG, TenantProjectAgentIdParamsSchema as gH, TenantProjectAgentSubAgentParamsSchema as gI, TenantProjectAgentSubAgentIdParamsSchema as gJ, PaginationQueryParamsSchema as gK, FunctionToolResponse as ga, DataComponentResponse as gb, ArtifactComponentResponse as gc, SubAgentRelationResponse as gd, SubAgentToolRelationResponse as ge, ConversationResponse as gf, MessageResponse as gg, ProjectListResponse as gh, SubAgentListResponse as gi, AgentListResponse as gj, ToolListResponse as gk, ExternalAgentListResponse as gl, ContextConfigListResponse as gm, ApiKeyListResponse as gn, CredentialReferenceListResponse as go, FunctionListResponse as gp, FunctionToolListResponse as gq, DataComponentListResponse as gr, ArtifactComponentListResponse as gs, SubAgentRelationListResponse as gt, SubAgentToolRelationListResponse as gu, ConversationListResponse as gv, MessageListResponse as gw, SubAgentDataComponentResponse as gx, SubAgentArtifactComponentResponse as gy, SubAgentDataComponentListResponse as gz, CredentialStoreType as h, MCPTransportType as i, FunctionApiSelectSchema as j, FunctionApiUpdateSchema as k, SandboxConfigSchema as l, type ContextFetchDefinition as m, type ToolMcpConfig as n, type ToolServerCapabilities as o, type ConversationMetadata as p, type MessageContent as q, type MessageMetadata as r, type CredentialReferenceApiInsert as s, type ContextConfigSelect as t, type MCPToolConfig as u, type AgentScopeConfig as v, type ProjectScopeConfig as w, type PaginationConfig as x, type AgentInsert as y, type AgentUpdate as z };
|