@inkeep/agents-core 0.46.1 → 0.47.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/auth/auth-validation-schemas.d.ts +148 -148
  2. package/dist/auth/auth.d.ts +57 -57
  3. package/dist/auth/auth.js +1 -1
  4. package/dist/auth/authz/config.d.ts +1 -86
  5. package/dist/auth/authz/config.js +6 -72
  6. package/dist/auth/authz/index.d.ts +2 -1
  7. package/dist/auth/authz/index.js +2 -1
  8. package/dist/auth/authz/permissions.d.ts +1 -1
  9. package/dist/auth/authz/permissions.js +1 -1
  10. package/dist/auth/authz/sync.d.ts +1 -1
  11. package/dist/auth/authz/sync.js +1 -1
  12. package/dist/auth/authz/types.d.ts +92 -0
  13. package/dist/auth/authz/types.js +76 -0
  14. package/dist/auth/init.js +1 -1
  15. package/dist/auth/permissions.d.ts +13 -13
  16. package/dist/auth/spicedb-schema.js +2 -2
  17. package/dist/client-exports.d.ts +1 -1
  18. package/dist/client-exports.js +1 -1
  19. package/dist/data-access/manage/agents.d.ts +31 -31
  20. package/dist/data-access/manage/artifactComponents.d.ts +6 -6
  21. package/dist/data-access/manage/contextConfigs.d.ts +8 -8
  22. package/dist/data-access/manage/dataComponents.d.ts +2 -2
  23. package/dist/data-access/manage/functionTools.d.ts +8 -8
  24. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +18 -18
  25. package/dist/data-access/manage/subAgentRelations.d.ts +18 -18
  26. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
  27. package/dist/data-access/manage/subAgents.d.ts +21 -21
  28. package/dist/data-access/manage/tools.d.ts +18 -18
  29. package/dist/data-access/manage/triggers.d.ts +2 -2
  30. package/dist/data-access/runtime/apiKeys.d.ts +12 -12
  31. package/dist/data-access/runtime/conversations.d.ts +20 -20
  32. package/dist/data-access/runtime/messages.d.ts +18 -18
  33. package/dist/data-access/runtime/tasks.d.ts +4 -4
  34. package/dist/db/manage/manage-schema.d.ts +306 -306
  35. package/dist/db/runtime/runtime-schema.d.ts +206 -206
  36. package/dist/env.d.ts +6 -0
  37. package/dist/env.js +4 -1
  38. package/dist/index.d.ts +2 -1
  39. package/dist/index.js +2 -1
  40. package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
  41. package/dist/validation/schemas.d.ts +1629 -1629
  42. package/package.json +1 -1
