@vendasta/developer-training 0.11.0 → 0.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/_internal/e-currie-list.api.service.mjs +50 -0
- package/esm2020/lib/_internal/index.mjs +2 -1
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/m-mugot-list-qa.api.service.mjs +7 -2
- package/esm2020/lib/_internal/objects/api.mjs +185 -1
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/fesm2015/vendasta-developer-training.mjs +227 -1
- package/fesm2015/vendasta-developer-training.mjs.map +1 -1
- package/fesm2020/vendasta-developer-training.mjs +227 -1
- package/fesm2020/vendasta-developer-training.mjs.map +1 -1
- package/lib/_internal/e-currie-list.api.service.d.ts +18 -0
- package/lib/_internal/index.d.ts +1 -0
- package/lib/_internal/interfaces/api.interface.d.ts +31 -0
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/m-mugot-list-qa.api.service.d.ts +3 -2
- package/lib/_internal/objects/api.d.ts +55 -0
- package/lib/_internal/objects/index.d.ts +1 -1
- package/package.json +1 -1
@@ -0,0 +1,18 @@
|
|
1
|
+
import { CreateECurrieRequest, CreateECurrieResponse, DeleteECurrieRequest, GetECurrieListRequest, GetECurrieListResponse } from './objects/';
|
2
|
+
import { CreateECurrieRequestInterface, DeleteECurrieRequestInterface, GetECurrieListRequestInterface } from './interfaces/';
|
3
|
+
import { HttpClient, HttpResponse } from '@angular/common/http';
|
4
|
+
import { HostService } from '../_generated/host.service';
|
5
|
+
import { Observable } from 'rxjs';
|
6
|
+
import * as i0 from "@angular/core";
|
7
|
+
export declare class ECurrieListApiService {
|
8
|
+
private http;
|
9
|
+
private hostService;
|
10
|
+
private _host;
|
11
|
+
constructor(http: HttpClient, hostService: HostService);
|
12
|
+
private apiOptions;
|
13
|
+
getECurrieList(r: GetECurrieListRequest | GetECurrieListRequestInterface): Observable<GetECurrieListResponse>;
|
14
|
+
createECurrieList(r: CreateECurrieRequest | CreateECurrieRequestInterface): Observable<CreateECurrieResponse>;
|
15
|
+
delete(r: DeleteECurrieRequest | DeleteECurrieRequestInterface): Observable<HttpResponse<null>>;
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ECurrieListApiService, never>;
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ECurrieListApiService>;
|
18
|
+
}
|
package/lib/_internal/index.d.ts
CHANGED
@@ -3,6 +3,7 @@ export * from './objects';
|
|
3
3
|
export * from './interfaces';
|
4
4
|
export { AHundalToDoProjectApiService } from './a-hundal-to-do-project.api.service';
|
5
5
|
export { BusinessQAApiService } from './business-qa.api.service';
|
6
|
+
export { ECurrieListApiService } from './e-currie-list.api.service';
|
6
7
|
export { HdoTodoApiService } from './hdo-todo.api.service';
|
7
8
|
export { IOlaleyeToDoQAApiService } from './i-olaleye-to-do-qa.api.service';
|
8
9
|
export { LFossenierTodoApiService } from './l-fossenier-todo.api.service';
|
@@ -38,6 +38,14 @@ export interface AHundalTaskInterface {
|
|
38
38
|
completed?: boolean;
|
39
39
|
isDeleted?: boolean;
|
40
40
|
}
|
41
|
+
export interface CreateECurrieRequestInterface {
|
42
|
+
title?: string;
|
43
|
+
dueDate?: string;
|
44
|
+
description?: string;
|
45
|
+
}
|
46
|
+
export interface CreateECurrieResponseInterface {
|
47
|
+
id?: string;
|
48
|
+
}
|
41
49
|
export interface CreateHdoTodoRequestInterface {
|
42
50
|
todo?: HdoTodoItemInterface;
|
43
51
|
}
|
@@ -51,6 +59,9 @@ export interface CreateWHorrellTaskRequestInterface {
|
|
51
59
|
export interface CreateWHorrellTaskResponseInterface {
|
52
60
|
id?: string;
|
53
61
|
}
|
62
|
+
export interface DeleteECurrieRequestInterface {
|
63
|
+
id?: string;
|
64
|
+
}
|
54
65
|
export interface DeleteHdoTodoRequestInterface {
|
55
66
|
id?: string;
|
56
67
|
}
|
@@ -60,6 +71,13 @@ export interface DeleteHdoTodoResponseInterface {
|
|
60
71
|
export interface DeleteWHorrellTaskRequestInterface {
|
61
72
|
id?: string;
|
62
73
|
}
|
74
|
+
export interface ECurrieTodoItemInterface {
|
75
|
+
id?: string;
|
76
|
+
title?: string;
|
77
|
+
completed?: boolean;
|
78
|
+
dueDate?: string;
|
79
|
+
description?: string;
|
80
|
+
}
|
63
81
|
export interface EditWHorrellTaskRequestInterface {
|
64
82
|
id?: string;
|
65
83
|
name?: string;
|
@@ -69,6 +87,14 @@ export interface EditWHorrellTaskRequestInterface {
|
|
69
87
|
export interface EditWHorrellTaskResponseInterface {
|
70
88
|
id?: string;
|
71
89
|
}
|
90
|
+
export interface GetECurrieListRequestInterface {
|
91
|
+
category?: string;
|
92
|
+
status?: string;
|
93
|
+
id?: string;
|
94
|
+
}
|
95
|
+
export interface GetECurrieListResponseInterface {
|
96
|
+
todoItems?: ECurrieTodoItemInterface[];
|
97
|
+
}
|
72
98
|
export interface GetHdoTodoRequestInterface {
|
73
99
|
id?: string;
|
74
100
|
}
|
@@ -162,6 +188,11 @@ export interface MMugotTaskInterface {
|
|
162
188
|
isDeleted?: boolean;
|
163
189
|
dueDate?: Date;
|
164
190
|
}
|
191
|
+
export interface MMugotUpdateTaskRequestInterface {
|
192
|
+
taskId?: string;
|
193
|
+
}
|
194
|
+
export interface MMugotUpdateTaskResponseInterface {
|
195
|
+
}
|
165
196
|
export interface UpdateHdoTodoRequestInterface {
|
166
197
|
todo?: HdoTodoItemInterface;
|
167
198
|
}
|
@@ -3,4 +3,4 @@ export { GetBusinessQuestionsAnswersRequestInterface, GetBusinessQuestionsAnswer
|
|
3
3
|
export { TKabakovAddToDoItemRequestInterface, TKabakovAddToDoItemResponseInterface, TKabakovDeleteToDoItemRequestInterface, TKabakovDeleteToDoItemResponseInterface, TKabakovGetToDoItemRequestInterface, TKabakovGetToDoItemResponseInterface, TKabakovListToDoItemsRequestInterface, TKabakovListToDoItemsResponseInterface, TKabakovToDoIdInterface, TKabakovToDoItemInterface, TKabakovUpdateToDoItemRequestInterface, TKabakovUpdateToDoItemResponseInterface, } from './tkabakovtodo.interface';
|
4
4
|
export { CreateLFossenierTaskRequestInterface, DeleteLFossenierTaskRequestInterface, LoadLFossenierTaskRequestInterface, LoadLFossenierTaskResponseInterface, TodoTaskMessageInterface, ToggleFinishedLFossenierTaskRequestInterface, } from './lfossenier-todo.interface';
|
5
5
|
export { AccessInterface, } from './annotations.interface';
|
6
|
-
export { AHundalAddTaskRequestInterface, AHundalAddTaskResponseInterface, AHundalDeleteTaskRequestInterface, AHundalDeleteTaskResponseInterface, AHundalEditTaskRequestInterface, AHundalEditTaskResponseInterface, AHundalGetSpecificTaskRequestInterface, AHundalGetSpecificTaskResponseInterface, AHundalGetTasksRequestInterface, AHundalGetTasksResponseInterface, AHundalTaskInterface, CreateHdoTodoRequestInterface, CreateHdoTodoResponseInterface, CreateWHorrellTaskRequestInterface, CreateWHorrellTaskResponseInterface, DeleteHdoTodoRequestInterface, DeleteHdoTodoResponseInterface, DeleteWHorrellTaskRequestInterface, EditWHorrellTaskRequestInterface, EditWHorrellTaskResponseInterface, GetHdoTodoRequestInterface, GetHdoTodoResponseInterface, GetWHorrellTaskRequestInterface, GetWHorrellTaskResponseInterface, HdoTodoItemInterface, IOlaleyeCreateTaskRequestInterface, IOlaleyeCreateTaskResponseInterface, IOlaleyeDeleteTaskRequestInterface, IOlaleyeDeleteTaskResponseInterface, IOlaleyeEditTaskRequestInterface, IOlaleyeEditTaskResponseInterface, IOlaleyeGetTaskRequestInterface, IOlaleyeGetTaskResponseInterface, IOlaleyeListTasksRequestInterface, IOlaleyeListTasksResponseInterface, IOlaleyeTaskInterface, ListHdoTodoRequestInterface, ListHdoTodoResponseInterface, ListWHorrellTasksRequestInterface, ListWHorrellTasksResponseInterface, MMugotCreateTaskRequestInterface, MMugotCreateTaskResponseInterface, MMugotDeleteTaskRequestInterface, MMugotGetTaskRequestInterface, MMugotGetTaskResponseInterface, MMugotListTasksRequestInterface, MMugotListTasksResponseInterface, MMugotTaskInterface, UpdateHdoTodoRequestInterface, UpdateHdoTodoResponseInterface, WHorrellTaskInterface, } from './api.interface';
|
6
|
+
export { AHundalAddTaskRequestInterface, AHundalAddTaskResponseInterface, AHundalDeleteTaskRequestInterface, AHundalDeleteTaskResponseInterface, AHundalEditTaskRequestInterface, AHundalEditTaskResponseInterface, AHundalGetSpecificTaskRequestInterface, AHundalGetSpecificTaskResponseInterface, AHundalGetTasksRequestInterface, AHundalGetTasksResponseInterface, AHundalTaskInterface, CreateECurrieRequestInterface, CreateECurrieResponseInterface, CreateHdoTodoRequestInterface, CreateHdoTodoResponseInterface, CreateWHorrellTaskRequestInterface, CreateWHorrellTaskResponseInterface, DeleteECurrieRequestInterface, DeleteHdoTodoRequestInterface, DeleteHdoTodoResponseInterface, DeleteWHorrellTaskRequestInterface, ECurrieTodoItemInterface, EditWHorrellTaskRequestInterface, EditWHorrellTaskResponseInterface, GetECurrieListRequestInterface, GetECurrieListResponseInterface, GetHdoTodoRequestInterface, GetHdoTodoResponseInterface, GetWHorrellTaskRequestInterface, GetWHorrellTaskResponseInterface, HdoTodoItemInterface, IOlaleyeCreateTaskRequestInterface, IOlaleyeCreateTaskResponseInterface, IOlaleyeDeleteTaskRequestInterface, IOlaleyeDeleteTaskResponseInterface, IOlaleyeEditTaskRequestInterface, IOlaleyeEditTaskResponseInterface, IOlaleyeGetTaskRequestInterface, IOlaleyeGetTaskResponseInterface, IOlaleyeListTasksRequestInterface, IOlaleyeListTasksResponseInterface, IOlaleyeTaskInterface, ListHdoTodoRequestInterface, ListHdoTodoResponseInterface, ListWHorrellTasksRequestInterface, ListWHorrellTasksResponseInterface, MMugotCreateTaskRequestInterface, MMugotCreateTaskResponseInterface, MMugotDeleteTaskRequestInterface, MMugotGetTaskRequestInterface, MMugotGetTaskResponseInterface, MMugotListTasksRequestInterface, MMugotListTasksResponseInterface, MMugotTaskInterface, MMugotUpdateTaskRequestInterface, MMugotUpdateTaskResponseInterface, UpdateHdoTodoRequestInterface, UpdateHdoTodoResponseInterface, WHorrellTaskInterface, } from './api.interface';
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { MMugotCreateTaskRequest, MMugotCreateTaskResponse, MMugotDeleteTaskRequest, MMugotGetTaskRequest, MMugotGetTaskResponse, MMugotListTasksRequest, MMugotListTasksResponse } from './objects/';
|
2
|
-
import { MMugotCreateTaskRequestInterface, MMugotDeleteTaskRequestInterface, MMugotGetTaskRequestInterface, MMugotListTasksRequestInterface } from './interfaces/';
|
1
|
+
import { MMugotCreateTaskRequest, MMugotCreateTaskResponse, MMugotDeleteTaskRequest, MMugotGetTaskRequest, MMugotGetTaskResponse, MMugotListTasksRequest, MMugotListTasksResponse, MMugotUpdateTaskRequest, MMugotUpdateTaskResponse } from './objects/';
|
2
|
+
import { MMugotCreateTaskRequestInterface, MMugotDeleteTaskRequestInterface, MMugotGetTaskRequestInterface, MMugotListTasksRequestInterface, MMugotUpdateTaskRequestInterface } from './interfaces/';
|
3
3
|
import { HttpClient, HttpResponse } from '@angular/common/http';
|
4
4
|
import { HostService } from '../_generated/host.service';
|
5
5
|
import { Observable } from 'rxjs';
|
@@ -14,6 +14,7 @@ export declare class MMugotListQAApiService {
|
|
14
14
|
getTask(r: MMugotGetTaskRequest | MMugotGetTaskRequestInterface): Observable<MMugotGetTaskResponse>;
|
15
15
|
deleteTask(r: MMugotDeleteTaskRequest | MMugotDeleteTaskRequestInterface): Observable<HttpResponse<null>>;
|
16
16
|
listTasks(r: MMugotListTasksRequest | MMugotListTasksRequestInterface): Observable<MMugotListTasksResponse>;
|
17
|
+
updateTask(r: MMugotUpdateTaskRequest | MMugotUpdateTaskRequestInterface): Observable<MMugotUpdateTaskResponse>;
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<MMugotListQAApiService, never>;
|
18
19
|
static ɵprov: i0.ɵɵInjectableDeclaration<MMugotListQAApiService>;
|
19
20
|
}
|
@@ -73,6 +73,20 @@ export declare class AHundalTask implements i.AHundalTaskInterface {
|
|
73
73
|
constructor(kwargs?: i.AHundalTaskInterface);
|
74
74
|
toApiJson(): object;
|
75
75
|
}
|
76
|
+
export declare class CreateECurrieRequest implements i.CreateECurrieRequestInterface {
|
77
|
+
title: string;
|
78
|
+
dueDate: string;
|
79
|
+
description: string;
|
80
|
+
static fromProto(proto: any): CreateECurrieRequest;
|
81
|
+
constructor(kwargs?: i.CreateECurrieRequestInterface);
|
82
|
+
toApiJson(): object;
|
83
|
+
}
|
84
|
+
export declare class CreateECurrieResponse implements i.CreateECurrieResponseInterface {
|
85
|
+
id: string;
|
86
|
+
static fromProto(proto: any): CreateECurrieResponse;
|
87
|
+
constructor(kwargs?: i.CreateECurrieResponseInterface);
|
88
|
+
toApiJson(): object;
|
89
|
+
}
|
76
90
|
export declare class CreateHdoTodoRequest implements i.CreateHdoTodoRequestInterface {
|
77
91
|
todo: HdoTodoItem;
|
78
92
|
static fromProto(proto: any): CreateHdoTodoRequest;
|
@@ -98,6 +112,12 @@ export declare class CreateWHorrellTaskResponse implements i.CreateWHorrellTaskR
|
|
98
112
|
constructor(kwargs?: i.CreateWHorrellTaskResponseInterface);
|
99
113
|
toApiJson(): object;
|
100
114
|
}
|
115
|
+
export declare class DeleteECurrieRequest implements i.DeleteECurrieRequestInterface {
|
116
|
+
id: string;
|
117
|
+
static fromProto(proto: any): DeleteECurrieRequest;
|
118
|
+
constructor(kwargs?: i.DeleteECurrieRequestInterface);
|
119
|
+
toApiJson(): object;
|
120
|
+
}
|
101
121
|
export declare class DeleteHdoTodoRequest implements i.DeleteHdoTodoRequestInterface {
|
102
122
|
id: string;
|
103
123
|
static fromProto(proto: any): DeleteHdoTodoRequest;
|
@@ -116,6 +136,16 @@ export declare class DeleteWHorrellTaskRequest implements i.DeleteWHorrellTaskRe
|
|
116
136
|
constructor(kwargs?: i.DeleteWHorrellTaskRequestInterface);
|
117
137
|
toApiJson(): object;
|
118
138
|
}
|
139
|
+
export declare class ECurrieTodoItem implements i.ECurrieTodoItemInterface {
|
140
|
+
id: string;
|
141
|
+
title: string;
|
142
|
+
completed: boolean;
|
143
|
+
dueDate: string;
|
144
|
+
description: string;
|
145
|
+
static fromProto(proto: any): ECurrieTodoItem;
|
146
|
+
constructor(kwargs?: i.ECurrieTodoItemInterface);
|
147
|
+
toApiJson(): object;
|
148
|
+
}
|
119
149
|
export declare class EditWHorrellTaskRequest implements i.EditWHorrellTaskRequestInterface {
|
120
150
|
id: string;
|
121
151
|
name: string;
|
@@ -131,6 +161,20 @@ export declare class EditWHorrellTaskResponse implements i.EditWHorrellTaskRespo
|
|
131
161
|
constructor(kwargs?: i.EditWHorrellTaskResponseInterface);
|
132
162
|
toApiJson(): object;
|
133
163
|
}
|
164
|
+
export declare class GetECurrieListRequest implements i.GetECurrieListRequestInterface {
|
165
|
+
category: string;
|
166
|
+
status: string;
|
167
|
+
id: string;
|
168
|
+
static fromProto(proto: any): GetECurrieListRequest;
|
169
|
+
constructor(kwargs?: i.GetECurrieListRequestInterface);
|
170
|
+
toApiJson(): object;
|
171
|
+
}
|
172
|
+
export declare class GetECurrieListResponse implements i.GetECurrieListResponseInterface {
|
173
|
+
todoItems: ECurrieTodoItem[];
|
174
|
+
static fromProto(proto: any): GetECurrieListResponse;
|
175
|
+
constructor(kwargs?: i.GetECurrieListResponseInterface);
|
176
|
+
toApiJson(): object;
|
177
|
+
}
|
134
178
|
export declare class GetHdoTodoRequest implements i.GetHdoTodoRequestInterface {
|
135
179
|
id: string;
|
136
180
|
static fromProto(proto: any): GetHdoTodoRequest;
|
@@ -308,6 +352,17 @@ export declare class MMugotTask implements i.MMugotTaskInterface {
|
|
308
352
|
constructor(kwargs?: i.MMugotTaskInterface);
|
309
353
|
toApiJson(): object;
|
310
354
|
}
|
355
|
+
export declare class MMugotUpdateTaskRequest implements i.MMugotUpdateTaskRequestInterface {
|
356
|
+
taskId: string;
|
357
|
+
static fromProto(proto: any): MMugotUpdateTaskRequest;
|
358
|
+
constructor(kwargs?: i.MMugotUpdateTaskRequestInterface);
|
359
|
+
toApiJson(): object;
|
360
|
+
}
|
361
|
+
export declare class MMugotUpdateTaskResponse implements i.MMugotUpdateTaskResponseInterface {
|
362
|
+
static fromProto(proto: any): MMugotUpdateTaskResponse;
|
363
|
+
constructor(kwargs?: i.MMugotUpdateTaskResponseInterface);
|
364
|
+
toApiJson(): object;
|
365
|
+
}
|
311
366
|
export declare class UpdateHdoTodoRequest implements i.UpdateHdoTodoRequestInterface {
|
312
367
|
todo: HdoTodoItem;
|
313
368
|
static fromProto(proto: any): UpdateHdoTodoRequest;
|
@@ -3,4 +3,4 @@ export { GetBusinessQuestionsAnswersRequest, GetBusinessQuestionsAnswersResponse
|
|
3
3
|
export { TKabakovAddToDoItemRequest, TKabakovAddToDoItemResponse, TKabakovDeleteToDoItemRequest, TKabakovDeleteToDoItemResponse, TKabakovGetToDoItemRequest, TKabakovGetToDoItemResponse, TKabakovListToDoItemsRequest, TKabakovListToDoItemsResponse, TKabakovToDoId, TKabakovToDoItem, TKabakovUpdateToDoItemRequest, TKabakovUpdateToDoItemResponse, } from './tkabakovtodo';
|
4
4
|
export { CreateLFossenierTaskRequest, DeleteLFossenierTaskRequest, LoadLFossenierTaskRequest, LoadLFossenierTaskResponse, TodoTaskMessage, ToggleFinishedLFossenierTaskRequest, } from './lfossenier-todo';
|
5
5
|
export { Access, } from './annotations';
|
6
|
-
export { AHundalAddTaskRequest, AHundalAddTaskResponse, AHundalDeleteTaskRequest, AHundalDeleteTaskResponse, AHundalEditTaskRequest, AHundalEditTaskResponse, AHundalGetSpecificTaskRequest, AHundalGetSpecificTaskResponse, AHundalGetTasksRequest, AHundalGetTasksResponse, AHundalTask, CreateHdoTodoRequest, CreateHdoTodoResponse, CreateWHorrellTaskRequest, CreateWHorrellTaskResponse, DeleteHdoTodoRequest, DeleteHdoTodoResponse, DeleteWHorrellTaskRequest, EditWHorrellTaskRequest, EditWHorrellTaskResponse, GetHdoTodoRequest, GetHdoTodoResponse, GetWHorrellTaskRequest, GetWHorrellTaskResponse, HdoTodoItem, IOlaleyeCreateTaskRequest, IOlaleyeCreateTaskResponse, IOlaleyeDeleteTaskRequest, IOlaleyeDeleteTaskResponse, IOlaleyeEditTaskRequest, IOlaleyeEditTaskResponse, IOlaleyeGetTaskRequest, IOlaleyeGetTaskResponse, IOlaleyeListTasksRequest, IOlaleyeListTasksResponse, IOlaleyeTask, ListHdoTodoRequest, ListHdoTodoResponse, ListWHorrellTasksRequest, ListWHorrellTasksResponse, MMugotCreateTaskRequest, MMugotCreateTaskResponse, MMugotDeleteTaskRequest, MMugotGetTaskRequest, MMugotGetTaskResponse, MMugotListTasksRequest, MMugotListTasksResponse, MMugotTask, UpdateHdoTodoRequest, UpdateHdoTodoResponse, WHorrellTask, } from './api';
|
6
|
+
export { AHundalAddTaskRequest, AHundalAddTaskResponse, AHundalDeleteTaskRequest, AHundalDeleteTaskResponse, AHundalEditTaskRequest, AHundalEditTaskResponse, AHundalGetSpecificTaskRequest, AHundalGetSpecificTaskResponse, AHundalGetTasksRequest, AHundalGetTasksResponse, AHundalTask, CreateECurrieRequest, CreateECurrieResponse, CreateHdoTodoRequest, CreateHdoTodoResponse, CreateWHorrellTaskRequest, CreateWHorrellTaskResponse, DeleteECurrieRequest, DeleteHdoTodoRequest, DeleteHdoTodoResponse, DeleteWHorrellTaskRequest, ECurrieTodoItem, EditWHorrellTaskRequest, EditWHorrellTaskResponse, GetECurrieListRequest, GetECurrieListResponse, GetHdoTodoRequest, GetHdoTodoResponse, GetWHorrellTaskRequest, GetWHorrellTaskResponse, HdoTodoItem, IOlaleyeCreateTaskRequest, IOlaleyeCreateTaskResponse, IOlaleyeDeleteTaskRequest, IOlaleyeDeleteTaskResponse, IOlaleyeEditTaskRequest, IOlaleyeEditTaskResponse, IOlaleyeGetTaskRequest, IOlaleyeGetTaskResponse, IOlaleyeListTasksRequest, IOlaleyeListTasksResponse, IOlaleyeTask, ListHdoTodoRequest, ListHdoTodoResponse, ListWHorrellTasksRequest, ListWHorrellTasksResponse, MMugotCreateTaskRequest, MMugotCreateTaskResponse, MMugotDeleteTaskRequest, MMugotGetTaskRequest, MMugotGetTaskResponse, MMugotListTasksRequest, MMugotListTasksResponse, MMugotTask, MMugotUpdateTaskRequest, MMugotUpdateTaskResponse, UpdateHdoTodoRequest, UpdateHdoTodoResponse, WHorrellTask, } from './api';
|