dart-tools 0.8.0__py3-none-any.whl → 0.8.2__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.

Files changed (32) hide show
  1. dart/generated/api/__init__.py +2 -0
  2. dart/generated/api/comment/list_comments.py +18 -27
  3. dart/generated/api/dartboard/retrieve_dartboard.py +8 -8
  4. dart/generated/api/doc/list_docs.py +8 -8
  5. dart/generated/api/help_center_article/__init__.py +1 -0
  6. dart/generated/api/help_center_article/list_help_center_articles.py +166 -0
  7. dart/generated/api/skill/__init__.py +1 -0
  8. dart/generated/api/skill/retrieve_skill_by_title.py +173 -0
  9. dart/generated/api/task/create_task.py +12 -12
  10. dart/generated/api/task/list_tasks.py +38 -8
  11. dart/generated/api/view/retrieve_view.py +4 -4
  12. dart/generated/models/__init__.py +8 -2
  13. dart/generated/models/concise_task.py +3 -1
  14. dart/generated/models/dartboard.py +1 -23
  15. dart/generated/models/folder.py +1 -23
  16. dart/generated/models/skill.py +75 -0
  17. dart/generated/models/task.py +13 -11
  18. dart/generated/models/task_create.py +13 -11
  19. dart/generated/models/{task_relationships.py → task_relationships_type_0.py} +19 -9
  20. dart/generated/models/task_update.py +13 -11
  21. dart/generated/models/user.py +8 -5
  22. dart/generated/models/user_space_configuration.py +8 -0
  23. dart/generated/models/view.py +1 -23
  24. dart/generated/models/wrapped_help_center_articles.py +59 -0
  25. dart/generated/models/wrapped_skill.py +65 -0
  26. dart/old.py +14 -2
  27. {dart_tools-0.8.0.dist-info → dart_tools-0.8.2.dist-info}/METADATA +1 -1
  28. {dart_tools-0.8.0.dist-info → dart_tools-0.8.2.dist-info}/RECORD +32 -25
  29. {dart_tools-0.8.0.dist-info → dart_tools-0.8.2.dist-info}/WHEEL +0 -0
  30. {dart_tools-0.8.0.dist-info → dart_tools-0.8.2.dist-info}/entry_points.txt +0 -0
  31. {dart_tools-0.8.0.dist-info → dart_tools-0.8.2.dist-info}/licenses/LICENSE +0 -0
  32. {dart_tools-0.8.0.dist-info → dart_tools-0.8.2.dist-info}/top_level.txt +0 -0
@@ -5,22 +5,32 @@ from attrs import define as _attrs_define
5
5
 
6
6
  from ..types import UNSET, Unset
7
7
 
8
- T = TypeVar("T", bound="TaskRelationships")
8
+ T = TypeVar("T", bound="TaskRelationshipsType0")
9
9
 
10
10
 
11
11
  @_attrs_define
12
- class TaskRelationships:
12
+ class TaskRelationshipsType0:
13
13
  """
14
14
  Example:
15
15
  {'subtaskIds': ['abcdefghijk1', 'abcdefghijk2'], 'blockerIds': ['abcdefghijk3'], 'blockingIds':
16
16
  ['abcdefghijk4'], 'duplicateIds': ['abcdefghijk5'], 'relatedIds': ['abcdefghijk6', 'abcdefghijk7']}
17
17
 
18
18
  Attributes:
19
- subtask_ids (Union[Unset, list[str]]): List of task IDs that are subtasks of this task
20
- blocker_ids (Union[Unset, list[str]]): List of task IDs that block this task
21
- blocking_ids (Union[Unset, list[str]]): List of task IDs that this task blocks
22
- duplicate_ids (Union[Unset, list[str]]): List of task IDs that are duplicates of this task
23
- related_ids (Union[Unset, list[str]]): List of task IDs that are related to this task
19
+ subtask_ids (Union[Unset, list[str]]): Array of task IDs that are subtasks of this task. These tasks have a
20
+ parent-child relationship where this task is the parent. Subtasks inherit context from their parent and are
21
+ typically smaller units of work.
22
+ blocker_ids (Union[Unset, list[str]]): Array of task IDs that block this task from being completed. These are
23
+ dependencies that must be resolved/completed before this task can proceed. The blocking tasks have priority over
24
+ this task.
25
+ blocking_ids (Union[Unset, list[str]]): Array of task IDs that are blocked by this task. This task must be
26
+ completed before the blocked tasks can proceed. This task is a dependency for the blocked tasks and has priority
27
+ over them.
28
+ duplicate_ids (Union[Unset, list[str]]): Array of task IDs that are duplicates of this task. These represent the
29
+ same work item and should typically be consolidated to avoid duplicate effort. Only one of the duplicates should
30
+ be completed.
31
+ related_ids (Union[Unset, list[str]]): Array of task IDs that are related to this task. These tasks have some
32
+ contextual relationship but no direct dependency. They may share similar goals, components, or be part of the
33
+ same feature/epic.
24
34
  """
25
35
 
26
36
  subtask_ids: Union[Unset, list[str]] = UNSET
