-
Notifications
You must be signed in to change notification settings - Fork 419
fix(shared): Fix link typedoc error #7251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| --- | ||
| --- | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,9 +11,6 @@ interface ClerkAPIResponseOptions extends Omit<ClerkErrorParams, 'message' | 'co | |
| retryAfter?: number; | ||
| } | ||
|
|
||
| /** | ||
| * Class representing a Clerk API Response Error. | ||
| */ | ||
| export class ClerkAPIResponseError extends ClerkError implements ClerkAPIResponseErrorInterface { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you specifically not want this class to be included in the typedoc output?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes. It's already being outputted, so there was a duplication. This comment was added as part of my work, but realized it caused the duplication.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Context here: clerk/clerk-docs#2649 (comment)
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| static kind = 'ClerkAPIResponseError'; | ||
| status: number; | ||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changeset file is incomplete and will fail validation.
The changeset file must declare which package(s) were changed and the bump type (patch/minor/major) between the
---delimiters. The current file contains only empty delimiters.Based on the PR title mentioning "fix(shared)", the changeset should declare the @clerk/shared package.
Apply this diff to add the required package declaration:
Note: Replace
patchwithminorormajorif appropriate for your versioning strategy.🤖 Prompt for AI Agents