Skip to content

Commit 73787df

Browse files
authored
feat(core): Explicitly allow undefined as value for authToken option (#805)
Updates type definition for optional property to include explicit undefined, improving clarity and consistency in type annotations.
1 parent 0cd9069 commit 73787df

File tree

1 file changed

+1
-1
lines changed
  • packages/bundler-plugin-core/src

1 file changed

+1
-1
lines changed

packages/bundler-plugin-core/src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export interface Options {
2121
*
2222
* @see https://docs.sentry.io/product/accounts/auth-tokens/#organization-auth-tokens
2323
*/
24-
authToken?: string;
24+
authToken?: string | undefined;
2525

2626
/**
2727
* The base URL of your Sentry instance. Use this if you are using a self-hosted

0 commit comments

Comments
 (0)