@vendasta/developer-training 0.8.0 → 0.11.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/enums/api.enum.mjs +13 -0
- package/esm2020/lib/_internal/enums/index.mjs +8 -0
- package/esm2020/lib/_internal/i-olaleye-to-do-qa.api.service.mjs +61 -0
- package/esm2020/lib/_internal/index.mjs +4 -1
- package/esm2020/lib/_internal/interfaces/annotations.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/businessqa.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/field-mask.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/lfossenier-todo.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/tkabakovtodo.interface.mjs +1 -1
- package/esm2020/lib/_internal/m-mugot-list-qa.api.service.mjs +9 -4
- package/esm2020/lib/_internal/objects/annotations.mjs +7 -1
- package/esm2020/lib/_internal/objects/api.mjs +528 -5
- package/esm2020/lib/_internal/objects/businessqa.mjs +7 -1
- package/esm2020/lib/_internal/objects/field-mask.mjs +7 -1
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/esm2020/lib/_internal/objects/lfossenier-todo.mjs +7 -1
- package/esm2020/lib/_internal/objects/tkabakovtodo.mjs +7 -1
- package/esm2020/lib/_internal/w-horrell-to-do.api.service.mjs +60 -0
- package/fesm2015/vendasta-developer-training.mjs +675 -7
- package/fesm2015/vendasta-developer-training.mjs.map +1 -1
- package/fesm2020/vendasta-developer-training.mjs +675 -7
- package/fesm2020/vendasta-developer-training.mjs.map +1 -1
- package/lib/_internal/enums/api.enum.d.ts +5 -0
- package/lib/_internal/enums/index.d.ts +1 -0
- package/lib/_internal/i-olaleye-to-do-qa.api.service.d.ts +20 -0
- package/lib/_internal/index.d.ts +3 -0
- package/lib/_internal/interfaces/api.interface.d.ts +81 -2
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/m-mugot-list-qa.api.service.d.ts +4 -3
- package/lib/_internal/objects/annotations.d.ts +1 -0
- package/lib/_internal/objects/api.d.ts +155 -6
- package/lib/_internal/objects/businessqa.d.ts +1 -0
- package/lib/_internal/objects/field-mask.d.ts +1 -0
- package/lib/_internal/objects/index.d.ts +1 -1
- package/lib/_internal/objects/lfossenier-todo.d.ts +1 -0
- package/lib/_internal/objects/tkabakovtodo.d.ts +1 -0
- package/lib/_internal/w-horrell-to-do.api.service.d.ts +20 -0
- package/package.json +1 -1
@@ -0,0 +1 @@
|
|
1
|
+
export { Task, } from './api.enum';
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { IOlaleyeCreateTaskRequest, IOlaleyeCreateTaskResponse, IOlaleyeDeleteTaskRequest, IOlaleyeDeleteTaskResponse, IOlaleyeEditTaskRequest, IOlaleyeEditTaskResponse, IOlaleyeGetTaskRequest, IOlaleyeGetTaskResponse, IOlaleyeListTasksRequest, IOlaleyeListTasksResponse } from './objects/';
|
2
|
+
import { IOlaleyeCreateTaskRequestInterface, IOlaleyeDeleteTaskRequestInterface, IOlaleyeEditTaskRequestInterface, IOlaleyeGetTaskRequestInterface, IOlaleyeListTasksRequestInterface } from './interfaces/';
|
3
|
+
import { HttpClient } 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 IOlaleyeToDoQAApiService {
|
8
|
+
private http;
|
9
|
+
private hostService;
|
10
|
+
private _host;
|
11
|
+
constructor(http: HttpClient, hostService: HostService);
|
12
|
+
private apiOptions;
|
13
|
+
iOlaleyeCreateTask(r: IOlaleyeCreateTaskRequest | IOlaleyeCreateTaskRequestInterface): Observable<IOlaleyeCreateTaskResponse>;
|
14
|
+
iOlaleyeEditTask(r: IOlaleyeEditTaskRequest | IOlaleyeEditTaskRequestInterface): Observable<IOlaleyeEditTaskResponse>;
|
15
|
+
iOlaleyeDeleteTask(r: IOlaleyeDeleteTaskRequest | IOlaleyeDeleteTaskRequestInterface): Observable<IOlaleyeDeleteTaskResponse>;
|
16
|
+
iOlaleyeGetTask(r: IOlaleyeGetTaskRequest | IOlaleyeGetTaskRequestInterface): Observable<IOlaleyeGetTaskResponse>;
|
17
|
+
iOlaleyeListTasks(r: IOlaleyeListTasksRequest | IOlaleyeListTasksRequestInterface): Observable<IOlaleyeListTasksResponse>;
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IOlaleyeToDoQAApiService, never>;
|
19
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<IOlaleyeToDoQAApiService>;
|
20
|
+
}
|
package/lib/_internal/index.d.ts
CHANGED
@@ -1,8 +1,11 @@
|
|
1
|
+
export * from './enums';
|
1
2
|
export * from './objects';
|
2
3
|
export * from './interfaces';
|
3
4
|
export { AHundalToDoProjectApiService } from './a-hundal-to-do-project.api.service';
|
4
5
|
export { BusinessQAApiService } from './business-qa.api.service';
|
5
6
|
export { HdoTodoApiService } from './hdo-todo.api.service';
|
7
|
+
export { IOlaleyeToDoQAApiService } from './i-olaleye-to-do-qa.api.service';
|
6
8
|
export { LFossenierTodoApiService } from './l-fossenier-todo.api.service';
|
7
9
|
export { MMugotListQAApiService } from './m-mugot-list-qa.api.service';
|
8
10
|
export { TKabakovToDoApiService } from './t-kabakov-to-do.api.service';
|
11
|
+
export { WHorrellToDoApiService } from './w-horrell-to-do.api.service';
|
@@ -44,18 +44,43 @@ export interface CreateHdoTodoRequestInterface {
|
|
44
44
|
export interface CreateHdoTodoResponseInterface {
|
45
45
|
todo?: HdoTodoItemInterface;
|
46
46
|
}
|
47
|
+
export interface CreateWHorrellTaskRequestInterface {
|
48
|
+
name?: string;
|
49
|
+
description?: string;
|
50
|
+
}
|
51
|
+
export interface CreateWHorrellTaskResponseInterface {
|
52
|
+
id?: string;
|
53
|
+
}
|
47
54
|
export interface DeleteHdoTodoRequestInterface {
|
48
55
|
id?: string;
|
49
56
|
}
|
50
57
|
export interface DeleteHdoTodoResponseInterface {
|
51
58
|
message?: string;
|
52
59
|
}
|
60
|
+
export interface DeleteWHorrellTaskRequestInterface {
|
61
|
+
id?: string;
|
62
|
+
}
|
63
|
+
export interface EditWHorrellTaskRequestInterface {
|
64
|
+
id?: string;
|
65
|
+
name?: string;
|
66
|
+
description?: string;
|
67
|
+
isCompleted?: boolean;
|
68
|
+
}
|
69
|
+
export interface EditWHorrellTaskResponseInterface {
|
70
|
+
id?: string;
|
71
|
+
}
|
53
72
|
export interface GetHdoTodoRequestInterface {
|
54
73
|
id?: string;
|
55
74
|
}
|
56
75
|
export interface GetHdoTodoResponseInterface {
|
57
76
|
todo?: HdoTodoItemInterface;
|
58
77
|
}
|
78
|
+
export interface GetWHorrellTaskRequestInterface {
|
79
|
+
id?: string;
|
80
|
+
}
|
81
|
+
export interface GetWHorrellTaskResponseInterface {
|
82
|
+
task?: WHorrellTaskInterface;
|
83
|
+
}
|
59
84
|
export interface HdoTodoItemInterface {
|
60
85
|
id?: string;
|
61
86
|
title?: string;
|
@@ -63,11 +88,52 @@ export interface HdoTodoItemInterface {
|
|
63
88
|
completed?: boolean;
|
64
89
|
deleted?: boolean;
|
65
90
|
}
|
91
|
+
export interface IOlaleyeCreateTaskRequestInterface {
|
92
|
+
name?: string;
|
93
|
+
description?: string;
|
94
|
+
}
|
95
|
+
export interface IOlaleyeCreateTaskResponseInterface {
|
96
|
+
id?: number;
|
97
|
+
}
|
98
|
+
export interface IOlaleyeDeleteTaskRequestInterface {
|
99
|
+
id?: string;
|
100
|
+
}
|
101
|
+
export interface IOlaleyeDeleteTaskResponseInterface {
|
102
|
+
}
|
103
|
+
export interface IOlaleyeEditTaskRequestInterface {
|
104
|
+
task?: IOlaleyeTaskInterface;
|
105
|
+
}
|
106
|
+
export interface IOlaleyeEditTaskResponseInterface {
|
107
|
+
task?: IOlaleyeTaskInterface;
|
108
|
+
}
|
109
|
+
export interface IOlaleyeGetTaskRequestInterface {
|
110
|
+
id?: string;
|
111
|
+
}
|
112
|
+
export interface IOlaleyeGetTaskResponseInterface {
|
113
|
+
task?: IOlaleyeTaskInterface;
|
114
|
+
}
|
115
|
+
export interface IOlaleyeListTasksRequestInterface {
|
116
|
+
}
|
117
|
+
export interface IOlaleyeListTasksResponseInterface {
|
118
|
+
allTasks?: IOlaleyeTaskInterface[];
|
119
|
+
}
|
120
|
+
export interface IOlaleyeTaskInterface {
|
121
|
+
id?: string;
|
122
|
+
name?: string;
|
123
|
+
description?: string;
|
124
|
+
deleted?: string;
|
125
|
+
isDone?: boolean;
|
126
|
+
}
|
66
127
|
export interface ListHdoTodoRequestInterface {
|
67
128
|
}
|
68
129
|
export interface ListHdoTodoResponseInterface {
|
69
130
|
todos?: HdoTodoItemInterface[];
|
70
131
|
}
|
132
|
+
export interface ListWHorrellTasksRequestInterface {
|
133
|
+
}
|
134
|
+
export interface ListWHorrellTasksResponseInterface {
|
135
|
+
tasks?: WHorrellTaskInterface[];
|
136
|
+
}
|
71
137
|
export interface MMugotCreateTaskRequestInterface {
|
72
138
|
task?: MMugotTaskInterface;
|
73
139
|
}
|
@@ -77,18 +143,24 @@ export interface MMugotCreateTaskResponseInterface {
|
|
77
143
|
export interface MMugotDeleteTaskRequestInterface {
|
78
144
|
taskId?: string;
|
79
145
|
}
|
80
|
-
export interface
|
146
|
+
export interface MMugotGetTaskRequestInterface {
|
81
147
|
taskId?: string;
|
82
148
|
}
|
83
|
-
export interface
|
149
|
+
export interface MMugotGetTaskResponseInterface {
|
84
150
|
task?: MMugotTaskInterface;
|
85
151
|
}
|
152
|
+
export interface MMugotListTasksRequestInterface {
|
153
|
+
}
|
154
|
+
export interface MMugotListTasksResponseInterface {
|
155
|
+
tasks?: MMugotTaskInterface[];
|
156
|
+
}
|
86
157
|
export interface MMugotTaskInterface {
|
87
158
|
taskName?: string;
|
88
159
|
taskDescription?: string;
|
89
160
|
isComplete?: boolean;
|
90
161
|
taskId?: string;
|
91
162
|
isDeleted?: boolean;
|
163
|
+
dueDate?: Date;
|
92
164
|
}
|
93
165
|
export interface UpdateHdoTodoRequestInterface {
|
94
166
|
todo?: HdoTodoItemInterface;
|
@@ -96,3 +168,10 @@ export interface UpdateHdoTodoRequestInterface {
|
|
96
168
|
export interface UpdateHdoTodoResponseInterface {
|
97
169
|
todo?: HdoTodoItemInterface;
|
98
170
|
}
|
171
|
+
export interface WHorrellTaskInterface {
|
172
|
+
id?: string;
|
173
|
+
name?: string;
|
174
|
+
description?: string;
|
175
|
+
isCompleted?: boolean;
|
176
|
+
isDeleted?: boolean;
|
177
|
+
}
|
@@ -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, DeleteHdoTodoRequestInterface, DeleteHdoTodoResponseInterface, GetHdoTodoRequestInterface, GetHdoTodoResponseInterface, HdoTodoItemInterface, ListHdoTodoRequestInterface, ListHdoTodoResponseInterface, MMugotCreateTaskRequestInterface, MMugotCreateTaskResponseInterface, MMugotDeleteTaskRequestInterface,
|
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';
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { MMugotCreateTaskRequest, MMugotCreateTaskResponse, MMugotDeleteTaskRequest,
|
2
|
-
import { MMugotCreateTaskRequestInterface, MMugotDeleteTaskRequestInterface,
|
1
|
+
import { MMugotCreateTaskRequest, MMugotCreateTaskResponse, MMugotDeleteTaskRequest, MMugotGetTaskRequest, MMugotGetTaskResponse, MMugotListTasksRequest, MMugotListTasksResponse } from './objects/';
|
2
|
+
import { MMugotCreateTaskRequestInterface, MMugotDeleteTaskRequestInterface, MMugotGetTaskRequestInterface, MMugotListTasksRequestInterface } 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';
|
@@ -11,8 +11,9 @@ export declare class MMugotListQAApiService {
|
|
11
11
|
constructor(http: HttpClient, hostService: HostService);
|
12
12
|
private apiOptions;
|
13
13
|
createTask(r: MMugotCreateTaskRequest | MMugotCreateTaskRequestInterface): Observable<MMugotCreateTaskResponse>;
|
14
|
-
getTask(r:
|
14
|
+
getTask(r: MMugotGetTaskRequest | MMugotGetTaskRequestInterface): Observable<MMugotGetTaskResponse>;
|
15
15
|
deleteTask(r: MMugotDeleteTaskRequest | MMugotDeleteTaskRequestInterface): Observable<HttpResponse<null>>;
|
16
|
+
listTasks(r: MMugotListTasksRequest | MMugotListTasksRequestInterface): Observable<MMugotListTasksResponse>;
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<MMugotListQAApiService, never>;
|
17
18
|
static ɵprov: i0.ɵɵInjectableDeclaration<MMugotListQAApiService>;
|
18
19
|
}
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import * as i from '../interfaces';
|
2
|
+
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
2
3
|
export declare class AHundalAddTaskRequest implements i.AHundalAddTaskRequestInterface {
|
3
4
|
newTask: AHundalTask;
|
4
5
|
static fromProto(proto: any): AHundalAddTaskRequest;
|
@@ -84,6 +85,19 @@ export declare class CreateHdoTodoResponse implements i.CreateHdoTodoResponseInt
|
|
84
85
|
constructor(kwargs?: i.CreateHdoTodoResponseInterface);
|
85
86
|
toApiJson(): object;
|
86
87
|
}
|
88
|
+
export declare class CreateWHorrellTaskRequest implements i.CreateWHorrellTaskRequestInterface {
|
89
|
+
name: string;
|
90
|
+
description: string;
|
91
|
+
static fromProto(proto: any): CreateWHorrellTaskRequest;
|
92
|
+
constructor(kwargs?: i.CreateWHorrellTaskRequestInterface);
|
93
|
+
toApiJson(): object;
|
94
|
+
}
|
95
|
+
export declare class CreateWHorrellTaskResponse implements i.CreateWHorrellTaskResponseInterface {
|
96
|
+
id: string;
|
97
|
+
static fromProto(proto: any): CreateWHorrellTaskResponse;
|
98
|
+
constructor(kwargs?: i.CreateWHorrellTaskResponseInterface);
|
99
|
+
toApiJson(): object;
|
100
|
+
}
|
87
101
|
export declare class DeleteHdoTodoRequest implements i.DeleteHdoTodoRequestInterface {
|
88
102
|
id: string;
|
89
103
|
static fromProto(proto: any): DeleteHdoTodoRequest;
|
@@ -96,6 +110,27 @@ export declare class DeleteHdoTodoResponse implements i.DeleteHdoTodoResponseInt
|
|
96
110
|
constructor(kwargs?: i.DeleteHdoTodoResponseInterface);
|
97
111
|
toApiJson(): object;
|
98
112
|
}
|
113
|
+
export declare class DeleteWHorrellTaskRequest implements i.DeleteWHorrellTaskRequestInterface {
|
114
|
+
id: string;
|
115
|
+
static fromProto(proto: any): DeleteWHorrellTaskRequest;
|
116
|
+
constructor(kwargs?: i.DeleteWHorrellTaskRequestInterface);
|
117
|
+
toApiJson(): object;
|
118
|
+
}
|
119
|
+
export declare class EditWHorrellTaskRequest implements i.EditWHorrellTaskRequestInterface {
|
120
|
+
id: string;
|
121
|
+
name: string;
|
122
|
+
description: string;
|
123
|
+
isCompleted: boolean;
|
124
|
+
static fromProto(proto: any): EditWHorrellTaskRequest;
|
125
|
+
constructor(kwargs?: i.EditWHorrellTaskRequestInterface);
|
126
|
+
toApiJson(): object;
|
127
|
+
}
|
128
|
+
export declare class EditWHorrellTaskResponse implements i.EditWHorrellTaskResponseInterface {
|
129
|
+
id: string;
|
130
|
+
static fromProto(proto: any): EditWHorrellTaskResponse;
|
131
|
+
constructor(kwargs?: i.EditWHorrellTaskResponseInterface);
|
132
|
+
toApiJson(): object;
|
133
|
+
}
|
99
134
|
export declare class GetHdoTodoRequest implements i.GetHdoTodoRequestInterface {
|
100
135
|
id: string;
|
101
136
|
static fromProto(proto: any): GetHdoTodoRequest;
|
@@ -108,6 +143,18 @@ export declare class GetHdoTodoResponse implements i.GetHdoTodoResponseInterface
|
|
108
143
|
constructor(kwargs?: i.GetHdoTodoResponseInterface);
|
109
144
|
toApiJson(): object;
|
110
145
|
}
|
146
|
+
export declare class GetWHorrellTaskRequest implements i.GetWHorrellTaskRequestInterface {
|
147
|
+
id: string;
|
148
|
+
static fromProto(proto: any): GetWHorrellTaskRequest;
|
149
|
+
constructor(kwargs?: i.GetWHorrellTaskRequestInterface);
|
150
|
+
toApiJson(): object;
|
151
|
+
}
|
152
|
+
export declare class GetWHorrellTaskResponse implements i.GetWHorrellTaskResponseInterface {
|
153
|
+
task: WHorrellTask;
|
154
|
+
static fromProto(proto: any): GetWHorrellTaskResponse;
|
155
|
+
constructor(kwargs?: i.GetWHorrellTaskResponseInterface);
|
156
|
+
toApiJson(): object;
|
157
|
+
}
|
111
158
|
export declare class HdoTodoItem implements i.HdoTodoItemInterface {
|
112
159
|
id: string;
|
113
160
|
title: string;
|
@@ -118,6 +165,75 @@ export declare class HdoTodoItem implements i.HdoTodoItemInterface {
|
|
118
165
|
constructor(kwargs?: i.HdoTodoItemInterface);
|
119
166
|
toApiJson(): object;
|
120
167
|
}
|
168
|
+
export declare class IOlaleyeCreateTaskRequest implements i.IOlaleyeCreateTaskRequestInterface {
|
169
|
+
name: string;
|
170
|
+
description: string;
|
171
|
+
static fromProto(proto: any): IOlaleyeCreateTaskRequest;
|
172
|
+
constructor(kwargs?: i.IOlaleyeCreateTaskRequestInterface);
|
173
|
+
toApiJson(): object;
|
174
|
+
}
|
175
|
+
export declare class IOlaleyeCreateTaskResponse implements i.IOlaleyeCreateTaskResponseInterface {
|
176
|
+
id: number;
|
177
|
+
static fromProto(proto: any): IOlaleyeCreateTaskResponse;
|
178
|
+
constructor(kwargs?: i.IOlaleyeCreateTaskResponseInterface);
|
179
|
+
toApiJson(): object;
|
180
|
+
}
|
181
|
+
export declare class IOlaleyeDeleteTaskRequest implements i.IOlaleyeDeleteTaskRequestInterface {
|
182
|
+
id: string;
|
183
|
+
static fromProto(proto: any): IOlaleyeDeleteTaskRequest;
|
184
|
+
constructor(kwargs?: i.IOlaleyeDeleteTaskRequestInterface);
|
185
|
+
toApiJson(): object;
|
186
|
+
}
|
187
|
+
export declare class IOlaleyeDeleteTaskResponse implements i.IOlaleyeDeleteTaskResponseInterface {
|
188
|
+
static fromProto(proto: any): IOlaleyeDeleteTaskResponse;
|
189
|
+
constructor(kwargs?: i.IOlaleyeDeleteTaskResponseInterface);
|
190
|
+
toApiJson(): object;
|
191
|
+
}
|
192
|
+
export declare class IOlaleyeEditTaskRequest implements i.IOlaleyeEditTaskRequestInterface {
|
193
|
+
task: IOlaleyeTask;
|
194
|
+
static fromProto(proto: any): IOlaleyeEditTaskRequest;
|
195
|
+
constructor(kwargs?: i.IOlaleyeEditTaskRequestInterface);
|
196
|
+
toApiJson(): object;
|
197
|
+
}
|
198
|
+
export declare class IOlaleyeEditTaskResponse implements i.IOlaleyeEditTaskResponseInterface {
|
199
|
+
task: IOlaleyeTask;
|
200
|
+
static fromProto(proto: any): IOlaleyeEditTaskResponse;
|
201
|
+
constructor(kwargs?: i.IOlaleyeEditTaskResponseInterface);
|
202
|
+
toApiJson(): object;
|
203
|
+
}
|
204
|
+
export declare class IOlaleyeGetTaskRequest implements i.IOlaleyeGetTaskRequestInterface {
|
205
|
+
id: string;
|
206
|
+
static fromProto(proto: any): IOlaleyeGetTaskRequest;
|
207
|
+
constructor(kwargs?: i.IOlaleyeGetTaskRequestInterface);
|
208
|
+
toApiJson(): object;
|
209
|
+
}
|
210
|
+
export declare class IOlaleyeGetTaskResponse implements i.IOlaleyeGetTaskResponseInterface {
|
211
|
+
task: IOlaleyeTask;
|
212
|
+
static fromProto(proto: any): IOlaleyeGetTaskResponse;
|
213
|
+
constructor(kwargs?: i.IOlaleyeGetTaskResponseInterface);
|
214
|
+
toApiJson(): object;
|
215
|
+
}
|
216
|
+
export declare class IOlaleyeListTasksRequest implements i.IOlaleyeListTasksRequestInterface {
|
217
|
+
static fromProto(proto: any): IOlaleyeListTasksRequest;
|
218
|
+
constructor(kwargs?: i.IOlaleyeListTasksRequestInterface);
|
219
|
+
toApiJson(): object;
|
220
|
+
}
|
221
|
+
export declare class IOlaleyeListTasksResponse implements i.IOlaleyeListTasksResponseInterface {
|
222
|
+
allTasks: IOlaleyeTask[];
|
223
|
+
static fromProto(proto: any): IOlaleyeListTasksResponse;
|
224
|
+
constructor(kwargs?: i.IOlaleyeListTasksResponseInterface);
|
225
|
+
toApiJson(): object;
|
226
|
+
}
|
227
|
+
export declare class IOlaleyeTask implements i.IOlaleyeTaskInterface {
|
228
|
+
id: string;
|
229
|
+
name: string;
|
230
|
+
description: string;
|
231
|
+
deleted: string;
|
232
|
+
isDone: boolean;
|
233
|
+
static fromProto(proto: any): IOlaleyeTask;
|
234
|
+
constructor(kwargs?: i.IOlaleyeTaskInterface);
|
235
|
+
toApiJson(): object;
|
236
|
+
}
|
121
237
|
export declare class ListHdoTodoRequest implements i.ListHdoTodoRequestInterface {
|
122
238
|
static fromProto(proto: any): ListHdoTodoRequest;
|
123
239
|
constructor(kwargs?: i.ListHdoTodoRequestInterface);
|
@@ -129,6 +245,17 @@ export declare class ListHdoTodoResponse implements i.ListHdoTodoResponseInterfa
|
|
129
245
|
constructor(kwargs?: i.ListHdoTodoResponseInterface);
|
130
246
|
toApiJson(): object;
|
131
247
|
}
|
248
|
+
export declare class ListWHorrellTasksRequest implements i.ListWHorrellTasksRequestInterface {
|
249
|
+
static fromProto(proto: any): ListWHorrellTasksRequest;
|
250
|
+
constructor(kwargs?: i.ListWHorrellTasksRequestInterface);
|
251
|
+
toApiJson(): object;
|
252
|
+
}
|
253
|
+
export declare class ListWHorrellTasksResponse implements i.ListWHorrellTasksResponseInterface {
|
254
|
+
tasks: WHorrellTask[];
|
255
|
+
static fromProto(proto: any): ListWHorrellTasksResponse;
|
256
|
+
constructor(kwargs?: i.ListWHorrellTasksResponseInterface);
|
257
|
+
toApiJson(): object;
|
258
|
+
}
|
132
259
|
export declare class MMugotCreateTaskRequest implements i.MMugotCreateTaskRequestInterface {
|
133
260
|
task: MMugotTask;
|
134
261
|
static fromProto(proto: any): MMugotCreateTaskRequest;
|
@@ -147,16 +274,27 @@ export declare class MMugotDeleteTaskRequest implements i.MMugotDeleteTaskReques
|
|
147
274
|
constructor(kwargs?: i.MMugotDeleteTaskRequestInterface);
|
148
275
|
toApiJson(): object;
|
149
276
|
}
|
150
|
-
export declare class
|
277
|
+
export declare class MMugotGetTaskRequest implements i.MMugotGetTaskRequestInterface {
|
151
278
|
taskId: string;
|
152
|
-
static fromProto(proto: any):
|
153
|
-
constructor(kwargs?: i.
|
279
|
+
static fromProto(proto: any): MMugotGetTaskRequest;
|
280
|
+
constructor(kwargs?: i.MMugotGetTaskRequestInterface);
|
154
281
|
toApiJson(): object;
|
155
282
|
}
|
156
|
-
export declare class
|
283
|
+
export declare class MMugotGetTaskResponse implements i.MMugotGetTaskResponseInterface {
|
157
284
|
task: MMugotTask;
|
158
|
-
static fromProto(proto: any):
|
159
|
-
constructor(kwargs?: i.
|
285
|
+
static fromProto(proto: any): MMugotGetTaskResponse;
|
286
|
+
constructor(kwargs?: i.MMugotGetTaskResponseInterface);
|
287
|
+
toApiJson(): object;
|
288
|
+
}
|
289
|
+
export declare class MMugotListTasksRequest implements i.MMugotListTasksRequestInterface {
|
290
|
+
static fromProto(proto: any): MMugotListTasksRequest;
|
291
|
+
constructor(kwargs?: i.MMugotListTasksRequestInterface);
|
292
|
+
toApiJson(): object;
|
293
|
+
}
|
294
|
+
export declare class MMugotListTasksResponse implements i.MMugotListTasksResponseInterface {
|
295
|
+
tasks: MMugotTask[];
|
296
|
+
static fromProto(proto: any): MMugotListTasksResponse;
|
297
|
+
constructor(kwargs?: i.MMugotListTasksResponseInterface);
|
160
298
|
toApiJson(): object;
|
161
299
|
}
|
162
300
|
export declare class MMugotTask implements i.MMugotTaskInterface {
|
@@ -165,6 +303,7 @@ export declare class MMugotTask implements i.MMugotTaskInterface {
|
|
165
303
|
isComplete: boolean;
|
166
304
|
taskId: string;
|
167
305
|
isDeleted: boolean;
|
306
|
+
dueDate: Date;
|
168
307
|
static fromProto(proto: any): MMugotTask;
|
169
308
|
constructor(kwargs?: i.MMugotTaskInterface);
|
170
309
|
toApiJson(): object;
|
@@ -181,3 +320,13 @@ export declare class UpdateHdoTodoResponse implements i.UpdateHdoTodoResponseInt
|
|
181
320
|
constructor(kwargs?: i.UpdateHdoTodoResponseInterface);
|
182
321
|
toApiJson(): object;
|
183
322
|
}
|
323
|
+
export declare class WHorrellTask implements i.WHorrellTaskInterface {
|
324
|
+
id: string;
|
325
|
+
name: string;
|
326
|
+
description: string;
|
327
|
+
isCompleted: boolean;
|
328
|
+
isDeleted: boolean;
|
329
|
+
static fromProto(proto: any): WHorrellTask;
|
330
|
+
constructor(kwargs?: i.WHorrellTaskInterface);
|
331
|
+
toApiJson(): object;
|
332
|
+
}
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import * as i from '../interfaces';
|
2
2
|
import { FieldMask } from './field-mask';
|
3
|
+
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
3
4
|
export declare class GetBusinessQuestionsAnswersRequest implements i.GetBusinessQuestionsAnswersRequestInterface {
|
4
5
|
businessId: string;
|
5
6
|
static fromProto(proto: any): GetBusinessQuestionsAnswersRequest;
|
@@ -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, DeleteHdoTodoRequest, DeleteHdoTodoResponse, GetHdoTodoRequest, GetHdoTodoResponse, HdoTodoItem, ListHdoTodoRequest, ListHdoTodoResponse, MMugotCreateTaskRequest, MMugotCreateTaskResponse, MMugotDeleteTaskRequest,
|
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';
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import * as i from '../interfaces';
|
2
|
+
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
2
3
|
export declare class CreateLFossenierTaskRequest implements i.CreateLFossenierTaskRequestInterface {
|
3
4
|
taskName: string;
|
4
5
|
static fromProto(proto: any): CreateLFossenierTaskRequest;
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { CreateWHorrellTaskRequest, CreateWHorrellTaskResponse, DeleteWHorrellTaskRequest, EditWHorrellTaskRequest, EditWHorrellTaskResponse, GetWHorrellTaskRequest, GetWHorrellTaskResponse, ListWHorrellTasksRequest, ListWHorrellTasksResponse } from './objects/';
|
2
|
+
import { CreateWHorrellTaskRequestInterface, DeleteWHorrellTaskRequestInterface, EditWHorrellTaskRequestInterface, GetWHorrellTaskRequestInterface, ListWHorrellTasksRequestInterface } 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 WHorrellToDoApiService {
|
8
|
+
private http;
|
9
|
+
private hostService;
|
10
|
+
private _host;
|
11
|
+
constructor(http: HttpClient, hostService: HostService);
|
12
|
+
private apiOptions;
|
13
|
+
createWHorrellTask(r: CreateWHorrellTaskRequest | CreateWHorrellTaskRequestInterface): Observable<CreateWHorrellTaskResponse>;
|
14
|
+
editWHorrellTask(r: EditWHorrellTaskRequest | EditWHorrellTaskRequestInterface): Observable<EditWHorrellTaskResponse>;
|
15
|
+
deleteWHorrellTask(r: DeleteWHorrellTaskRequest | DeleteWHorrellTaskRequestInterface): Observable<HttpResponse<null>>;
|
16
|
+
getWHorrellTask(r: GetWHorrellTaskRequest | GetWHorrellTaskRequestInterface): Observable<GetWHorrellTaskResponse>;
|
17
|
+
listWHorrellTasks(r: ListWHorrellTasksRequest | ListWHorrellTasksRequestInterface): Observable<ListWHorrellTasksResponse>;
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WHorrellToDoApiService, never>;
|
19
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WHorrellToDoApiService>;
|
20
|
+
}
|