fix(Todoist Node): Fix listSearch filter bug in Todoist Node (#10989)

This commit is contained in:
aya
2024-09-27 18:15:09 +03:00
committed by GitHub
parent 846cfde8dc
commit c4b327248d
2 changed files with 31 additions and 34 deletions

View File

@@ -54,6 +54,11 @@ export interface Service {
execute(ctx: Context, operation: OperationType, itemIndex: number): Promise<TodoistResponse>;
}
export interface TodoistProjectType {
id: number;
name: string;
}
export interface TodoistResponse {
success?: boolean;
data?: IDataObject;