@vendasta/developer-training 0.12.3 → 0.14.0
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/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +5 -45
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/esm2020/lib/_internal/w-horrell-to-do.api.service.mjs +4 -6
- package/fesm2015/vendasta-developer-training.mjs +7 -49
- package/fesm2015/vendasta-developer-training.mjs.map +1 -1
- package/fesm2020/vendasta-developer-training.mjs +7 -49
- package/fesm2020/vendasta-developer-training.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +1 -8
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/objects/api.d.ts +1 -14
- package/lib/_internal/objects/index.d.ts +1 -1
- package/lib/_internal/w-horrell-to-do.api.service.d.ts +3 -3
- package/package.json +1 -1
@@ -60,11 +60,7 @@ export interface CreateListResponseInterface {
|
|
60
60
|
id?: string;
|
61
61
|
}
|
62
62
|
export interface CreateWHorrellTaskRequestInterface {
|
63
|
-
|
64
|
-
description?: string;
|
65
|
-
}
|
66
|
-
export interface CreateWHorrellTaskResponseInterface {
|
67
|
-
id?: string;
|
63
|
+
task?: WHorrellTaskInterface;
|
68
64
|
}
|
69
65
|
export interface DeleteECurrieRequestInterface {
|
70
66
|
id?: string;
|
@@ -94,9 +90,6 @@ export interface EditWHorrellTaskRequestInterface {
|
|
94
90
|
description?: string;
|
95
91
|
isCompleted?: boolean;
|
96
92
|
}
|
97
|
-
export interface EditWHorrellTaskResponseInterface {
|
98
|
-
id?: string;
|
99
|
-
}
|
100
93
|
export interface GetECurrieListRequestInterface {
|
101
94
|
category?: string;
|
102
95
|
status?: string;
|
@@ -3,4 +3,4 @@ export { GetBusinessQuestionsAnswersRequestInterface, GetBusinessQuestionsAnswer
|
|
3
3
|
export { CreateLFossenierTaskRequestInterface, DeleteLFossenierTaskRequestInterface, LoadLFossenierTaskRequestInterface, LoadLFossenierTaskResponseInterface, TodoTaskMessageInterface, ToggleFinishedLFossenierTaskRequestInterface, } from './lfossenier-todo.interface';
|
4
4
|
export { AccessInterface, } from './annotations.interface';
|
5
5
|
export { TKabakovAddToDoItemRequestInterface, TKabakovAddToDoItemResponseInterface, TKabakovDeleteToDoItemRequestInterface, TKabakovDeleteToDoItemResponseInterface, TKabakovGetToDoItemRequestInterface, TKabakovGetToDoItemResponseInterface, TKabakovListToDoItemsRequestInterface, TKabakovListToDoItemsResponseInterface, TKabakovToDoIdInterface, TKabakovToDoItemInterface, TKabakovUpdateToDoItemRequestInterface, TKabakovUpdateToDoItemResponseInterface, } from './tkabakovtodo.interface';
|
6
|
-
export { AHundalAddTaskRequestInterface, AHundalAddTaskResponseInterface, AHundalDeleteTaskRequestInterface, AHundalDeleteTaskResponseInterface, AHundalEditTaskRequestInterface, AHundalEditTaskResponseInterface, AHundalGetSpecificTaskRequestInterface, AHundalGetSpecificTaskResponseInterface, AHundalGetTasksRequestInterface, AHundalGetTasksResponseInterface, AHundalTaskInterface, CreateECurrieRequestInterface, CreateECurrieResponseInterface, CreateHdoTodoRequestInterface, CreateHdoTodoResponseInterface, CreateListRequestInterface, CreateListResponseInterface, CreateWHorrellTaskRequestInterface,
|
6
|
+
export { AHundalAddTaskRequestInterface, AHundalAddTaskResponseInterface, AHundalDeleteTaskRequestInterface, AHundalDeleteTaskResponseInterface, AHundalEditTaskRequestInterface, AHundalEditTaskResponseInterface, AHundalGetSpecificTaskRequestInterface, AHundalGetSpecificTaskResponseInterface, AHundalGetTasksRequestInterface, AHundalGetTasksResponseInterface, AHundalTaskInterface, CreateECurrieRequestInterface, CreateECurrieResponseInterface, CreateHdoTodoRequestInterface, CreateHdoTodoResponseInterface, CreateListRequestInterface, CreateListResponseInterface, CreateWHorrellTaskRequestInterface, DeleteECurrieRequestInterface, DeleteHdoTodoRequestInterface, DeleteHdoTodoResponseInterface, DeleteListRequestInterface, DeleteWHorrellTaskRequestInterface, ECurrieTodoItemInterface, EditWHorrellTaskRequestInterface, GetECurrieListRequestInterface, GetECurrieListResponseInterface, GetHdoTodoRequestInterface, GetHdoTodoResponseInterface, GetListRequestInterface, GetListResponseInterface, 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, NValleCreateTaskRequestInterface, NValleCreateTaskResponseInterface, TodoListInterface, UpdateHdoTodoRequestInterface, UpdateHdoTodoResponseInterface, WHorrellTaskInterface, } from './api.interface';
|
@@ -113,18 +113,11 @@ export declare class CreateListResponse implements i.CreateListResponseInterface
|
|
113
113
|
toApiJson(): object;
|
114
114
|
}
|
115
115
|
export declare class CreateWHorrellTaskRequest implements i.CreateWHorrellTaskRequestInterface {
|
116
|
-
|
117
|
-
description: string;
|
116
|
+
task: WHorrellTask;
|
118
117
|
static fromProto(proto: any): CreateWHorrellTaskRequest;
|
119
118
|
constructor(kwargs?: i.CreateWHorrellTaskRequestInterface);
|
120
119
|
toApiJson(): object;
|
121
120
|
}
|
122
|
-
export declare class CreateWHorrellTaskResponse implements i.CreateWHorrellTaskResponseInterface {
|
123
|
-
id: string;
|
124
|
-
static fromProto(proto: any): CreateWHorrellTaskResponse;
|
125
|
-
constructor(kwargs?: i.CreateWHorrellTaskResponseInterface);
|
126
|
-
toApiJson(): object;
|
127
|
-
}
|
128
121
|
export declare class DeleteECurrieRequest implements i.DeleteECurrieRequestInterface {
|
129
122
|
id: string;
|
130
123
|
static fromProto(proto: any): DeleteECurrieRequest;
|
@@ -174,12 +167,6 @@ export declare class EditWHorrellTaskRequest implements i.EditWHorrellTaskReques
|
|
174
167
|
constructor(kwargs?: i.EditWHorrellTaskRequestInterface);
|
175
168
|
toApiJson(): object;
|
176
169
|
}
|
177
|
-
export declare class EditWHorrellTaskResponse implements i.EditWHorrellTaskResponseInterface {
|
178
|
-
id: string;
|
179
|
-
static fromProto(proto: any): EditWHorrellTaskResponse;
|
180
|
-
constructor(kwargs?: i.EditWHorrellTaskResponseInterface);
|
181
|
-
toApiJson(): object;
|
182
|
-
}
|
183
170
|
export declare class GetECurrieListRequest implements i.GetECurrieListRequestInterface {
|
184
171
|
category: string;
|
185
172
|
status: string;
|
@@ -3,4 +3,4 @@ export { GetBusinessQuestionsAnswersRequest, GetBusinessQuestionsAnswersResponse
|
|
3
3
|
export { CreateLFossenierTaskRequest, DeleteLFossenierTaskRequest, LoadLFossenierTaskRequest, LoadLFossenierTaskResponse, TodoTaskMessage, ToggleFinishedLFossenierTaskRequest, } from './lfossenier-todo';
|
4
4
|
export { Access, } from './annotations';
|
5
5
|
export { TKabakovAddToDoItemRequest, TKabakovAddToDoItemResponse, TKabakovDeleteToDoItemRequest, TKabakovDeleteToDoItemResponse, TKabakovGetToDoItemRequest, TKabakovGetToDoItemResponse, TKabakovListToDoItemsRequest, TKabakovListToDoItemsResponse, TKabakovToDoId, TKabakovToDoItem, TKabakovUpdateToDoItemRequest, TKabakovUpdateToDoItemResponse, } from './tkabakovtodo';
|
6
|
-
export { AHundalAddTaskRequest, AHundalAddTaskResponse, AHundalDeleteTaskRequest, AHundalDeleteTaskResponse, AHundalEditTaskRequest, AHundalEditTaskResponse, AHundalGetSpecificTaskRequest, AHundalGetSpecificTaskResponse, AHundalGetTasksRequest, AHundalGetTasksResponse, AHundalTask, CreateECurrieRequest, CreateECurrieResponse, CreateHdoTodoRequest, CreateHdoTodoResponse, CreateListRequest, CreateListResponse, CreateWHorrellTaskRequest,
|
6
|
+
export { AHundalAddTaskRequest, AHundalAddTaskResponse, AHundalDeleteTaskRequest, AHundalDeleteTaskResponse, AHundalEditTaskRequest, AHundalEditTaskResponse, AHundalGetSpecificTaskRequest, AHundalGetSpecificTaskResponse, AHundalGetTasksRequest, AHundalGetTasksResponse, AHundalTask, CreateECurrieRequest, CreateECurrieResponse, CreateHdoTodoRequest, CreateHdoTodoResponse, CreateListRequest, CreateListResponse, CreateWHorrellTaskRequest, DeleteECurrieRequest, DeleteHdoTodoRequest, DeleteHdoTodoResponse, DeleteListRequest, DeleteWHorrellTaskRequest, ECurrieTodoItem, EditWHorrellTaskRequest, GetECurrieListRequest, GetECurrieListResponse, GetHdoTodoRequest, GetHdoTodoResponse, GetListRequest, GetListResponse, 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, NValleCreateTaskRequest, NValleCreateTaskResponse, TodoList, UpdateHdoTodoRequest, UpdateHdoTodoResponse, WHorrellTask, } from './api';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { CreateWHorrellTaskRequest,
|
1
|
+
import { CreateWHorrellTaskRequest, DeleteWHorrellTaskRequest, EditWHorrellTaskRequest, GetWHorrellTaskRequest, GetWHorrellTaskResponse, ListWHorrellTasksRequest, ListWHorrellTasksResponse } from './objects/';
|
2
2
|
import { CreateWHorrellTaskRequestInterface, DeleteWHorrellTaskRequestInterface, EditWHorrellTaskRequestInterface, GetWHorrellTaskRequestInterface, ListWHorrellTasksRequestInterface } from './interfaces/';
|
3
3
|
import { HttpClient, HttpResponse } from '@angular/common/http';
|
4
4
|
import { HostService } from '../_generated/host.service';
|
@@ -10,8 +10,8 @@ export declare class WHorrellToDoApiService {
|
|
10
10
|
private _host;
|
11
11
|
constructor(http: HttpClient, hostService: HostService);
|
12
12
|
private apiOptions;
|
13
|
-
createWHorrellTask(r: CreateWHorrellTaskRequest | CreateWHorrellTaskRequestInterface): Observable<
|
14
|
-
editWHorrellTask(r: EditWHorrellTaskRequest | EditWHorrellTaskRequestInterface): Observable<
|
13
|
+
createWHorrellTask(r: CreateWHorrellTaskRequest | CreateWHorrellTaskRequestInterface): Observable<HttpResponse<null>>;
|
14
|
+
editWHorrellTask(r: EditWHorrellTaskRequest | EditWHorrellTaskRequestInterface): Observable<HttpResponse<null>>;
|
15
15
|
deleteWHorrellTask(r: DeleteWHorrellTaskRequest | DeleteWHorrellTaskRequestInterface): Observable<HttpResponse<null>>;
|
16
16
|
getWHorrellTask(r: GetWHorrellTaskRequest | GetWHorrellTaskRequestInterface): Observable<GetWHorrellTaskResponse>;
|
17
17
|
listWHorrellTasks(r: ListWHorrellTasksRequest | ListWHorrellTasksRequestInterface): Observable<ListWHorrellTasksResponse>;
|