dart-tools 0.4.5 → 0.4.6
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/dist/index.d.ts +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +44 -0
- package/dist/index.umd.js +44 -0
- package/dist/models/PaginatedCommentList.d.ts +18 -0
- package/dist/models/PaginatedConciseDocList.d.ts +18 -0
- package/dist/models/PaginatedConciseTaskList.d.ts +18 -0
- package/dist/models/TaskMove.d.ts +10 -0
- package/dist/models/TaskMove.js +3 -0
- package/dist/models/TaskMove.js.map +1 -0
- package/dist/models/TaskTimeTrackingCreate.d.ts +14 -0
- package/dist/models/TaskTimeTrackingCreate.js +3 -0
- package/dist/models/TaskTimeTrackingCreate.js.map +1 -0
- package/dist/services/TaskService.d.ts +20 -0
- package/dist/services/TaskService.js +44 -0
- package/dist/services/TaskService.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -22,7 +22,9 @@ export { Priority } from "./models/Priority";
|
|
|
22
22
|
export type { Skill } from "./models/Skill";
|
|
23
23
|
export type { Task } from "./models/Task";
|
|
24
24
|
export type { TaskCreate } from "./models/TaskCreate";
|
|
25
|
+
export type { TaskMove } from "./models/TaskMove";
|
|
25
26
|
export type { TaskRelationships } from "./models/TaskRelationships";
|
|
27
|
+
export type { TaskTimeTrackingCreate } from "./models/TaskTimeTrackingCreate";
|
|
26
28
|
export type { TaskUpdate } from "./models/TaskUpdate";
|
|
27
29
|
export type { TimeTracking } from "./models/TimeTracking";
|
|
28
30
|
export type { TimeTrackingEntry } from "./models/TimeTrackingEntry";
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../dart/generated/index.ts"],"names":[],"mappings":";;;AAAA,+DAA+D;AAC/D,0BAA0B;AAC1B,oBAAoB;AACpB,oBAAoB;AACpB,4CAA2C;AAAlC,oGAAA,QAAQ,OAAA;AACjB,8DAA0E;AAAjE,sHAAA,iBAAiB,OAAA;AAAE,gHAAA,WAAW,OAAA;AACvC,0CAAyC;AAAhC,kGAAA,OAAO,OAAA;AAmBhB,8CAA6C;AAApC,oGAAA,QAAQ,OAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../dart/generated/index.ts"],"names":[],"mappings":";;;AAAA,+DAA+D;AAC/D,0BAA0B;AAC1B,oBAAoB;AACpB,oBAAoB;AACpB,4CAA2C;AAAlC,oGAAA,QAAQ,OAAA;AACjB,8DAA0E;AAAjE,sHAAA,iBAAiB,OAAA;AAAE,gHAAA,WAAW,OAAA;AACvC,0CAAyC;AAAhC,kGAAA,OAAO,OAAA;AAmBhB,8CAA6C;AAApC,oGAAA,QAAQ,OAAA;AA2BjB,kEAAiE;AAAxD,sHAAA,iBAAiB,OAAA;AAC1B,4DAA2D;AAAlD,gHAAA,cAAc,OAAA;AACvB,0DAAyD;AAAhD,8GAAA,aAAa,OAAA;AACtB,gEAA+D;AAAtD,oHAAA,gBAAgB,OAAA;AACzB,oDAAmD;AAA1C,wGAAA,UAAU,OAAA;AACnB,0DAAyD;AAAhD,8GAAA,aAAa,OAAA;AACtB,gFAA+E;AAAtE,oIAAA,wBAAwB,OAAA;AACjC,wDAAuD;AAA9C,4GAAA,YAAY,OAAA;AACrB,sDAAqD;AAA5C,0GAAA,WAAW,OAAA;AACpB,sDAAqD;AAA5C,0GAAA,WAAW,OAAA"}
|
package/dist/index.mjs
CHANGED
|
@@ -810,6 +810,50 @@ class TaskService {
|
|
|
810
810
|
},
|
|
811
811
|
});
|
|
812
812
|
}
|
|
813
|
+
/**
|
|
814
|
+
* Move a task within its dartboard
|
|
815
|
+
* Move a task to a specific position within results sorted by the order field. Use afterTaskId to place the task after a specific task, or beforeTaskId to place it before one.
|
|
816
|
+
* @param id
|
|
817
|
+
* @param requestBody
|
|
818
|
+
* @returns WrappedTask Success, including the updated task with its new ordering
|
|
819
|
+
* @throws ApiError
|
|
820
|
+
*/
|
|
821
|
+
static moveTask(id, requestBody) {
|
|
822
|
+
return request(OpenAPI, {
|
|
823
|
+
method: "POST",
|
|
824
|
+
url: "/tasks/{id}/move",
|
|
825
|
+
path: {
|
|
826
|
+
id: id,
|
|
827
|
+
},
|
|
828
|
+
body: requestBody,
|
|
829
|
+
mediaType: "application/json",
|
|
830
|
+
errors: {
|
|
831
|
+
400: `Invalid request, including the errors`,
|
|
832
|
+
},
|
|
833
|
+
});
|
|
834
|
+
}
|
|
835
|
+
/**
|
|
836
|
+
* Add a time tracking entry to a task
|
|
837
|
+
* Record an additional time tracking entry on a task and return the updated task with refreshed time tracking.
|
|
838
|
+
* @param id
|
|
839
|
+
* @param requestBody
|
|
840
|
+
* @returns WrappedTask Success, including the updated task with refreshed time tracking
|
|
841
|
+
* @throws ApiError
|
|
842
|
+
*/
|
|
843
|
+
static addTaskTimeTracking(id, requestBody) {
|
|
844
|
+
return request(OpenAPI, {
|
|
845
|
+
method: "POST",
|
|
846
|
+
url: "/tasks/{id}/time-tracking",
|
|
847
|
+
path: {
|
|
848
|
+
id: id,
|
|
849
|
+
},
|
|
850
|
+
body: requestBody,
|
|
851
|
+
mediaType: "application/json",
|
|
852
|
+
errors: {
|
|
853
|
+
400: `Invalid request, including the errors`,
|
|
854
|
+
},
|
|
855
|
+
});
|
|
856
|
+
}
|
|
813
857
|
/**
|
|
814
858
|
* List tasks with powerful filtering options. Filter by dartboard, status, assignee, tags, priority, dates, completion state, view, and more. Supports pagination with limit/offset.
|
|
815
859
|
* @returns PaginatedConciseTaskList
|
package/dist/index.umd.js
CHANGED
|
@@ -813,6 +813,50 @@
|
|
|
813
813
|
},
|
|
814
814
|
});
|
|
815
815
|
}
|
|
816
|
+
/**
|
|
817
|
+
* Move a task within its dartboard
|
|
818
|
+
* Move a task to a specific position within results sorted by the order field. Use afterTaskId to place the task after a specific task, or beforeTaskId to place it before one.
|
|
819
|
+
* @param id
|
|
820
|
+
* @param requestBody
|
|
821
|
+
* @returns WrappedTask Success, including the updated task with its new ordering
|
|
822
|
+
* @throws ApiError
|
|
823
|
+
*/
|
|
824
|
+
static moveTask(id, requestBody) {
|
|
825
|
+
return request(OpenAPI, {
|
|
826
|
+
method: "POST",
|
|
827
|
+
url: "/tasks/{id}/move",
|
|
828
|
+
path: {
|
|
829
|
+
id: id,
|
|
830
|
+
},
|
|
831
|
+
body: requestBody,
|
|
832
|
+
mediaType: "application/json",
|
|
833
|
+
errors: {
|
|
834
|
+
400: `Invalid request, including the errors`,
|
|
835
|
+
},
|
|
836
|
+
});
|
|
837
|
+
}
|
|
838
|
+
/**
|
|
839
|
+
* Add a time tracking entry to a task
|
|
840
|
+
* Record an additional time tracking entry on a task and return the updated task with refreshed time tracking.
|
|
841
|
+
* @param id
|
|
842
|
+
* @param requestBody
|
|
843
|
+
* @returns WrappedTask Success, including the updated task with refreshed time tracking
|
|
844
|
+
* @throws ApiError
|
|
845
|
+
*/
|
|
846
|
+
static addTaskTimeTracking(id, requestBody) {
|
|
847
|
+
return request(OpenAPI, {
|
|
848
|
+
method: "POST",
|
|
849
|
+
url: "/tasks/{id}/time-tracking",
|
|
850
|
+
path: {
|
|
851
|
+
id: id,
|
|
852
|
+
},
|
|
853
|
+
body: requestBody,
|
|
854
|
+
mediaType: "application/json",
|
|
855
|
+
errors: {
|
|
856
|
+
400: `Invalid request, including the errors`,
|
|
857
|
+
},
|
|
858
|
+
});
|
|
859
|
+
}
|
|
816
860
|
/**
|
|
817
861
|
* List tasks with powerful filtering options. Filter by dartboard, status, assignee, tags, priority, dates, completion state, view, and more. Supports pagination with limit/offset.
|
|
818
862
|
* @returns PaginatedConciseTaskList
|
|
@@ -4,4 +4,22 @@ export type PaginatedCommentList = {
|
|
|
4
4
|
next?: string | null;
|
|
5
5
|
previous?: string | null;
|
|
6
6
|
results: Array<Comment>;
|
|
7
|
+
meta?: {
|
|
8
|
+
/**
|
|
9
|
+
* Whether default filters or ordering were applied to the response.
|
|
10
|
+
*/
|
|
11
|
+
defaultsApplied?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* The default filters that were applied automatically, if any.
|
|
14
|
+
*/
|
|
15
|
+
appliedDefaultFilters?: Record<string, string>;
|
|
16
|
+
/**
|
|
17
|
+
* The default ordering fields that were applied automatically, if any.
|
|
18
|
+
*/
|
|
19
|
+
appliedDefaultSorts?: Array<string>;
|
|
20
|
+
/**
|
|
21
|
+
* Guidance on how to disable or override default filters and ordering.
|
|
22
|
+
*/
|
|
23
|
+
instructions?: string;
|
|
24
|
+
} | null;
|
|
7
25
|
};
|
|
@@ -4,4 +4,22 @@ export type PaginatedConciseDocList = {
|
|
|
4
4
|
next?: string | null;
|
|
5
5
|
previous?: string | null;
|
|
6
6
|
results: Array<ConciseDoc>;
|
|
7
|
+
meta?: {
|
|
8
|
+
/**
|
|
9
|
+
* Whether default filters or ordering were applied to the response.
|
|
10
|
+
*/
|
|
11
|
+
defaultsApplied?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* The default filters that were applied automatically, if any.
|
|
14
|
+
*/
|
|
15
|
+
appliedDefaultFilters?: Record<string, string>;
|
|
16
|
+
/**
|
|
17
|
+
* The default ordering fields that were applied automatically, if any.
|
|
18
|
+
*/
|
|
19
|
+
appliedDefaultSorts?: Array<string>;
|
|
20
|
+
/**
|
|
21
|
+
* Guidance on how to disable or override default filters and ordering.
|
|
22
|
+
*/
|
|
23
|
+
instructions?: string;
|
|
24
|
+
} | null;
|
|
7
25
|
};
|
|
@@ -4,4 +4,22 @@ export type PaginatedConciseTaskList = {
|
|
|
4
4
|
next?: string | null;
|
|
5
5
|
previous?: string | null;
|
|
6
6
|
results: Array<ConciseTask>;
|
|
7
|
+
meta?: {
|
|
8
|
+
/**
|
|
9
|
+
* Whether default filters or ordering were applied to the response.
|
|
10
|
+
*/
|
|
11
|
+
defaultsApplied?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* The default filters that were applied automatically, if any.
|
|
14
|
+
*/
|
|
15
|
+
appliedDefaultFilters?: Record<string, string>;
|
|
16
|
+
/**
|
|
17
|
+
* The default ordering fields that were applied automatically, if any.
|
|
18
|
+
*/
|
|
19
|
+
appliedDefaultSorts?: Array<string>;
|
|
20
|
+
/**
|
|
21
|
+
* Guidance on how to disable or override default filters and ordering.
|
|
22
|
+
*/
|
|
23
|
+
instructions?: string;
|
|
24
|
+
} | null;
|
|
7
25
|
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export type TaskMove = {
|
|
2
|
+
/**
|
|
3
|
+
* Move the task immediately before this task. For example: if tasks are [A, B, C], then beforeTaskId=B produces [A, moved_task, B, C]. Use null to move to the beginning (first position).
|
|
4
|
+
*/
|
|
5
|
+
beforeTaskId?: string | null;
|
|
6
|
+
/**
|
|
7
|
+
* Move the task immediately after this task. For example: if tasks are [A, B, C], then afterTaskId=B produces [A, B, moved_task, C]. Use null to move to the end (last position).
|
|
8
|
+
*/
|
|
9
|
+
afterTaskId?: string | null;
|
|
10
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TaskMove.js","sourceRoot":"","sources":["../../dart/generated/models/TaskMove.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export type TaskTimeTrackingCreate = {
|
|
2
|
+
/**
|
|
3
|
+
* The name or email of the user to attribute the tracked time to or null to use the current user.
|
|
4
|
+
*/
|
|
5
|
+
user: string | null;
|
|
6
|
+
/**
|
|
7
|
+
* The start timestamp for the tracked time entry in ISO 8601 format.
|
|
8
|
+
*/
|
|
9
|
+
startedAt: string;
|
|
10
|
+
/**
|
|
11
|
+
* The end timestamp for the tracked time entry in ISO 8601 format. Must be after the start time.
|
|
12
|
+
*/
|
|
13
|
+
finishedAt: string;
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TaskTimeTrackingCreate.js","sourceRoot":"","sources":["../../dart/generated/models/TaskTimeTrackingCreate.ts"],"names":[],"mappings":""}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import type { PaginatedConciseTaskList } from "../models/PaginatedConciseTaskList";
|
|
2
|
+
import type { TaskMove } from "../models/TaskMove";
|
|
3
|
+
import type { TaskTimeTrackingCreate } from "../models/TaskTimeTrackingCreate";
|
|
2
4
|
import type { WrappedTask } from "../models/WrappedTask";
|
|
3
5
|
import type { WrappedTaskCreate } from "../models/WrappedTaskCreate";
|
|
4
6
|
import type { WrappedTaskUpdate } from "../models/WrappedTaskUpdate";
|
|
@@ -37,6 +39,24 @@ export declare class TaskService {
|
|
|
37
39
|
* @throws ApiError
|
|
38
40
|
*/
|
|
39
41
|
static deleteTask(id: string): CancelablePromise<WrappedTask>;
|
|
42
|
+
/**
|
|
43
|
+
* Move a task within its dartboard
|
|
44
|
+
* Move a task to a specific position within results sorted by the order field. Use afterTaskId to place the task after a specific task, or beforeTaskId to place it before one.
|
|
45
|
+
* @param id
|
|
46
|
+
* @param requestBody
|
|
47
|
+
* @returns WrappedTask Success, including the updated task with its new ordering
|
|
48
|
+
* @throws ApiError
|
|
49
|
+
*/
|
|
50
|
+
static moveTask(id: string, requestBody?: TaskMove): CancelablePromise<WrappedTask>;
|
|
51
|
+
/**
|
|
52
|
+
* Add a time tracking entry to a task
|
|
53
|
+
* Record an additional time tracking entry on a task and return the updated task with refreshed time tracking.
|
|
54
|
+
* @param id
|
|
55
|
+
* @param requestBody
|
|
56
|
+
* @returns WrappedTask Success, including the updated task with refreshed time tracking
|
|
57
|
+
* @throws ApiError
|
|
58
|
+
*/
|
|
59
|
+
static addTaskTimeTracking(id: string, requestBody: TaskTimeTrackingCreate): CancelablePromise<WrappedTask>;
|
|
40
60
|
/**
|
|
41
61
|
* List tasks with powerful filtering options. Filter by dartboard, status, assignee, tags, priority, dates, completion state, view, and more. Supports pagination with limit/offset.
|
|
42
62
|
* @returns PaginatedConciseTaskList
|
|
@@ -82,6 +82,50 @@ class TaskService {
|
|
|
82
82
|
},
|
|
83
83
|
});
|
|
84
84
|
}
|
|
85
|
+
/**
|
|
86
|
+
* Move a task within its dartboard
|
|
87
|
+
* Move a task to a specific position within results sorted by the order field. Use afterTaskId to place the task after a specific task, or beforeTaskId to place it before one.
|
|
88
|
+
* @param id
|
|
89
|
+
* @param requestBody
|
|
90
|
+
* @returns WrappedTask Success, including the updated task with its new ordering
|
|
91
|
+
* @throws ApiError
|
|
92
|
+
*/
|
|
93
|
+
static moveTask(id, requestBody) {
|
|
94
|
+
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
95
|
+
method: "POST",
|
|
96
|
+
url: "/tasks/{id}/move",
|
|
97
|
+
path: {
|
|
98
|
+
id: id,
|
|
99
|
+
},
|
|
100
|
+
body: requestBody,
|
|
101
|
+
mediaType: "application/json",
|
|
102
|
+
errors: {
|
|
103
|
+
400: `Invalid request, including the errors`,
|
|
104
|
+
},
|
|
105
|
+
});
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Add a time tracking entry to a task
|
|
109
|
+
* Record an additional time tracking entry on a task and return the updated task with refreshed time tracking.
|
|
110
|
+
* @param id
|
|
111
|
+
* @param requestBody
|
|
112
|
+
* @returns WrappedTask Success, including the updated task with refreshed time tracking
|
|
113
|
+
* @throws ApiError
|
|
114
|
+
*/
|
|
115
|
+
static addTaskTimeTracking(id, requestBody) {
|
|
116
|
+
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
117
|
+
method: "POST",
|
|
118
|
+
url: "/tasks/{id}/time-tracking",
|
|
119
|
+
path: {
|
|
120
|
+
id: id,
|
|
121
|
+
},
|
|
122
|
+
body: requestBody,
|
|
123
|
+
mediaType: "application/json",
|
|
124
|
+
errors: {
|
|
125
|
+
400: `Invalid request, including the errors`,
|
|
126
|
+
},
|
|
127
|
+
});
|
|
128
|
+
}
|
|
85
129
|
/**
|
|
86
130
|
* List tasks with powerful filtering options. Filter by dartboard, status, assignee, tags, priority, dates, completion state, view, and more. Supports pagination with limit/offset.
|
|
87
131
|
* @returns PaginatedConciseTaskList
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TaskService.js","sourceRoot":"","sources":["../../dart/generated/services/TaskService.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"TaskService.js","sourceRoot":"","sources":["../../dart/generated/services/TaskService.ts"],"names":[],"mappings":"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"}
|