@vendasta/developer-training 0.7.1 → 0.9.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/index.mjs +1 -5
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/lfossenier-todo.interface.mjs +1 -1
- package/esm2020/lib/_internal/l-fossenier-todo.api.service.mjs +5 -5
- package/esm2020/lib/_internal/objects/index.mjs +2 -5
- package/esm2020/lib/_internal/objects/lfossenier-todo.mjs +27 -27
- package/fesm2015/vendasta-developer-training.mjs +38 -1149
- package/fesm2015/vendasta-developer-training.mjs.map +1 -1
- package/fesm2020/vendasta-developer-training.mjs +38 -1149
- package/fesm2020/vendasta-developer-training.mjs.map +1 -1
- package/lib/_internal/index.d.ts +0 -4
- package/lib/_internal/interfaces/index.d.ts +1 -4
- package/lib/_internal/interfaces/lfossenier-todo.interface.d.ts +5 -5
- package/lib/_internal/l-fossenier-todo.api.service.d.ts +3 -3
- package/lib/_internal/objects/index.d.ts +1 -4
- package/lib/_internal/objects/lfossenier-todo.d.ts +8 -8
- package/package.json +1 -1
- package/esm2020/lib/_internal/a-hundal-to-do-project.api.service.mjs +0 -61
- package/esm2020/lib/_internal/hdo-todo.api.service.mjs +0 -60
- package/esm2020/lib/_internal/interfaces/annotations.interface.mjs +0 -8
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +0 -8
- package/esm2020/lib/_internal/interfaces/tkabakovtodo.interface.mjs +0 -8
- package/esm2020/lib/_internal/m-mugot-list-qa.api.service.mjs +0 -50
- package/esm2020/lib/_internal/objects/annotations.mjs +0 -24
- package/esm2020/lib/_internal/objects/api.mjs +0 -639
- package/esm2020/lib/_internal/objects/tkabakovtodo.mjs +0 -268
- package/esm2020/lib/_internal/t-kabakov-to-do.api.service.mjs +0 -61
- package/lib/_internal/a-hundal-to-do-project.api.service.d.ts +0 -20
- package/lib/_internal/hdo-todo.api.service.d.ts +0 -20
- package/lib/_internal/interfaces/annotations.interface.d.ts +0 -4
- package/lib/_internal/interfaces/api.interface.d.ts +0 -98
- package/lib/_internal/interfaces/tkabakovtodo.interface.d.ts +0 -40
- package/lib/_internal/m-mugot-list-qa.api.service.d.ts +0 -18
- package/lib/_internal/objects/annotations.d.ts +0 -8
- package/lib/_internal/objects/api.d.ts +0 -183
- package/lib/_internal/objects/tkabakovtodo.d.ts +0 -77
- package/lib/_internal/t-kabakov-to-do.api.service.d.ts +0 -20
@@ -1,183 +0,0 @@
|
|
1
|
-
import * as i from '../interfaces';
|
2
|
-
export declare class AHundalAddTaskRequest implements i.AHundalAddTaskRequestInterface {
|
3
|
-
newTask: AHundalTask;
|
4
|
-
static fromProto(proto: any): AHundalAddTaskRequest;
|
5
|
-
constructor(kwargs?: i.AHundalAddTaskRequestInterface);
|
6
|
-
toApiJson(): object;
|
7
|
-
}
|
8
|
-
export declare class AHundalAddTaskResponse implements i.AHundalAddTaskResponseInterface {
|
9
|
-
addSuccesfull: boolean;
|
10
|
-
static fromProto(proto: any): AHundalAddTaskResponse;
|
11
|
-
constructor(kwargs?: i.AHundalAddTaskResponseInterface);
|
12
|
-
toApiJson(): object;
|
13
|
-
}
|
14
|
-
export declare class AHundalDeleteTaskRequest implements i.AHundalDeleteTaskRequestInterface {
|
15
|
-
taskId: string;
|
16
|
-
static fromProto(proto: any): AHundalDeleteTaskRequest;
|
17
|
-
constructor(kwargs?: i.AHundalDeleteTaskRequestInterface);
|
18
|
-
toApiJson(): object;
|
19
|
-
}
|
20
|
-
export declare class AHundalDeleteTaskResponse implements i.AHundalDeleteTaskResponseInterface {
|
21
|
-
deleteSuccesfull: boolean;
|
22
|
-
static fromProto(proto: any): AHundalDeleteTaskResponse;
|
23
|
-
constructor(kwargs?: i.AHundalDeleteTaskResponseInterface);
|
24
|
-
toApiJson(): object;
|
25
|
-
}
|
26
|
-
export declare class AHundalEditTaskRequest implements i.AHundalEditTaskRequestInterface {
|
27
|
-
editedTask: AHundalTask;
|
28
|
-
static fromProto(proto: any): AHundalEditTaskRequest;
|
29
|
-
constructor(kwargs?: i.AHundalEditTaskRequestInterface);
|
30
|
-
toApiJson(): object;
|
31
|
-
}
|
32
|
-
export declare class AHundalEditTaskResponse implements i.AHundalEditTaskResponseInterface {
|
33
|
-
editSuccesfull: boolean;
|
34
|
-
static fromProto(proto: any): AHundalEditTaskResponse;
|
35
|
-
constructor(kwargs?: i.AHundalEditTaskResponseInterface);
|
36
|
-
toApiJson(): object;
|
37
|
-
}
|
38
|
-
export declare class AHundalGetSpecificTaskRequest implements i.AHundalGetSpecificTaskRequestInterface {
|
39
|
-
taskId: string;
|
40
|
-
static fromProto(proto: any): AHundalGetSpecificTaskRequest;
|
41
|
-
constructor(kwargs?: i.AHundalGetSpecificTaskRequestInterface);
|
42
|
-
toApiJson(): object;
|
43
|
-
}
|
44
|
-
export declare class AHundalGetSpecificTaskResponse implements i.AHundalGetSpecificTaskResponseInterface {
|
45
|
-
ahundalTask: AHundalTask;
|
46
|
-
static fromProto(proto: any): AHundalGetSpecificTaskResponse;
|
47
|
-
constructor(kwargs?: i.AHundalGetSpecificTaskResponseInterface);
|
48
|
-
toApiJson(): object;
|
49
|
-
}
|
50
|
-
export declare class AHundalGetTasksRequest implements i.AHundalGetTasksRequestInterface {
|
51
|
-
taskId: number;
|
52
|
-
static fromProto(proto: any): AHundalGetTasksRequest;
|
53
|
-
constructor(kwargs?: i.AHundalGetTasksRequestInterface);
|
54
|
-
toApiJson(): object;
|
55
|
-
}
|
56
|
-
export declare class AHundalGetTasksResponse implements i.AHundalGetTasksResponseInterface {
|
57
|
-
ahundalTask: AHundalTask[];
|
58
|
-
static fromProto(proto: any): AHundalGetTasksResponse;
|
59
|
-
constructor(kwargs?: i.AHundalGetTasksResponseInterface);
|
60
|
-
toApiJson(): object;
|
61
|
-
}
|
62
|
-
export declare class AHundalTask implements i.AHundalTaskInterface {
|
63
|
-
id: string;
|
64
|
-
taskTitle: string;
|
65
|
-
day: number;
|
66
|
-
month: number;
|
67
|
-
year: number;
|
68
|
-
description: string;
|
69
|
-
completed: boolean;
|
70
|
-
isDeleted: boolean;
|
71
|
-
static fromProto(proto: any): AHundalTask;
|
72
|
-
constructor(kwargs?: i.AHundalTaskInterface);
|
73
|
-
toApiJson(): object;
|
74
|
-
}
|
75
|
-
export declare class CreateHdoTodoRequest implements i.CreateHdoTodoRequestInterface {
|
76
|
-
todo: HdoTodoItem;
|
77
|
-
static fromProto(proto: any): CreateHdoTodoRequest;
|
78
|
-
constructor(kwargs?: i.CreateHdoTodoRequestInterface);
|
79
|
-
toApiJson(): object;
|
80
|
-
}
|
81
|
-
export declare class CreateHdoTodoResponse implements i.CreateHdoTodoResponseInterface {
|
82
|
-
todo: HdoTodoItem;
|
83
|
-
static fromProto(proto: any): CreateHdoTodoResponse;
|
84
|
-
constructor(kwargs?: i.CreateHdoTodoResponseInterface);
|
85
|
-
toApiJson(): object;
|
86
|
-
}
|
87
|
-
export declare class DeleteHdoTodoRequest implements i.DeleteHdoTodoRequestInterface {
|
88
|
-
id: string;
|
89
|
-
static fromProto(proto: any): DeleteHdoTodoRequest;
|
90
|
-
constructor(kwargs?: i.DeleteHdoTodoRequestInterface);
|
91
|
-
toApiJson(): object;
|
92
|
-
}
|
93
|
-
export declare class DeleteHdoTodoResponse implements i.DeleteHdoTodoResponseInterface {
|
94
|
-
message: string;
|
95
|
-
static fromProto(proto: any): DeleteHdoTodoResponse;
|
96
|
-
constructor(kwargs?: i.DeleteHdoTodoResponseInterface);
|
97
|
-
toApiJson(): object;
|
98
|
-
}
|
99
|
-
export declare class GetHdoTodoRequest implements i.GetHdoTodoRequestInterface {
|
100
|
-
id: string;
|
101
|
-
static fromProto(proto: any): GetHdoTodoRequest;
|
102
|
-
constructor(kwargs?: i.GetHdoTodoRequestInterface);
|
103
|
-
toApiJson(): object;
|
104
|
-
}
|
105
|
-
export declare class GetHdoTodoResponse implements i.GetHdoTodoResponseInterface {
|
106
|
-
todo: HdoTodoItem;
|
107
|
-
static fromProto(proto: any): GetHdoTodoResponse;
|
108
|
-
constructor(kwargs?: i.GetHdoTodoResponseInterface);
|
109
|
-
toApiJson(): object;
|
110
|
-
}
|
111
|
-
export declare class HdoTodoItem implements i.HdoTodoItemInterface {
|
112
|
-
id: string;
|
113
|
-
title: string;
|
114
|
-
description: string;
|
115
|
-
completed: boolean;
|
116
|
-
deleted: boolean;
|
117
|
-
static fromProto(proto: any): HdoTodoItem;
|
118
|
-
constructor(kwargs?: i.HdoTodoItemInterface);
|
119
|
-
toApiJson(): object;
|
120
|
-
}
|
121
|
-
export declare class ListHdoTodoRequest implements i.ListHdoTodoRequestInterface {
|
122
|
-
static fromProto(proto: any): ListHdoTodoRequest;
|
123
|
-
constructor(kwargs?: i.ListHdoTodoRequestInterface);
|
124
|
-
toApiJson(): object;
|
125
|
-
}
|
126
|
-
export declare class ListHdoTodoResponse implements i.ListHdoTodoResponseInterface {
|
127
|
-
todos: HdoTodoItem[];
|
128
|
-
static fromProto(proto: any): ListHdoTodoResponse;
|
129
|
-
constructor(kwargs?: i.ListHdoTodoResponseInterface);
|
130
|
-
toApiJson(): object;
|
131
|
-
}
|
132
|
-
export declare class MMugotCreateTaskRequest implements i.MMugotCreateTaskRequestInterface {
|
133
|
-
task: MMugotTask;
|
134
|
-
static fromProto(proto: any): MMugotCreateTaskRequest;
|
135
|
-
constructor(kwargs?: i.MMugotCreateTaskRequestInterface);
|
136
|
-
toApiJson(): object;
|
137
|
-
}
|
138
|
-
export declare class MMugotCreateTaskResponse implements i.MMugotCreateTaskResponseInterface {
|
139
|
-
isCreated: boolean;
|
140
|
-
static fromProto(proto: any): MMugotCreateTaskResponse;
|
141
|
-
constructor(kwargs?: i.MMugotCreateTaskResponseInterface);
|
142
|
-
toApiJson(): object;
|
143
|
-
}
|
144
|
-
export declare class MMugotDeleteTaskRequest implements i.MMugotDeleteTaskRequestInterface {
|
145
|
-
taskId: string;
|
146
|
-
static fromProto(proto: any): MMugotDeleteTaskRequest;
|
147
|
-
constructor(kwargs?: i.MMugotDeleteTaskRequestInterface);
|
148
|
-
toApiJson(): object;
|
149
|
-
}
|
150
|
-
export declare class MMugotListTaskRequest implements i.MMugotListTaskRequestInterface {
|
151
|
-
taskId: string;
|
152
|
-
static fromProto(proto: any): MMugotListTaskRequest;
|
153
|
-
constructor(kwargs?: i.MMugotListTaskRequestInterface);
|
154
|
-
toApiJson(): object;
|
155
|
-
}
|
156
|
-
export declare class MMugotListTaskResponse implements i.MMugotListTaskResponseInterface {
|
157
|
-
task: MMugotTask;
|
158
|
-
static fromProto(proto: any): MMugotListTaskResponse;
|
159
|
-
constructor(kwargs?: i.MMugotListTaskResponseInterface);
|
160
|
-
toApiJson(): object;
|
161
|
-
}
|
162
|
-
export declare class MMugotTask implements i.MMugotTaskInterface {
|
163
|
-
taskName: string;
|
164
|
-
taskDescription: string;
|
165
|
-
isComplete: boolean;
|
166
|
-
taskId: string;
|
167
|
-
isDeleted: boolean;
|
168
|
-
static fromProto(proto: any): MMugotTask;
|
169
|
-
constructor(kwargs?: i.MMugotTaskInterface);
|
170
|
-
toApiJson(): object;
|
171
|
-
}
|
172
|
-
export declare class UpdateHdoTodoRequest implements i.UpdateHdoTodoRequestInterface {
|
173
|
-
todo: HdoTodoItem;
|
174
|
-
static fromProto(proto: any): UpdateHdoTodoRequest;
|
175
|
-
constructor(kwargs?: i.UpdateHdoTodoRequestInterface);
|
176
|
-
toApiJson(): object;
|
177
|
-
}
|
178
|
-
export declare class UpdateHdoTodoResponse implements i.UpdateHdoTodoResponseInterface {
|
179
|
-
todo: HdoTodoItem;
|
180
|
-
static fromProto(proto: any): UpdateHdoTodoResponse;
|
181
|
-
constructor(kwargs?: i.UpdateHdoTodoResponseInterface);
|
182
|
-
toApiJson(): object;
|
183
|
-
}
|
@@ -1,77 +0,0 @@
|
|
1
|
-
import * as i from '../interfaces';
|
2
|
-
export declare class TKabakovAddToDoItemRequest implements i.TKabakovAddToDoItemRequestInterface {
|
3
|
-
title: string;
|
4
|
-
description: string;
|
5
|
-
static fromProto(proto: any): TKabakovAddToDoItemRequest;
|
6
|
-
constructor(kwargs?: i.TKabakovAddToDoItemRequestInterface);
|
7
|
-
toApiJson(): object;
|
8
|
-
}
|
9
|
-
export declare class TKabakovAddToDoItemResponse implements i.TKabakovAddToDoItemResponseInterface {
|
10
|
-
todoItem: TKabakovToDoItem;
|
11
|
-
static fromProto(proto: any): TKabakovAddToDoItemResponse;
|
12
|
-
constructor(kwargs?: i.TKabakovAddToDoItemResponseInterface);
|
13
|
-
toApiJson(): object;
|
14
|
-
}
|
15
|
-
export declare class TKabakovDeleteToDoItemRequest implements i.TKabakovDeleteToDoItemRequestInterface {
|
16
|
-
todoId: string;
|
17
|
-
static fromProto(proto: any): TKabakovDeleteToDoItemRequest;
|
18
|
-
constructor(kwargs?: i.TKabakovDeleteToDoItemRequestInterface);
|
19
|
-
toApiJson(): object;
|
20
|
-
}
|
21
|
-
export declare class TKabakovDeleteToDoItemResponse implements i.TKabakovDeleteToDoItemResponseInterface {
|
22
|
-
todoId: string;
|
23
|
-
static fromProto(proto: any): TKabakovDeleteToDoItemResponse;
|
24
|
-
constructor(kwargs?: i.TKabakovDeleteToDoItemResponseInterface);
|
25
|
-
toApiJson(): object;
|
26
|
-
}
|
27
|
-
export declare class TKabakovGetToDoItemRequest implements i.TKabakovGetToDoItemRequestInterface {
|
28
|
-
todoId: string;
|
29
|
-
static fromProto(proto: any): TKabakovGetToDoItemRequest;
|
30
|
-
constructor(kwargs?: i.TKabakovGetToDoItemRequestInterface);
|
31
|
-
toApiJson(): object;
|
32
|
-
}
|
33
|
-
export declare class TKabakovGetToDoItemResponse implements i.TKabakovGetToDoItemResponseInterface {
|
34
|
-
todoItem: TKabakovToDoItem;
|
35
|
-
static fromProto(proto: any): TKabakovGetToDoItemResponse;
|
36
|
-
constructor(kwargs?: i.TKabakovGetToDoItemResponseInterface);
|
37
|
-
toApiJson(): object;
|
38
|
-
}
|
39
|
-
export declare class TKabakovListToDoItemsRequest implements i.TKabakovListToDoItemsRequestInterface {
|
40
|
-
static fromProto(proto: any): TKabakovListToDoItemsRequest;
|
41
|
-
constructor(kwargs?: i.TKabakovListToDoItemsRequestInterface);
|
42
|
-
toApiJson(): object;
|
43
|
-
}
|
44
|
-
export declare class TKabakovListToDoItemsResponse implements i.TKabakovListToDoItemsResponseInterface {
|
45
|
-
todoItems: TKabakovToDoItem[];
|
46
|
-
static fromProto(proto: any): TKabakovListToDoItemsResponse;
|
47
|
-
constructor(kwargs?: i.TKabakovListToDoItemsResponseInterface);
|
48
|
-
toApiJson(): object;
|
49
|
-
}
|
50
|
-
export declare class TKabakovToDoId implements i.TKabakovToDoIdInterface {
|
51
|
-
todoId: string;
|
52
|
-
static fromProto(proto: any): TKabakovToDoId;
|
53
|
-
constructor(kwargs?: i.TKabakovToDoIdInterface);
|
54
|
-
toApiJson(): object;
|
55
|
-
}
|
56
|
-
export declare class TKabakovToDoItem implements i.TKabakovToDoItemInterface {
|
57
|
-
todoId: string;
|
58
|
-
title: string;
|
59
|
-
description: string;
|
60
|
-
isDone: boolean;
|
61
|
-
deleted: boolean;
|
62
|
-
static fromProto(proto: any): TKabakovToDoItem;
|
63
|
-
constructor(kwargs?: i.TKabakovToDoItemInterface);
|
64
|
-
toApiJson(): object;
|
65
|
-
}
|
66
|
-
export declare class TKabakovUpdateToDoItemRequest implements i.TKabakovUpdateToDoItemRequestInterface {
|
67
|
-
todoItem: TKabakovToDoItem;
|
68
|
-
static fromProto(proto: any): TKabakovUpdateToDoItemRequest;
|
69
|
-
constructor(kwargs?: i.TKabakovUpdateToDoItemRequestInterface);
|
70
|
-
toApiJson(): object;
|
71
|
-
}
|
72
|
-
export declare class TKabakovUpdateToDoItemResponse implements i.TKabakovUpdateToDoItemResponseInterface {
|
73
|
-
todoItem: TKabakovToDoItem;
|
74
|
-
static fromProto(proto: any): TKabakovUpdateToDoItemResponse;
|
75
|
-
constructor(kwargs?: i.TKabakovUpdateToDoItemResponseInterface);
|
76
|
-
toApiJson(): object;
|
77
|
-
}
|
@@ -1,20 +0,0 @@
|
|
1
|
-
import { TKabakovAddToDoItemRequest, TKabakovAddToDoItemResponse, TKabakovDeleteToDoItemRequest, TKabakovDeleteToDoItemResponse, TKabakovGetToDoItemRequest, TKabakovGetToDoItemResponse, TKabakovListToDoItemsRequest, TKabakovListToDoItemsResponse, TKabakovUpdateToDoItemRequest, TKabakovUpdateToDoItemResponse } from './objects/';
|
2
|
-
import { TKabakovAddToDoItemRequestInterface, TKabakovDeleteToDoItemRequestInterface, TKabakovGetToDoItemRequestInterface, TKabakovListToDoItemsRequestInterface, TKabakovUpdateToDoItemRequestInterface } 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 TKabakovToDoApiService {
|
8
|
-
private http;
|
9
|
-
private hostService;
|
10
|
-
private _host;
|
11
|
-
constructor(http: HttpClient, hostService: HostService);
|
12
|
-
private apiOptions;
|
13
|
-
tKabakovGetToDoItem(r: TKabakovGetToDoItemRequest | TKabakovGetToDoItemRequestInterface): Observable<TKabakovGetToDoItemResponse>;
|
14
|
-
tKabakovAddToDoItem(r: TKabakovAddToDoItemRequest | TKabakovAddToDoItemRequestInterface): Observable<TKabakovAddToDoItemResponse>;
|
15
|
-
tKabakovDeleteToDoItem(r: TKabakovDeleteToDoItemRequest | TKabakovDeleteToDoItemRequestInterface): Observable<TKabakovDeleteToDoItemResponse>;
|
16
|
-
tKabakovUpdateToDoItem(r: TKabakovUpdateToDoItemRequest | TKabakovUpdateToDoItemRequestInterface): Observable<TKabakovUpdateToDoItemResponse>;
|
17
|
-
tKabakovListToDoItems(r: TKabakovListToDoItemsRequest | TKabakovListToDoItemsRequestInterface): Observable<TKabakovListToDoItemsResponse>;
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TKabakovToDoApiService, never>;
|
19
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<TKabakovToDoApiService>;
|
20
|
-
}
|