@sentry/junior-scheduler 0.85.0 → 0.86.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/index.js CHANGED
@@ -1688,7 +1688,8 @@ function buildScheduledTaskDispatchMetadata(args) {
1688
1688
  function scheduledTaskDispatchSource(task) {
1689
1689
  return createSlackSource({
1690
1690
  teamId: task.destination.teamId,
1691
- channelId: task.destination.channelId
1691
+ channelId: task.destination.channelId,
1692
+ type: "priv"
1692
1693
  });
1693
1694
  }
1694
1695
  function schedulerStore2(ctx) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/junior-scheduler",
3
- "version": "0.85.0",
3
+ "version": "0.86.0",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -26,7 +26,7 @@
26
26
  "@sinclair/typebox": "^0.34.49",
27
27
  "drizzle-orm": "^0.45.2",
28
28
  "zod": "^4.4.3",
29
- "@sentry/junior-plugin-api": "0.85.0"
29
+ "@sentry/junior-plugin-api": "0.86.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "^25.9.1",
package/src/plugin.ts CHANGED
@@ -80,6 +80,8 @@ function scheduledTaskDispatchSource(task: ScheduledTask): Source {
80
80
  return createSlackSource({
81
81
  teamId: task.destination.teamId,
82
82
  channelId: task.destination.channelId,
83
+
84
+ type: "priv",
83
85
  });
84
86
  }
85
87