@sentry/junior 0.82.0 → 0.84.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-5ZRILRC3.js → agent-hooks-XDS5DIVS.js} +8 -8
- package/dist/api-reference.d.ts +1 -1
- package/dist/app.d.ts +1 -1
- package/dist/app.js +3833 -3263
- package/dist/chat/config.d.ts +1 -1
- package/dist/chat/conversations/store.d.ts +1 -1
- package/dist/chat/plugins/agent-hooks.d.ts +3 -3
- 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/services/pending-auth.d.ts +5 -0
- package/dist/chat/slack/client.d.ts +3 -1
- package/dist/chat/state/session-log.d.ts +4 -0
- package/dist/chat/task-execution/slack-work.d.ts +22 -0
- package/dist/chat/task-execution/state.d.ts +8 -2
- package/dist/chat/task-execution/store.d.ts +30 -8
- package/dist/chat/tools/resource-events.d.ts +19 -0
- package/dist/{chunk-PQ2U2AO3.js → chunk-AAD2D7K3.js} +11 -11
- package/dist/{chunk-ABRNFE3N.js → chunk-ALL7GG6U.js} +7 -6
- package/dist/{chunk-4XHCVBXH.js → chunk-BAPRSWNW.js} +81 -13
- package/dist/{chunk-NC6LR6U4.js → chunk-BFPOSIYV.js} +725 -169
- package/dist/{chunk-GUO4EE7L.js → chunk-CWMMGUWM.js} +1 -1
- package/dist/{chunk-YA2JCC7G.js → chunk-JUI6XIHU.js} +13 -5
- package/dist/{chunk-TR2G37II.js → chunk-KNVN4HUT.js} +8 -8
- package/dist/{chunk-X2FL5ZH5.js → chunk-MJ4E2PK7.js} +1 -1
- package/dist/{chunk-3JKTVW4R.js → chunk-MZ4DUVFD.js} +2 -2
- package/dist/{chunk-2AJ4TEKE.js → chunk-S7SC5IUJ.js} +26 -4
- package/dist/{chunk-IOBSRZK5.js → chunk-SBYMRDH7.js} +1 -1
- package/dist/{chunk-LX5GBMEP.js → chunk-ZPD5YQFZ.js} +2 -2
- package/dist/cli/chat.js +4 -4
- package/dist/cli/plugins.js +6 -6
- package/dist/cli/snapshot-warmup.js +3 -3
- package/dist/cli/upgrade.js +16 -32
- package/dist/{db-GQJKBX5W.js → db-7RRWCYF3.js} +3 -3
- 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/nitro.js +3 -3
- package/dist/reporting/conversations.d.ts +79 -2
- package/dist/reporting.d.ts +12 -4
- package/dist/reporting.js +431 -27
- package/dist/{runner-VRFJLG2M.js → runner-CJL5IKFO.js} +9 -9
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/junior",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.84.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"pg": "^8.16.3",
|
|
71
71
|
"yaml": "^2.9.0",
|
|
72
72
|
"zod": "^4.4.3",
|
|
73
|
-
"@sentry/junior-plugin-api": "0.
|
|
73
|
+
"@sentry/junior-plugin-api": "0.84.0"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@emnapi/core": "^1.10.0",
|
|
@@ -86,10 +86,10 @@
|
|
|
86
86
|
"typescript": "^6.0.3",
|
|
87
87
|
"vercel": "^54.4.0",
|
|
88
88
|
"vitest": "^4.1.7",
|
|
89
|
-
"@sentry/junior-github": "0.
|
|
90
|
-
"@sentry/junior-
|
|
91
|
-
"@sentry/junior-
|
|
92
|
-
"@sentry/junior-
|
|
89
|
+
"@sentry/junior-github": "0.84.0",
|
|
90
|
+
"@sentry/junior-scheduler": "0.84.0",
|
|
91
|
+
"@sentry/junior-testing": "0.0.0",
|
|
92
|
+
"@sentry/junior-memory": "0.84.0"
|
|
93
93
|
},
|
|
94
94
|
"scripts": {
|
|
95
95
|
"build": "tsup && tsc -p tsconfig.build.json --emitDeclarationOnly",
|