@@ -0,0 +1,76 @@
1
+ //#region src/auth/authz/types.ts
2
+ /**
3
+ * Client-safe authz types and constants.
4
+ * These can be safely imported in client-side code without any Node.js dependencies.
5
+ */
6
+ /**
7
+ * SpiceDB resource types used in the schema
8
+ */
9
+ const SpiceDbResourceTypes = {
10
+ USER: "user",
11
+ ORGANIZATION: "organization",
12
+ PROJECT: "project"
13
+ };
14
+ /**
15
+ * SpiceDB relations used in the schema
16
+ *
17
+ * Relations are named as nouns (roles) per SpiceDB best practices.
18
+ * Project roles are prefixed for clarity when debugging/grepping.
19
+ */
20
+ const SpiceDbRelations = {
21
+ OWNER: "owner",
22
+ ADMIN: "admin",
23
+ MEMBER: "member",
24
+ ORGANIZATION: "organization",
25
+ PROJECT_ADMIN: "project_admin",
26
+ PROJECT_MEMBER: "project_member",
27
+ PROJECT_VIEWER: "project_viewer"
28
+ };
29
+ /**
30
+ * SpiceDB permissions for organization resources.
31
+ *
32
+ * From schema.zed definition organization:
33
+ * - view: owner + admin + member
34
+ * - manage: owner + admin (includes managing org settings and all projects)
35
+ */
36
+ const SpiceDbOrgPermissions = {
37
+ VIEW: "view",
38
+ MANAGE: "manage"
39
+ };
40
+ /**
41
+ * SpiceDB permissions for project resources.
42
+ *
43
+ * From schema.zed definition project:
44
+ * - view: read-only access to project and its resources
45
+ * - use: invoke agents, create API keys, view traces
46
+ * - edit: modify configurations, manage members
47
+ */
48
+ const SpiceDbProjectPermissions = {
49
+ VIEW: "view",
50
+ USE: "use",
51
+ EDIT: "edit"
52
+ };
53
+ /**
54
+ * Organization roles from SpiceDB schema.
55
+ */
56
+ const OrgRoles = {
57
+ OWNER: "owner",
58
+ ADMIN: "admin",
59
+ MEMBER: "member"
60
+ };
61
+ /**
62
+ * Project roles from SpiceDB schema.
63
+ *
64
+ * Hierarchy:
65
+ * - project_admin: Full access (view + use + edit + manage members)
66
+ * - project_member: Operator access (view + use: invoke agents, create API keys)
67
+ * - project_viewer: Read-only access (view only)
68
+ */
69
+ const ProjectRoles = {
70
+ ADMIN: "project_admin",
71
+ MEMBER: "project_member",
72
+ VIEWER: "project_viewer"
73
+ };
74
+
75
+ //#endregion
76
+ export { OrgRoles, ProjectRoles, SpiceDbOrgPermissions, SpiceDbProjectPermissions, SpiceDbRelations, SpiceDbResourceTypes };
package/dist/auth/init.js CHANGED
@@ -1,4 +1,4 @@
1
- import { OrgRoles } from "./authz/config.js";
1
+ import { OrgRoles } from "./authz/types.js";
2
2
  import { loadEnvironmentFiles } from "../env.js";
3
3
  import { syncOrgMemberToSpiceDb } from "./authz/sync.js";
4
4
  import "./authz/index.js";
@@ -1,29 +1,29 @@
1
- import * as better_auth_plugins69 from "better-auth/plugins";
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 "organization" | "member" | "invitation" | "ac" | "project" | "team">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins69.Subset<"organization" | "member" | "invitation" | "ac" | "project" | "team", better_auth_plugins69.Statements>[key] | {
9
- actions: better_auth_plugins69.Subset<"organization" | "member" | "invitation" | "ac" | "project" | "team", better_auth_plugins69.Statements>[key];
8
+ authorize<K_1 extends "organization" | "member" | "invitation" | "project" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>[key] | {
9
+ actions: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>[key];
10
10
  connector: "OR" | "AND";
11
- } | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins69.AuthorizeResponse;
12
- statements: better_auth_plugins69.Subset<"organization" | "member" | "invitation" | "ac" | "project" | "team", better_auth_plugins69.Statements>;
11
+ } | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
12
+ statements: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>;
13
13
  };
14
14
  declare const adminRole: {
15
- authorize<K_1 extends "organization" | "member" | "invitation" | "ac" | "project" | "team">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins69.Subset<"organization" | "member" | "invitation" | "ac" | "project" | "team", better_auth_plugins69.Statements>[key] | {
16
- actions: better_auth_plugins69.Subset<"organization" | "member" | "invitation" | "ac" | "project" | "team", better_auth_plugins69.Statements>[key];
15
+ authorize<K_1 extends "organization" | "member" | "invitation" | "project" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>[key] | {
16
+ actions: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>[key];
17
17
  connector: "OR" | "AND";
18
- } | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins69.AuthorizeResponse;
19
- statements: better_auth_plugins69.Subset<"organization" | "member" | "invitation" | "ac" | "project" | "team", better_auth_plugins69.Statements>;
18
+ } | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
19
+ statements: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>;
20
20
  };
21
21
  declare const ownerRole: {
22
- authorize<K_1 extends "organization" | "member" | "invitation" | "ac" | "project" | "team">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins69.Subset<"organization" | "member" | "invitation" | "ac" | "project" | "team", better_auth_plugins69.Statements>[key] | {
23
- actions: better_auth_plugins69.Subset<"organization" | "member" | "invitation" | "ac" | "project" | "team", better_auth_plugins69.Statements>[key];
22
+ authorize<K_1 extends "organization" | "member" | "invitation" | "project" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>[key] | {
23
+ actions: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>[key];
24
24
  connector: "OR" | "AND";
25
- } | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins69.AuthorizeResponse;
26
- statements: better_auth_plugins69.Subset<"organization" | "member" | "invitation" | "ac" | "project" | "team", better_auth_plugins69.Statements>;
25
+ } | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
26
+ statements: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>;
27
27
  };