@@ -78,7 +88,7 @@ class TaskRelationships:
78
88
 
79
89
  related_ids = cast(list[str], d.pop("relatedIds", UNSET))
80
90
 
81
- task_relationships = cls(
91
+ task_relationships_type_0 = cls(
82
92
  subtask_ids=subtask_ids,
83
93
  blocker_ids=blocker_ids,
84
94
  blocking_ids=blocking_ids,
@@ -86,4 +96,4 @@ class TaskRelationships:
86
96
  related_ids=related_ids,
87
97
  )
88
98
 
89
- return task_relationships
99
+ return task_relationships_type_0
@@ -9,7 +9,7 @@ from ..types import UNSET, Unset
9
9
 
10
10
  if TYPE_CHECKING:
11
11
  from ..models.custom_properties import CustomProperties
12
- from ..models.task_relationships import TaskRelationships
12
+ from ..models.task_relationships_type_0 import TaskRelationshipsType0
13
13
 
14
14
 
15
15
  T = TypeVar("T", bound="TaskUpdate")
@@ -21,7 +21,9 @@ class TaskUpdate:
21
21
  Attributes:
22
22
  id (str): The universal, unique ID of the task.
23
23
  title (Union[Unset, str]): The title, which is a short description of what needs to be done.
24
- parent_id (Union[None, Unset, str]): The universal, unique ID of the parent task. This can be null.
24
+ parent_id (Union[None, Unset, str]): The universal, unique ID of the parent task. This can be null. These tasks
25
+ have a parent-child relationship where the current task is the child and this task ID corresponds to the parent.
26
+ Subtasks inherit context from their parent and are typically smaller units of work.
25
27
  dartboard (Union[Unset, str]): The full title of the dartboard, which is a project or list of tasks.
26
28
  type_ (Union[Unset, str]): The title of the type of the task.
27
29
  status (Union[Unset, str]): The status from the list of available statuses.
@@ -43,7 +45,7 @@ class TaskUpdate:
43
45
  is used to determine how long the task will take to complete.
44
46
  custom_properties (Union['CustomProperties', None, Unset]): The custom properties, which is a dict of custom
45
47
  properties that are associated with the task.
46
- task_relationships (Union['TaskRelationships', None, Unset]): The relationships associated with the task.
48
+ task_relationships (Union['TaskRelationshipsType0', None, Unset]): The relationships associated with the task.
47
49
  """
48
50
 
49
51
  id: str
@@ -61,12 +63,12 @@ class TaskUpdate:
61
63
  due_at: Union[None, Unset, str] = UNSET
62
64
  size: Union[None, Unset, int, str] = UNSET
63
65
  custom_properties: Union["CustomProperties", None, Unset] = UNSET
64
- task_relationships: Union["TaskRelationships", None, Unset] = UNSET
66
+ task_relationships: Union["TaskRelationshipsType0", None, Unset] = UNSET
65
67
  additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
66
68
 
67
69
  def to_dict(self) -> dict[str, Any]:
68
70
  from ..models.custom_properties import CustomProperties
69
- from ..models.task_relationships import TaskRelationships
71
+ from ..models.task_relationships_type_0 import TaskRelationshipsType0
70
72
 
71
73
  id = self.id
72
74
 
@@ -142,7 +144,7 @@ class TaskUpdate:
142
144
  task_relationships: Union[None, Unset, dict[str, Any]]
143
145
  if isinstance(self.task_relationships, Unset):
144
146
  task_relationships = UNSET
145
- elif isinstance(self.task_relationships, TaskRelationships):
147
+ elif isinstance(self.task_relationships, TaskRelationshipsType0):
146
148
  task_relationships = self.task_relationships.to_dict()
147
149
  else:
148
150
  task_relationships = self.task_relationships
@@ -190,7 +192,7 @@ class TaskUpdate:
190
192
  @classmethod
191
193
  def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
192
194
  from ..models.custom_properties import CustomProperties
193
- from ..models.task_relationships import TaskRelationships
195
+ from ..models.task_relationships_type_0 import TaskRelationshipsType0
194
196
 
195
197
  d = dict(src_dict)
196
198
  id = d.pop("id")
@@ -307,7 +309,7 @@ class TaskUpdate:
307
309
 
308
310
  def _parse_task_relationships(
309
311
  data: object,
310
- ) -> Union["TaskRelationships", None, Unset]:
312
+ ) -> Union["TaskRelationshipsType0", None, Unset]:
311
313
  if data is None:
312
314
  return data
313
315
  if isinstance(data, Unset):
@@ -315,12 +317,12 @@ class TaskUpdate:
315
317
  try:
316
318
  if not isinstance(data, dict):
317
319
  raise TypeError()
318
- task_relationships_type_0 = TaskRelationships.from_dict(data)
320
+ componentsschemas_task_relationships_type_0 = TaskRelationshipsType0.from_dict(data)
319
321
 
320
- return task_relationships_type_0
322
+ return componentsschemas_task_relationships_type_0
321
323
  except: # noqa: E722
322
324
  pass
323
- return cast(Union["TaskRelationships", None, Unset], data)
325
+ return cast(Union["TaskRelationshipsType0", None, Unset], data)
324
326
 
325
327
  task_relationships = _parse_task_relationships(d.pop("taskRelationships", UNSET))
326
328
 
@@ -1,9 +1,11 @@
1
1
  from collections.abc import Mapping
2
- from typing import Any, TypeVar
2
+ from typing import Any, TypeVar, Union
3
3
 
4
4
  from attrs import define as _attrs_define
5
5
  from attrs import field as _attrs_field
6
6
 
7
+ from ..types import UNSET, Unset
8
+
7
9
  T = TypeVar("T", bound="User")
8
10
 
9
11
 
@@ -12,11 +14,11 @@ class User:
12
14
  """
13
15
  Attributes:
14
16
  name (str):
15
- email (str):
17
+ email (Union[Unset, str]):
16
18
  """
17
19
 
18
20
  name: str
19
- email: str
21
+ email: Union[Unset, str] = UNSET
20
22
  additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
21
23
 
22
24
  def to_dict(self) -> dict[str, Any]:
@@ -29,9 +31,10 @@ class User:
29
31
  field_dict.update(
30
32
  {
31
33
  "name": name,
32
- "email": email,
33
34
  }
34
35
  )
36
+ if email is not UNSET:
37
+ field_dict["email"] = email
35
38
 
36
39
  return field_dict
37
40
 
@@ -40,7 +43,7 @@ class User:
40
43
  d = dict(src_dict)
41
44
  name = d.pop("name")
42
45
 
43
- email = d.pop("email")
46
+ email = d.pop("email", UNSET)
44
47
 
45
48
  user = cls(
46
49
  name=name,
@@ -54,6 +54,7 @@ class UserSpaceConfiguration:
54
54
  tags (list[str]):
55
55
  priorities (list[str]):
56
56
  sizes (Union[list[Union[int, str]], str]):
57
+ skills (list[str]):
57
58
  custom_properties (list[Union['UserSpaceConfigurationCustomPropertyCheckboxTypeDef',
58
59
  'UserSpaceConfigurationCustomPropertyDatesTypeDef', 'UserSpaceConfigurationCustomPropertyMultiselectTypeDef',
59
60
  'UserSpaceConfigurationCustomPropertyNumberTypeDef', 'UserSpaceConfigurationCustomPropertySelectTypeDef',
@@ -71,6 +72,7 @@ class UserSpaceConfiguration:
71
72
  tags: list[str]
72
73
  priorities: list[str]
73
74
  sizes: Union[list[Union[int, str]], str]
75
+ skills: list[str]
74
76
  custom_properties: list[
75
77
  Union[
76
78
  "UserSpaceConfigurationCustomPropertyCheckboxTypeDef",
@@ -144,6 +146,8 @@ class UserSpaceConfiguration:
144
146
  else:
145
147
  sizes = self.sizes
146
148
 
149
+ skills = self.skills
150
+
147
151
  custom_properties = []
148
152
  for custom_properties_item_data in self.custom_properties:
149
153
  custom_properties_item: dict[str, Any]
@@ -206,6 +210,7 @@ class UserSpaceConfiguration:
206
210
  "tags": tags,
207
211
  "priorities": priorities,
208
212
  "sizes": sizes,
213
+ "skills": skills,
209
214
  "customProperties": custom_properties,
210
215
  }
211
216
  )
@@ -289,6 +294,8 @@ class UserSpaceConfiguration:
289
294
 
290
295
  sizes = _parse_sizes(d.pop("sizes"))
291
296
 
297
+ skills = cast(list[str], d.pop("skills"))
298
+
292
299
  custom_properties = []
293
300
  _custom_properties = d.pop("customProperties")
294
301
  for custom_properties_item_data in _custom_properties:
@@ -395,6 +402,7 @@ class UserSpaceConfiguration:
395
402
  tags=tags,
396
403
  priorities=priorities,
397
404
  sizes=sizes,
405
+ skills=skills,
398
406
  custom_properties=custom_properties,
399
407
  )
400
408
 
@@ -1,13 +1,9 @@
1
1
  from collections.abc import Mapping
2
- from typing import TYPE_CHECKING, Any, TypeVar
2
+ from typing import Any, TypeVar
3
3
 
4
4
  from attrs import define as _attrs_define
5
5
  from attrs import field as _attrs_field
6
6
 
7
- if TYPE_CHECKING:
8
- from ..models.task import Task
9
-
10
-
11
7
  T = TypeVar("T", bound="View")
12
8
 
13
9
 
@@ -19,14 +15,12 @@ class View:
19
15
  html_url (str): The URL that can be used to open the view in the Dart web UI.
20
16
  title (str): The title, which is a short description of the view.
21
17
  description (str): The description, which is a longer description of the view.
22
- tasks (list['Task']): The list of all of the tasks in the view.
23
18
  """
24
19
 
25
20
  id: str
26
21
  html_url: str
27
22
  title: str
28
23
  description: str
29
- tasks: list["Task"]
30
24
  additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
31
25
 
32
26
  def to_dict(self) -> dict[str, Any]:
@@ -38,11 +32,6 @@ class View:
38
32
 
39
33
  description = self.description
40
34
 
41
- tasks = []
42
- for tasks_item_data in self.tasks:
43
- tasks_item = tasks_item_data.to_dict()
44
- tasks.append(tasks_item)
45
-
46
35
  field_dict: dict[str, Any] = {}
47
36
  field_dict.update(self.additional_properties)
48
37
  field_dict.update(
@@ -51,7 +40,6 @@ class View:
51
40
  "htmlUrl": html_url,
52
41
  "title": title,
53
42
  "description": description,
54
- "tasks": tasks,
55
43
  }
56
44
  )
