@sentry/junior-hex 0.62.0 → 0.64.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/README.md +4 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,14 +10,12 @@ pnpm add @sentry/junior @sentry/junior-hex
|
|
|
10
10
|
|
|
11
11
|
## Configure
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Add the package name to the plugin set exported from `plugins.ts`:
|
|
14
14
|
|
|
15
15
|
```ts
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
},
|
|
20
|
-
});
|
|
16
|
+
import { defineJuniorPlugins } from "@sentry/junior";
|
|
17
|
+
|
|
18
|
+
export const plugins = defineJuniorPlugins(["@sentry/junior-hex"]);
|
|
21
19
|
```
|
|
22
20
|
|
|
23
21
|
No API token is needed. Each user completes OAuth the first time Junior calls a Hex MCP tool on their behalf.
|