(noteId: string, note: Note)
| 1903 | } |
| 1904 | |
| 1905 | async updateEntryNote(noteId: string, note: Note): Promise<void> { |
| 1906 | try { |
| 1907 | await this.updateIssueComment(noteId, note); |
| 1908 | } catch (error) { |
| 1909 | console.error('Failed to update entry note:', error); |
| 1910 | throw new APIError('Failed to update note', error.status || 500, API_NAME); |
| 1911 | } |
| 1912 | } |
| 1913 | |
| 1914 | async deleteEntryNote(noteId: string): Promise<void> { |
| 1915 | try { |
no test coverage detected