28
28
  //#endregion
29
29
  export { ac, adminRole, memberRole, organizationClient, ownerRole };
@@ -1,4 +1,4 @@
1
- import { getSpiceDbConfig, isLocalhostEndpoint } from "./authz/config.js";
1
+ import { getSpiceDbConfig } from "./authz/config.js";
2
2
  import { readFileSync } from "node:fs";
3
3
  import { resolve } from "node:path";
4
4
  import { v1 } from "@authzed/authzed-node";
@@ -8,7 +8,7 @@ async function writeSpiceDbSchema(options) {
8
8
  const config = getSpiceDbConfig();
9
9
  const { endpoint = config.endpoint, token = config.token, schemaPath = resolve(import.meta.dirname, "../../spicedb/schema.zed"), maxRetries = 30 } = options ?? {};
10
10
  const schema = readFileSync(schemaPath, "utf-8");
11
- const client = v1.NewClient(token, endpoint, isLocalhostEndpoint(endpoint) ? v1.ClientSecurity.INSECURE_LOCALHOST_ALLOWED : v1.ClientSecurity.SECURE);
11
+ const client = v1.NewClient(token, endpoint, config.tlsEnabled ? v1.ClientSecurity.SECURE : v1.ClientSecurity.INSECURE_LOCALHOST_ALLOWED);
12
12
  let lastError;
13
13
  for (let attempt = 1; attempt <= maxRetries; attempt++) try {
14
14
  await client.promises.writeSchema(v1.WriteSchemaRequest.create({ schema }));
@@ -1,4 +1,4 @@
1
- import { OrgRole, OrgRoles, ProjectRole, ProjectRoles } from "./auth/authz/config.js";
1
+ import { OrgRole, OrgRoles, ProjectRole, ProjectRoles } from "./auth/authz/types.js";
2
2
  import { BreakdownComponentDef, CONTEXT_BREAKDOWN_TOTAL_SPAN_ATTRIBUTE, ContextBreakdown, V1_BREAKDOWN_SCHEMA, calculateBreakdownTotal, createEmptyBreakdown, parseContextBreakdownFromSpan } from "./constants/context-breakdown.js";
3
3
  import { ACTIVITY_NAMES, ACTIVITY_STATUS, ACTIVITY_TYPES, AGENT_IDS, AI_OPERATIONS, AI_TOOL_TYPES, DELEGATION_FROM_SUB_AGENT_ID, DELEGATION_ID, DELEGATION_TO_SUB_AGENT_ID, SPAN_KEYS, SPAN_NAMES, TRANSFER_FROM_SUB_AGENT_ID, TRANSFER_TO_SUB_AGENT_ID, UNKNOWN_VALUE } from "./constants/otel-attributes.js";
4
4
  import { AGGREGATE_OPERATORS, DATA_SOURCES, DATA_TYPES, FIELD_TYPES, OPERATORS, ORDER_DIRECTIONS, PANEL_TYPES, QUERY_DEFAULTS, QUERY_EXPRESSIONS, QUERY_FIELD_CONFIGS, QUERY_TYPES, REDUCE_OPERATIONS } from "./constants/signoz-queries.js";
@@ -2,7 +2,7 @@ import { schemaValidationDefaults } from "./constants/schema-validation/defaults
2
2
  import { CredentialStoreType, MCPTransportType } from "./types/utility.js";
3
3
  import { AgentWithinContextOfProjectResponse, AgentWithinContextOfProjectSchema, FullAgentAgentInsertSchema, HeadersSchema, MAX_ID_LENGTH } from "./validation/schemas.js";
4
4
  import { DEFAULT_NANGO_STORE_ID } from "./credential-stores/default-constants.js";
5
- import { OrgRoles, ProjectRoles } from "./auth/authz/config.js";
5
+ import { OrgRoles, ProjectRoles } from "./auth/authz/types.js";
6
6
  import { CONTEXT_BREAKDOWN_TOTAL_SPAN_ATTRIBUTE, V1_BREAKDOWN_SCHEMA, calculateBreakdownTotal, createEmptyBreakdown, parseContextBreakdownFromSpan } from "./constants/context-breakdown.js";
7
7
  import { ACTIVITY_NAMES, ACTIVITY_STATUS, ACTIVITY_TYPES, AGENT_IDS, AI_OPERATIONS, AI_TOOL_TYPES, DELEGATION_FROM_SUB_AGENT_ID, DELEGATION_ID, DELEGATION_TO_SUB_AGENT_ID, SPAN_KEYS, SPAN_NAMES, TRANSFER_FROM_SUB_AGENT_ID, TRANSFER_TO_SUB_AGENT_ID, UNKNOWN_VALUE } from "./constants/otel-attributes.js";
8
8
  import { AGGREGATE_OPERATORS, DATA_SOURCES, DATA_TYPES, FIELD_TYPES, OPERATORS, ORDER_DIRECTIONS, PANEL_TYPES, QUERY_DEFAULTS, QUERY_EXPRESSIONS, QUERY_FIELD_CONFIGS, QUERY_TYPES, REDUCE_OPERATIONS } from "./constants/signoz-queries.js";
@@ -10,9 +10,11 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
10
10
  }) => Promise<{
11
11
  id: string;
12
12
  name: string;
13
- createdAt: string;
14
- updatedAt: string;
15
13
  description: string | null;
14
+ defaultSubAgentId: string | null;
15
+ tenantId: string;
16
+ projectId: string;
17
+ prompt: string | null;
16
18
  models: {
17
19
  base?: {
18
20
  model?: string | undefined;
@@ -30,11 +32,9 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
30
32
  stopWhen: {
31
33
  transferCountIs?: number | undefined;
32
34
  } | null;
33
- tenantId: string;
34
- projectId: string;
35
- defaultSubAgentId: string | null;
35
+ createdAt: string;
36
+ updatedAt: string;
36
37
  contextConfigId: string | null;
37
- prompt: string | null;
38
38
  statusUpdates: {
39
39
  enabled?: boolean | undefined;
40
40
  numEvents?: number | undefined;
@@ -56,9 +56,11 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
56
56
  }) => Promise<{
57
57
  id: string;
58
58
  name: string;
59
- createdAt: string;
60
- updatedAt: string;
61
59
  description: string | null;
60
+ defaultSubAgentId: string | null;
61
+ tenantId: string;
62
+ projectId: string;
63
+ prompt: string | null;
62
64
  models: {
63
65
  base?: {
64
66
  model?: string | undefined;
@@ -76,11 +78,9 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
76
78
  stopWhen: {
77
79
  transferCountIs?: number | undefined;
78
80
  } | null;
79
- tenantId: string;
80
- projectId: string;
81
- defaultSubAgentId: string | null;
81
+ createdAt: string;
82
+ updatedAt: string;
82
83
  contextConfigId: string | null;
83
- prompt: string | null;
84
84
  statusUpdates: {
85
85
  enabled?: boolean | undefined;
86
86
  numEvents?: number | undefined;
@@ -99,9 +99,12 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
99
99
  defaultSubAgent: {
100
100
  id: string;
101
101
  name: string;
102
- createdAt: string;
103
- updatedAt: string;
104
102
  description: string | null;
103
+ tenantId: string;
104
+ projectId: string;
105
+ agentId: string;
106
+ prompt: string | null;
107
+ conversationHistoryConfig: ConversationHistoryConfig | null;
105
108
  models: {
106
109
  base?: {
107
110
  model?: string | undefined;
@@ -119,11 +122,8 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
119
122
  stopWhen: {
120
123
  stepCountIs?: number | undefined;
121
124
  } | null;
122
- tenantId: string;
123
- projectId: string;
124
- prompt: string | null;
125
- agentId: string;
126
- conversationHistoryConfig: ConversationHistoryConfig | null;
125
+ createdAt: string;
126
+ updatedAt: string;
127
127
  } | null;
128
128
  } | null>;
129
129
  declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
@@ -131,9 +131,11 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
131
131
  }) => Promise<{
132
132
  id: string;
133
133
  name: string;
134
- createdAt: string;
135
- updatedAt: string;
136
134
  description: string | null;
135
+ defaultSubAgentId: string | null;
136
+ tenantId: string;
137
+ projectId: string;
138
+ prompt: string | null;
137
139
  models: {
138
140
  base?: {
139
141
  model?: string | undefined;
@@ -151,11 +153,9 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
151
153
  stopWhen: {
152
154
  transferCountIs?: number | undefined;
153
155
  } | null;
154
- tenantId: string;
155
- projectId: string;
156
- defaultSubAgentId: string | null;
156
+ createdAt: string;
157
+ updatedAt: string;
157
158
  contextConfigId: string | null;
158
- prompt: string | null;
159
159
  statusUpdates: {
160
160
  enabled?: boolean | undefined;
161
161
  numEvents?: number | undefined;
@@ -247,9 +247,11 @@ declare function listAgentsAcrossProjectMainBranches(db: AgentsManageDatabaseCli
247
247
  declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInsert) => Promise<{
248
248
  id: string;
249
249
  name: string;
250
- createdAt: string;
251
- updatedAt: string;
252
250
  description: string | null;
251
+ defaultSubAgentId: string | null;
252
+ tenantId: string;
253
+ projectId: string;
254
+ prompt: string | null;
253
255
  models: {
254
256
  base?: {
255
257
  model?: string | undefined;
@@ -267,11 +269,9 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
267
269
  stopWhen: {
268
270
  transferCountIs?: number | undefined;
269
271
  } | null;
270
- tenantId: string;
271
- projectId: string;
272
- defaultSubAgentId: string | null;
272
+ createdAt: string;
273
+ updatedAt: string;
273
274
  contextConfigId: string | null;
274
- prompt: string | null;
275
275
  statusUpdates: {
276
276
  enabled?: boolean | undefined;
277
277
  numEvents?: number | undefined;
@@ -9,11 +9,11 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
9
9
  }) => Promise<{
10
10
  id: string;
11
11
  name: string;
12
- createdAt: string;
13
- updatedAt: string;
14
12
  description: string | null;
15
13
  tenantId: string;
16
14
  projectId: string;
15
+ createdAt: string;
16
+ updatedAt: string;
17
17
  props: Record<string, unknown> | null;
18
18
  render: {
19
19
  component: string;
@@ -51,11 +51,11 @@ declare const listArtifactComponentsPaginated: (db: AgentsManageDatabaseClient)
51
51
  declare const createArtifactComponent: (db: AgentsManageDatabaseClient) => (params: ArtifactComponentInsert) => Promise<{
52
52
  id: string;
53
53
  name: string;
54
- createdAt: string;
55
- updatedAt: string;
56
54
  description: string | null;
57
55
  tenantId: string;
58
56
  projectId: string;
57
+ createdAt: string;
58
+ updatedAt: string;
59
59
  props: Record<string, unknown> | null;
60
60
  render: {
61
61
  component: string;
@@ -105,10 +105,10 @@ declare const associateArtifactComponentWithAgent: (db: AgentsManageDatabaseClie
105
105
  artifactComponentId: string;
106
106
  }) => Promise<{
107
107
  id: string;
108
- createdAt: string;
109
108
  tenantId: string;
110
109
  projectId: string;
111
110
  agentId: string;
111
+ createdAt: string;
112
112
  subAgentId: string;
113
113
  artifactComponentId: string;
114
114
  }>;
@@ -148,10 +148,10 @@ declare const upsertAgentArtifactComponentRelation: (db: AgentsManageDatabaseCli
148
148
  artifactComponentId: string;
149
149
  }) => Promise<{
150
150
  id: string;
151
- createdAt: string;
152
151
  tenantId: string;
153
152
  projectId: string;
154
153
  agentId: string;
154
+ createdAt: string;
155
155
  subAgentId: string;
156
156
  artifactComponentId: string;
157
157
  } | null>;
@@ -9,11 +9,11 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
9
9
  id: string;
10
10
  }) => Promise<{
11
11
  id: string;
12
- createdAt: string;
13
- updatedAt: string;
14
12
  tenantId: string;
15
13
  projectId: 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>;
@@ -21,11 +21,11 @@ declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
21
21
  scopes: AgentScopeConfig;
22
22
  }) => Promise<{
23
23
  id: string;
24
- createdAt: string;
25
- updatedAt: string;
26
24
  tenantId: string;
27
25
  projectId: string;
28
26
  agentId: string;
27
+ createdAt: string;
28
+ updatedAt: string;
29
29
  headersSchema: unknown;
30
30
  contextVariables: Record<string, ContextFetchDefinition> | null;
31
31
  }[]>;
@@ -43,11 +43,11 @@ declare const listContextConfigsPaginated: (db: AgentsManageDatabaseClient) => (
43
43
  }>;
44
44
  declare const createContextConfig: (db: AgentsManageDatabaseClient) => (params: ContextConfigInsert) => Promise<{
45
45
  id: string;
46
- createdAt: string;
47
- updatedAt: string;
48
46
  tenantId: string;
49
47
  projectId: string;
50
48
  agentId: string;
49
+ createdAt: string;
50
+ updatedAt: string;
51
51
  headersSchema: unknown;
52
52
  contextVariables: Record<string, ContextFetchDefinition> | null;
53
53
  }>;
@@ -83,11 +83,11 @@ declare const upsertContextConfig: (db: AgentsManageDatabaseClient) => (params:
83
83
  data: ContextConfigInsert;
84
84
  }) => Promise<{
85
85
  id: string;
86
- createdAt: string;
87
- updatedAt: string;
88
86
  tenantId: string;
89
87
  projectId: string;
90
88
  agentId: string;
89
+ createdAt: string;
90
+ updatedAt: string;
91
91
  headersSchema: unknown;
92
92
  contextVariables: Record<string, ContextFetchDefinition> | null;
93
93
  }>;
@@ -65,10 +65,10 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
65
65
  dataComponentId: string;
66
66
  }) => Promise<{
67
67
  id: string;
68
- createdAt: string;
69
68
  tenantId: string;
70
69
  projectId: string;
71
70
  agentId: string;
71
+ createdAt: string;
72
72
  subAgentId: string;
73
73
  dataComponentId: string;
74
74
  }>;
@@ -107,10 +107,10 @@ declare const upsertAgentDataComponentRelation: (db: AgentsManageDatabaseClient)
107
107
  dataComponentId: string;
108
108
  }) => Promise<{
109
109
  id: string;
110
- createdAt: string;
111
110
  tenantId: string;
112
111
  projectId: string;
113
112
  agentId: string;
113
+ createdAt: string;
114
114
  subAgentId: string;
115
115
  dataComponentId: string;
116
116
  } | null>;
@@ -55,12 +55,12 @@ declare const createFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
55
55
  }) => Promise<{
56
56
  id: string;
57
57
  name: string;
58
- createdAt: string;
59
- updatedAt: string;
60
58
  description: string | null;
61
59
  tenantId: string;
62
60
  projectId: string;
63
61
  agentId: string;
62
+ createdAt: string;
63
+ updatedAt: string;
64
64
  functionId: string;
65
65
  }>;
66
66
  /**
@@ -97,12 +97,12 @@ declare const upsertFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
97
97
  }) => Promise<{
98
98
  id: string;
99
99
  name: string;
100
- createdAt: string;
101
- updatedAt: string;
102
100
  description: string | null;
103
101
  tenantId: string;
104
102
  projectId: string;
105
103
  agentId: string;
104
+ createdAt: string;
105
+ updatedAt: string;
106
106
  functionId: string;
107
107
  }>;
108
108
  declare const getFunctionToolsForSubAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -162,11 +162,11 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
162
162
  }> | null;
163
163
  }) => Promise<{
164
164
  id: string;
165
- createdAt: string;
166
- updatedAt: string;
167
165
  tenantId: string;
168
166
  projectId: string;
169
167
  agentId: string;
168
+ createdAt: string;
169
+ updatedAt: string;
170
170
  toolPolicies: Record<string, {
171
171
  needsApproval?: boolean;
172
172
  }> | null;
@@ -227,11 +227,11 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
227
227
  }> | null;
228
228
  }) => Promise<{
229
229
  id: string;
230
- createdAt: string;
231
- updatedAt: string;
232
230
  tenantId: string;
233
231
  projectId: string;
234
232
  agentId: string;
233
+ createdAt: string;
234
+ updatedAt: string;
235
235
  toolPolicies: Record<string, {
236
236
  needsApproval?: boolean;
237
237
  }> | null;
@@ -9,12 +9,12 @@ declare const getSubAgentExternalAgentRelationById: (db: AgentsManageDatabaseCli
9
9
  relationId: string;
10
10
  }) => Promise<{
11
11
  id: string;
12
- createdAt: string;
13
- updatedAt: string;
14
- headers: Record<string, string> | null;
15
12
  tenantId: string;
16
13
  projectId: string;
17
14
  agentId: string;
15
+ createdAt: string;
16
+ updatedAt: string;
17
+ headers: Record<string, string> | null;
18
18
  externalAgentId: string;
19
19
  subAgentId: string;
20
20
  } | undefined>;
@@ -44,12 +44,12 @@ declare const getSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient
44
44
  scopes: SubAgentScopeConfig;
45
45
  }) => Promise<{
46
46
  id: string;
47
- createdAt: string;
48
- updatedAt: string;
49
- headers: Record<string, string> | null;
50
47
  tenantId: string;
51
48
  projectId: string;
52
49
  agentId: string;
50
+ createdAt: string;
51
+ updatedAt: string;
52
+ headers: Record<string, string> | null;
53
53
  externalAgentId: string;
54
54
  subAgentId: string;
55
55
  }[]>;
@@ -57,12 +57,12 @@ declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabas
57
57
  scopes: AgentScopeConfig;
58
58
  }) => Promise<{
59
59
  id: string;
60
- createdAt: string;
61
- updatedAt: string;
62
- headers: Record<string, string> | null;
63
60
  tenantId: string;
64
61
  projectId: string;
65
62
  agentId: string;
63
+ createdAt: string;
64
+ updatedAt: string;
65
+ headers: Record<string, string> | null;
66
66
  externalAgentId: string;
67
67
  subAgentId: string;
68
68
  }[]>;
@@ -180,12 +180,12 @@ declare const createSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
180
180
  };
181
181
  }) => Promise<{
182
182
  id: string;
183
- createdAt: string;
184
- updatedAt: string;
185
- headers: Record<string, string> | null;
186
183
  tenantId: string;
187
184
  projectId: string;
188
185
  agentId: string;
186
+ createdAt: string;
187
+ updatedAt: string;
188
+ headers: Record<string, string> | null;
189
189
  externalAgentId: string;
190
190
  subAgentId: string;
191
191
  }>;
@@ -197,12 +197,12 @@ declare const getSubAgentExternalAgentRelationByParams: (db: AgentsManageDatabas
197
197
  externalAgentId: string;
198
198
  }) => Promise<{
199
199
  id: string;
200
- createdAt: string;
201
- updatedAt: string;
202
- headers: Record<string, string> | null;
203
200
  tenantId: string;
204
201
  projectId: string;
205
202
  agentId: string;
203
+ createdAt: string;
204
+ updatedAt: string;
205
+ headers: Record<string, string> | null;
206
206
  externalAgentId: string;
207
207
  subAgentId: string;
208
208
  } | undefined>;
@@ -218,12 +218,12 @@ declare const upsertSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
218
218
  };
219
219
  }) => Promise<{
220
220
  id: string;
221
- createdAt: string;
222
- updatedAt: string;
223
- headers: Record<string, string> | null;
224
221
  tenantId: string;
225
222
  projectId: string;
226
223
  agentId: string;
224
+ createdAt: string;
225
+ updatedAt: string;
226
+ headers: Record<string, string> | null;
227
227
  externalAgentId: string;
228
228
  subAgentId: string;
229
229
  }>;