@sentry/junior 0.81.0 → 0.83.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/{agent-hooks-ZGTDOXQY.js → agent-hooks-EEWWWIS2.js} +5 -5
- package/dist/api-reference.d.ts +1 -1
- package/dist/app.d.ts +1 -1
- package/dist/app.js +3763 -4132
- package/dist/chat/agent-dispatch/runner.d.ts +1 -1
- package/dist/chat/app/services.d.ts +1 -1
- package/dist/chat/conversations/store.d.ts +1 -1
- package/dist/chat/egress/credentialed.d.ts +57 -0
- package/dist/chat/egress/plugin.d.ts +24 -0
- package/dist/chat/plugins/agent-hooks.d.ts +3 -3
- package/dist/chat/plugins/credential-hooks.d.ts +2 -0
- package/dist/chat/resource-events/ingest.d.ts +23 -0
- package/dist/chat/resource-events/notification.d.ts +20 -0
- package/dist/chat/resource-events/store.d.ts +79 -0
- package/dist/chat/respond.d.ts +1 -1
- package/dist/chat/sandbox/{egress-credentials.d.ts → egress/credentials.d.ts} +28 -5
- package/dist/chat/sandbox/egress/policy.d.ts +32 -0
- package/dist/chat/sandbox/egress/proxy.d.ts +35 -0
- package/dist/chat/sandbox/{egress-session.d.ts → egress/session.d.ts} +41 -11
- package/dist/chat/sandbox/sandbox.d.ts +2 -2
- package/dist/chat/services/pending-auth.d.ts +5 -0
- package/dist/chat/slack/client.d.ts +2 -0
- package/dist/chat/task-execution/slack-work.d.ts +22 -0
- package/dist/chat/task-execution/state.d.ts +7 -1
- package/dist/chat/task-execution/store.d.ts +30 -8
- package/dist/chat/tools/resource-events.d.ts +19 -0
- package/dist/chat/tools/types.d.ts +2 -1
- package/dist/{chunk-Y3YUOEAZ.js → chunk-5C3RY6IZ.js} +20 -11
- package/dist/{chunk-IOBSRZK5.js → chunk-AK7T7XRQ.js} +1 -1
- package/dist/{chunk-LX5GBMEP.js → chunk-BFQ7IUTE.js} +1 -1
- package/dist/{chunk-YA2JCC7G.js → chunk-GK5CITCY.js} +4 -2
- package/dist/{chunk-4XHCVBXH.js → chunk-KZLRUQAA.js} +77 -12
- package/dist/{chunk-BOMLWLTF.js → chunk-LK53AHO5.js} +1759 -175
- package/dist/{chunk-2AJ4TEKE.js → chunk-ORRLK22J.js} +24 -2
- package/dist/{chunk-PQ2U2AO3.js → chunk-QVMLDCVR.js} +10 -2
- package/dist/{chunk-RV5RYIJW.js → chunk-UXPG6ZIN.js} +28 -0
- package/dist/cli/chat.js +4 -4
- package/dist/cli/env.js +7 -1
- package/dist/cli/init.js +1 -0
- package/dist/cli/main.js +1 -1
- package/dist/cli/plugins.js +3 -3
- package/dist/cli/upgrade.js +3 -3
- package/dist/{db-GQJKBX5W.js → db-TRIVS6BW.js} +2 -2
- package/dist/handlers/agent-dispatch.d.ts +1 -1
- package/dist/handlers/github-webhook/check-suite.d.ts +3 -0
- package/dist/handlers/github-webhook/pull-request-review.d.ts +3 -0
- package/dist/handlers/github-webhook/pull-request.d.ts +3 -0
- package/dist/handlers/github-webhook/resource.d.ts +10 -0
- package/dist/handlers/github-webhook.d.ts +15 -0
- package/dist/handlers/sandbox-egress-proxy.d.ts +2 -2
- package/dist/nitro.js +2 -2
- package/dist/reporting/conversations.d.ts +2 -2
- package/dist/reporting.d.ts +2 -2
- package/dist/reporting.js +16 -22
- package/dist/{runner-LNBN7BIN.js → runner-KS4XDMHF.js} +5 -5
- package/package.json +6 -5
- package/dist/chat/sandbox/egress-policy.d.ts +0 -15
- package/dist/chat/sandbox/egress-proxy.d.ts +0 -19
- /package/dist/chat/sandbox/{egress-oidc.d.ts → egress/oidc.d.ts} +0 -0
- /package/dist/chat/sandbox/{egress-schemas.d.ts → egress/schemas.d.ts} +0 -0
- /package/dist/chat/sandbox/{egress-tracing.d.ts → egress/tracing.d.ts} +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
PluginHookDeniedError,
|
|
3
3
|
createPluginHookRunner,
|
|
4
|
-
|
|
4
|
+
getPluginApiRoutes,
|
|
5
5
|
getPluginOperationalReports,
|
|
6
6
|
getPluginRoutes,
|
|
7
7
|
getPluginSlackConversationLink,
|
|
@@ -11,12 +11,12 @@ import {
|
|
|
11
11
|
getPlugins,
|
|
12
12
|
setPlugins,
|
|
13
13
|
validatePlugins
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-5C3RY6IZ.js";
|
|
15
15
|
import "./chunk-GUO4EE7L.js";
|
|
16
|
-
import "./chunk-
|
|
16
|
+
import "./chunk-QVMLDCVR.js";
|
|
17
17
|
import "./chunk-G3E7SCME.js";
|
|
18
18
|
import "./chunk-X2FL5ZH5.js";
|
|
19
|
-
import "./chunk-
|
|
19
|
+
import "./chunk-KZLRUQAA.js";
|
|
20
20
|
import "./chunk-ABRNFE3N.js";
|
|
21
21
|
import "./chunk-DR75T7J3.js";
|
|
22
22
|
import "./chunk-ZPCGQRFJ.js";
|
|
@@ -27,7 +27,7 @@ import "./chunk-MLKGABMK.js";
|
|
|
27
27
|
export {
|
|
28
28
|
PluginHookDeniedError,
|
|
29
29
|
createPluginHookRunner,
|
|
30
|
-
|
|
30
|
+
getPluginApiRoutes,
|
|
31
31
|
getPluginOperationalReports,
|
|
32
32
|
getPluginRoutes,
|
|
33
33
|
getPluginSlackConversationLink,
|
package/dist/api-reference.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export { juniorNitro } from "./nitro";
|
|
|
5
5
|
export type { JuniorNitroDashboardOptions, JuniorNitroOptions } from "./nitro";
|
|
6
6
|
export { defineJuniorPlugins } from "./plugins";
|
|
7
7
|
export type { JuniorPluginInput, JuniorPluginSet, JuniorPluginSetOptions, } from "./plugins";
|
|
8
|
-
export type { PluginRunContext, PluginRunTranscriptEntry, PluginTaskContext, PluginTaskDefinition, PluginTasks, } from "@sentry/junior-plugin-api";
|
|
8
|
+
export type { PluginRunContext, PluginRunTranscriptEntry, PluginTaskContext, PluginTaskDefinition, PluginTasks, SubscribableResource, } from "@sentry/junior-plugin-api";
|
|
9
9
|
export { pluginRunContextSchema, pluginRunTranscriptEntrySchema, } from "@sentry/junior-plugin-api";
|
|
10
10
|
export { createJuniorReporting } from "./reporting";
|
|
11
11
|
export type { PluginConversationStatus, PluginConversations, PluginConversationSummary, ConversationActivityReport, ConversationActivityStatus, ConversationFeed, ConversationReport, ConversationReportStatus, ConversationRunReport, ConversationSubagentActivityReport, ConversationStatsItem, ConversationStatsReport, ConversationSummaryReport, ConversationSurface, ConversationToolActivityReport, ConversationUsage, HealthReport, JuniorReporting, PluginOperationalReport, PluginOperationalReportFeed, PluginPackageContentItemReport, PluginPackageContentReport, PluginReport, RequesterIdentity, RuntimeInfoReport, SkillReport, TranscriptMessage, TranscriptPart, TranscriptPartType, TranscriptRole, } from "./reporting";
|
package/dist/app.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ export interface JuniorDashboardOptions {
|
|
|
49
49
|
disabled?: boolean;
|
|
50
50
|
/** Overlay dashboard visual-QA fixture conversations onto real reporting data. */
|
|
51
51
|
mockConversations?: boolean;
|
|
52
|
-
/** Reporting implementation used by
|
|
52
|
+
/** Reporting implementation used by authenticated product APIs. Defaults to core reporting. */
|
|
53
53
|
reporting?: JuniorReporting;
|
|
54
54
|
/** Browser session lifetime in seconds. */
|
|
55
55
|
sessionMaxAgeSeconds?: number;
|