57
45
 
@@ -59,8 +47,6 @@ class View:
59
47
 
60
48
  @classmethod
61
49
  def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
62
- from ..models.task import Task
63
-
64
50
  d = dict(src_dict)
65
51
  id = d.pop("id")
66
52
 
@@ -70,19 +56,11 @@ class View:
70
56
 
71
57
  description = d.pop("description")
72
58
 
73
- tasks = []
74
- _tasks = d.pop("tasks")
75
- for tasks_item_data in _tasks:
76
- tasks_item = Task.from_dict(tasks_item_data)
77
-
78
- tasks.append(tasks_item)
79
-
80
59
  view = cls(
81
60
  id=id,
82
61
  html_url=html_url,
83
62
  title=title,
84
63
  description=description,
85
- tasks=tasks,
86
64
  )
87
65
 
88
66
  view.additional_properties = d
@@ -0,0 +1,59 @@
1
+ from collections.abc import Mapping
2
+ from typing import Any, TypeVar, cast
3
+
4
+ from attrs import define as _attrs_define
5
+ from attrs import field as _attrs_field
6
+
7
+ T = TypeVar("T", bound="WrappedHelpCenterArticles")
8
+
9
+
10
+ @_attrs_define
11
+ class WrappedHelpCenterArticles:
12
+ """
13
+ Attributes:
14
+ items (list[str]):
15
+ """
16
+
17
+ items: list[str]
18
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
19
+
20
+ def to_dict(self) -> dict[str, Any]:
21
+ items = self.items
22
+
23
+ field_dict: dict[str, Any] = {}
24
+ field_dict.update(self.additional_properties)
25
+ field_dict.update(
26
+ {
27
+ "items": items,
28
+ }
29
+ )
30
+
31
+ return field_dict
32
+
33
+ @classmethod
34
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
35
+ d = dict(src_dict)
36
+ items = cast(list[str], d.pop("items"))
37
+
38
+ wrapped_help_center_articles = cls(
39
+ items=items,
40
+ )
41
+
42
+ wrapped_help_center_articles.additional_properties = d
43
+ return wrapped_help_center_articles
44
+
45
+ @property
46
+ def additional_keys(self) -> list[str]:
47
+ return list(self.additional_properties.keys())
48
+
49
+ def __getitem__(self, key: str) -> Any:
50
+ return self.additional_properties[key]
51
+
52
+ def __setitem__(self, key: str, value: Any) -> None:
53
+ self.additional_properties[key] = value
54
+
55
+ def __delitem__(self, key: str) -> None:
56
+ del self.additional_properties[key]
57
+
58
+ def __contains__(self, key: str) -> bool:
59
+ return key in self.additional_properties
@@ -0,0 +1,65 @@
1
+ from collections.abc import Mapping
2
+ from typing import TYPE_CHECKING, Any, TypeVar
3
+
4
+ from attrs import define as _attrs_define
5
+ from attrs import field as _attrs_field
6
+
7
+ if TYPE_CHECKING:
8
+ from ..models.skill import Skill
9
+
10
+
11
+ T = TypeVar("T", bound="WrappedSkill")
12
+
13
+
14
+ @_attrs_define
15
+ class WrappedSkill:
16
+ """
17
+ Attributes:
18
+ item (Skill):
19
+ """
20
+
21
+ item: "Skill"
22
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
23
+
24
+ def to_dict(self) -> dict[str, Any]:
25
+ item = self.item.to_dict()
26
+
27
+ field_dict: dict[str, Any] = {}
28
+ field_dict.update(self.additional_properties)
29
+ field_dict.update(
30
+ {
31
+ "item": item,
32
+ }
33
+ )
34
+
35
+ return field_dict
36
+
37
+ @classmethod
38
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
39
+ from ..models.skill import Skill
40
+
41
+ d = dict(src_dict)
42
+ item = Skill.from_dict(d.pop("item"))
43
+
44
+ wrapped_skill = cls(
45
+ item=item,
46
+ )
47
+
48
+ wrapped_skill.additional_properties = d
49
+ return wrapped_skill
50
+
51
+ @property
52
+ def additional_keys(self) -> list[str]:
53
+ return list(self.additional_properties.keys())
54
+
55
+ def __getitem__(self, key: str) -> Any:
56
+ return self.additional_properties[key]
57
+
58
+ def __setitem__(self, key: str, value: Any) -> None:
59
+ self.additional_properties[key] = value
60
+
61
+ def __delitem__(self, key: str) -> None:
62
+ del self.additional_properties[key]
63
+
64
+ def __contains__(self, key: str) -> bool:
65
+ return key in self.additional_properties
dart/old.py CHANGED
@@ -124,9 +124,15 @@ def replicate_space(
124
124
  def get_dartboards(space_id: str, include_special: bool = False) -> list[dict]:
125
125
  dart = DartOld()
126
126
 
127
- response = dart.get(_LIST_DARTBOARDS_URL_FRAG, params={"space_duid": space_id})
127
+ response = dart.get(_LIST_DARTBOARDS_URL_FRAG, params={"space_duid": space_id, "limit": 100})
128
128
  response_json = response.json()
129
129
  dartboards = response_json["results"] if response_json is not None else []
130
+ while response_json.get("next") is not None:
131
+ response = dart.get(response_json["next"])
132
+ response_json = response.json()
133
+ if response_json is not None and "results" in response_json:
134
+ dartboards.extend(response_json["results"])
135
+
130
136
  if not include_special:
131
137
  dartboards = [e for e in dartboards if e["kind"] == "Custom"]
132
138
 
@@ -178,9 +184,15 @@ def update_dartboard(dartboard_id: str, *, title: Union[str, None] = None, color
178
184
  def get_folders(space_id: str, *, include_special: Union[bool, None] = False) -> list[dict]:
179
185
  dart = DartOld()
180
186
 
181
- response = dart.get(_LIST_FOLDERS_URL_FRAG, params={"space_duid": space_id})
187
+ response = dart.get(_LIST_FOLDERS_URL_FRAG, params={"space_duid": space_id, "limit": 50})
182
188
  response_json = response.json()
183
189
  folders = response_json["results"] if response_json is not None else []
190
+ while response_json.get("next") is not None:
191
+ response = dart.get(response_json["next"])
192
+ response_json = response.json()
193
+ if response_json is not None and "results" in response_json:
194
+ folders.extend(response_json["results"])
195
+
184
196
  if not include_special:
185
197
  folders = [e for e in folders if e["kind"] == "Other"]
186
198
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dart-tools
3
- Version: 0.8.0
3
+ Version: 0.8.2
4
4
  Summary: The Dart CLI and Python Library
5
5
  Author-email: Dart <software@dartai.com>
6
6
  License: MIT License
@@ -1,61 +1,66 @@
1
1
  dart/__init__.py,sha256=M4oDY_DtfE7s50jXziRxVuL95hE1EKEaWOEmWxy8_Ig,523
2
2
  dart/dart.py,sha256=MLFFI63heQ16CLCdTxwPTXYBcsnVxJxE2gaAIFsnxDo,27289
3
3
  dart/exception.py,sha256=evN1SFV7Bal5dQIIOnhYA0cRu6jSa0cOCiG7AkHZD5A,85
4
- dart/old.py,sha256=LqwFKYDpNwHlp_0NT9UACmAsx8PwYLyogLmY7YcuzVg,7053
4
+ dart/old.py,sha256=Dx7su_6Qwtw25xgRhm3vnV-mPajqNdXfnLrlRPz7pjE,7609
5
5
  dart/order_manager.py,sha256=WI8YEjdOuEFDNcRCm30INAA5lY8016ttt0yXElGIeUU,1882
6
6
  dart/webhook.py,sha256=1_8m1ik4k7yOHi1mBKUQrTy6RIXCFCuq0QJkoloZEGY,590
7
7
  dart/generated/__init__.py,sha256=8fO-FKZzuZzOUUaqtlgw7k08MUwNLf8Ll-cAt7BgmAU,158
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=g9MEi__ZevU-eY9vjBZFzC2pVVocTexVgIFghWPU304,398
11
+ dart/generated/api/__init__.py,sha256=yAFGs8DEmPfT9dUcioDYAytydh5fDijhLJ6ULrQcB1c,500
12
12
  dart/generated/api/comment/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
13
13
  dart/generated/api/comment/create_comment.py,sha256=G9kpQ60IrMC4cxXP--wsPvVtYPMmByy-t55wV4WkvbI,4757
14
- dart/generated/api/comment/list_comments.py,sha256=dYmzqR6uQNAq_BFwCvurx3fb-ehXsZ2pO0kviCYCraM,11401
14
+ dart/generated/api/comment/list_comments.py,sha256=FpFHuEO3NDXt5zAbMQIPA4uW7mPs13RvmPKsQBnkvD4,11069
15
15
  dart/generated/api/config/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
16
16
  dart/generated/api/config/get_config.py,sha256=C9Pw-IhVpxCaIv_rbL85kKBsHze9rJ0O1FTXyFbSw9I,3913
17
17
  dart/generated/api/dartboard/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
18
- dart/generated/api/dartboard/retrieve_dartboard.py,sha256=OOlHfnllNwvMxzJ_LYs2i5rFu5NzCQ8OCpKcfRQLcsk,4584
18
+ dart/generated/api/dartboard/retrieve_dartboard.py,sha256=z_Z3sbBazW-bU6H4VepnxbYd9PR8Z_9Msy57XUH2WyQ,4464
19
19
  dart/generated/api/doc/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
20
20
  dart/generated/api/doc/create_doc.py,sha256=IK0FDGTzdjT_b5uDCJbtbBZygGt_Lh_0XyJBBVFDorc,4993
21
21
  dart/generated/api/doc/delete_doc.py,sha256=tO-E4p3ZETAkJiMokIsFV6W6wa3zkPV5Fp4a97-3eWU,4355
22
- dart/generated/api/doc/list_docs.py,sha256=-u0K6yeTmZyaN2E9a9dTHgCkjhD9CFopYV4vLOfQEqo,8869
22
+ dart/generated/api/doc/list_docs.py,sha256=bDSDAmQhditmu8wiUYJNP4lhUIojMamdhX_E-Zjw5Gc,9077
23
23
  dart/generated/api/doc/retrieve_doc.py,sha256=HbJQx3UJDOYTnXPlNvemGK5-I0hczgLVmvffrIIC1MI,4344
24
24
  dart/generated/api/doc/update_doc.py,sha256=3kt2VuN7TAn35iJFR9Im_fO6EHAH6puFA-r7N0m7mZI,5146
25
25
  dart/generated/api/folder/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
26
26
  dart/generated/api/folder/retrieve_folder.py,sha256=Mag6KvIYh8gORQafuNKDnJL59sqPsnwsCjjz_TrxiO0,4502
27
+ dart/generated/api/help_center_article/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
28
+ dart/generated/api/help_center_article/list_help_center_articles.py,sha256=NClNQ9DUz_lTCqXk4_LX3I9l0bqxgA_MZTrR4q2JvwQ,4574
29
+ dart/generated/api/skill/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
30
+ dart/generated/api/skill/retrieve_skill_by_title.py,sha256=NZFdBSpfNIKcZAl4lvfkNK2yXKEGBun3pLLiDOkBZko,4777
27
31
  dart/generated/api/task/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
28
- dart/generated/api/task/create_task.py,sha256=0qLps0cHZE6LqA9cUQEExEpnhT4k83AHrz8nm1TzS0Q,5057
32
+ dart/generated/api/task/create_task.py,sha256=KpqYYhRR2UDaC-Wh3tvJXYI1pqP_-Qh8Fx77GtQQNgM,4845
29
33
  dart/generated/api/task/delete_task.py,sha256=3cpKEcUTKTPkvEW1s7fEXGDVUcNIbAx8AV21R2H2Dxw,4381
30
- dart/generated/api/task/list_tasks.py,sha256=q4jDwu1D-KH8Pd0wn7LffBTM0ChrTNo6-bZAvv3nBrE,17407
34
+ dart/generated/api/task/list_tasks.py,sha256=vUyX6ZYCGZhkpkqimzzKTCDz2zr0lohzKUShzhAA56o,18468
31
35
  dart/generated/api/task/retrieve_task.py,sha256=Cmf0FPrbGxzIEO22BrcsixDs_HCEqw07L_MZn8bPXUc,4442
32
36
  dart/generated/api/task/update_task.py,sha256=5f8wbMwQqRHya7D-iMFOcSL2VF1-flBUIIOYRJ1PjOA,5183
33
37
  dart/generated/api/view/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
34
- dart/generated/api/view/retrieve_view.py,sha256=hQUpYzihR6u9m6Zy02RyHT5UDgPTa8ZvTlyYf-Znm0Y,4454
35
- dart/generated/models/__init__.py,sha256=Xqybr9JFU34LYKFt6buN9rknJJ6uIE-VkEkQj2hNYAE,4253
38
+ dart/generated/api/view/retrieve_view.py,sha256=11OjxQnER-ct9gYC0ckA_JOPwKe5BYoYWHvcyGMkr8E,4370
39
+ dart/generated/models/__init__.py,sha256=SCk95B0Ylnl6vUhcLvD2hXQvV8-z6ikXLPD4Ei1CLLM,4469
36
40
  dart/generated/models/comment.py,sha256=kLh7iDCW9uTq4kHxi_MSys4uTBpaZj2k5lIKUTkpSUY,2735
37
41
  dart/generated/models/comment_create.py,sha256=GVC_LWi0_afdJkN0-qZsYFt9RCmU2DjRmKOwTsmAWTo,2138
38
42
  dart/generated/models/concise_doc.py,sha256=xrJIJr4rm_iG0DlmpemBtzDaOxroHC2NgsG-V9CNsX8,2200
39
- dart/generated/models/concise_task.py,sha256=aME0txheSEfVzFnIF2kKo5gNrOeAxCFrqxwQCG4etV4,11675
43
+ dart/generated/models/concise_task.py,sha256=GW1e0PGPrP6Zo6Yk7k0nvkh7LpmP0gd5hVXOtGRfUZU,11908
40
44
  dart/generated/models/custom_properties.py,sha256=NmBTVtlzJbhZn_DURZLREdw_rVeK_isTQ9LT9CEYDVg,5172
41
- dart/generated/models/dartboard.py,sha256=QWRy37OFBrlloUAk4_eG9E_pMZgFNAWejYmA1UwL32I,2789
45
+ dart/generated/models/dartboard.py,sha256=r5aV18JCdcTtSmj9na5xNkCkDpRENyrbUnp2jQiWQwY,2184
42
46
  dart/generated/models/doc.py,sha256=f_1aVMo7aCQTGOhH19IjrkucIbINj7n_OkbaZnbJ9tc,2298
43
47
  dart/generated/models/doc_create.py,sha256=HOpiuuDg7fNEkwoUvXqceXKI59cDVBS5PzTR08iYE7E,2134
44
48
  dart/generated/models/doc_update.py,sha256=Wv565KyrxMWxUCvqDJjcfzk2lalOj987o69RgBYF8wc,2376
45
- dart/generated/models/folder.py,sha256=G0uGZqOgnj6ehkEsIMDjU5EGeDzIMp6H4KDreg6PfsI,2729
49
+ dart/generated/models/folder.py,sha256=9UkpSZ31HYMNnJ_kyDepEDQI1YWjLkZBbdCGhcndyVk,2157
46
50
  dart/generated/models/list_comments_o_item.py,sha256=N4zhK9euG0-r0nvT961QEQ0RLzFYqJ3J6HzTjNKntr8,230
47
51
  dart/generated/models/list_docs_o_item.py,sha256=owGxTljNQTi1KAHkfTknrSTMEome1x75vUbHRVO12JM,320
48
52
  dart/generated/models/paginated_comment_list.py,sha256=EHuFqkBMa1xPagKGq6p6qBktb7IgNPkdSbO5aij7M6k,3624
49
53
  dart/generated/models/paginated_concise_doc_list.py,sha256=Y7YbOwd7TaHm7b9rHJvVKEynHEp-xgCyN0Kw5gEZ4i8,3665
50
54
  dart/generated/models/paginated_concise_task_list.py,sha256=Yu-r-WvWBH3LfMWGm3YNQ30w1-B0mdxjx5jykKFFQlY,3677
51
55
  dart/generated/models/priority.py,sha256=eupjzXQndyaia8svwVmylisIGwl6OQ_0g8pgcsm8118,195
52
- dart/generated/models/task.py,sha256=gdQgA9nplF5lREELSycflnUflQNECMFIazz4b6QO8rw,13443
53
- dart/generated/models/task_create.py,sha256=WAgkslCtWfp3nNCLhgBzpZu3FwyodNUhz9rRUQAnEQ4,13175
54
- dart/generated/models/task_relationships.py,sha256=EP51ZcmAYa8K-NIG54P_voXOo5a87BUeOMBRE-QN1BQ,3284
55
- dart/generated/models/task_update.py,sha256=YCNDEM2xdg4ComkPIFZ74U4m86n7cPZZsw_jLy_ARfg,13418
56
+ dart/generated/models/skill.py,sha256=sUbxzNB9ny4i1ZUBKuiC7CEWM3y7cpbovF9mfF3UCQM,1949
57
+ dart/generated/models/task.py,sha256=UEqSKRc_CJMpunnN9tNrh4YIDGpdk0yNWI2aLiQuGnY,13778
58
+ dart/generated/models/task_create.py,sha256=l4dMsMAmZEwO_nxpRXrlg-YuvXqg7xxcBvNc2V9XxyE,13510
59
+ dart/generated/models/task_relationships_type_0.py,sha256=nya2axJQyf5Dm9Lfr58uWH81YMbpATdkFuhCQJW2GMQ,4201
60
+ dart/generated/models/task_update.py,sha256=S-tYjMQdcafQRnGShyNPMmrrA3NOOp_nQBOf_iowYI4,13753
56
61
  dart/generated/models/time_tracking_entry.py,sha256=vvxoHmgKpHDnryE-9_fCHaWZjQT9FyaZ9_YT-zlzm1Y,1470
57
- dart/generated/models/user.py,sha256=Vl63zDoadat1k5NtTq3AAI0NMTp5T3DOIAcM5zZXD3o,1552
58
- dart/generated/models/user_space_configuration.py,sha256=iFfcWLp2kmSYO3uR92CyeY2BV6mm6FtGSyYeW5y_zZk,16898
62
+ dart/generated/models/user.py,sha256=6lsWhxINsGFTa7yL5i8W6wlkhnlFB6lnJee6y8Dq7ik,1675
63
+ dart/generated/models/user_space_configuration.py,sha256=9CLCodePRIuOySllRB_rONSGnlG0CV_okuLoFIFUL90,17090
59
64
  dart/generated/models/user_space_configuration_custom_property_checkbox_type_def.py,sha256=tW7yyj3vN2_pf_DFLiWDEiXnIwj2P-fPsl9cc4y55uw,2014
60
65
  dart/generated/models/user_space_configuration_custom_property_dates_type_def.py,sha256=FCMD8RyFO-xKz8gFOmxZoKOLVVXTAF1aoDXf6lzwTVI,2167
61
66
  dart/generated/models/user_space_configuration_custom_property_multiselect_type_def.py,sha256=KmHqf_NCZbMQG_GaaLPZ1Mm5FSiQQP5Ro3LOZAyl61g,2246
@@ -66,7 +71,7 @@ dart/generated/models/user_space_configuration_custom_property_status_type_def.p
66
71
  dart/generated/models/user_space_configuration_custom_property_text_type_def.py,sha256=xxTXv-Sq8-6YC_Xp-8l3R9Vgtq4DkXWUjUtGtsczVwQ,1974
67
72
  dart/generated/models/user_space_configuration_custom_property_time_tracking_type_def.py,sha256=B9va5jpkdEawyaB7eikffJPevJRWZAYEcQld_SMv8lw,2062
68
73
  dart/generated/models/user_space_configuration_custom_property_user_type_def.py,sha256=O5M7KvMe_jd2kafazvR6HD6Qj16YtPbkZHfEaVmJ9dE,2187
69
- dart/generated/models/view.py,sha256=X7w6hH387LTAY8nbjGDNdf0hbho2O2al8kVOhCZi4Pg,2739
74
+ dart/generated/models/view.py,sha256=fQflpdWf-t_P7kXN4Mgs_bldLEcdSFsM3mq8qxWd9Hs,2139
70
75
  dart/generated/models/wrapped_comment.py,sha256=tjMBU-NZYQ6n_jSn6LOT00JPWGcJjFjAWSlz77cDIT8,1613
71
76
  dart/generated/models/wrapped_comment_create.py,sha256=g_t09rNShbqDpdkUBSGY0jS5tO0qaPtoJR_VfewTZq0,1690
72
77
  dart/generated/models/wrapped_dartboard.py,sha256=hzAJ4OJkw-gjOW-V1asqvSDKs-K3XHSSmVqX_GhnNyw,1637
@@ -74,13 +79,15 @@ dart/generated/models/wrapped_doc.py,sha256=gNrcTOEjLtHV7slg7mTnDmwBfYSp_yrpeIvH
74
79
  dart/generated/models/wrapped_doc_create.py,sha256=pEkc0VTFYZNUKVKpldFBI5V514y6gS6KKURrfDIsRrk,1642
75
80
  dart/generated/models/wrapped_doc_update.py,sha256=Yei-8TEavX1bWBZpC4ZndacCaosGXSlXX1RYtIyOgHA,1642
76
81
  dart/generated/models/wrapped_folder.py,sha256=KDXM4fQQTg5kjwZmEwpLtPde0BOPMRU-vCQ-6psAm60,1601
82
+ dart/generated/models/wrapped_help_center_articles.py,sha256=lK7oGEWdUY0mGiwtd-BwLXoAC5mvBNCOmOTTRM1F_NU,1558
83
+ dart/generated/models/wrapped_skill.py,sha256=MRMwtJDGcy7HdwN1LUB5CviyXIY_mgcXh6K59emMRXc,1589
77
84
  dart/generated/models/wrapped_task.py,sha256=TRlVMxIGhDwSaJlXdMH6q7Vx2hpz7EdiGnsd06XZN1Y,1577
78
85
  dart/generated/models/wrapped_task_create.py,sha256=Oxdot2EwfEuC3l4uo0fAvmyjRNVkXALmWCvfgHI7BcI,1654
79
86
  dart/generated/models/wrapped_task_update.py,sha256=_erGSSR_k6ahF_RFjgLKdyitx5TDQiFw_Ml77zHQdJM,1654
80
87
  dart/generated/models/wrapped_view.py,sha256=zflJxA4UnITM8w-0EObw4AF54yS-c_e5UL6vaikXyG8,1577
81
- dart_tools-0.8.0.dist-info/licenses/LICENSE,sha256=aD_0TnuylEaAHWNURgifNek_ODn5Pg36o9gFdspgHtg,1061
82
- dart_tools-0.8.0.dist-info/METADATA,sha256=UJejLRhuCYTDcLh_YgaVucW8bdj-SWTMeLILAiSZJxM,8996
83
- dart_tools-0.8.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
84
- dart_tools-0.8.0.dist-info/entry_points.txt,sha256=KOVAnDWJbSKn9HoXWQ7x6NfACYzSMGHBBaBxonHEv6w,34
85
- dart_tools-0.8.0.dist-info/top_level.txt,sha256=ZwUQ6QjCyi1i32BJOAkbOA7UfgitLmIwToJGJwZXPrg,5
86
- dart_tools-0.8.0.dist-info/RECORD,,
88
+ dart_tools-0.8.2.dist-info/licenses/LICENSE,sha256=aD_0TnuylEaAHWNURgifNek_ODn5Pg36o9gFdspgHtg,1061
89
+ dart_tools-0.8.2.dist-info/METADATA,sha256=PujAEEtpoO9fqc6NqzerRjdpt_twbwwg1OP58qIOOXE,8996
90
+ dart_tools-0.8.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
91
+ dart_tools-0.8.2.dist-info/entry_points.txt,sha256=KOVAnDWJbSKn9HoXWQ7x6NfACYzSMGHBBaBxonHEv6w,34
92
+ dart_tools-0.8.2.dist-info/top_level.txt,sha256=ZwUQ6QjCyi1i32BJOAkbOA7UfgitLmIwToJGJwZXPrg,5
93
+ dart_tools-0.8.2.dist-info/RECORD,,