@sentry/junior-plugin-api 0.64.0 → 0.65.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.d.ts CHANGED
@@ -227,6 +227,7 @@ export interface JuniorPluginMcpConfig {
227
227
  }
228
228
  export interface JuniorPluginEnvVarDeclaration {
229
229
  default?: string;
230
+ exposeToCommandEnv?: boolean;
230
231
  }
231
232
  export interface JuniorPluginManifest {
232
233
  apiHeaders?: Record<string, string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/junior-plugin-api",
3
- "version": "0.64.0",
3
+ "version": "0.65.0",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
package/src/index.ts CHANGED
@@ -293,6 +293,7 @@ export interface JuniorPluginMcpConfig {
293
293
 
294
294
  export interface JuniorPluginEnvVarDeclaration {
295
295
  default?: string;
296
+ exposeToCommandEnv?: boolean;
296
297
  }
297
298
 
298
299
  export interface JuniorPluginManifest {