@sentry/junior 0.1.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.
@@ -0,0 +1,18 @@
1
+ import {
2
+ addReactionToMessage,
3
+ listChannelMembers,
4
+ listChannelMessages,
5
+ listThreadReplies,
6
+ postMessageToChannel,
7
+ removeReactionFromMessage
8
+ } from "./chunk-MM3YNA4F.js";
9
+ import "./chunk-GDNDYMGX.js";
10
+ import "./chunk-BBOVH5RF.js";
11
+ export {
12
+ addReactionToMessage,
13
+ listChannelMembers,
14
+ listChannelMessages,
15
+ listThreadReplies,
16
+ postMessageToChannel,
17
+ removeReactionFromMessage
18
+ };
@@ -0,0 +1,12 @@
1
+ // src/handlers/health.ts
2
+ async function GET() {
3
+ return Response.json({
4
+ status: "ok",
5
+ service: "junior",
6
+ timestamp: (/* @__PURE__ */ new Date()).toISOString()
7
+ });
8
+ }
9
+
10
+ export {
11
+ GET
12
+ };