@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.
Files changed (45) hide show
  1. package/dist/{agent-hooks-5ZRILRC3.js → agent-hooks-XDS5DIVS.js} +8 -8
  2. package/dist/api-reference.d.ts +1 -1
  3. package/dist/app.d.ts +1 -1
  4. package/dist/app.js +3833 -3263
  5. package/dist/chat/config.d.ts +1 -1
  6. package/dist/chat/conversations/store.d.ts +1 -1
  7. package/dist/chat/plugins/agent-hooks.d.ts +3 -3
  8. package/dist/chat/resource-events/ingest.d.ts +23 -0
  9. package/dist/chat/resource-events/notification.d.ts +20 -0
  10. package/dist/chat/resource-events/store.d.ts +79 -0
  11. package/dist/chat/services/pending-auth.d.ts +5 -0
  12. package/dist/chat/slack/client.d.ts +3 -1
  13. package/dist/chat/state/session-log.d.ts +4 -0
  14. package/dist/chat/task-execution/slack-work.d.ts +22 -0
  15. package/dist/chat/task-execution/state.d.ts +8 -2
  16. package/dist/chat/task-execution/store.d.ts +30 -8
  17. package/dist/chat/tools/resource-events.d.ts +19 -0
  18. package/dist/{chunk-PQ2U2AO3.js → chunk-AAD2D7K3.js} +11 -11
  19. package/dist/{chunk-ABRNFE3N.js → chunk-ALL7GG6U.js} +7 -6
  20. package/dist/{chunk-4XHCVBXH.js → chunk-BAPRSWNW.js} +81 -13
  21. package/dist/{chunk-NC6LR6U4.js → chunk-BFPOSIYV.js} +725 -169
  22. package/dist/{chunk-GUO4EE7L.js → chunk-CWMMGUWM.js} +1 -1
  23. package/dist/{chunk-YA2JCC7G.js → chunk-JUI6XIHU.js} +13 -5
  24. package/dist/{chunk-TR2G37II.js → chunk-KNVN4HUT.js} +8 -8
  25. package/dist/{chunk-X2FL5ZH5.js → chunk-MJ4E2PK7.js} +1 -1
  26. package/dist/{chunk-3JKTVW4R.js → chunk-MZ4DUVFD.js} +2 -2
  27. package/dist/{chunk-2AJ4TEKE.js → chunk-S7SC5IUJ.js} +26 -4
  28. package/dist/{chunk-IOBSRZK5.js → chunk-SBYMRDH7.js} +1 -1
  29. package/dist/{chunk-LX5GBMEP.js → chunk-ZPD5YQFZ.js} +2 -2
  30. package/dist/cli/chat.js +4 -4
  31. package/dist/cli/plugins.js +6 -6
  32. package/dist/cli/snapshot-warmup.js +3 -3
  33. package/dist/cli/upgrade.js +16 -32
  34. package/dist/{db-GQJKBX5W.js → db-7RRWCYF3.js} +3 -3
  35. package/dist/handlers/github-webhook/check-suite.d.ts +3 -0
  36. package/dist/handlers/github-webhook/pull-request-review.d.ts +3 -0
  37. package/dist/handlers/github-webhook/pull-request.d.ts +3 -0
  38. package/dist/handlers/github-webhook/resource.d.ts +10 -0
  39. package/dist/handlers/github-webhook.d.ts +15 -0
  40. package/dist/nitro.js +3 -3
  41. package/dist/reporting/conversations.d.ts +79 -2
  42. package/dist/reporting.d.ts +12 -4
  43. package/dist/reporting.js +431 -27
  44. package/dist/{runner-VRFJLG2M.js → runner-CJL5IKFO.js} +9 -9
  45. package/package.json +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/junior",
3
- "version": "0.82.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.82.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.82.0",
90
- "@sentry/junior-memory": "0.82.0",
91
- "@sentry/junior-scheduler": "0.82.0",
92
- "@sentry/junior-testing": "0.0.0"
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",