@inkeep/agents-core 0.53.13 → 0.55.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.
- package/dist/auth/auth-schema.d.ts +85 -85
- package/dist/auth/auth-validation-schemas.d.ts +152 -152
- package/dist/auth/auth.d.ts +28 -28
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/client-exports.d.ts +4 -4
- package/dist/client-exports.js +2 -2
- package/dist/data-access/index.d.ts +2 -2
- package/dist/data-access/index.js +3 -3
- package/dist/data-access/manage/agents.d.ts +26 -26
- package/dist/data-access/manage/agents.js +19 -1
- package/dist/data-access/manage/artifactComponents.d.ts +10 -10
- package/dist/data-access/manage/contextConfigs.d.ts +8 -8
- package/dist/data-access/manage/dataComponents.d.ts +4 -4
- package/dist/data-access/manage/functionTools.d.ts +16 -16
- package/dist/data-access/manage/skills.d.ts +13 -13
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgentRelations.d.ts +20 -20
- 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 +24 -12
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/cascade-delete.d.ts +2 -0
- package/dist/data-access/runtime/cascade-delete.js +19 -4
- package/dist/data-access/runtime/conversations.d.ts +16 -16
- package/dist/data-access/runtime/messages.d.ts +3 -3
- package/dist/data-access/runtime/tasks.d.ts +3 -3
- package/dist/data-access/runtime/workAppSlack.d.ts +8 -2
- package/dist/data-access/runtime/workAppSlack.js +63 -2
- package/dist/db/manage/manage-schema.d.ts +355 -355
- package/dist/db/runtime/runtime-schema.d.ts +316 -280
- package/dist/db/runtime/runtime-schema.js +12 -4
- package/dist/index.d.ts +3 -3
- package/dist/index.js +4 -4
- package/dist/types/utility.d.ts +1 -0
- package/dist/utils/mcp-client.d.ts +1 -0
- package/dist/utils/mcp-client.js +3 -0
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/dist/validation/schemas.d.ts +1316 -228
- package/dist/validation/schemas.js +12 -2
- package/drizzle/runtime/0016_white_eddie_brock.sql +1 -0
- package/drizzle/runtime/0017_remarkable_starfox.sql +3 -0
- package/drizzle/runtime/0018_orange_union_jack.sql +6 -0
- package/drizzle/runtime/meta/0016_snapshot.json +3766 -0
- package/drizzle/runtime/meta/0017_snapshot.json +3785 -0
- package/drizzle/runtime/meta/0018_snapshot.json +3929 -0
- package/drizzle/runtime/meta/_journal.json +21 -0
- package/package.json +1 -1
|
@@ -16,15 +16,15 @@ declare const listConversations: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
16
16
|
total: number;
|
|
17
17
|
}>;
|
|
18
18
|
declare const createConversation: (db: AgentsRunDatabaseClient) => (params: ConversationInsert) => Promise<{
|
|
19
|
+
id: string;
|
|
19
20
|
tenantId: string;
|
|
20
|
-
userId: string | null;
|
|
21
|
-
title: string | null;
|
|
22
|
-
agentId: string | null;
|
|
23
21
|
projectId: string;
|
|
24
|
-
|
|
22
|
+
agentId: string | null;
|
|
23
|
+
title: string | null;
|
|
25
24
|
createdAt: string;
|
|
26
25
|
updatedAt: string;
|
|
27
26
|
metadata: ConversationMetadata | null;
|
|
27
|
+
userId: string | null;
|
|
28
28
|
ref: {
|
|
29
29
|
type: "commit" | "tag" | "branch";
|
|
30
30
|
name: string;
|
|
@@ -85,15 +85,15 @@ declare const getConversation: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
85
85
|
scopes: ProjectScopeConfig;
|
|
86
86
|
conversationId: string;
|
|
87
87
|
}) => Promise<{
|
|
88
|
+
id: string;
|
|
88
89
|
tenantId: string;
|
|
89
|
-
userId: string | null;
|
|
90
|
-
title: string | null;
|
|
91
|
-
agentId: string | null;
|
|
92
90
|
projectId: string;
|
|
93
|
-
|
|
91
|
+
agentId: string | null;
|
|
92
|
+
title: string | null;
|
|
94
93
|
createdAt: string;
|
|
95
94
|
updatedAt: string;
|
|
96
95
|
metadata: ConversationMetadata | null;
|
|
96
|
+
userId: string | null;
|
|
97
97
|
ref: {
|
|
98
98
|
type: "commit" | "tag" | "branch";
|
|
99
99
|
name: string;
|
|
@@ -121,15 +121,15 @@ declare const createOrGetConversation: (db: AgentsRunDatabaseClient) => (input:
|
|
|
121
121
|
metadata?: ConversationMetadata | null | undefined;
|
|
122
122
|
contextConfigId?: string | undefined;
|
|
123
123
|
} | {
|
|
124
|
+
id: string;
|
|
124
125
|
tenantId: string;
|
|
125
|
-
userId: string | null;
|
|
126
|
-
title: string | null;
|
|
127
|
-
agentId: string | null;
|
|
128
126
|
projectId: string;
|
|
129
|
-
|
|
127
|
+
agentId: string | null;
|
|
128
|
+
title: string | null;
|
|
130
129
|
createdAt: string;
|
|
131
130
|
updatedAt: string;
|
|
132
131
|
metadata: ConversationMetadata | null;
|
|
132
|
+
userId: string | null;
|
|
133
133
|
ref: {
|
|
134
134
|
type: "commit" | "tag" | "branch";
|
|
135
135
|
name: string;
|
|
@@ -153,15 +153,15 @@ declare const getActiveAgentForConversation: (db: AgentsRunDatabaseClient) => (p
|
|
|
153
153
|
scopes: ProjectScopeConfig;
|
|
154
154
|
conversationId: string;
|
|
155
155
|
}) => Promise<{
|
|
156
|
+
id: string;
|
|
156
157
|
tenantId: string;
|
|
157
|
-
userId: string | null;
|
|
158
|
-
title: string | null;
|
|
159
|
-
agentId: string | null;
|
|
160
158
|
projectId: string;
|
|
161
|
-
|
|
159
|
+
agentId: string | null;
|
|
160
|
+
title: string | null;
|
|
162
161
|
createdAt: string;
|
|
163
162
|
updatedAt: string;
|
|
164
163
|
metadata: ConversationMetadata | null;
|
|
164
|
+
userId: string | null;
|
|
165
165
|
ref: {
|
|
166
166
|
type: "commit" | "tag" | "branch";
|
|
167
167
|
name: string;
|
|
@@ -10,9 +10,9 @@ declare const getMessageById: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
10
10
|
scopes: ProjectScopeConfig;
|
|
11
11
|
messageId: string;
|
|
12
12
|
}) => Promise<{
|
|
13
|
+
id: string;
|
|
13
14
|
tenantId: string;
|
|
14
15
|
projectId: string;
|
|
15
|
-
id: string;
|
|
16
16
|
createdAt: string;
|
|
17
17
|
updatedAt: string;
|
|
18
18
|
metadata: MessageMetadata | null;
|
|
@@ -141,9 +141,9 @@ declare const getVisibleMessages: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
141
141
|
id: string;
|
|
142
142
|
}[]>;
|
|
143
143
|
declare const createMessage: (db: AgentsRunDatabaseClient) => (params: MessageInsert) => Promise<{
|
|
144
|
+
id: string;
|
|
144
145
|
tenantId: string;
|
|
145
146
|
projectId: string;
|
|
146
|
-
id: string;
|
|
147
147
|
createdAt: string;
|
|
148
148
|
updatedAt: string;
|
|
149
149
|
metadata: MessageMetadata | null;
|
|
@@ -194,9 +194,9 @@ declare const deleteMessage: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
194
194
|
scopes: ProjectScopeConfig;
|
|
195
195
|
messageId: string;
|
|
196
196
|
}) => Promise<{
|
|
197
|
+
id: string;
|
|
197
198
|
tenantId: string;
|
|
198
199
|
projectId: string;
|
|
199
|
-
id: string;
|
|
200
200
|
createdAt: string;
|
|
201
201
|
updatedAt: string;
|
|
202
202
|
metadata: MessageMetadata | null;
|
|
@@ -6,15 +6,15 @@ import { TaskInsert, TaskSelect } from "../../types/entities.js";
|
|
|
6
6
|
|
|
7
7
|
//#region src/data-access/runtime/tasks.d.ts
|
|
8
8
|
declare const createTask: (db: AgentsRunDatabaseClient) => (params: TaskInsert) => Promise<{
|
|
9
|
+
id: string;
|
|
9
10
|
tenantId: string;
|
|
10
|
-
status: string;
|
|
11
|
-
agentId: string;
|
|
12
11
|
projectId: string;
|
|
13
|
-
|
|
12
|
+
agentId: string;
|
|
14
13
|
createdAt: string;
|
|
15
14
|
updatedAt: string;
|
|
16
15
|
metadata: TaskMetadataConfig | null;
|
|
17
16
|
subAgentId: string;
|
|
17
|
+
status: string;
|
|
18
18
|
contextId: string;
|
|
19
19
|
ref: {
|
|
20
20
|
type: "commit" | "tag" | "branch";
|
|
@@ -25,7 +25,7 @@ declare const findWorkAppSlackWorkspaceBySlackTeamId: (db: AgentsRunDatabaseClie
|
|
|
25
25
|
*/
|
|
26
26
|
declare const findWorkAppSlackWorkspaceByNangoConnectionId: (db: AgentsRunDatabaseClient) => (nangoConnectionId: string) => Promise<WorkAppSlackWorkspaceSelect | null>;
|
|
27
27
|
declare const listWorkAppSlackWorkspacesByTenant: (db: AgentsRunDatabaseClient) => (tenantId: string) => Promise<WorkAppSlackWorkspaceSelect[]>;
|
|
28
|
-
declare const updateWorkAppSlackWorkspace: (db: AgentsRunDatabaseClient) => (id: string, data: Partial<Pick<WorkAppSlackWorkspaceInsert, "status" | "slackTeamName" | "shouldAllowJoinFromWorkspace">>) => Promise<WorkAppSlackWorkspaceSelect | null>;
|
|
28
|
+
declare const updateWorkAppSlackWorkspace: (db: AgentsRunDatabaseClient) => (id: string, data: Partial<Pick<WorkAppSlackWorkspaceInsert, "status" | "slackTeamName" | "shouldAllowJoinFromWorkspace" | "defaultAgentId" | "defaultProjectId" | "defaultGrantAccessToMembers">>) => Promise<WorkAppSlackWorkspaceSelect | null>;
|
|
29
29
|
declare const deleteWorkAppSlackWorkspace: (db: AgentsRunDatabaseClient) => (id: string) => Promise<boolean>;
|
|
30
30
|
declare const deleteWorkAppSlackWorkspaceByNangoConnectionId: (db: AgentsRunDatabaseClient) => (nangoConnectionId: string) => Promise<boolean>;
|
|
31
31
|
declare const findWorkAppSlackUserMapping: (db: AgentsRunDatabaseClient) => (tenantId: string, slackUserId: string, slackTeamId: string, clientId?: string) => Promise<WorkAppSlackUserMappingSelect | null>;
|
|
@@ -51,5 +51,11 @@ declare const listWorkAppSlackChannelAgentConfigsByTeam: (db: AgentsRunDatabaseC
|
|
|
51
51
|
declare const upsertWorkAppSlackChannelAgentConfig: (db: AgentsRunDatabaseClient) => (data: Omit<WorkAppSlackChannelAgentConfigInsert, "id" | "createdAt" | "updatedAt">) => Promise<WorkAppSlackChannelAgentConfigSelect>;
|
|
52
52
|
declare const deleteWorkAppSlackChannelAgentConfig: (db: AgentsRunDatabaseClient) => (tenantId: string, slackTeamId: string, slackChannelId: string) => Promise<boolean>;
|
|
53
53
|
declare const deleteAllWorkAppSlackChannelAgentConfigsByTeam: (db: AgentsRunDatabaseClient) => (tenantId: string, slackTeamId: string) => Promise<number>;
|
|
54
|
+
declare const deleteWorkAppSlackChannelAgentConfigsByAgent: (db: AgentsRunDatabaseClient) => (tenantId: string, projectId: string, agentId: string) => Promise<number>;
|
|
55
|
+
declare const deleteWorkAppSlackChannelAgentConfigsByProject: (db: AgentsRunDatabaseClient) => (tenantId: string, projectId: string) => Promise<number>;
|
|
56
|
+
declare const clearWorkspaceDefaultsByAgent: (db: AgentsRunDatabaseClient) => (tenantId: string, projectId: string, agentId: string) => Promise<number>;
|
|
57
|
+
declare const clearWorkspaceDefaultsByProject: (db: AgentsRunDatabaseClient) => (tenantId: string, projectId: string) => Promise<number>;
|
|
58
|
+
declare function clearDevConfigWorkspaceDefaultsByAgent(projectId: string, agentId: string): void;
|
|
59
|
+
declare function clearDevConfigWorkspaceDefaultsByProject(projectId: string): void;
|
|
54
60
|
//#endregion
|
|
55
|
-
export { WorkAppSlackChannelAgentConfigInsert, WorkAppSlackChannelAgentConfigSelect, WorkAppSlackUserMappingInsert, WorkAppSlackUserMappingSelect, WorkAppSlackWorkspaceInsert, WorkAppSlackWorkspaceSelect, createWorkAppSlackChannelAgentConfig, createWorkAppSlackUserMapping, createWorkAppSlackWorkspace, deleteAllWorkAppSlackChannelAgentConfigsByTeam, deleteAllWorkAppSlackUserMappingsByTeam, deleteWorkAppSlackChannelAgentConfig, deleteWorkAppSlackUserMapping, deleteWorkAppSlackWorkspace, deleteWorkAppSlackWorkspaceByNangoConnectionId, findWorkAppSlackChannelAgentConfig, findWorkAppSlackUserMapping, findWorkAppSlackUserMappingByInkeepUserId, findWorkAppSlackUserMappingBySlackUser, findWorkAppSlackWorkspaceByNangoConnectionId, findWorkAppSlackWorkspaceBySlackTeamId, findWorkAppSlackWorkspaceByTeamId, listWorkAppSlackChannelAgentConfigsByTeam, listWorkAppSlackUserMappingsByTeam, listWorkAppSlackWorkspacesByTenant, updateWorkAppSlackWorkspace, upsertWorkAppSlackChannelAgentConfig };
|
|
61
|
+
export { WorkAppSlackChannelAgentConfigInsert, WorkAppSlackChannelAgentConfigSelect, WorkAppSlackUserMappingInsert, WorkAppSlackUserMappingSelect, WorkAppSlackWorkspaceInsert, WorkAppSlackWorkspaceSelect, clearDevConfigWorkspaceDefaultsByAgent, clearDevConfigWorkspaceDefaultsByProject, clearWorkspaceDefaultsByAgent, clearWorkspaceDefaultsByProject, createWorkAppSlackChannelAgentConfig, createWorkAppSlackUserMapping, createWorkAppSlackWorkspace, deleteAllWorkAppSlackChannelAgentConfigsByTeam, deleteAllWorkAppSlackUserMappingsByTeam, deleteWorkAppSlackChannelAgentConfig, deleteWorkAppSlackChannelAgentConfigsByAgent, deleteWorkAppSlackChannelAgentConfigsByProject, deleteWorkAppSlackUserMapping, deleteWorkAppSlackWorkspace, deleteWorkAppSlackWorkspaceByNangoConnectionId, findWorkAppSlackChannelAgentConfig, findWorkAppSlackUserMapping, findWorkAppSlackUserMappingByInkeepUserId, findWorkAppSlackUserMappingBySlackUser, findWorkAppSlackWorkspaceByNangoConnectionId, findWorkAppSlackWorkspaceBySlackTeamId, findWorkAppSlackWorkspaceByTeamId, listWorkAppSlackChannelAgentConfigsByTeam, listWorkAppSlackUserMappingsByTeam, listWorkAppSlackWorkspacesByTenant, updateWorkAppSlackWorkspace, upsertWorkAppSlackChannelAgentConfig };
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { workAppSlackChannelAgentConfigs, workAppSlackUserMappings, workAppSlackWorkspaces } from "../../db/runtime/runtime-schema.js";
|
|
2
2
|
import { and, eq } from "drizzle-orm";
|
|
3
|
+
import { existsSync, readFileSync, writeFileSync } from "node:fs";
|
|
4
|
+
import { dirname, join } from "node:path";
|
|
3
5
|
import { nanoid } from "nanoid";
|
|
4
6
|
|
|
5
7
|
//#region src/data-access/runtime/workAppSlack.ts
|
|
@@ -125,7 +127,6 @@ const upsertWorkAppSlackChannelAgentConfig = (db) => async (data) => {
|
|
|
125
127
|
set: {
|
|
126
128
|
projectId: data.projectId,
|
|
127
129
|
agentId: data.agentId,
|
|
128
|
-
agentName: data.agentName,
|
|
129
130
|
slackChannelName: data.slackChannelName,
|
|
130
131
|
slackChannelType: data.slackChannelType,
|
|
131
132
|
enabled: data.enabled,
|
|
@@ -142,6 +143,66 @@ const deleteWorkAppSlackChannelAgentConfig = (db) => async (tenantId, slackTeamI
|
|
|
142
143
|
const deleteAllWorkAppSlackChannelAgentConfigsByTeam = (db) => async (tenantId, slackTeamId) => {
|
|
143
144
|
return (await db.delete(workAppSlackChannelAgentConfigs).where(and(eq(workAppSlackChannelAgentConfigs.tenantId, tenantId), eq(workAppSlackChannelAgentConfigs.slackTeamId, slackTeamId))).returning()).length;
|
|
144
145
|
};
|
|
146
|
+
const deleteWorkAppSlackChannelAgentConfigsByAgent = (db) => async (tenantId, projectId, agentId) => {
|
|
147
|
+
return (await db.delete(workAppSlackChannelAgentConfigs).where(and(eq(workAppSlackChannelAgentConfigs.tenantId, tenantId), eq(workAppSlackChannelAgentConfigs.projectId, projectId), eq(workAppSlackChannelAgentConfigs.agentId, agentId))).returning()).length;
|
|
148
|
+
};
|
|
149
|
+
const deleteWorkAppSlackChannelAgentConfigsByProject = (db) => async (tenantId, projectId) => {
|
|
150
|
+
return (await db.delete(workAppSlackChannelAgentConfigs).where(and(eq(workAppSlackChannelAgentConfigs.tenantId, tenantId), eq(workAppSlackChannelAgentConfigs.projectId, projectId))).returning()).length;
|
|
151
|
+
};
|
|
152
|
+
const clearWorkspaceDefaultsByAgent = (db) => async (tenantId, projectId, agentId) => {
|
|
153
|
+
return (await db.update(workAppSlackWorkspaces).set({
|
|
154
|
+
defaultAgentId: null,
|
|
155
|
+
defaultProjectId: null,
|
|
156
|
+
defaultGrantAccessToMembers: null,
|
|
157
|
+
updatedAt: (/* @__PURE__ */ new Date()).toISOString()
|
|
158
|
+
}).where(and(eq(workAppSlackWorkspaces.tenantId, tenantId), eq(workAppSlackWorkspaces.defaultProjectId, projectId), eq(workAppSlackWorkspaces.defaultAgentId, agentId))).returning()).length;
|
|
159
|
+
};
|
|
160
|
+
const clearWorkspaceDefaultsByProject = (db) => async (tenantId, projectId) => {
|
|
161
|
+
return (await db.update(workAppSlackWorkspaces).set({
|
|
162
|
+
defaultAgentId: null,
|
|
163
|
+
defaultProjectId: null,
|
|
164
|
+
defaultGrantAccessToMembers: null,
|
|
165
|
+
updatedAt: (/* @__PURE__ */ new Date()).toISOString()
|
|
166
|
+
}).where(and(eq(workAppSlackWorkspaces.tenantId, tenantId), eq(workAppSlackWorkspaces.defaultProjectId, projectId))).returning()).length;
|
|
167
|
+
};
|
|
168
|
+
const DEV_CONFIG_FILENAME = ".slack-dev.json";
|
|
169
|
+
function findSlackDevConfigPath() {
|
|
170
|
+
if (process.env.ENVIRONMENT !== "development") return null;
|
|
171
|
+
let dir = process.cwd();
|
|
172
|
+
while (true) {
|
|
173
|
+
const candidate = join(dir, DEV_CONFIG_FILENAME);
|
|
174
|
+
if (existsSync(candidate)) return candidate;
|
|
175
|
+
const parent = dirname(dir);
|
|
176
|
+
if (parent === dir) break;
|
|
177
|
+
dir = parent;
|
|
178
|
+
}
|
|
179
|
+
return null;
|
|
180
|
+
}
|
|
181
|
+
function clearDevConfigWorkspaceDefaultsByAgent(projectId, agentId) {
|
|
182
|
+
const configPath = findSlackDevConfigPath();
|
|
183
|
+
if (!configPath) return;
|
|
184
|
+
try {
|
|
185
|
+
const config = JSON.parse(readFileSync(configPath, "utf-8"));
|
|
186
|
+
if (!config?.metadata?.default_agent) return;
|
|
187
|
+
const defaultAgent = JSON.parse(config.metadata.default_agent);
|
|
188
|
+
if (defaultAgent.agentId === agentId && defaultAgent.projectId === projectId) {
|
|
189
|
+
config.metadata.default_agent = "";
|
|
190
|
+
writeFileSync(configPath, JSON.stringify(config, null, 2) + "\n", "utf-8");
|
|
191
|
+
}
|
|
192
|
+
} catch {}
|
|
193
|
+
}
|
|
194
|
+
function clearDevConfigWorkspaceDefaultsByProject(projectId) {
|
|
195
|
+
const configPath = findSlackDevConfigPath();
|
|
196
|
+
if (!configPath) return;
|
|
197
|
+
try {
|
|
198
|
+
const config = JSON.parse(readFileSync(configPath, "utf-8"));
|
|
199
|
+
if (!config?.metadata?.default_agent) return;
|
|
200
|
+
if (JSON.parse(config.metadata.default_agent).projectId === projectId) {
|
|
201
|
+
config.metadata.default_agent = "";
|
|
202
|
+
writeFileSync(configPath, JSON.stringify(config, null, 2) + "\n", "utf-8");
|
|
203
|
+
}
|
|
204
|
+
} catch {}
|
|
205
|
+
}
|
|
145
206
|
|
|
146
207
|
//#endregion
|
|
147
|
-
export { createWorkAppSlackChannelAgentConfig, createWorkAppSlackUserMapping, createWorkAppSlackWorkspace, deleteAllWorkAppSlackChannelAgentConfigsByTeam, deleteAllWorkAppSlackUserMappingsByTeam, deleteWorkAppSlackChannelAgentConfig, deleteWorkAppSlackUserMapping, deleteWorkAppSlackWorkspace, deleteWorkAppSlackWorkspaceByNangoConnectionId, findWorkAppSlackChannelAgentConfig, findWorkAppSlackUserMapping, findWorkAppSlackUserMappingByInkeepUserId, findWorkAppSlackUserMappingBySlackUser, findWorkAppSlackWorkspaceByNangoConnectionId, findWorkAppSlackWorkspaceBySlackTeamId, findWorkAppSlackWorkspaceByTeamId, listWorkAppSlackChannelAgentConfigsByTeam, listWorkAppSlackUserMappingsByTeam, listWorkAppSlackWorkspacesByTenant, updateWorkAppSlackWorkspace, upsertWorkAppSlackChannelAgentConfig };
|
|
208
|
+
export { clearDevConfigWorkspaceDefaultsByAgent, clearDevConfigWorkspaceDefaultsByProject, clearWorkspaceDefaultsByAgent, clearWorkspaceDefaultsByProject, createWorkAppSlackChannelAgentConfig, createWorkAppSlackUserMapping, createWorkAppSlackWorkspace, deleteAllWorkAppSlackChannelAgentConfigsByTeam, deleteAllWorkAppSlackUserMappingsByTeam, deleteWorkAppSlackChannelAgentConfig, deleteWorkAppSlackChannelAgentConfigsByAgent, deleteWorkAppSlackChannelAgentConfigsByProject, deleteWorkAppSlackUserMapping, deleteWorkAppSlackWorkspace, deleteWorkAppSlackWorkspaceByNangoConnectionId, findWorkAppSlackChannelAgentConfig, findWorkAppSlackUserMapping, findWorkAppSlackUserMappingByInkeepUserId, findWorkAppSlackUserMappingBySlackUser, findWorkAppSlackWorkspaceByNangoConnectionId, findWorkAppSlackWorkspaceBySlackTeamId, findWorkAppSlackWorkspaceByTeamId, listWorkAppSlackChannelAgentConfigsByTeam, listWorkAppSlackUserMappingsByTeam, listWorkAppSlackWorkspacesByTenant, updateWorkAppSlackWorkspace, upsertWorkAppSlackChannelAgentConfig };
|