@vendasta/developer-training 0.21.0 → 0.22.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/kodland.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/sprajapati.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/kodland.mjs +4 -1
- package/esm2020/lib/_internal/objects/sprajapati.mjs +19 -1
- package/fesm2015/vendasta-developer-training.mjs +21 -0
- package/fesm2015/vendasta-developer-training.mjs.map +1 -1
- package/fesm2020/vendasta-developer-training.mjs +21 -0
- package/fesm2020/vendasta-developer-training.mjs.map +1 -1
- package/lib/_internal/interfaces/kodland.interface.d.ts +1 -0
- package/lib/_internal/interfaces/sprajapati.interface.d.ts +3 -0
- package/lib/_internal/objects/kodland.d.ts +1 -0
- package/lib/_internal/objects/sprajapati.d.ts +3 -0
- package/package.json +1 -1
@@ -3,6 +3,7 @@ export interface SPrajapatiCreateToDoRequestInterface {
|
|
3
3
|
description?: string;
|
4
4
|
completed?: boolean;
|
5
5
|
deleted?: boolean;
|
6
|
+
duedate?: Date;
|
6
7
|
}
|
7
8
|
export interface SPrajapatiCreateToDoResponseInterface {
|
8
9
|
todo?: SPrajapatiToDoInterface;
|
@@ -28,6 +29,7 @@ export interface SPrajapatiToDoInterface {
|
|
28
29
|
description?: string;
|
29
30
|
completed?: boolean;
|
30
31
|
deleted?: boolean;
|
32
|
+
duedate?: Date;
|
31
33
|
}
|
32
34
|
export interface SPrajapatiUpdateToDoRequestInterface {
|
33
35
|
todoId?: string;
|
@@ -35,6 +37,7 @@ export interface SPrajapatiUpdateToDoRequestInterface {
|
|
35
37
|
description?: string;
|
36
38
|
completed?: boolean;
|
37
39
|
deleted?: boolean;
|
40
|
+
duedate?: Date;
|
38
41
|
}
|
39
42
|
export interface SPrajapatiUpdateToDoResponseInterface {
|
40
43
|
todo?: SPrajapatiToDoInterface;
|
@@ -44,6 +44,7 @@ export declare class KOdlandTask implements i.KOdlandTaskInterface {
|
|
44
44
|
taskDueDate: Date;
|
45
45
|
taskDescription: string;
|
46
46
|
taskCompleted: boolean;
|
47
|
+
taskDeleted: boolean;
|
47
48
|
static fromProto(proto: any): KOdlandTask;
|
48
49
|
constructor(kwargs?: i.KOdlandTaskInterface);
|
49
50
|
toApiJson(): object;
|
@@ -5,6 +5,7 @@ export declare class SPrajapatiCreateToDoRequest implements i.SPrajapatiCreateTo
|
|
5
5
|
description: string;
|
6
6
|
completed: boolean;
|
7
7
|
deleted: boolean;
|
8
|
+
duedate: Date;
|
8
9
|
static fromProto(proto: any): SPrajapatiCreateToDoRequest;
|
9
10
|
constructor(kwargs?: i.SPrajapatiCreateToDoRequestInterface);
|
10
11
|
toApiJson(): object;
|
@@ -48,6 +49,7 @@ export declare class SPrajapatiToDo implements i.SPrajapatiToDoInterface {
|
|
48
49
|
description: string;
|
49
50
|
completed: boolean;
|
50
51
|
deleted: boolean;
|
52
|
+
duedate: Date;
|
51
53
|
static fromProto(proto: any): SPrajapatiToDo;
|
52
54
|
constructor(kwargs?: i.SPrajapatiToDoInterface);
|
53
55
|
toApiJson(): object;
|
@@ -58,6 +60,7 @@ export declare class SPrajapatiUpdateToDoRequest implements i.SPrajapatiUpdateTo
|
|
58
60
|
description: string;
|
59
61
|
completed: boolean;
|
60
62
|
deleted: boolean;
|
63
|
+
duedate: Date;
|
61
64
|
static fromProto(proto: any): SPrajapatiUpdateToDoRequest;
|
62
65
|
constructor(kwargs?: i.SPrajapatiUpdateToDoRequestInterface);
|
63
66
|
toApiJson(): object;
|