@vendasta/developer-training 0.28.0 → 0.29.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/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/kodland.interface.mjs +1 -1
- package/esm2020/lib/_internal/k-odland-task.api.service.mjs +7 -2
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/esm2020/lib/_internal/objects/kodland.mjs +44 -1
- package/fesm2015/vendasta-developer-training.mjs +49 -1
- package/fesm2015/vendasta-developer-training.mjs.map +1 -1
- package/fesm2020/vendasta-developer-training.mjs +49 -1
- package/fesm2020/vendasta-developer-training.mjs.map +1 -1
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/interfaces/kodland.interface.d.ts +6 -0
- package/lib/_internal/k-odland-task.api.service.d.ts +3 -2
- package/lib/_internal/objects/index.d.ts +1 -1
- package/lib/_internal/objects/kodland.d.ts +12 -0
- package/package.json +1 -1
@@ -2,7 +2,7 @@ export { FieldMaskInterface, } from './field-mask.interface';
|
|
2
2
|
export { GetBusinessQuestionsAnswersRequestInterface, GetBusinessQuestionsAnswersResponseInterface, QuestionsAnswersInterface, ReplaceBusinessQuestionsAnswersRequestInterface, } from './businessqa.interface';
|
3
3
|
export { AccessInterface, } from './annotations.interface';
|
4
4
|
export { KSinghSandhuCreateTaskRequestInterface, KSinghSandhuCreateTaskResponseInterface, KSinghSandhuDeleteTaskByIdRequestInterface, KSinghSandhuDeleteTaskResponseInterface, KSinghSandhuListTaskRequestInterface, KSinghSandhuListTaskResponseInterface, KSinghSandhuTaskInterface, KSinghSandhuUpdateTaskRequestInterface, KSinghSandhuUpdateTaskResponseInterface, } from './ksinghsandhu.interface';
|
5
|
-
export { KOdlandCreateTaskRequestInterface, KOdlandCreateTaskResponseInterface, KOdlandDeleteTaskRequestInterface, KOdlandDeleteTaskResponseInterface, KOdlandGetTasksRequestInterface, KOdlandGetTasksResponseInterface, KOdlandTaskInterface, } from './kodland.interface';
|
5
|
+
export { KOdlandCreateTaskRequestInterface, KOdlandCreateTaskResponseInterface, KOdlandDeleteTaskRequestInterface, KOdlandDeleteTaskResponseInterface, KOdlandGetTasksRequestInterface, KOdlandGetTasksResponseInterface, KOdlandTaskInterface, KOdlandUpdateTaskRequestInterface, KOdlandUpdateTaskResponseInterface, } from './kodland.interface';
|
6
6
|
export { IAntoshCreateTaskRequestInterface, IAntoshCreateTaskResponseInterface, IAntoshDeleteTaskRequestInterface, IAntoshDeleteTaskResponseInterface, IAntoshGetTaskRequestInterface, IAntoshGetTaskResponseInterface, IAntoshListTasksResponseInterface, IAntoshTaskInterface, IAntoshUpdateTaskRequestInterface, IAntoshUpdateTaskResponseInterface, } from './iantosh.interface';
|
7
7
|
export { HGoyalDeleteTaskRequestInterface, HGoyalGetTasksRequestInterface, HGoyalGetTasksResponseInterface, HGoyalTaskInterface, HGoyalTaskCreateRequestInterface, HGoyalUpdateTaskRequestInterface, } from './hgoyal.interface';
|
8
8
|
export { AOlabenjoAddTodoItemRequestInterface, AOlabenjoAddTodoItemResponseInterface, AOlabenjoDeleteTodoItemRequestInterface, AOlabenjoListTodoItemsRequestInterface, AOlabenjoListTodoItemsResponseInterface, AOlabenjoToDoItemInterface, AOlabenjoUpdateTodoItemRequestInterface, AOlabenjoUpdateTodoItemResponseInterface, } from './aolabenjo.interface';
|
@@ -26,3 +26,9 @@ export interface KOdlandTaskInterface {
|
|
26
26
|
taskCompleted?: boolean;
|
27
27
|
taskDeleted?: boolean;
|
28
28
|
}
|
29
|
+
export interface KOdlandUpdateTaskRequestInterface {
|
30
|
+
task?: KOdlandTaskInterface;
|
31
|
+
}
|
32
|
+
export interface KOdlandUpdateTaskResponseInterface {
|
33
|
+
taskId?: string;
|
34
|
+
}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { KOdlandCreateTaskRequest, KOdlandCreateTaskResponse, KOdlandDeleteTaskRequest, KOdlandDeleteTaskResponse, KOdlandGetTasksRequest, KOdlandGetTasksResponse } from './objects/';
|
2
|
-
import { KOdlandCreateTaskRequestInterface, KOdlandDeleteTaskRequestInterface, KOdlandGetTasksRequestInterface } from './interfaces/';
|
1
|
+
import { KOdlandCreateTaskRequest, KOdlandCreateTaskResponse, KOdlandDeleteTaskRequest, KOdlandDeleteTaskResponse, KOdlandGetTasksRequest, KOdlandGetTasksResponse, KOdlandUpdateTaskRequest, KOdlandUpdateTaskResponse } from './objects/';
|
2
|
+
import { KOdlandCreateTaskRequestInterface, KOdlandDeleteTaskRequestInterface, KOdlandGetTasksRequestInterface, KOdlandUpdateTaskRequestInterface } from './interfaces/';
|
3
3
|
import { Observable } from 'rxjs';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class KOdlandTaskApiService {
|
@@ -10,6 +10,7 @@ export declare class KOdlandTaskApiService {
|
|
10
10
|
kOdlandCreateTask(r: KOdlandCreateTaskRequest | KOdlandCreateTaskRequestInterface): Observable<KOdlandCreateTaskResponse>;
|
11
11
|
kOdlandDeleteTask(r: KOdlandDeleteTaskRequest | KOdlandDeleteTaskRequestInterface): Observable<KOdlandDeleteTaskResponse>;
|
12
12
|
kOdlandGetTasks(r: KOdlandGetTasksRequest | KOdlandGetTasksRequestInterface): Observable<KOdlandGetTasksResponse>;
|
13
|
+
kOdlandUpdateTask(r: KOdlandUpdateTaskRequest | KOdlandUpdateTaskRequestInterface): Observable<KOdlandUpdateTaskResponse>;
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<KOdlandTaskApiService, never>;
|
14
15
|
static ɵprov: i0.ɵɵInjectableDeclaration<KOdlandTaskApiService>;
|
15
16
|
}
|
@@ -2,7 +2,7 @@ export { FieldMask, } from './field-mask';
|
|
2
2
|
export { GetBusinessQuestionsAnswersRequest, GetBusinessQuestionsAnswersResponse, QuestionsAnswers, ReplaceBusinessQuestionsAnswersRequest, } from './businessqa';
|
3
3
|
export { Access, } from './annotations';
|
4
4
|
export { KSinghSandhuCreateTaskRequest, KSinghSandhuCreateTaskResponse, KSinghSandhuDeleteTaskByIdRequest, KSinghSandhuDeleteTaskResponse, KSinghSandhuListTaskRequest, KSinghSandhuListTaskResponse, KSinghSandhuTask, KSinghSandhuUpdateTaskRequest, KSinghSandhuUpdateTaskResponse, } from './ksinghsandhu';
|
5
|
-
export { KOdlandCreateTaskRequest, KOdlandCreateTaskResponse, KOdlandDeleteTaskRequest, KOdlandDeleteTaskResponse, KOdlandGetTasksRequest, KOdlandGetTasksResponse, KOdlandTask, } from './kodland';
|
5
|
+
export { KOdlandCreateTaskRequest, KOdlandCreateTaskResponse, KOdlandDeleteTaskRequest, KOdlandDeleteTaskResponse, KOdlandGetTasksRequest, KOdlandGetTasksResponse, KOdlandTask, KOdlandUpdateTaskRequest, KOdlandUpdateTaskResponse, } from './kodland';
|
6
6
|
export { IAntoshCreateTaskRequest, IAntoshCreateTaskResponse, IAntoshDeleteTaskRequest, IAntoshDeleteTaskResponse, IAntoshGetTaskRequest, IAntoshGetTaskResponse, IAntoshListTasksResponse, IAntoshTask, IAntoshUpdateTaskRequest, IAntoshUpdateTaskResponse, } from './iantosh';
|
7
7
|
export { HGoyalDeleteTaskRequest, HGoyalGetTasksRequest, HGoyalGetTasksResponse, HGoyalTask, HGoyalTaskCreateRequest, HGoyalUpdateTaskRequest, } from './hgoyal';
|
8
8
|
export { AOlabenjoAddTodoItemRequest, AOlabenjoAddTodoItemResponse, AOlabenjoDeleteTodoItemRequest, AOlabenjoListTodoItemsRequest, AOlabenjoListTodoItemsResponse, AOlabenjoToDoItem, AOlabenjoUpdateTodoItemRequest, AOlabenjoUpdateTodoItemResponse, } from './aolabenjo';
|
@@ -49,3 +49,15 @@ export declare class KOdlandTask implements i.KOdlandTaskInterface {
|
|
49
49
|
constructor(kwargs?: i.KOdlandTaskInterface);
|
50
50
|
toApiJson(): object;
|
51
51
|
}
|
52
|
+
export declare class KOdlandUpdateTaskRequest implements i.KOdlandUpdateTaskRequestInterface {
|
53
|
+
task: KOdlandTask;
|
54
|
+
static fromProto(proto: any): KOdlandUpdateTaskRequest;
|
55
|
+
constructor(kwargs?: i.KOdlandUpdateTaskRequestInterface);
|
56
|
+
toApiJson(): object;
|
57
|
+
}
|
58
|
+
export declare class KOdlandUpdateTaskResponse implements i.KOdlandUpdateTaskResponseInterface {
|
59
|
+
taskId: string;
|
60
|
+
static fromProto(proto: any): KOdlandUpdateTaskResponse;
|
61
|
+
constructor(kwargs?: i.KOdlandUpdateTaskResponseInterface);
|
62
|
+
toApiJson(): object;
|
63
|
+
}
|