@inkeep/agents-core 0.0.0-dev-20260205192144 → 0.0.0-dev-20260205195256
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 +13 -13
- package/dist/data-access/manage/agents.d.ts +37 -37
- 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 +18 -18
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentRelations.d.ts +28 -28
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +27 -27
- package/dist/data-access/manage/tools.d.ts +30 -30
- package/dist/data-access/manage/triggers.d.ts +1 -1
- package/dist/data-access/runtime/apiKeys.d.ts +20 -20
- package/dist/data-access/runtime/conversations.d.ts +31 -31
- package/dist/data-access/runtime/messages.d.ts +18 -18
- package/dist/data-access/runtime/tasks.d.ts +7 -7
- package/dist/db/manage/manage-schema.d.ts +380 -380
- package/dist/db/runtime/runtime-schema.d.ts +240 -240
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/utils/index.d.ts +2 -2
- package/dist/utils/index.js +2 -2
- package/dist/utils/schema-conversion.d.ts +1 -14
- package/dist/utils/schema-conversion.js +1 -47
- package/dist/validation/dolt-schemas.d.ts +1 -1
- package/dist/validation/schemas.d.ts +1647 -1647
- package/package.json +1 -1
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_plugins0 from "better-auth/plugins";
|
|
6
6
|
import * as zod0 from "zod";
|
|
7
7
|
import { GoogleOptions } from "better-auth/social-providers";
|
|
8
8
|
|
|
@@ -219,7 +219,7 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
219
219
|
handler: (inputContext: better_auth0.MiddlewareInputContext<better_auth0.MiddlewareOptions>) => Promise<void>;
|
|
220
220
|
}[];
|
|
221
221
|
};
|
|
222
|
-
options:
|
|
222
|
+
options: better_auth_plugins0.BearerOptions | undefined;
|
|
223
223
|
}, {
|
|
224
224
|
id: "sso";
|
|
225
225
|
endpoints: {
|
|
@@ -847,30 +847,30 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
847
847
|
};
|
|
848
848
|
}, {
|
|
849
849
|
id: "organization";
|
|
850
|
-
endpoints:
|
|
850
|
+
endpoints: better_auth_plugins0.OrganizationEndpoints<{
|
|
851
851
|
allowUserToCreateOrganization: true;
|
|
852
|
-
ac:
|
|
852
|
+
ac: better_auth_plugins0.AccessControl;
|
|
853
853
|
roles: {
|
|
854
854
|
member: {
|
|
855
|
-
authorize<K_1 extends "
|
|
856
|
-
actions:
|
|
855
|
+
authorize<K_1 extends "organization" | "ac" | "member" | "project" | "team" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>[key] | {
|
|
856
|
+
actions: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>[key];
|
|
857
857
|
connector: "OR" | "AND";
|
|
858
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
859
|
-
statements:
|
|
858
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
|
|
859
|
+
statements: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>;
|
|
860
860
|
};
|
|
861
861
|
admin: {
|
|
862
|
-
authorize<K_1 extends "
|
|
863
|
-
actions:
|
|
862
|
+
authorize<K_1 extends "organization" | "ac" | "member" | "project" | "team" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>[key] | {
|
|
863
|
+
actions: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>[key];
|
|
864
864
|
connector: "OR" | "AND";
|
|
865
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
866
|
-
statements:
|
|
865
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
|
|
866
|
+
statements: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>;
|
|
867
867
|
};
|
|
868
868
|
owner: {
|
|
869
|
-
authorize<K_1 extends "
|
|
870
|
-
actions:
|
|
869
|
+
authorize<K_1 extends "organization" | "ac" | "member" | "project" | "team" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>[key] | {
|
|
870
|
+
actions: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>[key];
|
|
871
871
|
connector: "OR" | "AND";
|
|
872
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
873
|
-
statements:
|
|
872
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
|
|
873
|
+
statements: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>;
|
|
874
874
|
};
|
|
875
875
|
};
|
|
876
876
|
creatorRole: "admin";
|
|
@@ -881,9 +881,9 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
881
881
|
id: string;
|
|
882
882
|
role: string;
|
|
883
883
|
email: string;
|
|
884
|
-
organization:
|
|
885
|
-
invitation:
|
|
886
|
-
inviter:
|
|
884
|
+
organization: better_auth_plugins0.Organization;
|
|
885
|
+
invitation: better_auth_plugins0.Invitation;
|
|
886
|
+
inviter: better_auth_plugins0.Member & {
|
|
887
887
|
user: better_auth0.User;
|
|
888
888
|
};
|
|
889
889
|
}): Promise<void>;
|
|
@@ -893,28 +893,28 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
893
893
|
user,
|
|
894
894
|
organization: org
|
|
895
895
|
}: {
|
|
896
|
-
invitation:
|
|
897
|
-
member:
|
|
896
|
+
invitation: better_auth_plugins0.Invitation & Record<string, any>;
|
|
897
|
+
member: better_auth_plugins0.Member & Record<string, any>;
|
|
898
898
|
user: better_auth0.User & Record<string, any>;
|
|
899
|
-
organization:
|
|
899
|
+
organization: better_auth_plugins0.Organization & Record<string, any>;
|
|
900
900
|
}) => Promise<void>;
|
|
901
901
|
beforeUpdateMemberRole: ({
|
|
902
902
|
member,
|
|
903
903
|
organization: org,
|
|
904
904
|
newRole
|
|
905
905
|
}: {
|
|
906
|
-
member:
|
|
906
|
+
member: better_auth_plugins0.Member & Record<string, any>;
|
|
907
907
|
newRole: string;
|
|
908
908
|
user: better_auth0.User & Record<string, any>;
|
|
909
|
-
organization:
|
|
909
|
+
organization: better_auth_plugins0.Organization & Record<string, any>;
|
|
910
910
|
}) => Promise<void>;
|
|
911
911
|
afterRemoveMember: ({
|
|
912
912
|
member,
|
|
913
913
|
organization: org
|
|
914
914
|
}: {
|
|
915
|
-
member:
|
|
915
|
+
member: better_auth_plugins0.Member & Record<string, any>;
|
|
916
916
|
user: better_auth0.User & Record<string, any>;
|
|
917
|
-
organization:
|
|
917
|
+
organization: better_auth_plugins0.Organization & Record<string, any>;
|
|
918
918
|
}) => Promise<void>;
|
|
919
919
|
};
|
|
920
920
|
}>;
|
|
@@ -1046,7 +1046,7 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
1046
1046
|
organizationId: string;
|
|
1047
1047
|
email: string;
|
|
1048
1048
|
role: "member" | "admin" | "owner";
|
|
1049
|
-
status:
|
|
1049
|
+
status: better_auth_plugins0.InvitationStatus;
|
|
1050
1050
|
inviterId: string;
|
|
1051
1051
|
expiresAt: Date;
|
|
1052
1052
|
createdAt: Date;
|
|
@@ -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_plugins0.InvitationStatus;
|
|
1089
1089
|
inviterId: string;
|
|
1090
1090
|
expiresAt: Date;
|
|
1091
1091
|
createdAt: Date;
|
|
@@ -1159,28 +1159,28 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
1159
1159
|
};
|
|
1160
1160
|
options: NoInfer<{
|
|
1161
1161
|
allowUserToCreateOrganization: true;
|
|
1162
|
-
ac:
|
|
1162
|
+
ac: better_auth_plugins0.AccessControl;
|
|
1163
1163
|
roles: {
|
|
1164
1164
|
member: {
|
|
1165
|
-
authorize<K_1 extends "
|
|
1166
|
-
actions:
|
|
1165
|
+
authorize<K_1 extends "organization" | "ac" | "member" | "project" | "team" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>[key] | {
|
|
1166
|
+
actions: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>[key];
|
|
1167
1167
|
connector: "OR" | "AND";
|
|
1168
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
1169
|
-
statements:
|
|
1168
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
|
|
1169
|
+
statements: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>;
|
|
1170
1170
|
};
|
|
1171
1171
|
admin: {
|
|
1172
|
-
authorize<K_1 extends "
|
|
1173
|
-
actions:
|
|
1172
|
+
authorize<K_1 extends "organization" | "ac" | "member" | "project" | "team" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>[key] | {
|
|
1173
|
+
actions: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>[key];
|
|
1174
1174
|
connector: "OR" | "AND";
|
|
1175
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
1176
|
-
statements:
|
|
1175
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
|
|
1176
|
+
statements: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>;
|
|
1177
1177
|
};
|
|
1178
1178
|
owner: {
|
|
1179
|
-
authorize<K_1 extends "
|
|
1180
|
-
actions:
|
|
1179
|
+
authorize<K_1 extends "organization" | "ac" | "member" | "project" | "team" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>[key] | {
|
|
1180
|
+
actions: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>[key];
|
|
1181
1181
|
connector: "OR" | "AND";
|
|
1182
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
1183
|
-
statements:
|
|
1182
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
|
|
1183
|
+
statements: better_auth_plugins0.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins0.Statements>;
|
|
1184
1184
|
};
|
|
1185
1185
|
};
|
|
1186
1186
|
creatorRole: "admin";
|
|
@@ -1191,9 +1191,9 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
1191
1191
|
id: string;
|
|
1192
1192
|
role: string;
|
|
1193
1193
|
email: string;
|
|
1194
|
-
organization:
|
|
1195
|
-
invitation:
|
|
1196
|
-
inviter:
|
|
1194
|
+
organization: better_auth_plugins0.Organization;
|
|
1195
|
+
invitation: better_auth_plugins0.Invitation;
|
|
1196
|
+
inviter: better_auth_plugins0.Member & {
|
|
1197
1197
|
user: better_auth0.User;
|
|
1198
1198
|
};
|
|
1199
1199
|
}): Promise<void>;
|
|
@@ -1203,28 +1203,28 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
1203
1203
|
user,
|
|
1204
1204
|
organization: org
|
|
1205
1205
|
}: {
|
|
1206
|
-
invitation:
|
|
1207
|
-
member:
|
|
1206
|
+
invitation: better_auth_plugins0.Invitation & Record<string, any>;
|
|
1207
|
+
member: better_auth_plugins0.Member & Record<string, any>;
|
|
1208
1208
|
user: better_auth0.User & Record<string, any>;
|
|
1209
|
-
organization:
|
|
1209
|
+
organization: better_auth_plugins0.Organization & Record<string, any>;
|
|
1210
1210
|
}) => Promise<void>;
|
|
1211
1211
|
beforeUpdateMemberRole: ({
|
|
1212
1212
|
member,
|
|
1213
1213
|
organization: org,
|
|
1214
1214
|
newRole
|
|
1215
1215
|
}: {
|
|
1216
|
-
member:
|
|
1216
|
+
member: better_auth_plugins0.Member & Record<string, any>;
|
|
1217
1217
|
newRole: string;
|
|
1218
1218
|
user: better_auth0.User & Record<string, any>;
|
|
1219
|
-
organization:
|
|
1219
|
+
organization: better_auth_plugins0.Organization & Record<string, any>;
|
|
1220
1220
|
}) => Promise<void>;
|
|
1221
1221
|
afterRemoveMember: ({
|
|
1222
1222
|
member,
|
|
1223
1223
|
organization: org
|
|
1224
1224
|
}: {
|
|
1225
|
-
member:
|
|
1225
|
+
member: better_auth_plugins0.Member & Record<string, any>;
|
|
1226
1226
|
user: better_auth0.User & Record<string, any>;
|
|
1227
|
-
organization:
|
|
1227
|
+
organization: better_auth_plugins0.Organization & Record<string, any>;
|
|
1228
1228
|
}) => Promise<void>;
|
|
1229
1229
|
};
|
|
1230
1230
|
}>;
|
|
@@ -1561,8 +1561,8 @@ declare function createAuth(config: BetterAuthConfig): better_auth0.Auth<{
|
|
|
1561
1561
|
readonly AUTHENTICATION_REQUIRED: "Authentication required";
|
|
1562
1562
|
};
|
|
1563
1563
|
options: Partial<{
|
|
1564
|
-
expiresIn:
|
|
1565
|
-
interval:
|
|
1564
|
+
expiresIn: better_auth_plugins0.TimeString;
|
|
1565
|
+
interval: better_auth_plugins0.TimeString;
|
|
1566
1566
|
deviceCodeLength: number;
|
|
1567
1567
|
userCodeLength: number;
|
|
1568
1568
|
schema: {
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as better_auth_plugins69 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 "organization" | "ac" | "member" | "project" | "team" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins69.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins69.Statements>[key] | {
|
|
9
|
+
actions: better_auth_plugins69.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins69.Statements>[key];
|
|
10
10
|
connector: "OR" | "AND";
|
|
11
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
12
|
-
statements:
|
|
11
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins69.AuthorizeResponse;
|
|
12
|
+
statements: better_auth_plugins69.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins69.Statements>;
|
|
13
13
|
};
|
|
14
14
|
declare const adminRole: {
|
|
15
|
-
authorize<K_1 extends "
|
|
16
|
-
actions:
|
|
15
|
+
authorize<K_1 extends "organization" | "ac" | "member" | "project" | "team" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins69.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins69.Statements>[key] | {
|
|
16
|
+
actions: better_auth_plugins69.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins69.Statements>[key];
|
|
17
17
|
connector: "OR" | "AND";
|
|
18
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
19
|
-
statements:
|
|
18
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins69.AuthorizeResponse;
|
|
19
|
+
statements: better_auth_plugins69.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins69.Statements>;
|
|
20
20
|
};
|
|
21
21
|
declare const ownerRole: {
|
|
22
|
-
authorize<K_1 extends "
|
|
23
|
-
actions:
|
|
22
|
+
authorize<K_1 extends "organization" | "ac" | "member" | "project" | "team" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins69.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins69.Statements>[key] | {
|
|
23
|
+
actions: better_auth_plugins69.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins69.Statements>[key];
|
|
24
24
|
connector: "OR" | "AND";
|
|
25
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
26
|
-
statements:
|
|
25
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins69.AuthorizeResponse;
|
|
26
|
+
statements: better_auth_plugins69.Subset<"organization" | "ac" | "member" | "project" | "team" | "invitation", better_auth_plugins69.Statements>;
|
|
27
27
|
};
|
|
28
28
|
//#endregion
|
|
29
29
|
export { ac, adminRole, memberRole, organizationClient, ownerRole };
|
package/dist/client-exports.d.ts
CHANGED
|
@@ -7,12 +7,12 @@ 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
9
|
import { validatePropsAsJsonSchema } from "./validation/props-validation.js";
|
|
10
|
+
import "./index.js";
|
|
10
11
|
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";
|
|
11
12
|
import { z } from "@hono/zod-openapi";
|
|
12
13
|
import { convertJsonSchemaToZod } from "zod-from-json-schema";
|
|
13
14
|
|
|
14
15
|
//#region src/client-exports.d.ts
|
|
15
|
-
|
|
16
16
|
declare const TenantParamsSchema: z.ZodObject<{
|
|
17
17
|
tenantId: z.ZodString;
|
|
18
18
|
}, z.core.$strip>;
|
|
@@ -66,8 +66,8 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
66
66
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
67
67
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
68
68
|
type: z.ZodOptional<z.ZodEnum<{
|
|
69
|
-
external: "external";
|
|
70
69
|
internal: "internal";
|
|
70
|
+
external: "external";
|
|
71
71
|
}>>;
|
|
72
72
|
}, z.core.$strip>;
|
|
73
73
|
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
@@ -194,19 +194,9 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
|
|
|
194
194
|
subAgents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
195
195
|
id: z.ZodString;
|
|
196
196
|
name: z.ZodString;
|
|
197
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
197
198
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
198
199
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
199
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
200
|
-
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
201
|
-
stepCountIs?: number | undefined;
|
|
202
|
-
}, {
|
|
203
|
-
stepCountIs?: number | undefined;
|
|
204
|
-
}, z.core.$ZodTypeInternals<{
|
|
205
|
-
stepCountIs?: number | undefined;
|
|
206
|
-
}, {
|
|
207
|
-
stepCountIs?: number | undefined;
|
|
208
|
-
}>>>>;
|
|
209
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
210
200
|
models: z.ZodOptional<z.ZodObject<{
|
|
211
201
|
base: z.ZodOptional<z.ZodObject<{
|
|
212
202
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -221,6 +211,16 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
|
|
|
221
211
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
222
212
|
}, z.core.$strip>>;
|
|
223
213
|
}, z.core.$strip>>;
|
|
214
|
+
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
215
|
+
stepCountIs?: number | undefined;
|
|
216
|
+
}, {
|
|
217
|
+
stepCountIs?: number | undefined;
|
|
218
|
+
}, z.core.$ZodTypeInternals<{
|
|
219
|
+
stepCountIs?: number | undefined;
|
|
220
|
+
}, {
|
|
221
|
+
stepCountIs?: number | undefined;
|
|
222
|
+
}>>>>;
|
|
223
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
224
224
|
type: z.ZodLiteral<"internal">;
|
|
225
225
|
canUse: z.ZodArray<z.ZodObject<{
|
|
226
226
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -8,17 +8,14 @@ import { PgTable } from "drizzle-orm/pg-core";
|
|
|
8
8
|
declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
9
9
|
scopes: AgentScopeConfig;
|
|
10
10
|
}) => Promise<{
|
|
11
|
+
tenantId: string;
|
|
12
|
+
projectId: string;
|
|
11
13
|
id: string;
|
|
12
14
|
name: string;
|
|
13
|
-
createdAt: string;
|
|
14
|
-
updatedAt: string;
|
|
15
15
|
description: string | null;
|
|
16
|
-
tenantId: string;
|
|
17
|
-
projectId: string;
|
|
18
|
-
stopWhen: {
|
|
19
|
-
transferCountIs?: number | undefined;
|
|
20
|
-
} | null;
|
|
21
16
|
prompt: string | null;
|
|
17
|
+
createdAt: string;
|
|
18
|
+
updatedAt: string;
|
|
22
19
|
models: {
|
|
23
20
|
base?: {
|
|
24
21
|
model?: string | undefined;
|
|
@@ -33,6 +30,9 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
33
30
|
providerOptions?: Record<string, any> | undefined;
|
|
34
31
|
} | undefined;
|
|
35
32
|
} | null;
|
|
33
|
+
stopWhen: {
|
|
34
|
+
transferCountIs?: number | undefined;
|
|
35
|
+
} | null;
|
|
36
36
|
defaultSubAgentId: string | null;
|
|
37
37
|
contextConfigId: string | null;
|
|
38
38
|
statusUpdates: {
|
|
@@ -54,17 +54,14 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
54
54
|
declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
55
55
|
scopes: AgentScopeConfig;
|
|
56
56
|
}) => Promise<{
|
|
57
|
+
tenantId: string;
|
|
58
|
+
projectId: string;
|
|
57
59
|
id: string;
|
|
58
60
|
name: string;
|
|
59
|
-
createdAt: string;
|
|
60
|
-
updatedAt: string;
|
|
61
61
|
description: string | null;
|
|
62
|
-
tenantId: string;
|
|
63
|
-
projectId: string;
|
|
64
|
-
stopWhen: {
|
|
65
|
-
transferCountIs?: number | undefined;
|
|
66
|
-
} | null;
|
|
67
62
|
prompt: string | null;
|
|
63
|
+
createdAt: string;
|
|
64
|
+
updatedAt: string;
|
|
68
65
|
models: {
|
|
69
66
|
base?: {
|
|
70
67
|
model?: string | undefined;
|
|
@@ -79,6 +76,9 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
79
76
|
providerOptions?: Record<string, any> | undefined;
|
|
80
77
|
} | undefined;
|
|
81
78
|
} | null;
|
|
79
|
+
stopWhen: {
|
|
80
|
+
transferCountIs?: number | undefined;
|
|
81
|
+
} | null;
|
|
82
82
|
defaultSubAgentId: string | null;
|
|
83
83
|
contextConfigId: string | null;
|
|
84
84
|
statusUpdates: {
|
|
@@ -97,18 +97,15 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
97
97
|
}[] | undefined;
|
|
98
98
|
} | null;
|
|
99
99
|
defaultSubAgent: {
|
|
100
|
+
tenantId: string;
|
|
101
|
+
projectId: string;
|
|
100
102
|
id: string;
|
|
101
103
|
name: string;
|
|
102
|
-
createdAt: string;
|
|
103
|
-
updatedAt: string;
|
|
104
104
|
description: string | null;
|
|
105
|
-
tenantId: string;
|
|
106
|
-
projectId: string;
|
|
107
|
-
stopWhen: {
|
|
108
|
-
stepCountIs?: number | undefined;
|
|
109
|
-
} | null;
|
|
110
105
|
prompt: string | null;
|
|
111
|
-
|
|
106
|
+
agentId: string;
|
|
107
|
+
createdAt: string;
|
|
108
|
+
updatedAt: string;
|
|
112
109
|
models: {
|
|
113
110
|
base?: {
|
|
114
111
|
model?: string | undefined;
|
|
@@ -123,23 +120,23 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
123
120
|
providerOptions?: Record<string, any> | undefined;
|
|
124
121
|
} | undefined;
|
|
125
122
|
} | null;
|
|
126
|
-
|
|
123
|
+
stopWhen: {
|
|
124
|
+
stepCountIs?: number | undefined;
|
|
125
|
+
} | null;
|
|
126
|
+
conversationHistoryConfig: ConversationHistoryConfig | null;
|
|
127
127
|
} | null;
|
|
128
128
|
} | null>;
|
|
129
129
|
declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
130
130
|
scopes: ProjectScopeConfig;
|
|
131
131
|
}) => Promise<{
|
|
132
|
+
tenantId: string;
|
|
133
|
+
projectId: string;
|
|
132
134
|
id: string;
|
|
133
135
|
name: string;
|
|
134
|
-
createdAt: string;
|
|
135
|
-
updatedAt: string;
|
|
136
136
|
description: string | null;
|
|
137
|
-
tenantId: string;
|
|
138
|
-
projectId: string;
|
|
139
|
-
stopWhen: {
|
|
140
|
-
transferCountIs?: number | undefined;
|
|
141
|
-
} | null;
|
|
142
137
|
prompt: string | null;
|
|
138
|
+
createdAt: string;
|
|
139
|
+
updatedAt: string;
|
|
143
140
|
models: {
|
|
144
141
|
base?: {
|
|
145
142
|
model?: string | undefined;
|
|
@@ -154,6 +151,9 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
154
151
|
providerOptions?: Record<string, any> | undefined;
|
|
155
152
|
} | undefined;
|
|
156
153
|
} | null;
|
|
154
|
+
stopWhen: {
|
|
155
|
+
transferCountIs?: number | undefined;
|
|
156
|
+
} | null;
|
|
157
157
|
defaultSubAgentId: string | null;
|
|
158
158
|
contextConfigId: string | null;
|
|
159
159
|
statusUpdates: {
|
|
@@ -245,17 +245,14 @@ declare function listAgentsAcrossProjectBranches(db: AgentsManageDatabaseClient,
|
|
|
245
245
|
projectIds: string[];
|
|
246
246
|
}): Promise<AvailableAgentInfo[]>;
|
|
247
247
|
declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInsert) => Promise<{
|
|
248
|
+
tenantId: string;
|
|
249
|
+
projectId: string;
|
|
248
250
|
id: string;
|
|
249
251
|
name: string;
|
|
250
|
-
createdAt: string;
|
|
251
|
-
updatedAt: string;
|
|
252
252
|
description: string | null;
|
|
253
|
-
tenantId: string;
|
|
254
|
-
projectId: string;
|
|
255
|
-
stopWhen: {
|
|
256
|
-
transferCountIs?: number | undefined;
|
|
257
|
-
} | null;
|
|
258
253
|
prompt: string | null;
|
|
254
|
+
createdAt: string;
|
|
255
|
+
updatedAt: string;
|
|
259
256
|
models: {
|
|
260
257
|
base?: {
|
|
261
258
|
model?: string | undefined;
|
|
@@ -270,6 +267,9 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
270
267
|
providerOptions?: Record<string, any> | undefined;
|
|
271
268
|
} | undefined;
|
|
272
269
|
} | null;
|
|
270
|
+
stopWhen: {
|
|
271
|
+
transferCountIs?: number | undefined;
|
|
272
|
+
} | null;
|
|
273
273
|
defaultSubAgentId: string | null;
|
|
274
274
|
contextConfigId: string | null;
|
|
275
275
|
statusUpdates: {
|
|
@@ -7,13 +7,13 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
|
|
|
7
7
|
scopes: ProjectScopeConfig;
|
|
8
8
|
id: string;
|
|
9
9
|
}) => Promise<{
|
|
10
|
+
tenantId: string;
|
|
11
|
+
projectId: string;
|
|
10
12
|
id: string;
|
|
11
13
|
name: string;
|
|
14
|
+
description: string | null;
|
|
12
15
|
createdAt: string;
|
|
13
16
|
updatedAt: string;
|
|
14
|
-
description: string | null;
|
|
15
|
-
tenantId: string;
|
|
16
|
-
projectId: string;
|
|
17
17
|
props: Record<string, unknown> | null;
|
|
18
18
|
render: {
|
|
19
19
|
component: string;
|
|
@@ -49,13 +49,13 @@ declare const listArtifactComponentsPaginated: (db: AgentsManageDatabaseClient)
|
|
|
49
49
|
};
|
|
50
50
|
}>;
|
|
51
51
|
declare const createArtifactComponent: (db: AgentsManageDatabaseClient) => (params: ArtifactComponentInsert) => Promise<{
|
|
52
|
+
tenantId: string;
|
|
53
|
+
projectId: string;
|
|
52
54
|
id: string;
|
|
53
55
|
name: string;
|
|
56
|
+
description: string | null;
|
|
54
57
|
createdAt: string;
|
|
55
58
|
updatedAt: string;
|
|
56
|
-
description: string | null;
|
|
57
|
-
tenantId: string;
|
|
58
|
-
projectId: string;
|
|
59
59
|
props: Record<string, unknown> | null;
|
|
60
60
|
render: {
|
|
61
61
|
component: string;
|
|
@@ -104,12 +104,12 @@ declare const associateArtifactComponentWithAgent: (db: AgentsManageDatabaseClie
|
|
|
104
104
|
scopes: SubAgentScopeConfig;
|
|
105
105
|
artifactComponentId: string;
|
|
106
106
|
}) => Promise<{
|
|
107
|
-
id: string;
|
|
108
|
-
createdAt: string;
|
|
109
107
|
tenantId: string;
|
|
110
108
|
projectId: string;
|
|
111
|
-
|
|
109
|
+
id: string;
|
|
112
110
|
agentId: string;
|
|
111
|
+
createdAt: string;
|
|
112
|
+
subAgentId: string;
|
|
113
113
|
artifactComponentId: string;
|
|
114
114
|
}>;
|
|
115
115
|
declare const removeArtifactComponentFromAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -147,12 +147,12 @@ declare const upsertAgentArtifactComponentRelation: (db: AgentsManageDatabaseCli
|
|
|
147
147
|
scopes: SubAgentScopeConfig;
|
|
148
148
|
artifactComponentId: string;
|
|
149
149
|
}) => Promise<{
|
|
150
|
-
id: string;
|
|
151
|
-
createdAt: string;
|
|
152
150
|
tenantId: string;
|
|
153
151
|
projectId: string;
|
|
154
|
-
|
|
152
|
+
id: string;
|
|
155
153
|
agentId: string;
|
|
154
|
+
createdAt: string;
|
|
155
|
+
subAgentId: string;
|
|
156
156
|
artifactComponentId: string;
|
|
157
157
|
} | null>;
|
|
158
158
|
/**
|
|
@@ -8,24 +8,24 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
|
|
|
8
8
|
scopes: AgentScopeConfig;
|
|
9
9
|
id: string;
|
|
10
10
|
}) => Promise<{
|
|
11
|
-
id: string;
|
|
12
|
-
createdAt: string;
|
|
13
|
-
updatedAt: string;
|
|
14
11
|
tenantId: string;
|
|
15
12
|
projectId: string;
|
|
13
|
+
id: string;
|
|
16
14
|
agentId: string;
|
|
15
|
+
createdAt: string;
|
|
16
|
+
updatedAt: string;
|
|
17
17
|
headersSchema: unknown;
|
|
18
18
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
19
19
|
} | undefined>;
|
|
20
20
|
declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
|
|
21
21
|
scopes: AgentScopeConfig;
|
|
22
22
|
}) => Promise<{
|
|
23
|
-
id: string;
|
|
24
|
-
createdAt: string;
|
|
25
|
-
updatedAt: string;
|
|
26
23
|
tenantId: string;
|
|
27
24
|
projectId: string;
|
|
25
|
+
id: string;
|
|
28
26
|
agentId: string;
|
|
27
|
+
createdAt: string;
|
|
28
|
+
updatedAt: string;
|
|
29
29
|
headersSchema: unknown;
|
|
30
30
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
31
31
|
}[]>;
|
|
@@ -42,12 +42,12 @@ declare const listContextConfigsPaginated: (db: AgentsManageDatabaseClient) => (
|
|
|
42
42
|
};
|
|
43
43
|
}>;
|
|
44
44
|
declare const createContextConfig: (db: AgentsManageDatabaseClient) => (params: ContextConfigInsert) => Promise<{
|
|
45
|
-
id: string;
|
|
46
|
-
createdAt: string;
|
|
47
|
-
updatedAt: string;
|
|
48
45
|
tenantId: string;
|
|
49
46
|
projectId: string;
|
|
47
|
+
id: string;
|
|
50
48
|
agentId: string;
|
|
49
|
+
createdAt: string;
|
|
50
|
+
updatedAt: string;
|
|
51
51
|
headersSchema: unknown;
|
|
52
52
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
53
53
|
}>;
|
|
@@ -82,12 +82,12 @@ declare const countContextConfigs: (db: AgentsManageDatabaseClient) => (params:
|
|
|
82
82
|
declare const upsertContextConfig: (db: AgentsManageDatabaseClient) => (params: {
|
|
83
83
|
data: ContextConfigInsert;
|
|
84
84
|
}) => Promise<{
|
|
85
|
-
id: string;
|
|
86
|
-
createdAt: string;
|
|
87
|
-
updatedAt: string;
|
|
88
85
|
tenantId: string;
|
|
89
86
|
projectId: string;
|
|
87
|
+
id: string;
|
|
90
88
|
agentId: string;
|
|
89
|
+
createdAt: string;
|
|
90
|
+
updatedAt: string;
|
|
91
91
|
headersSchema: unknown;
|
|
92
92
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
93
93
|
}>;
|