Skip to content

Commit

Permalink
fix updateIssueCustomField
Browse files Browse the repository at this point in the history
  • Loading branch information
udamir committed Sep 22, 2024
1 parent 2ac2c89 commit 6f67b85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "youtrack-client",
"description": "Client library for accessing the YouTrack REST and Widget API",
"version": "0.2.3",
"version": "0.2.4",
"type": "module",
"keywords": [
"youtrack",
Expand Down
3 changes: 1 addition & 2 deletions src/resources/Issues.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import type {
ActivityCursorPage,
ActivityItem,
CustomField,
CustomFieldsParam,
Entity,
FieldsParam,
Expand Down Expand Up @@ -282,7 +281,7 @@ export class IssuesApi extends ResourceApi {
async updateIssueCustomField<TSchema extends IssueCustomFieldSchema>(
issueId: string,
fieldId: string,
body: Partial<Omit<CustomField, "id">>,
body: Partial<Omit<IssueCustomField, "id">>,
params?: FieldsParam<TSchema> & MuteUpdateNotificationsParam,
): Promise<IssueCustomFieldEntity<TSchema>> {
return this.fetch<IssueCustomFieldEntity<TSchema>>(
Expand Down

0 comments on commit 6f67b85

Please sign in to comment.