@sentry/junior 0.67.0 → 0.67.2
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/app.d.ts +7 -0
- package/dist/app.js +321 -191
- package/dist/chat/config.d.ts +10 -0
- package/dist/chat/services/message-actor-identity.d.ts +8 -0
- package/dist/chat/services/requester-identity.d.ts +19 -0
- package/dist/chat/slack/user.d.ts +3 -0
- package/dist/chat/task-execution/slack-work.d.ts +2 -0
- package/dist/{chunk-NWU2Z6SM.js → chunk-EBVQXCD2.js} +57 -6
- package/dist/{chunk-6QWWMZCK.js → chunk-OIIXZOOC.js} +101 -6
- package/dist/{chunk-KWEE2436.js → chunk-PIVOJIUD.js} +2 -2
- package/dist/{chunk-HFMZE67J.js → chunk-PLJTW7IB.js} +8 -6
- package/dist/{chunk-YL5G5YC4.js → chunk-V47RLIO2.js} +1 -1
- package/dist/cli/check.js +2 -2
- package/dist/cli/snapshot-warmup.js +3 -3
- package/dist/reporting.js +4 -4
- package/package.json +3 -3
package/dist/app.d.ts
CHANGED
|
@@ -5,6 +5,13 @@ import type { WaitUntilFn } from "@/handlers/types";
|
|
|
5
5
|
export { defineJuniorPlugins } from "@/plugins";
|
|
6
6
|
export type { JuniorPluginInput, JuniorPluginSet, JuniorPluginSetOptions, } from "@/plugins";
|
|
7
7
|
export interface JuniorAppOptions {
|
|
8
|
+
/** Slack-specific overrides applied after env parsing. */
|
|
9
|
+
slack?: {
|
|
10
|
+
/** Slack emoji shown while Junior is processing. Defaults to `eyes`. */
|
|
11
|
+
processingReactionEmoji?: string;
|
|
12
|
+
/** Slack emoji shown after a turn completes. Defaults to `white_check_mark`. */
|
|
13
|
+
completedReactionEmoji?: string;
|
|
14
|
+
};
|
|
8
15
|
/** Install-wide provider defaults (`provider.key` format). Channel overrides take precedence. */
|
|
9
16
|
configDefaults?: Record<string, unknown>;
|
|
10
17
|
/** Queue consumer wiring for the durable conversation worker. */
|