@inkeep/agents-core 0.0.0-dev-20260206214018 → 0.0.0-dev-20260207220105
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/auth.d.ts +53 -53
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/client-exports.d.ts +5 -193
- package/dist/client-exports.js +2 -97
- package/dist/data-access/manage/agents.d.ts +42 -42
- package/dist/data-access/manage/artifactComponents.d.ts +12 -12
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +6 -6
- package/dist/data-access/manage/functionTools.d.ts +14 -14
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgentRelations.d.ts +26 -26
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +18 -18
- package/dist/data-access/manage/tools.d.ts +21 -21
- package/dist/data-access/manage/tools.js +1 -1
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/conversations.d.ts +20 -20
- package/dist/data-access/runtime/messages.d.ts +18 -18
- package/dist/data-access/runtime/tasks.d.ts +5 -5
- package/dist/db/manage/manage-schema.d.ts +4 -4
- package/dist/index.d.ts +2 -2
- package/dist/index.js +5 -5
- package/dist/types/index.js +1 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/dist/validation/schemas.d.ts +467 -466
- package/dist/validation/schemas.js +3 -2
- package/package.json +5 -2
package/dist/auth/auth.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { AgentsRunDatabaseClient } from "../db/runtime/runtime-client.js";
|
|
|
2
2
|
import * as _better_auth_sso0 from "@better-auth/sso";
|
|
3
3
|
import * as better_auth0 from "better-auth";
|
|
4
4
|
import { BetterAuthAdvancedOptions } from "better-auth";
|
|
5
|
-
import * as
|
|
5
|
+
import * as better_auth_plugins20 from "better-auth/plugins";
|
|
6
6
|
import * as zod0 from "zod";
|
|
7
7
|
import { GoogleOptions } from "better-auth/social-providers";
|
|
8
8
|
|
|
@@ -247,7 +247,7 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
247
247
|
handler: (inputContext: better_auth0.MiddlewareInputContext<better_auth0.MiddlewareOptions>) => Promise<void>;
|
|
248
248
|
}[];
|
|
249
249
|
};
|
|
250
|
-
options:
|
|
250
|
+
options: better_auth_plugins20.BearerOptions | undefined;
|
|
251
251
|
}, {
|
|
252
252
|
id: "sso";
|
|
253
253
|
endpoints: {
|
|
@@ -875,30 +875,30 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
875
875
|
};
|
|
876
876
|
}, {
|
|
877
877
|
id: "organization";
|
|
878
|
-
endpoints:
|
|
878
|
+
endpoints: better_auth_plugins20.OrganizationEndpoints<{
|
|
879
879
|
allowUserToCreateOrganization: true;
|
|
880
|
-
ac:
|
|
880
|
+
ac: better_auth_plugins20.AccessControl;
|
|
881
881
|
roles: {
|
|
882
882
|
member: {
|
|
883
|
-
authorize<K_1 extends "
|
|
884
|
-
actions:
|
|
883
|
+
authorize<K_1 extends "project" | "organization" | "team" | "member" | "ac" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>[key] | {
|
|
884
|
+
actions: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>[key];
|
|
885
885
|
connector: "OR" | "AND";
|
|
886
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
887
|
-
statements:
|
|
886
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins20.AuthorizeResponse;
|
|
887
|
+
statements: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>;
|
|
888
888
|
};
|
|
889
889
|
admin: {
|
|
890
|
-
authorize<K_1 extends "
|
|
891
|
-
actions:
|
|
890
|
+
authorize<K_1 extends "project" | "organization" | "team" | "member" | "ac" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>[key] | {
|
|
891
|
+
actions: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>[key];
|
|
892
892
|
connector: "OR" | "AND";
|
|
893
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
894
|
-
statements:
|
|
893
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins20.AuthorizeResponse;
|
|
894
|
+
statements: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>;
|
|
895
895
|
};
|
|
896
896
|
owner: {
|
|
897
|
-
authorize<K_1 extends "
|
|
898
|
-
actions:
|
|
897
|
+
authorize<K_1 extends "project" | "organization" | "team" | "member" | "ac" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>[key] | {
|
|
898
|
+
actions: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>[key];
|
|
899
899
|
connector: "OR" | "AND";
|
|
900
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
901
|
-
statements:
|
|
900
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins20.AuthorizeResponse;
|
|
901
|
+
statements: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>;
|
|
902
902
|
};
|
|
903
903
|
};
|
|
904
904
|
creatorRole: "admin";
|
|
@@ -909,9 +909,9 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
909
909
|
id: string;
|
|
910
910
|
role: string;
|
|
911
911
|
email: string;
|
|
912
|
-
organization:
|
|
913
|
-
invitation:
|
|
914
|
-
inviter:
|
|
912
|
+
organization: better_auth_plugins20.Organization;
|
|
913
|
+
invitation: better_auth_plugins20.Invitation;
|
|
914
|
+
inviter: better_auth_plugins20.Member & {
|
|
915
915
|
user: better_auth0.User;
|
|
916
916
|
};
|
|
917
917
|
}): Promise<void>;
|
|
@@ -932,28 +932,28 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
932
932
|
user,
|
|
933
933
|
organization: org
|
|
934
934
|
}: {
|
|
935
|
-
invitation:
|
|
936
|
-
member:
|
|
935
|
+
invitation: better_auth_plugins20.Invitation & Record<string, any>;
|
|
936
|
+
member: better_auth_plugins20.Member & Record<string, any>;
|
|
937
937
|
user: better_auth0.User & Record<string, any>;
|
|
938
|
-
organization:
|
|
938
|
+
organization: better_auth_plugins20.Organization & Record<string, any>;
|
|
939
939
|
}) => Promise<void>;
|
|
940
940
|
beforeUpdateMemberRole: ({
|
|
941
941
|
member,
|
|
942
942
|
organization: org,
|
|
943
943
|
newRole
|
|
944
944
|
}: {
|
|
945
|
-
member:
|
|
945
|
+
member: better_auth_plugins20.Member & Record<string, any>;
|
|
946
946
|
newRole: string;
|
|
947
947
|
user: better_auth0.User & Record<string, any>;
|
|
948
|
-
organization:
|
|
948
|
+
organization: better_auth_plugins20.Organization & Record<string, any>;
|
|
949
949
|
}) => Promise<void>;
|
|
950
950
|
afterRemoveMember: ({
|
|
951
951
|
member,
|
|
952
952
|
organization: org
|
|
953
953
|
}: {
|
|
954
|
-
member:
|
|
954
|
+
member: better_auth_plugins20.Member & Record<string, any>;
|
|
955
955
|
user: better_auth0.User & Record<string, any>;
|
|
956
|
-
organization:
|
|
956
|
+
organization: better_auth_plugins20.Organization & Record<string, any>;
|
|
957
957
|
}) => Promise<void>;
|
|
958
958
|
};
|
|
959
959
|
}>;
|
|
@@ -1085,7 +1085,7 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
1085
1085
|
organizationId: string;
|
|
1086
1086
|
email: string;
|
|
1087
1087
|
role: "member" | "admin" | "owner";
|
|
1088
|
-
status:
|
|
1088
|
+
status: better_auth_plugins20.InvitationStatus;
|
|
1089
1089
|
inviterId: string;
|
|
1090
1090
|
expiresAt: Date;
|
|
1091
1091
|
createdAt: Date;
|
|
@@ -1125,7 +1125,7 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
1125
1125
|
organizationId: string;
|
|
1126
1126
|
email: string;
|
|
1127
1127
|
role: "member" | "admin" | "owner";
|
|
1128
|
-
status:
|
|
1128
|
+
status: better_auth_plugins20.InvitationStatus;
|
|
1129
1129
|
inviterId: string;
|
|
1130
1130
|
expiresAt: Date;
|
|
1131
1131
|
createdAt: Date;
|
|
@@ -1200,28 +1200,28 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
1200
1200
|
};
|
|
1201
1201
|
options: NoInfer<{
|
|
1202
1202
|
allowUserToCreateOrganization: true;
|
|
1203
|
-
ac:
|
|
1203
|
+
ac: better_auth_plugins20.AccessControl;
|
|
1204
1204
|
roles: {
|
|
1205
1205
|
member: {
|
|
1206
|
-
authorize<K_1 extends "
|
|
1207
|
-
actions:
|
|
1206
|
+
authorize<K_1 extends "project" | "organization" | "team" | "member" | "ac" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>[key] | {
|
|
1207
|
+
actions: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>[key];
|
|
1208
1208
|
connector: "OR" | "AND";
|
|
1209
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
1210
|
-
statements:
|
|
1209
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins20.AuthorizeResponse;
|
|
1210
|
+
statements: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>;
|
|
1211
1211
|
};
|
|
1212
1212
|
admin: {
|
|
1213
|
-
authorize<K_1 extends "
|
|
1214
|
-
actions:
|
|
1213
|
+
authorize<K_1 extends "project" | "organization" | "team" | "member" | "ac" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>[key] | {
|
|
1214
|
+
actions: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>[key];
|
|
1215
1215
|
connector: "OR" | "AND";
|
|
1216
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
1217
|
-
statements:
|
|
1216
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins20.AuthorizeResponse;
|
|
1217
|
+
statements: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>;
|
|
1218
1218
|
};
|
|
1219
1219
|
owner: {
|
|
1220
|
-
authorize<K_1 extends "
|
|
1221
|
-
actions:
|
|
1220
|
+
authorize<K_1 extends "project" | "organization" | "team" | "member" | "ac" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>[key] | {
|
|
1221
|
+
actions: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>[key];
|
|
1222
1222
|
connector: "OR" | "AND";
|
|
1223
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
1224
|
-
statements:
|
|
1223
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins20.AuthorizeResponse;
|
|
1224
|
+
statements: better_auth_plugins20.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins20.Statements>;
|
|
1225
1225
|
};
|
|
1226
1226
|
};
|
|
1227
1227
|
creatorRole: "admin";
|
|
@@ -1232,9 +1232,9 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
1232
1232
|
id: string;
|
|
1233
1233
|
role: string;
|
|
1234
1234
|
email: string;
|
|
1235
|
-
organization:
|
|
1236
|
-
invitation:
|
|
1237
|
-
inviter:
|
|
1235
|
+
organization: better_auth_plugins20.Organization;
|
|
1236
|
+
invitation: better_auth_plugins20.Invitation;
|
|
1237
|
+
inviter: better_auth_plugins20.Member & {
|
|
1238
1238
|
user: better_auth0.User;
|
|
1239
1239
|
};
|
|
1240
1240
|
}): Promise<void>;
|
|
@@ -1255,28 +1255,28 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
1255
1255
|
user,
|
|
1256
1256
|
organization: org
|
|
1257
1257
|
}: {
|
|
1258
|
-
invitation:
|
|
1259
|
-
member:
|
|
1258
|
+
invitation: better_auth_plugins20.Invitation & Record<string, any>;
|
|
1259
|
+
member: better_auth_plugins20.Member & Record<string, any>;
|
|
1260
1260
|
user: better_auth0.User & Record<string, any>;
|
|
1261
|
-
organization:
|
|
1261
|
+
organization: better_auth_plugins20.Organization & Record<string, any>;
|
|
1262
1262
|
}) => Promise<void>;
|
|
1263
1263
|
beforeUpdateMemberRole: ({
|
|
1264
1264
|
member,
|
|
1265
1265
|
organization: org,
|
|
1266
1266
|
newRole
|
|
1267
1267
|
}: {
|
|
1268
|
-
member:
|
|
1268
|
+
member: better_auth_plugins20.Member & Record<string, any>;
|
|
1269
1269
|
newRole: string;
|
|
1270
1270
|
user: better_auth0.User & Record<string, any>;
|
|
1271
|
-
organization:
|
|
1271
|
+
organization: better_auth_plugins20.Organization & Record<string, any>;
|
|
1272
1272
|
}) => Promise<void>;
|
|
1273
1273
|
afterRemoveMember: ({
|
|
1274
1274
|
member,
|
|
1275
1275
|
organization: org
|
|
1276
1276
|
}: {
|
|
1277
|
-
member:
|
|
1277
|
+
member: better_auth_plugins20.Member & Record<string, any>;
|
|
1278
1278
|
user: better_auth0.User & Record<string, any>;
|
|
1279
|
-
organization:
|
|
1279
|
+
organization: better_auth_plugins20.Organization & Record<string, any>;
|
|
1280
1280
|
}) => Promise<void>;
|
|
1281
1281
|
};
|
|
1282
1282
|
}>;
|
|
@@ -1613,8 +1613,8 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
1613
1613
|
readonly AUTHENTICATION_REQUIRED: "Authentication required";
|
|
1614
1614
|
};
|
|
1615
1615
|
options: Partial<{
|
|
1616
|
-
expiresIn:
|
|
1617
|
-
interval:
|
|
1616
|
+
expiresIn: better_auth_plugins20.TimeString;
|
|
1617
|
+
interval: better_auth_plugins20.TimeString;
|
|
1618
1618
|
deviceCodeLength: number;
|
|
1619
1619
|
userCodeLength: number;
|
|
1620
1620
|
schema: {
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as better_auth_plugins0 from "better-auth/plugins";
|
|
2
2
|
import { AccessControl } from "better-auth/plugins/access";
|
|
3
3
|
import { organizationClient } from "better-auth/client/plugins";
|
|
4
4
|
|
|
5
5
|
//#region src/auth/permissions.d.ts
|
|
6
6
|
declare const ac: AccessControl;
|
|
7
7
|
declare const memberRole: {
|
|
8
|
-
authorize<K_1 extends "
|
|
9
|
-
actions:
|
|
8
|
+
authorize<K_1 extends "project" | "organization" | "team" | "member" | "ac" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins0.Statements>[key] | {
|
|
9
|
+
actions: better_auth_plugins0.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins0.Statements>[key];
|
|
10
10
|
connector: "OR" | "AND";
|
|
11
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
12
|
-
statements:
|
|
11
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
|
|
12
|
+
statements: better_auth_plugins0.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins0.Statements>;
|
|
13
13
|
};
|
|
14
14
|
declare const adminRole: {
|
|
15
|
-
authorize<K_1 extends "
|
|
16
|
-
actions:
|
|
15
|
+
authorize<K_1 extends "project" | "organization" | "team" | "member" | "ac" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins0.Statements>[key] | {
|
|
16
|
+
actions: better_auth_plugins0.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins0.Statements>[key];
|
|
17
17
|
connector: "OR" | "AND";
|
|
18
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
19
|
-
statements:
|
|
18
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
|
|
19
|
+
statements: better_auth_plugins0.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins0.Statements>;
|
|
20
20
|
};
|
|
21
21
|
declare const ownerRole: {
|
|
22
|
-
authorize<K_1 extends "
|
|
23
|
-
actions:
|
|
22
|
+
authorize<K_1 extends "project" | "organization" | "team" | "member" | "ac" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins0.Statements>[key] | {
|
|
23
|
+
actions: better_auth_plugins0.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins0.Statements>[key];
|
|
24
24
|
connector: "OR" | "AND";
|
|
25
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
26
|
-
statements:
|
|
25
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
|
|
26
|
+
statements: better_auth_plugins0.Subset<"project" | "organization" | "team" | "member" | "ac" | "invitation", better_auth_plugins0.Statements>;
|
|
27
27
|
};
|
|
28
28
|
//#endregion
|
|
29
29
|
export { ac, adminRole, memberRole, organizationClient, ownerRole };
|
package/dist/client-exports.d.ts
CHANGED
|
@@ -6,186 +6,10 @@ import { ConversationHistoryConfig, CredentialStoreType, MCPTransportType } from
|
|
|
6
6
|
import "./types/index.js";
|
|
7
7
|
import { DEFAULT_NANGO_STORE_ID } from "./credential-stores/default-constants.js";
|
|
8
8
|
import { detectAuthenticationRequired } from "./utils/auth-detection.js";
|
|
9
|
-
import {
|
|
10
|
-
import { AgentStopWhen, AgentStopWhenSchema, ApiKeyApiUpdateSchema, FullAgentAgentInsertSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, ModelSettings, ModelSettingsSchema, ResourceIdSchema, SignatureSource, SignatureVerificationConfig, SignatureVerificationConfigSchema, SignedComponent, StopWhen, StopWhenSchema, SubAgentStopWhen, SubAgentStopWhenSchema, TriggerApiInsertSchema, TriggerApiSelectSchema, TriggerApiUpdateSchema, TriggerInvocationApiSelectSchema, TriggerInvocationListResponse, TriggerInvocationResponse, TriggerInvocationStatusEnum, TriggerListResponse, TriggerResponse, TriggerWithWebhookUrlListResponse, TriggerWithWebhookUrlResponse, TriggerWithWebhookUrlSchema } from "./validation/schemas.js";
|
|
9
|
+
import { AgentApiInsertSchema, AgentStopWhen, AgentWithinContextOfProjectResponse, AgentWithinContextOfProjectSchema, ApiKeyApiCreationResponseSchema, ApiKeyApiSelectSchema, CredentialReferenceApiInsertSchema, ExternalAgentApiInsertSchema, FullAgentAgentInsertSchema, FunctionApiInsertSchema, HeadersSchema, ModelSettings, StopWhen, ToolApiInsertSchema, TriggerApiSelectSchema, TriggerInvocationApiSelectSchema } from "./validation/schemas.js";
|
|
11
10
|
import { z } from "@hono/zod-openapi";
|
|
12
|
-
import { convertJsonSchemaToZod } from "zod-from-json-schema";
|
|
13
11
|
|
|
14
12
|
//#region src/client-exports.d.ts
|
|
15
|
-
|
|
16
|
-
declare const TenantParamsSchema: z.ZodObject<{
|
|
17
|
-
tenantId: z.ZodString;
|
|
18
|
-
}, z.core.$strip>;
|
|
19
|
-
declare const TenantProjectParamsSchema: z.ZodObject<{
|
|
20
|
-
tenantId: z.ZodString;
|
|
21
|
-
projectId: z.ZodString;
|
|
22
|
-
}, z.core.$strip>;
|
|
23
|
-
declare const TenantProjectIdParamsSchema: z.ZodObject<{
|
|
24
|
-
tenantId: z.ZodString;
|
|
25
|
-
projectId: z.ZodString;
|
|
26
|
-
id: z.ZodString;
|
|
27
|
-
}, z.core.$strip>;
|
|
28
|
-
declare const IdParamsSchema: z.ZodObject<{
|
|
29
|
-
id: z.ZodString;
|
|
30
|
-
}, z.core.$strip>;
|
|
31
|
-
declare const PaginationSchema: z.ZodObject<{
|
|
32
|
-
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
33
|
-
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
34
|
-
total: z.ZodNumber;
|
|
35
|
-
pages: z.ZodNumber;
|
|
36
|
-
}, z.core.$strip>;
|
|
37
|
-
declare const ListResponseSchema: <T extends z.ZodTypeAny>(itemSchema: T) => z.ZodObject<{
|
|
38
|
-
data: z.ZodArray<T>;
|
|
39
|
-
pagination: z.ZodObject<{
|
|
40
|
-
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
41
|
-
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
42
|
-
total: z.ZodNumber;
|
|
43
|
-
pages: z.ZodNumber;
|
|
44
|
-
}, z.core.$strip>;
|
|
45
|
-
}, z.core.$strip>;
|
|
46
|
-
declare const SingleResponseSchema: <T extends z.ZodTypeAny>(itemSchema: T) => z.ZodObject<{
|
|
47
|
-
data: T;
|
|
48
|
-
}, z.core.$strip>;
|
|
49
|
-
declare const ErrorResponseSchema: z.ZodObject<{
|
|
50
|
-
error: z.ZodString;
|
|
51
|
-
message: z.ZodOptional<z.ZodString>;
|
|
52
|
-
details: z.ZodOptional<z.ZodUnknown>;
|
|
53
|
-
}, z.core.$strip>;
|
|
54
|
-
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
55
|
-
id: z.ZodOptional<z.ZodString>;
|
|
56
|
-
name: z.ZodString;
|
|
57
|
-
description: z.ZodOptional<z.ZodString>;
|
|
58
|
-
prompt: z.ZodOptional<z.ZodString>;
|
|
59
|
-
model: z.ZodOptional<z.ZodObject<{
|
|
60
|
-
model: z.ZodOptional<z.ZodString>;
|
|
61
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
62
|
-
}, z.core.$strip>>;
|
|
63
|
-
tools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
64
|
-
dataComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
65
|
-
artifactComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
66
|
-
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
67
|
-
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
68
|
-
type: z.ZodOptional<z.ZodEnum<{
|
|
69
|
-
external: "external";
|
|
70
|
-
internal: "internal";
|
|
71
|
-
}>>;
|
|
72
|
-
}, z.core.$strip>;
|
|
73
|
-
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
74
|
-
id: z.ZodOptional<z.ZodString>;
|
|
75
|
-
name: z.ZodString;
|
|
76
|
-
description: z.ZodOptional<z.ZodString>;
|
|
77
|
-
type: z.ZodEnum<{
|
|
78
|
-
mcp: "mcp";
|
|
79
|
-
hosted: "hosted";
|
|
80
|
-
}>;
|
|
81
|
-
config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
82
|
-
credentialReferenceId: z.ZodOptional<z.ZodString>;
|
|
83
|
-
}, z.core.$strip>;
|
|
84
|
-
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
85
|
-
id: z.ZodString;
|
|
86
|
-
tenantId: z.ZodString;
|
|
87
|
-
projectId: z.ZodString;
|
|
88
|
-
agentId: z.ZodString;
|
|
89
|
-
publicId: z.ZodString;
|
|
90
|
-
keyHash: z.ZodString;
|
|
91
|
-
keyPrefix: z.ZodString;
|
|
92
|
-
name: z.ZodOptional<z.ZodString>;
|
|
93
|
-
lastUsedAt: z.ZodOptional<z.ZodString>;
|
|
94
|
-
expiresAt: z.ZodOptional<z.ZodString>;
|
|
95
|
-
createdAt: z.ZodString;
|
|
96
|
-
updatedAt: z.ZodString;
|
|
97
|
-
}, z.core.$strip>;
|
|
98
|
-
declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
99
|
-
data: z.ZodObject<{
|
|
100
|
-
apiKey: z.ZodObject<{
|
|
101
|
-
id: z.ZodString;
|
|
102
|
-
tenantId: z.ZodString;
|
|
103
|
-
projectId: z.ZodString;
|
|
104
|
-
agentId: z.ZodString;
|
|
105
|
-
publicId: z.ZodString;
|
|
106
|
-
keyHash: z.ZodString;
|
|
107
|
-
keyPrefix: z.ZodString;
|
|
108
|
-
name: z.ZodOptional<z.ZodString>;
|
|
109
|
-
lastUsedAt: z.ZodOptional<z.ZodString>;
|
|
110
|
-
expiresAt: z.ZodOptional<z.ZodString>;
|
|
111
|
-
createdAt: z.ZodString;
|
|
112
|
-
updatedAt: z.ZodString;
|
|
113
|
-
}, z.core.$strip>;
|
|
114
|
-
key: z.ZodString;
|
|
115
|
-
}, z.core.$strip>;
|
|
116
|
-
}, z.core.$strip>;
|
|
117
|
-
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
118
|
-
id: z.ZodString;
|
|
119
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
120
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
121
|
-
name: z.ZodString;
|
|
122
|
-
type: z.ZodEnum<{
|
|
123
|
-
readonly memory: "memory";
|
|
124
|
-
readonly keychain: "keychain";
|
|
125
|
-
readonly nango: "nango";
|
|
126
|
-
}>;
|
|
127
|
-
credentialStoreId: z.ZodString;
|
|
128
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
129
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
130
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
131
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
132
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
133
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
134
|
-
}, z.core.$strip>;
|
|
135
|
-
declare const DataComponentApiInsertSchema: z.ZodObject<{
|
|
136
|
-
id: z.ZodString;
|
|
137
|
-
name: z.ZodString;
|
|
138
|
-
description: z.ZodOptional<z.ZodString>;
|
|
139
|
-
props: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
140
|
-
render: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
141
|
-
component: z.ZodString;
|
|
142
|
-
mockData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
143
|
-
}, z.core.$strip>>>;
|
|
144
|
-
}, z.core.$strip>;
|
|
145
|
-
declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
146
|
-
id: z.ZodString;
|
|
147
|
-
name: z.ZodString;
|
|
148
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
149
|
-
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
150
|
-
render: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
151
|
-
component: string;
|
|
152
|
-
mockData: Record<string, unknown>;
|
|
153
|
-
}, {
|
|
154
|
-
component: string;
|
|
155
|
-
mockData: Record<string, unknown>;
|
|
156
|
-
}, z.core.$ZodTypeInternals<{
|
|
157
|
-
component: string;
|
|
158
|
-
mockData: Record<string, unknown>;
|
|
159
|
-
}, {
|
|
160
|
-
component: string;
|
|
161
|
-
mockData: Record<string, unknown>;
|
|
162
|
-
}>>>>;
|
|
163
|
-
}, {
|
|
164
|
-
out: {};
|
|
165
|
-
in: {};
|
|
166
|
-
}>;
|
|
167
|
-
declare const ContextConfigApiInsertSchema: z.ZodObject<{
|
|
168
|
-
id: z.ZodOptional<z.ZodString>;
|
|
169
|
-
name: z.ZodOptional<z.ZodString>;
|
|
170
|
-
description: z.ZodOptional<z.ZodString>;
|
|
171
|
-
type: z.ZodOptional<z.ZodString>;
|
|
172
|
-
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
173
|
-
}, z.core.$strip>;
|
|
174
|
-
declare const ExternalAgentApiInsertSchema: z.ZodObject<{
|
|
175
|
-
id: z.ZodOptional<z.ZodString>;
|
|
176
|
-
name: z.ZodString;
|
|
177
|
-
description: z.ZodOptional<z.ZodString>;
|
|
178
|
-
baseUrl: z.ZodString;
|
|
179
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
180
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
181
|
-
type: z.ZodOptional<z.ZodLiteral<"external">>;
|
|
182
|
-
}, z.core.$strip>;
|
|
183
|
-
declare const AgentAgentApiInsertSchema: z.ZodObject<{
|
|
184
|
-
id: z.ZodOptional<z.ZodString>;
|
|
185
|
-
name: z.ZodString;
|
|
186
|
-
description: z.ZodOptional<z.ZodString>;
|
|
187
|
-
defaultSubAgentId: z.ZodOptional<z.ZodString>;
|
|
188
|
-
}, z.core.$strip>;
|
|
189
13
|
declare const FullAgentDefinitionSchema: z.ZodObject<{
|
|
190
14
|
id: z.ZodOptional<z.ZodString>;
|
|
191
15
|
name: z.ZodString;
|
|
@@ -194,9 +18,8 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
|
|
|
194
18
|
subAgents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
195
19
|
id: z.ZodString;
|
|
196
20
|
name: z.ZodString;
|
|
197
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
198
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
199
21
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
200
23
|
models: z.ZodOptional<z.ZodObject<{
|
|
201
24
|
base: z.ZodOptional<z.ZodObject<{
|
|
202
25
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -220,7 +43,8 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
|
|
|
220
43
|
}, {
|
|
221
44
|
stepCountIs?: number | undefined;
|
|
222
45
|
}>>>>;
|
|
223
|
-
|
|
46
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
47
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
224
48
|
type: z.ZodLiteral<"internal">;
|
|
225
49
|
canUse: z.ZodArray<z.ZodObject<{
|
|
226
50
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -289,26 +113,14 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
|
|
|
289
113
|
type AgentApiInsert = z.infer<typeof AgentApiInsertSchema>;
|
|
290
114
|
type ToolApiInsert = z.infer<typeof ToolApiInsertSchema>;
|
|
291
115
|
type FunctionApiInsert = z.infer<typeof FunctionApiInsertSchema>;
|
|
292
|
-
type TriggerApiInsert = z.infer<typeof TriggerApiInsertSchema>;
|
|
293
116
|
type TriggerApiSelect = z.infer<typeof TriggerApiSelectSchema>;
|
|
294
|
-
type TriggerApiUpdate = z.infer<typeof TriggerApiUpdateSchema>;
|
|
295
117
|
type TriggerInvocationApiSelect = z.infer<typeof TriggerInvocationApiSelectSchema>;
|
|
296
118
|
type ApiKeyApiSelect = z.infer<typeof ApiKeyApiSelectSchema>;
|
|
297
119
|
type ApiKeyApiCreationResponse = z.infer<typeof ApiKeyApiCreationResponseSchema>;
|
|
298
|
-
type ApiKeyApiUpdateResponse = z.infer<typeof ApiKeyApiUpdateSchema>;
|
|
299
120
|
type CredentialReferenceApiInsert = z.infer<typeof CredentialReferenceApiInsertSchema>;
|
|
300
|
-
type DataComponentApiInsert = z.infer<typeof DataComponentApiInsertSchema>;
|
|
301
|
-
type ArtifactComponentApiInsert = z.infer<typeof ArtifactComponentApiInsertSchema>;
|
|
302
|
-
type ContextConfigApiInsert = z.infer<typeof ContextConfigApiInsertSchema>;
|
|
303
121
|
type ExternalAgentApiInsert = z.infer<typeof ExternalAgentApiInsertSchema>;
|
|
304
|
-
type AgentAgentApiInsert = z.infer<typeof AgentAgentApiInsertSchema>;
|
|
305
122
|
type FullAgentDefinition = z.infer<typeof FullAgentDefinitionSchema>;
|
|
306
123
|
type InternalAgentDefinition = z.infer<typeof FullAgentAgentInsertSchema>;
|
|
307
|
-
type ExternalAgentDefinition = z.infer<typeof ExternalAgentApiInsertSchema>;
|
|
308
|
-
type TenantParams = z.infer<typeof TenantParamsSchema>;
|
|
309
|
-
type ErrorResponse = z.infer<typeof ErrorResponseSchema>;
|
|
310
124
|
declare function generateIdFromName(name: string): string;
|
|
311
|
-
type ToolInsert = ToolApiInsert;
|
|
312
|
-
type AgentAgentInsert = AgentAgentApiInsert;
|
|
313
125
|
//#endregion
|
|
314
|
-
export { ACTIVITY_NAMES, ACTIVITY_STATUS, ACTIVITY_TYPES, AGENT_IDS, AGGREGATE_OPERATORS, AI_OPERATIONS, AI_TOOL_TYPES,
|
|
126
|
+
export { ACTIVITY_NAMES, ACTIVITY_STATUS, ACTIVITY_TYPES, AGENT_IDS, AGGREGATE_OPERATORS, AI_OPERATIONS, AI_TOOL_TYPES, AgentApiInsert, type AgentStopWhen, AgentWithinContextOfProjectResponse, AgentWithinContextOfProjectSchema, ApiKeyApiCreationResponse, ApiKeyApiSelect, BreakdownComponentDef, CONTEXT_BREAKDOWN_TOTAL_SPAN_ATTRIBUTE, ContextBreakdown, CredentialReferenceApiInsert, CredentialStoreType, DATA_SOURCES, DATA_TYPES, DEFAULT_NANGO_STORE_ID, DELEGATION_FROM_SUB_AGENT_ID, DELEGATION_ID, DELEGATION_TO_SUB_AGENT_ID, ExternalAgentApiInsert, FIELD_TYPES, FullAgentDefinition, FullAgentDefinitionSchema, FunctionApiInsert, HeadersSchema, InternalAgentDefinition, MCPTransportType, type ModelSettings, OPERATORS, ORDER_DIRECTIONS, type OrgRole, OrgRoles, PANEL_TYPES, type ProjectRole, ProjectRoles, QUERY_DEFAULTS, QUERY_EXPRESSIONS, QUERY_FIELD_CONFIGS, QUERY_TYPES, REDUCE_OPERATIONS, SPAN_KEYS, SPAN_NAMES, type StopWhen, TRANSFER_FROM_SUB_AGENT_ID, TRANSFER_TO_SUB_AGENT_ID, ToolApiInsert, TriggerApiSelect, TriggerInvocationApiSelect, UNKNOWN_VALUE, V1_BREAKDOWN_SCHEMA, calculateBreakdownTotal, createEmptyBreakdown, detectAuthenticationRequired, generateIdFromName, parseContextBreakdownFromSpan };
|