1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-12-12 21:58:58 +09:00

update API docs

This commit is contained in:
ssmucny 2023-04-30 15:04:56 -04:00
parent b5022ac2c6
commit 5f6d708e77

View File

@ -1684,7 +1684,7 @@ export type Endpoints = {
title: string; title: string;
start: number; start: number;
end?: null | number; end?: null | number;
metadata: Record<string, string[]>; metadata: Record<string, string>;
}; };
}; };
res: { res: {
@ -1774,7 +1774,7 @@ export type Endpoints = {
sinceDate?: number; sinceDate?: number;
untilDate?: number; untilDate?: number;
sortBy?: 'startDate' | 'craetedAt'; sortBy?: 'startDate' | 'craetedAt';
filters?: Record<string, string[]>; filters?: [string, (string | null)[]][];
}; };
res: Note[]; res: Note[];
}; };