dart-tools 0.8.3__py3-none-any.whl → 0.8.5__py3-none-any.whl
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.
Potentially problematic release.
This version of dart-tools might be problematic. Click here for more details.
- dart/dart.py +1 -1
- dart/generated/api/__init__.py +1 -0
- dart/generated/api/attachment/__init__.py +1 -0
- dart/generated/api/attachment/add_task_attachment_from_url.py +190 -0
- dart/generated/api/doc/list_docs.py +30 -0
- dart/generated/api/task/list_tasks.py +206 -0
- dart/generated/models/__init__.py +4 -0
- dart/generated/models/attachment_create_from_url.py +67 -0
- dart/generated/models/concise_task.py +58 -0
- dart/generated/models/list_docs_o_item.py +5 -3
- dart/generated/models/list_tasks_o_item.py +17 -0
- dart/generated/models/task.py +58 -0
- {dart_tools-0.8.3.dist-info → dart_tools-0.8.5.dist-info}/METADATA +1 -1
- {dart_tools-0.8.3.dist-info → dart_tools-0.8.5.dist-info}/RECORD +18 -14
- {dart_tools-0.8.3.dist-info → dart_tools-0.8.5.dist-info}/WHEEL +0 -0
- {dart_tools-0.8.3.dist-info → dart_tools-0.8.5.dist-info}/entry_points.txt +0 -0
- {dart_tools-0.8.3.dist-info → dart_tools-0.8.5.dist-info}/licenses/LICENSE +0 -0
- {dart_tools-0.8.3.dist-info → dart_tools-0.8.5.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import datetime
|
|
1
2
|
from collections.abc import Mapping
|
|
2
3
|
from typing import TYPE_CHECKING, Any, TypeVar, Union, cast
|
|
3
4
|
|
|
4
5
|
from attrs import define as _attrs_define
|
|
5
6
|
from attrs import field as _attrs_field
|
|
7
|
+
from dateutil.parser import isoparse
|
|
6
8
|
|
|
7
9
|
from ..models.priority import Priority
|
|
8
10
|
from ..types import UNSET, Unset
|
|
@@ -28,6 +30,8 @@ class ConciseTask:
|
|
|
28
30
|
dartboard (str): The full title of the dartboard, which is a project or list of tasks.
|
|
29
31
|
type_ (str): The title of the type of the task.
|
|
30
32
|
status (str): The status from the list of available statuses.
|
|
33
|
+
created_at (datetime.datetime): The date and time when the task was created in ISO format.
|
|
34
|
+
updated_at (datetime.datetime): The date and time when the task was last updated in ISO format.
|
|
31
35
|
assignees (Union[None, Unset, list[str]]): The names or emails of the users that the task is assigned to. Either
|
|
32
36
|
this or assignee must be included, depending on whether the workspaces allows multiple assignees or not.
|
|
33
37
|
assignee (Union[None, Unset, str]): The name or email of the user that the task is assigned to. Either this or
|
|
@@ -47,6 +51,8 @@ class ConciseTask:
|
|
|
47
51
|
on the task in hh:mm:ss format (or an empty string if no time has been tracked).
|
|
48
52
|
custom_properties (Union['CustomProperties', None, Unset]): The custom properties, which is a dict of custom
|
|
49
53
|
properties that are associated with the task.
|
|
54
|
+
created_by (Union[None, Unset, str]): The name or email (moniker) of the user that created the task.
|
|
55
|
+
updated_by (Union[None, Unset, str]): The name or email (moniker) of the user that last updated the task.
|
|
50
56
|
"""
|
|
51
57
|
|
|
52
58
|
id: str
|
|
@@ -56,6 +62,8 @@ class ConciseTask:
|
|
|
56
62
|
dartboard: str
|
|
57
63
|
type_: str
|
|
58
64
|
status: str
|
|
65
|
+
created_at: datetime.datetime
|
|
66
|
+
updated_at: datetime.datetime
|
|
59
67
|
assignees: Union[None, Unset, list[str]] = UNSET
|
|
60
68
|
assignee: Union[None, Unset, str] = UNSET
|
|
61
69
|
tags: Union[Unset, list[str]] = UNSET
|
|
@@ -65,6 +73,8 @@ class ConciseTask:
|
|
|
65
73
|
size: Union[None, Unset, int, str] = UNSET
|
|
66
74
|
time_tracking: Union[Unset, str] = UNSET
|
|
67
75
|
custom_properties: Union["CustomProperties", None, Unset] = UNSET
|
|
76
|
+
created_by: Union[None, Unset, str] = UNSET
|
|
77
|
+
updated_by: Union[None, Unset, str] = UNSET
|
|
68
78
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
69
79
|
|
|
70
80
|
def to_dict(self) -> dict[str, Any]:
|
|
@@ -85,6 +95,10 @@ class ConciseTask:
|
|
|
85
95
|
|
|
86
96
|
status = self.status
|
|
87
97
|
|
|
98
|
+
created_at = self.created_at.isoformat()
|
|
99
|
+
|
|
100
|
+
updated_at = self.updated_at.isoformat()
|
|
101
|
+
|
|
88
102
|
assignees: Union[None, Unset, list[str]]
|
|
89
103
|
if isinstance(self.assignees, Unset):
|
|
90
104
|
assignees = UNSET
|
|
@@ -140,6 +154,18 @@ class ConciseTask:
|
|
|
140
154
|
else:
|
|
141
155
|
custom_properties = self.custom_properties
|
|
142
156
|
|
|
157
|
+
created_by: Union[None, Unset, str]
|
|
158
|
+
if isinstance(self.created_by, Unset):
|
|
159
|
+
created_by = UNSET
|
|
160
|
+
else:
|
|
161
|
+
created_by = self.created_by
|
|
162
|
+
|
|
163
|
+
updated_by: Union[None, Unset, str]
|
|
164
|
+
if isinstance(self.updated_by, Unset):
|
|
165
|
+
updated_by = UNSET
|
|
166
|
+
else:
|
|
167
|
+
updated_by = self.updated_by
|
|
168
|
+
|
|
143
169
|
field_dict: dict[str, Any] = {}
|
|
144
170
|
field_dict.update(self.additional_properties)
|
|
145
171
|
field_dict.update(
|
|
@@ -151,6 +177,8 @@ class ConciseTask:
|
|
|
151
177
|
"dartboard": dartboard,
|
|
152
178
|
"type": type_,
|
|
153
179
|
"status": status,
|
|
180
|
+
"createdAt": created_at,
|
|
181
|
+
"updatedAt": updated_at,
|
|
154
182
|
}
|
|
155
183
|
)
|
|
156
184
|
if assignees is not UNSET:
|
|
@@ -171,6 +199,10 @@ class ConciseTask:
|
|
|
171
199
|
field_dict["timeTracking"] = time_tracking
|
|
172
200
|
if custom_properties is not UNSET:
|
|
173
201
|
field_dict["customProperties"] = custom_properties
|
|
202
|
+
if created_by is not UNSET:
|
|
203
|
+
field_dict["createdBy"] = created_by
|
|
204
|
+
if updated_by is not UNSET:
|
|
205
|
+
field_dict["updatedBy"] = updated_by
|
|
174
206
|
|
|
175
207
|
return field_dict
|
|
176
208
|
|
|
@@ -198,6 +230,10 @@ class ConciseTask:
|
|
|
198
230
|
|
|
199
231
|
status = d.pop("status")
|
|
200
232
|
|
|
233
|
+
created_at = isoparse(d.pop("createdAt"))
|
|
234
|
+
|
|
235
|
+
updated_at = isoparse(d.pop("updatedAt"))
|
|
236
|
+
|
|
201
237
|
def _parse_assignees(data: object) -> Union[None, Unset, list[str]]:
|
|
202
238
|
if data is None:
|
|
203
239
|
return data
|
|
@@ -291,6 +327,24 @@ class ConciseTask:
|
|
|
291
327
|
|
|
292
328
|
custom_properties = _parse_custom_properties(d.pop("customProperties", UNSET))
|
|
293
329
|
|
|
330
|
+
def _parse_created_by(data: object) -> Union[None, Unset, str]:
|
|
331
|
+
if data is None:
|
|
332
|
+
return data
|
|
333
|
+
if isinstance(data, Unset):
|
|
334
|
+
return data
|
|
335
|
+
return cast(Union[None, Unset, str], data)
|
|
336
|
+
|
|
337
|
+
created_by = _parse_created_by(d.pop("createdBy", UNSET))
|
|
338
|
+
|
|
339
|
+
def _parse_updated_by(data: object) -> Union[None, Unset, str]:
|
|
340
|
+
if data is None:
|
|
341
|
+
return data
|
|
342
|
+
if isinstance(data, Unset):
|
|
343
|
+
return data
|
|
344
|
+
return cast(Union[None, Unset, str], data)
|
|
345
|
+
|
|
346
|
+
updated_by = _parse_updated_by(d.pop("updatedBy", UNSET))
|
|
347
|
+
|
|
294
348
|
concise_task = cls(
|
|
295
349
|
id=id,
|
|
296
350
|
html_url=html_url,
|
|
@@ -299,6 +353,8 @@ class ConciseTask:
|
|
|
299
353
|
dartboard=dartboard,
|
|
300
354
|
type_=type_,
|
|
301
355
|
status=status,
|
|
356
|
+
created_at=created_at,
|
|
357
|
+
updated_at=updated_at,
|
|
302
358
|
assignees=assignees,
|
|
303
359
|
assignee=assignee,
|
|
304
360
|
tags=tags,
|
|
@@ -308,6 +364,8 @@ class ConciseTask:
|
|
|
308
364
|
size=size,
|
|
309
365
|
time_tracking=time_tracking,
|
|
310
366
|
custom_properties=custom_properties,
|
|
367
|
+
created_by=created_by,
|
|
368
|
+
updated_by=updated_by,
|
|
311
369
|
)
|
|
312
370
|
|
|
313
371
|
concise_task.additional_properties = d
|
|
@@ -3,13 +3,15 @@ from enum import Enum
|
|
|
3
3
|
|
|
4
4
|
class ListDocsOItem(str, Enum):
|
|
5
5
|
CREATED_AT = "created_at"
|
|
6
|
+
FOLDER_ORDER = "folder__order"
|
|
6
7
|
ORDER = "order"
|
|
7
8
|
TITLE = "title"
|
|
8
9
|
UPDATED_AT = "updated_at"
|
|
9
10
|
VALUE_0 = "-created_at"
|
|
10
|
-
VALUE_1 = "-
|
|
11
|
-
VALUE_2 = "-
|
|
12
|
-
VALUE_3 = "-
|
|
11
|
+
VALUE_1 = "-folder__order"
|
|
12
|
+
VALUE_2 = "-order"
|
|
13
|
+
VALUE_3 = "-title"
|
|
14
|
+
VALUE_4 = "-updated_at"
|
|
13
15
|
|
|
14
16
|
def __str__(self) -> str:
|
|
15
17
|
return str(self.value)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from enum import Enum
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class ListTasksOItem(str, Enum):
|
|
5
|
+
CREATED_AT = "created_at"
|
|
6
|
+
DARTBOARD_ORDER = "dartboard__order"
|
|
7
|
+
ORDER = "order"
|
|
8
|
+
TITLE = "title"
|
|
9
|
+
UPDATED_AT = "updated_at"
|
|
10
|
+
VALUE_0 = "-created_at"
|
|
11
|
+
VALUE_1 = "-dartboard__order"
|
|
12
|
+
VALUE_2 = "-order"
|
|
13
|
+
VALUE_3 = "-title"
|
|
14
|
+
VALUE_4 = "-updated_at"
|
|
15
|
+
|
|
16
|
+
def __str__(self) -> str:
|
|
17
|
+
return str(self.value)
|
dart/generated/models/task.py
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import datetime
|
|
1
2
|
from collections.abc import Mapping
|
|
2
3
|
from typing import TYPE_CHECKING, Any, TypeVar, Union, cast
|
|
3
4
|
|
|
4
5
|
from attrs import define as _attrs_define
|
|
5
6
|
from attrs import field as _attrs_field
|
|
7
|
+
from dateutil.parser import isoparse
|
|
6
8
|
|
|
7
9
|
from ..models.priority import Priority
|
|
8
10
|
from ..types import UNSET, Unset
|
|
@@ -32,6 +34,8 @@ class Task:
|
|
|
32
34
|
description (str): A longer description of the task, which can include markdown formatting.
|
|
33
35
|
attachments (list['Attachment']): The attachments, which is a list of attachments that are associated with the
|
|
34
36
|
task.
|
|
37
|
+
created_at (datetime.datetime): The date and time when the task was created in ISO format.
|
|
38
|
+
updated_at (datetime.datetime): The date and time when the task was last updated in ISO format.
|
|
35
39
|
assignees (Union[None, Unset, list[str]]): The names or emails of the users that the task is assigned to. Either
|
|
36
40
|
this or assignee must be included, depending on whether the workspaces allows multiple assignees or not.
|
|
37
41
|
assignee (Union[None, Unset, str]): The name or email of the user that the task is assigned to. Either this or
|
|
@@ -52,6 +56,8 @@ class Task:
|
|
|
52
56
|
custom_properties (Union['CustomProperties', None, Unset]): The custom properties, which is a dict of custom
|
|
53
57
|
properties that are associated with the task.
|
|
54
58
|
task_relationships (Union['TaskRelationshipsType0', None, Unset]): The relationships associated with the task.
|
|
59
|
+
created_by (Union[None, Unset, str]): The name or email (moniker) of the user that created the task.
|
|
60
|
+
updated_by (Union[None, Unset, str]): The name or email (moniker) of the user that last updated the task.
|
|
55
61
|
"""
|
|
56
62
|
|
|
57
63
|
id: str
|
|
@@ -63,6 +69,8 @@ class Task:
|
|
|
63
69
|
status: str
|
|
64
70
|
description: str
|
|
65
71
|
attachments: list["Attachment"]
|
|
72
|
+
created_at: datetime.datetime
|
|
73
|
+
updated_at: datetime.datetime
|
|
66
74
|
assignees: Union[None, Unset, list[str]] = UNSET
|
|
67
75
|
assignee: Union[None, Unset, str] = UNSET
|
|
68
76
|
tags: Union[Unset, list[str]] = UNSET
|
|
@@ -73,6 +81,8 @@ class Task:
|
|
|
73
81
|
time_tracking: Union[Unset, str] = UNSET
|
|
74
82
|
custom_properties: Union["CustomProperties", None, Unset] = UNSET
|
|
75
83
|
task_relationships: Union["TaskRelationshipsType0", None, Unset] = UNSET
|
|
84
|
+
created_by: Union[None, Unset, str] = UNSET
|
|
85
|
+
updated_by: Union[None, Unset, str] = UNSET
|
|
76
86
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
77
87
|
|
|
78
88
|
def to_dict(self) -> dict[str, Any]:
|
|
@@ -101,6 +111,10 @@ class Task:
|
|
|
101
111
|
attachments_item = attachments_item_data.to_dict()
|
|
102
112
|
attachments.append(attachments_item)
|
|
103
113
|
|
|
114
|
+
created_at = self.created_at.isoformat()
|
|
115
|
+
|
|
116
|
+
updated_at = self.updated_at.isoformat()
|
|
117
|
+
|
|
104
118
|
assignees: Union[None, Unset, list[str]]
|
|
105
119
|
if isinstance(self.assignees, Unset):
|
|
106
120
|
assignees = UNSET
|
|
@@ -164,6 +178,18 @@ class Task:
|
|
|
164
178
|
else:
|
|
165
179
|
task_relationships = self.task_relationships
|
|
166
180
|
|
|
181
|
+
created_by: Union[None, Unset, str]
|
|
182
|
+
if isinstance(self.created_by, Unset):
|
|
183
|
+
created_by = UNSET
|
|
184
|
+
else:
|
|
185
|
+
created_by = self.created_by
|
|
186
|
+
|
|
187
|
+
updated_by: Union[None, Unset, str]
|
|
188
|
+
if isinstance(self.updated_by, Unset):
|
|
189
|
+
updated_by = UNSET
|
|
190
|
+
else:
|
|
191
|
+
updated_by = self.updated_by
|
|
192
|
+
|
|
167
193
|
field_dict: dict[str, Any] = {}
|
|
168
194
|
field_dict.update(self.additional_properties)
|
|
169
195
|
field_dict.update(
|
|
@@ -177,6 +203,8 @@ class Task:
|
|
|
177
203
|
"status": status,
|
|
178
204
|
"description": description,
|
|
179
205
|
"attachments": attachments,
|
|
206
|
+
"createdAt": created_at,
|
|
207
|
+
"updatedAt": updated_at,
|
|
180
208
|
}
|
|
181
209
|
)
|
|
182
210
|
if assignees is not UNSET:
|
|
@@ -199,6 +227,10 @@ class Task:
|
|
|
199
227
|
field_dict["customProperties"] = custom_properties
|
|
200
228
|
if task_relationships is not UNSET:
|
|
201
229
|
field_dict["taskRelationships"] = task_relationships
|
|
230
|
+
if created_by is not UNSET:
|
|
231
|
+
field_dict["createdBy"] = created_by
|
|
232
|
+
if updated_by is not UNSET:
|
|
233
|
+
field_dict["updatedBy"] = updated_by
|
|
202
234
|
|
|
203
235
|
return field_dict
|
|
204
236
|
|
|
@@ -237,6 +269,10 @@ class Task:
|
|
|
237
269
|
|
|
238
270
|
attachments.append(attachments_item)
|
|
239
271
|
|
|
272
|
+
created_at = isoparse(d.pop("createdAt"))
|
|
273
|
+
|
|
274
|
+
updated_at = isoparse(d.pop("updatedAt"))
|
|
275
|
+
|
|
240
276
|
def _parse_assignees(data: object) -> Union[None, Unset, list[str]]:
|
|
241
277
|
if data is None:
|
|
242
278
|
return data
|
|
@@ -349,6 +385,24 @@ class Task:
|
|
|
349
385
|
|
|
350
386
|
task_relationships = _parse_task_relationships(d.pop("taskRelationships", UNSET))
|
|
351
387
|
|
|
388
|
+
def _parse_created_by(data: object) -> Union[None, Unset, str]:
|
|
389
|
+
if data is None:
|
|
390
|
+
return data
|
|
391
|
+
if isinstance(data, Unset):
|
|
392
|
+
return data
|
|
393
|
+
return cast(Union[None, Unset, str], data)
|
|
394
|
+
|
|
395
|
+
created_by = _parse_created_by(d.pop("createdBy", UNSET))
|
|
396
|
+
|
|
397
|
+
def _parse_updated_by(data: object) -> Union[None, Unset, str]:
|
|
398
|
+
if data is None:
|
|
399
|
+
return data
|
|
400
|
+
if isinstance(data, Unset):
|
|
401
|
+
return data
|
|
402
|
+
return cast(Union[None, Unset, str], data)
|
|
403
|
+
|
|
404
|
+
updated_by = _parse_updated_by(d.pop("updatedBy", UNSET))
|
|
405
|
+
|
|
352
406
|
task = cls(
|
|
353
407
|
id=id,
|
|
354
408
|
html_url=html_url,
|
|
@@ -359,6 +413,8 @@ class Task:
|
|
|
359
413
|
status=status,
|
|
360
414
|
description=description,
|
|
361
415
|
attachments=attachments,
|
|
416
|
+
created_at=created_at,
|
|
417
|
+
updated_at=updated_at,
|
|
362
418
|
assignees=assignees,
|
|
363
419
|
assignee=assignee,
|
|
364
420
|
tags=tags,
|
|
@@ -369,6 +425,8 @@ class Task:
|
|
|
369
425
|
time_tracking=time_tracking,
|
|
370
426
|
custom_properties=custom_properties,
|
|
371
427
|
task_relationships=task_relationships,
|
|
428
|
+
created_by=created_by,
|
|
429
|
+
updated_by=updated_by,
|
|
372
430
|
)
|
|
373
431
|
|
|
374
432
|
task.additional_properties = d
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
dart/__init__.py,sha256=M4oDY_DtfE7s50jXziRxVuL95hE1EKEaWOEmWxy8_Ig,523
|
|
2
|
-
dart/dart.py,sha256=
|
|
2
|
+
dart/dart.py,sha256=jYhZtcxl1SLlhHxEMJx7v1s8N4ff4CKH156w6uNyyqs,27283
|
|
3
3
|
dart/exception.py,sha256=evN1SFV7Bal5dQIIOnhYA0cRu6jSa0cOCiG7AkHZD5A,85
|
|
4
4
|
dart/old.py,sha256=Dx7su_6Qwtw25xgRhm3vnV-mPajqNdXfnLrlRPz7pjE,7609
|
|
5
5
|
dart/order_manager.py,sha256=WI8YEjdOuEFDNcRCm30INAA5lY8016ttt0yXElGIeUU,1882
|
|
@@ -8,7 +8,9 @@ dart/generated/__init__.py,sha256=8fO-FKZzuZzOUUaqtlgw7k08MUwNLf8Ll-cAt7BgmAU,15
|
|
|
8
8
|
dart/generated/client.py,sha256=o_mdLqyBCQstu5tS1WZFwqIEbGwkvWQ7eQjuCJw_5VY,12419
|
|
9
9
|
dart/generated/errors.py,sha256=gO8GBmKqmSNgAg-E5oT-oOyxztvp7V_6XG7OUTT15q0,546
|
|
10
10
|
dart/generated/types.py,sha256=E1hhDh_zXfsSQ0NCt9-uw90_Mr5iIlsdfnfvxv5HarU,1005
|
|
11
|
-
dart/generated/api/__init__.py,sha256=
|
|
11
|
+
dart/generated/api/__init__.py,sha256=WcIqezh1fvbi1zreb0N60EF59CDf3HYL61VdVQ8x6Fo,530
|
|
12
|
+
dart/generated/api/attachment/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
13
|
+
dart/generated/api/attachment/add_task_attachment_from_url.py,sha256=WdaSorFXIhYH9uzCYuVbvz4G3gDZyMxOvKXO5oHjUFY,5171
|
|
12
14
|
dart/generated/api/comment/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
13
15
|
dart/generated/api/comment/add_task_comment.py,sha256=G9kpQ60IrMC4cxXP--wsPvVtYPMmByy-t55wV4WkvbI,4757
|
|
14
16
|
dart/generated/api/comment/list_comments.py,sha256=HVa9704Guk0lNFvCOS8A94RfJNe0HJsRNSy2HcJiy60,11926
|
|
@@ -20,7 +22,7 @@ dart/generated/api/doc/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX
|
|
|
20
22
|
dart/generated/api/doc/create_doc.py,sha256=IK0FDGTzdjT_b5uDCJbtbBZygGt_Lh_0XyJBBVFDorc,4993
|
|
21
23
|
dart/generated/api/doc/delete_doc.py,sha256=tO-E4p3ZETAkJiMokIsFV6W6wa3zkPV5Fp4a97-3eWU,4355
|
|
22
24
|
dart/generated/api/doc/get_doc.py,sha256=HbJQx3UJDOYTnXPlNvemGK5-I0hczgLVmvffrIIC1MI,4344
|
|
23
|
-
dart/generated/api/doc/list_docs.py,sha256=
|
|
25
|
+
dart/generated/api/doc/list_docs.py,sha256=QWyxNB5Ghk5yKAvuu32Wppgsotrmg51LajwsHLtLyWI,10181
|
|
24
26
|
dart/generated/api/doc/update_doc.py,sha256=3kt2VuN7TAn35iJFR9Im_fO6EHAH6puFA-r7N0m7mZI,5146
|
|
25
27
|
dart/generated/api/folder/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
26
28
|
dart/generated/api/folder/get_folder.py,sha256=Mag6KvIYh8gORQafuNKDnJL59sqPsnwsCjjz_TrxiO0,4502
|
|
@@ -32,16 +34,17 @@ dart/generated/api/task/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5W
|
|
|
32
34
|
dart/generated/api/task/create_task.py,sha256=KpqYYhRR2UDaC-Wh3tvJXYI1pqP_-Qh8Fx77GtQQNgM,4845
|
|
33
35
|
dart/generated/api/task/delete_task.py,sha256=3cpKEcUTKTPkvEW1s7fEXGDVUcNIbAx8AV21R2H2Dxw,4381
|
|
34
36
|
dart/generated/api/task/get_task.py,sha256=Cmf0FPrbGxzIEO22BrcsixDs_HCEqw07L_MZn8bPXUc,4442
|
|
35
|
-
dart/generated/api/task/list_tasks.py,sha256=
|
|
37
|
+
dart/generated/api/task/list_tasks.py,sha256=dDksX4cLxA-gxY3FE3UCdTR9WZTQpcG2GVPx9J1R9_Q,29265
|
|
36
38
|
dart/generated/api/task/update_task.py,sha256=5f8wbMwQqRHya7D-iMFOcSL2VF1-flBUIIOYRJ1PjOA,5183
|
|
37
39
|
dart/generated/api/view/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
38
40
|
dart/generated/api/view/get_view.py,sha256=11OjxQnER-ct9gYC0ckA_JOPwKe5BYoYWHvcyGMkr8E,4370
|
|
39
|
-
dart/generated/models/__init__.py,sha256=
|
|
41
|
+
dart/generated/models/__init__.py,sha256=OuQYoyeGU8IyhLDs5ry1MCdPuMEYQ9YibEZ_6MWjSt4,4685
|
|
40
42
|
dart/generated/models/attachment.py,sha256=snnuBPthcyqUEZ1dyR2Hgs082OhqW0q8AkwNneswu80,1625
|
|
43
|
+
dart/generated/models/attachment_create_from_url.py,sha256=b2HizDIwLCuWOVLXzfvo2ztWdgQ6VLFcvdhavn87--k,1699
|
|
41
44
|
dart/generated/models/comment.py,sha256=kLh7iDCW9uTq4kHxi_MSys4uTBpaZj2k5lIKUTkpSUY,2735
|
|
42
45
|
dart/generated/models/comment_create.py,sha256=GVC_LWi0_afdJkN0-qZsYFt9RCmU2DjRmKOwTsmAWTo,2138
|
|
43
46
|
dart/generated/models/concise_doc.py,sha256=xrJIJr4rm_iG0DlmpemBtzDaOxroHC2NgsG-V9CNsX8,2200
|
|
44
|
-
dart/generated/models/concise_task.py,sha256=
|
|
47
|
+
dart/generated/models/concise_task.py,sha256=zcL62dr9ZqE3tyr7ZcyjaIwZaoHbK_LmibwsBBWsHUo,14141
|
|
45
48
|
dart/generated/models/custom_properties.py,sha256=NmBTVtlzJbhZn_DURZLREdw_rVeK_isTQ9LT9CEYDVg,5172
|
|
46
49
|
dart/generated/models/dartboard.py,sha256=r5aV18JCdcTtSmj9na5xNkCkDpRENyrbUnp2jQiWQwY,2184
|
|
47
50
|
dart/generated/models/doc.py,sha256=f_1aVMo7aCQTGOhH19IjrkucIbINj7n_OkbaZnbJ9tc,2298
|
|
@@ -49,13 +52,14 @@ dart/generated/models/doc_create.py,sha256=HOpiuuDg7fNEkwoUvXqceXKI59cDVBS5PzTR0
|
|
|
49
52
|
dart/generated/models/doc_update.py,sha256=Wv565KyrxMWxUCvqDJjcfzk2lalOj987o69RgBYF8wc,2376
|
|
50
53
|
dart/generated/models/folder.py,sha256=9UkpSZ31HYMNnJ_kyDepEDQI1YWjLkZBbdCGhcndyVk,2157
|
|
51
54
|
dart/generated/models/list_comments_o_item.py,sha256=N4zhK9euG0-r0nvT961QEQ0RLzFYqJ3J6HzTjNKntr8,230
|
|
52
|
-
dart/generated/models/list_docs_o_item.py,sha256=
|
|
55
|
+
dart/generated/models/list_docs_o_item.py,sha256=x_DvPR1CHnST6MggjTUXk75Z-rxVLC9ctLazWnfLAMs,386
|
|
56
|
+
dart/generated/models/list_tasks_o_item.py,sha256=CWVGQ20u71IEiuXnSp-5xvTLY7SE6C4qcCwaz_GF7N8,396
|
|
53
57
|
dart/generated/models/paginated_comment_list.py,sha256=EHuFqkBMa1xPagKGq6p6qBktb7IgNPkdSbO5aij7M6k,3624
|
|
54
58
|
dart/generated/models/paginated_concise_doc_list.py,sha256=Y7YbOwd7TaHm7b9rHJvVKEynHEp-xgCyN0Kw5gEZ4i8,3665
|
|
55
59
|
dart/generated/models/paginated_concise_task_list.py,sha256=Yu-r-WvWBH3LfMWGm3YNQ30w1-B0mdxjx5jykKFFQlY,3677
|
|
56
60
|
dart/generated/models/priority.py,sha256=eupjzXQndyaia8svwVmylisIGwl6OQ_0g8pgcsm8118,195
|
|
57
61
|
dart/generated/models/skill.py,sha256=sUbxzNB9ny4i1ZUBKuiC7CEWM3y7cpbovF9mfF3UCQM,1949
|
|
58
|
-
dart/generated/models/task.py,sha256=
|
|
62
|
+
dart/generated/models/task.py,sha256=YAJtaLB97gGp8IfuwlhRJsS8OVDuzPu7TdmWphEJoEA,16802
|
|
59
63
|
dart/generated/models/task_create.py,sha256=l4dMsMAmZEwO_nxpRXrlg-YuvXqg7xxcBvNc2V9XxyE,13510
|
|
60
64
|
dart/generated/models/task_relationships_type_0.py,sha256=nya2axJQyf5Dm9Lfr58uWH81YMbpATdkFuhCQJW2GMQ,4201
|
|
61
65
|
dart/generated/models/task_update.py,sha256=S-tYjMQdcafQRnGShyNPMmrrA3NOOp_nQBOf_iowYI4,13753
|
|
@@ -86,9 +90,9 @@ dart/generated/models/wrapped_task.py,sha256=TRlVMxIGhDwSaJlXdMH6q7Vx2hpz7EdiGns
|
|
|
86
90
|
dart/generated/models/wrapped_task_create.py,sha256=Oxdot2EwfEuC3l4uo0fAvmyjRNVkXALmWCvfgHI7BcI,1654
|
|
87
91
|
dart/generated/models/wrapped_task_update.py,sha256=_erGSSR_k6ahF_RFjgLKdyitx5TDQiFw_Ml77zHQdJM,1654
|
|
88
92
|
dart/generated/models/wrapped_view.py,sha256=zflJxA4UnITM8w-0EObw4AF54yS-c_e5UL6vaikXyG8,1577
|
|
89
|
-
dart_tools-0.8.
|
|
90
|
-
dart_tools-0.8.
|
|
91
|
-
dart_tools-0.8.
|
|
92
|
-
dart_tools-0.8.
|
|
93
|
-
dart_tools-0.8.
|
|
94
|
-
dart_tools-0.8.
|
|
93
|
+
dart_tools-0.8.5.dist-info/licenses/LICENSE,sha256=aD_0TnuylEaAHWNURgifNek_ODn5Pg36o9gFdspgHtg,1061
|
|
94
|
+
dart_tools-0.8.5.dist-info/METADATA,sha256=OYAGYrUEhpwfDnzSQqr5Do_s-POU-alRzIERBM1oYys,8996
|
|
95
|
+
dart_tools-0.8.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
96
|
+
dart_tools-0.8.5.dist-info/entry_points.txt,sha256=KOVAnDWJbSKn9HoXWQ7x6NfACYzSMGHBBaBxonHEv6w,34
|
|
97
|
+
dart_tools-0.8.5.dist-info/top_level.txt,sha256=ZwUQ6QjCyi1i32BJOAkbOA7UfgitLmIwToJGJwZXPrg,5
|
|
98
|
+
dart_tools-0.8.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|