refactor(server): type errors due to change in API

This commit is contained in:
Elian Doran 2025-05-21 15:34:16 +03:00
parent 4acdad0a2b
commit b9df707369
No known key found for this signature in database

View File

@ -224,14 +224,14 @@ export interface Api {
* @param date in YYYY-MM-DD format * @param date in YYYY-MM-DD format
* @param rootNote - specify calendar root note, normally leave empty to use the default calendar * @param rootNote - specify calendar root note, normally leave empty to use the default calendar
*/ */
getDayNote(date: string, rootNote?: BNote): Promise<BNote | null>; getDayNote(date: string, rootNote?: BNote): BNote | null;
/** /**
* Returns today's day note. If such note doesn't exist, it is created. * Returns today's day note. If such note doesn't exist, it is created.
* *
* @param rootNote specify calendar root note, normally leave empty to use the default calendar * @param rootNote specify calendar root note, normally leave empty to use the default calendar
*/ */
getTodayNote(rootNote?: BNote): Promise<BNote | null>; getTodayNote(rootNote?: BNote): BNote | null;
/** /**
* Returns note for the first date of the week of the given date. * Returns note for the first date of the week of the given date.
@ -239,7 +239,7 @@ export interface Api {
* @param date in YYYY-MM-DD format * @param date in YYYY-MM-DD format
* @param rootNote - specify calendar root note, normally leave empty to use the default calendar * @param rootNote - specify calendar root note, normally leave empty to use the default calendar
*/ */
getWeekFirstDayNote(date: string, rootNote: BNote): Promise<BNote | null>; getWeekFirstDayNote(date: string, rootNote: BNote): BNote | null;
/** /**
* Returns week note for given date. If such a note doesn't exist, it is created. * Returns week note for given date. If such a note doesn't exist, it is created.
@ -247,7 +247,7 @@ export interface Api {
* @param date in YYYY-MM-DD format * @param date in YYYY-MM-DD format
* @param rootNote - specify calendar root note, normally leave empty to use the default calendar * @param rootNote - specify calendar root note, normally leave empty to use the default calendar
*/ */
getWeekNote(date: string, rootNote: BNote): Promise<BNote | null>; getWeekNote(date: string, rootNote: BNote): BNote | null;
/** /**
* Returns month note for given date. If such a note doesn't exist, it is created. * Returns month note for given date. If such a note doesn't exist, it is created.
@ -255,7 +255,7 @@ export interface Api {
* @param date in YYYY-MM format * @param date in YYYY-MM format
* @param rootNote - specify calendar root note, normally leave empty to use the default calendar * @param rootNote - specify calendar root note, normally leave empty to use the default calendar
*/ */
getMonthNote(date: string, rootNote: BNote): Promise<BNote | null>; getMonthNote(date: string, rootNote: BNote): BNote | null;
/** /**
* Returns quarter note for given date. If such a note doesn't exist, it is created. * Returns quarter note for given date. If such a note doesn't exist, it is created.
@ -263,7 +263,7 @@ export interface Api {
* @param date in YYYY-MM format * @param date in YYYY-MM format
* @param rootNote - specify calendar root note, normally leave empty to use the default calendar * @param rootNote - specify calendar root note, normally leave empty to use the default calendar
*/ */
getQuarterNote(date: string, rootNote: BNote): Promise<BNote | null>; getQuarterNote(date: string, rootNote: BNote): BNote | null;
/** /**
* Returns year note for given year. If such a note doesn't exist, it is created. * Returns year note for given year. If such a note doesn't exist, it is created.