@inkeep/agents-work-apps 0.0.0-dev-20260212200928 → 0.0.0-dev-20260212211616
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/env.d.ts +2 -2
- package/dist/github/index.d.ts +3 -3
- package/dist/github/mcp/index.d.ts +2 -2
- package/dist/github/routes/setup.d.ts +2 -2
- package/dist/github/routes/tokenExchange.d.ts +2 -2
- package/dist/github/routes/webhooks.d.ts +2 -2
- package/dist/slack/middleware/permissions.js +19 -11
- package/package.json +2 -2
package/dist/env.d.ts
CHANGED
|
@@ -14,11 +14,11 @@ declare const envSchema: z.ZodObject<{
|
|
|
14
14
|
pentest: "pentest";
|
|
15
15
|
}>>;
|
|
16
16
|
LOG_LEVEL: z.ZodDefault<z.ZodEnum<{
|
|
17
|
-
error: "error";
|
|
18
17
|
trace: "trace";
|
|
19
18
|
debug: "debug";
|
|
20
19
|
info: "info";
|
|
21
20
|
warn: "warn";
|
|
21
|
+
error: "error";
|
|
22
22
|
}>>;
|
|
23
23
|
INKEEP_AGENTS_RUN_DATABASE_URL: z.ZodString;
|
|
24
24
|
INKEEP_AGENTS_MANAGE_UI_URL: z.ZodOptional<z.ZodString>;
|
|
@@ -43,7 +43,7 @@ declare const envSchema: z.ZodObject<{
|
|
|
43
43
|
declare const env: {
|
|
44
44
|
NODE_ENV: "development" | "production" | "test";
|
|
45
45
|
ENVIRONMENT: "development" | "production" | "test" | "pentest";
|
|
46
|
-
LOG_LEVEL: "
|
|
46
|
+
LOG_LEVEL: "trace" | "debug" | "info" | "warn" | "error";
|
|
47
47
|
INKEEP_AGENTS_RUN_DATABASE_URL: string;
|
|
48
48
|
INKEEP_AGENTS_MANAGE_UI_URL?: string | undefined;
|
|
49
49
|
GITHUB_APP_ID?: string | undefined;
|
package/dist/github/index.d.ts
CHANGED
|
@@ -4,10 +4,10 @@ import "./routes/setup.js";
|
|
|
4
4
|
import "./routes/tokenExchange.js";
|
|
5
5
|
import { WebhookVerificationResult, verifyWebhookSignature } from "./routes/webhooks.js";
|
|
6
6
|
import { Hono } from "hono";
|
|
7
|
-
import * as
|
|
7
|
+
import * as hono_types6 from "hono/types";
|
|
8
8
|
|
|
9
9
|
//#region src/github/index.d.ts
|
|
10
|
-
declare function createGithubRoutes(): Hono<
|
|
11
|
-
declare const githubRoutes: Hono<
|
|
10
|
+
declare function createGithubRoutes(): Hono<hono_types6.BlankEnv, hono_types6.BlankSchema, "/">;
|
|
11
|
+
declare const githubRoutes: Hono<hono_types6.BlankEnv, hono_types6.BlankSchema, "/">;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { GenerateInstallationAccessTokenResult, GenerateTokenError, GenerateTokenResult, GitHubAppConfig, InstallationAccessToken, InstallationInfo, LookupInstallationError, LookupInstallationForRepoResult, LookupInstallationResult, WebhookVerificationResult, clearConfigCache, createAppJwt, createGithubRoutes, determineStatus, fetchInstallationDetails, fetchInstallationRepositories, generateInstallationAccessToken, getGitHubAppConfig, getGitHubAppName, getStateSigningSecret, getWebhookSecret, githubRoutes, isGitHubAppConfigured, isGitHubAppNameConfigured, isStateSigningConfigured, isWebhookConfigured, lookupInstallationForRepo, validateGitHubAppConfigOnStartup, validateGitHubInstallFlowConfigOnStartup, validateGitHubWebhookConfigOnStartup, verifyWebhookSignature };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Hono } from "hono";
|
|
2
|
-
import * as
|
|
2
|
+
import * as hono_types0 from "hono/types";
|
|
3
3
|
|
|
4
4
|
//#region src/github/mcp/index.d.ts
|
|
5
5
|
declare const app: Hono<{
|
|
6
6
|
Variables: {
|
|
7
7
|
toolId: string;
|
|
8
8
|
};
|
|
9
|
-
},
|
|
9
|
+
}, hono_types0.BlankSchema, "/">;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { app as default };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Hono } from "hono";
|
|
2
|
-
import * as
|
|
2
|
+
import * as hono_types0 from "hono/types";
|
|
3
3
|
|
|
4
4
|
//#region src/github/routes/setup.d.ts
|
|
5
|
-
declare const app: Hono<
|
|
5
|
+
declare const app: Hono<hono_types0.BlankEnv, hono_types0.BlankSchema, "/">;
|
|
6
6
|
//#endregion
|
|
7
7
|
export { app as default };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Hono } from "hono";
|
|
2
|
-
import * as
|
|
2
|
+
import * as hono_types2 from "hono/types";
|
|
3
3
|
|
|
4
4
|
//#region src/github/routes/tokenExchange.d.ts
|
|
5
|
-
declare const app: Hono<
|
|
5
|
+
declare const app: Hono<hono_types2.BlankEnv, hono_types2.BlankSchema, "/">;
|
|
6
6
|
//#endregion
|
|
7
7
|
export { app as default };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Hono } from "hono";
|
|
2
|
-
import * as
|
|
2
|
+
import * as hono_types4 from "hono/types";
|
|
3
3
|
|
|
4
4
|
//#region src/github/routes/webhooks.d.ts
|
|
5
5
|
interface WebhookVerificationResult {
|
|
@@ -7,6 +7,6 @@ interface WebhookVerificationResult {
|
|
|
7
7
|
error?: string;
|
|
8
8
|
}
|
|
9
9
|
declare function verifyWebhookSignature(payload: string, signature: string | undefined, secret: string): WebhookVerificationResult;
|
|
10
|
-
declare const app: Hono<
|
|
10
|
+
declare const app: Hono<hono_types4.BlankEnv, hono_types4.BlankSchema, "/">;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { WebhookVerificationResult, app as default, verifyWebhookSignature };
|
|
@@ -57,7 +57,7 @@ const requireWorkspaceAdmin = () => createMiddleware(async (c, next) => {
|
|
|
57
57
|
return;
|
|
58
58
|
}
|
|
59
59
|
const teamId = c.req.param("teamId") || c.req.param("workspaceId");
|
|
60
|
-
if (teamId && !c.get("
|
|
60
|
+
if (teamId && !c.get("tenantRole")) await resolveWorkAppTenantContext(c, teamId, userId);
|
|
61
61
|
const tenantId = c.get("tenantId");
|
|
62
62
|
const tenantRole = c.get("tenantRole");
|
|
63
63
|
if (!tenantId) throw createApiError({
|
|
@@ -65,15 +65,23 @@ const requireWorkspaceAdmin = () => createMiddleware(async (c, next) => {
|
|
|
65
65
|
message: "Organization context not found",
|
|
66
66
|
instance: c.req.path
|
|
67
67
|
});
|
|
68
|
-
if (!isOrgAdmin(tenantRole))
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
68
|
+
if (!isOrgAdmin(tenantRole)) {
|
|
69
|
+
logger.warn({
|
|
70
|
+
userId,
|
|
71
|
+
tenantId,
|
|
72
|
+
tenantRole,
|
|
73
|
+
path: c.req.path
|
|
74
|
+
}, "User does not have admin role for workspace operation");
|
|
75
|
+
throw createApiError({
|
|
76
|
+
code: "forbidden",
|
|
77
|
+
message: "Only organization administrators can modify workspace settings",
|
|
78
|
+
instance: c.req.path,
|
|
79
|
+
extensions: {
|
|
80
|
+
requiredRole: "admin or owner",
|
|
81
|
+
currentRole: tenantRole
|
|
82
|
+
}
|
|
83
|
+
});
|
|
84
|
+
}
|
|
77
85
|
await next();
|
|
78
86
|
});
|
|
79
87
|
/**
|
|
@@ -99,7 +107,7 @@ const requireChannelMemberOrAdmin = () => createMiddleware(async (c, next) => {
|
|
|
99
107
|
return;
|
|
100
108
|
}
|
|
101
109
|
const teamId = c.req.param("teamId");
|
|
102
|
-
if (teamId && !c.get("
|
|
110
|
+
if (teamId && !c.get("tenantRole")) await resolveWorkAppTenantContext(c, teamId, userId);
|
|
103
111
|
const tenantId = c.get("tenantId");
|
|
104
112
|
const tenantRole = c.get("tenantRole");
|
|
105
113
|
if (!tenantId) throw createApiError({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-work-apps",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20260212211616",
|
|
4
4
|
"description": "First party integrations for Inkeep Agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"hono": "^4.11.7",
|
|
33
33
|
"jose": "^6.1.0",
|
|
34
34
|
"minimatch": "^10.1.1",
|
|
35
|
-
"@inkeep/agents-core": "0.0.0-dev-
|
|
35
|
+
"@inkeep/agents-core": "0.0.0-dev-20260212211616"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@hono/zod-openapi": "^1.1.5",
|