dart-tools 0.7.2__py3-none-any.whl → 0.7.4__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/generated/api/__init__.py +5 -12
- dart/generated/api/dartboard/retrieve_dartboard.py +3 -1
- dart/generated/api/doc/delete_doc.py +3 -1
- dart/generated/api/doc/retrieve_doc.py +3 -1
- dart/generated/api/doc/update_doc.py +3 -1
- dart/generated/api/folder/retrieve_folder.py +3 -1
- dart/generated/api/task/delete_task.py +3 -1
- dart/generated/api/task/list_tasks.py +15 -0
- dart/generated/api/task/retrieve_task.py +3 -1
- dart/generated/api/task/update_task.py +3 -1
- dart/generated/api/view/retrieve_view.py +3 -1
- dart/generated/models/__init__.py +42 -0
- dart/generated/models/concise_task.py +68 -7
- dart/generated/models/custom_properties.py +131 -0
- dart/generated/models/task.py +68 -7
- dart/generated/models/task_create.py +66 -15
- dart/generated/models/task_update.py +66 -15
- dart/generated/models/user_space_configuration.py +242 -0
- dart/generated/models/user_space_configuration_custom_property_checkbox_type_def.py +74 -0
- dart/generated/models/user_space_configuration_custom_property_dates_type_def.py +82 -0
- dart/generated/models/user_space_configuration_custom_property_multiselect_type_def.py +82 -0
- dart/generated/models/user_space_configuration_custom_property_number_type_def.py +86 -0
- dart/generated/models/user_space_configuration_custom_property_number_type_def_custom_property_number_format_type_def.py +10 -0
- dart/generated/models/user_space_configuration_custom_property_select_type_def.py +82 -0
- dart/generated/models/user_space_configuration_custom_property_status_type_def.py +74 -0
- dart/generated/models/user_space_configuration_custom_property_text_type_def.py +74 -0
- dart/generated/models/user_space_configuration_custom_property_time_tracking_type_def.py +74 -0
- dart/generated/models/user_space_configuration_custom_property_user_type_def.py +82 -0
- {dart_tools-0.7.2.dist-info → dart_tools-0.7.4.dist-info}/METADATA +7 -7
- {dart_tools-0.7.2.dist-info → dart_tools-0.7.4.dist-info}/RECORD +34 -24
- {dart_tools-0.7.2.dist-info → dart_tools-0.7.4.dist-info}/WHEEL +1 -1
- {dart_tools-0.7.2.dist-info → dart_tools-0.7.4.dist-info}/licenses/LICENSE +1 -1
- dart/generated/py.typed +0 -1
- {dart_tools-0.7.2.dist-info → dart_tools-0.7.4.dist-info}/entry_points.txt +0 -0
- {dart_tools-0.7.2.dist-info → dart_tools-0.7.4.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
from collections.abc import Mapping
|
|
2
|
+
from typing import (
|
|
3
|
+
Any,
|
|
4
|
+
Literal,
|
|
5
|
+
TypeVar,
|
|
6
|
+
cast,
|
|
7
|
+
)
|
|
8
|
+
|
|
9
|
+
from attrs import define as _attrs_define
|
|
10
|
+
from attrs import field as _attrs_field
|
|
11
|
+
|
|
12
|
+
T = TypeVar("T", bound="UserSpaceConfigurationCustomPropertySelectTypeDef")
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@_attrs_define
|
|
16
|
+
class UserSpaceConfigurationCustomPropertySelectTypeDef:
|
|
17
|
+
"""
|
|
18
|
+
Attributes:
|
|
19
|
+
name (str):
|
|
20
|
+
type_ (Literal['Select']):
|
|
21
|
+
options (list[str]):
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
name: str
|
|
25
|
+
type_: Literal["Select"]
|
|
26
|
+
options: list[str]
|
|
27
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
28
|
+
|
|
29
|
+
def to_dict(self) -> dict[str, Any]:
|
|
30
|
+
name = self.name
|
|
31
|
+
|
|
32
|
+
type_ = self.type_
|
|
33
|
+
|
|
34
|
+
options = self.options
|
|
35
|
+
|
|
36
|
+
field_dict: dict[str, Any] = {}
|
|
37
|
+
field_dict.update(self.additional_properties)
|
|
38
|
+
field_dict.update(
|
|
39
|
+
{
|
|
40
|
+
"name": name,
|
|
41
|
+
"type": type_,
|
|
42
|
+
"options": options,
|
|
43
|
+
}
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
return field_dict
|
|
47
|
+
|
|
48
|
+
@classmethod
|
|
49
|
+
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
50
|
+
d = dict(src_dict)
|
|
51
|
+
name = d.pop("name")
|
|
52
|
+
|
|
53
|
+
type_ = cast(Literal["Select"], d.pop("type"))
|
|
54
|
+
if type_ != "Select":
|
|
55
|
+
raise ValueError(f"type must match const 'Select', got '{type_}'")
|
|
56
|
+
|
|
57
|
+
options = cast(list[str], d.pop("options"))
|
|
58
|
+
|
|
59
|
+
user_space_configuration_custom_property_select_type_def = cls(
|
|
60
|
+
name=name,
|
|
61
|
+
type_=type_,
|
|
62
|
+
options=options,
|
|
63
|
+
)
|
|
64
|
+
|
|
65
|
+
user_space_configuration_custom_property_select_type_def.additional_properties = d
|
|
66
|
+
return user_space_configuration_custom_property_select_type_def
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
def additional_keys(self) -> list[str]:
|
|
70
|
+
return list(self.additional_properties.keys())
|
|
71
|
+
|
|
72
|
+
def __getitem__(self, key: str) -> Any:
|
|
73
|
+
return self.additional_properties[key]
|
|
74
|
+
|
|
75
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
76
|
+
self.additional_properties[key] = value
|
|
77
|
+
|
|
78
|
+
def __delitem__(self, key: str) -> None:
|
|
79
|
+
del self.additional_properties[key]
|
|
80
|
+
|
|
81
|
+
def __contains__(self, key: str) -> bool:
|
|
82
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
from collections.abc import Mapping
|
|
2
|
+
from typing import (
|
|
3
|
+
Any,
|
|
4
|
+
Literal,
|
|
5
|
+
TypeVar,
|
|
6
|
+
cast,
|
|
7
|
+
)
|
|
8
|
+
|
|
9
|
+
from attrs import define as _attrs_define
|
|
10
|
+
from attrs import field as _attrs_field
|
|
11
|
+
|
|
12
|
+
T = TypeVar("T", bound="UserSpaceConfigurationCustomPropertyStatusTypeDef")
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@_attrs_define
|
|
16
|
+
class UserSpaceConfigurationCustomPropertyStatusTypeDef:
|
|
17
|
+
"""
|
|
18
|
+
Attributes:
|
|
19
|
+
name (str):
|
|
20
|
+
type_ (Literal['Status']):
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
name: str
|
|
24
|
+
type_: Literal["Status"]
|
|
25
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
26
|
+
|
|
27
|
+
def to_dict(self) -> dict[str, Any]:
|
|
28
|
+
name = self.name
|
|
29
|
+
|
|
30
|
+
type_ = self.type_
|
|
31
|
+
|
|
32
|
+
field_dict: dict[str, Any] = {}
|
|
33
|
+
field_dict.update(self.additional_properties)
|
|
34
|
+
field_dict.update(
|
|
35
|
+
{
|
|
36
|
+
"name": name,
|
|
37
|
+
"type": type_,
|
|
38
|
+
}
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
return field_dict
|
|
42
|
+
|
|
43
|
+
@classmethod
|
|
44
|
+
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
45
|
+
d = dict(src_dict)
|
|
46
|
+
name = d.pop("name")
|
|
47
|
+
|
|
48
|
+
type_ = cast(Literal["Status"], d.pop("type"))
|
|
49
|
+
if type_ != "Status":
|
|
50
|
+
raise ValueError(f"type must match const 'Status', got '{type_}'")
|
|
51
|
+
|
|
52
|
+
user_space_configuration_custom_property_status_type_def = cls(
|
|
53
|
+
name=name,
|
|
54
|
+
type_=type_,
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
user_space_configuration_custom_property_status_type_def.additional_properties = d
|
|
58
|
+
return user_space_configuration_custom_property_status_type_def
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
def additional_keys(self) -> list[str]:
|
|
62
|
+
return list(self.additional_properties.keys())
|
|
63
|
+
|
|
64
|
+
def __getitem__(self, key: str) -> Any:
|
|
65
|
+
return self.additional_properties[key]
|
|
66
|
+
|
|
67
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
68
|
+
self.additional_properties[key] = value
|
|
69
|
+
|
|
70
|
+
def __delitem__(self, key: str) -> None:
|
|
71
|
+
del self.additional_properties[key]
|
|
72
|
+
|
|
73
|
+
def __contains__(self, key: str) -> bool:
|
|
74
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
from collections.abc import Mapping
|
|
2
|
+
from typing import (
|
|
3
|
+
Any,
|
|
4
|
+
Literal,
|
|
5
|
+
TypeVar,
|
|
6
|
+
cast,
|
|
7
|
+
)
|
|
8
|
+
|
|
9
|
+
from attrs import define as _attrs_define
|
|
10
|
+
from attrs import field as _attrs_field
|
|
11
|
+
|
|
12
|
+
T = TypeVar("T", bound="UserSpaceConfigurationCustomPropertyTextTypeDef")
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@_attrs_define
|
|
16
|
+
class UserSpaceConfigurationCustomPropertyTextTypeDef:
|
|
17
|
+
"""
|
|
18
|
+
Attributes:
|
|
19
|
+
name (str):
|
|
20
|
+
type_ (Literal['Text']):
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
name: str
|
|
24
|
+
type_: Literal["Text"]
|
|
25
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
26
|
+
|
|
27
|
+
def to_dict(self) -> dict[str, Any]:
|
|
28
|
+
name = self.name
|
|
29
|
+
|
|
30
|
+
type_ = self.type_
|
|
31
|
+
|
|
32
|
+
field_dict: dict[str, Any] = {}
|
|
33
|
+
field_dict.update(self.additional_properties)
|
|
34
|
+
field_dict.update(
|
|
35
|
+
{
|
|
36
|
+
"name": name,
|
|
37
|
+
"type": type_,
|
|
38
|
+
}
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
return field_dict
|
|
42
|
+
|
|
43
|
+
@classmethod
|
|
44
|
+
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
45
|
+
d = dict(src_dict)
|
|
46
|
+
name = d.pop("name")
|
|
47
|
+
|
|
48
|
+
type_ = cast(Literal["Text"], d.pop("type"))
|
|
49
|
+
if type_ != "Text":
|
|
50
|
+
raise ValueError(f"type must match const 'Text', got '{type_}'")
|
|
51
|
+
|
|
52
|
+
user_space_configuration_custom_property_text_type_def = cls(
|
|
53
|
+
name=name,
|
|
54
|
+
type_=type_,
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
user_space_configuration_custom_property_text_type_def.additional_properties = d
|
|
58
|
+
return user_space_configuration_custom_property_text_type_def
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
def additional_keys(self) -> list[str]:
|
|
62
|
+
return list(self.additional_properties.keys())
|
|
63
|
+
|
|
64
|
+
def __getitem__(self, key: str) -> Any:
|
|
65
|
+
return self.additional_properties[key]
|
|
66
|
+
|
|
67
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
68
|
+
self.additional_properties[key] = value
|
|
69
|
+
|
|
70
|
+
def __delitem__(self, key: str) -> None:
|
|
71
|
+
del self.additional_properties[key]
|
|
72
|
+
|
|
73
|
+
def __contains__(self, key: str) -> bool:
|
|
74
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
from collections.abc import Mapping
|
|
2
|
+
from typing import (
|
|
3
|
+
Any,
|
|
4
|
+
Literal,
|
|
5
|
+
TypeVar,
|
|
6
|
+
cast,
|
|
7
|
+
)
|
|
8
|
+
|
|
9
|
+
from attrs import define as _attrs_define
|
|
10
|
+
from attrs import field as _attrs_field
|
|
11
|
+
|
|
12
|
+
T = TypeVar("T", bound="UserSpaceConfigurationCustomPropertyTimeTrackingTypeDef")
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@_attrs_define
|
|
16
|
+
class UserSpaceConfigurationCustomPropertyTimeTrackingTypeDef:
|
|
17
|
+
"""
|
|
18
|
+
Attributes:
|
|
19
|
+
name (str):
|
|
20
|
+
type_ (Literal['Time tracking']):
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
name: str
|
|
24
|
+
type_: Literal["Time tracking"]
|
|
25
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
26
|
+
|
|
27
|
+
def to_dict(self) -> dict[str, Any]:
|
|
28
|
+
name = self.name
|
|
29
|
+
|
|
30
|
+
type_ = self.type_
|
|
31
|
+
|
|
32
|
+
field_dict: dict[str, Any] = {}
|
|
33
|
+
field_dict.update(self.additional_properties)
|
|
34
|
+
field_dict.update(
|
|
35
|
+
{
|
|
36
|
+
"name": name,
|
|
37
|
+
"type": type_,
|
|
38
|
+
}
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
return field_dict
|
|
42
|
+
|
|
43
|
+
@classmethod
|
|
44
|
+
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
45
|
+
d = dict(src_dict)
|
|
46
|
+
name = d.pop("name")
|
|
47
|
+
|
|
48
|
+
type_ = cast(Literal["Time tracking"], d.pop("type"))
|
|
49
|
+
if type_ != "Time tracking":
|
|
50
|
+
raise ValueError(f"type must match const 'Time tracking', got '{type_}'")
|
|
51
|
+
|
|
52
|
+
user_space_configuration_custom_property_time_tracking_type_def = cls(
|
|
53
|
+
name=name,
|
|
54
|
+
type_=type_,
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
user_space_configuration_custom_property_time_tracking_type_def.additional_properties = d
|
|
58
|
+
return user_space_configuration_custom_property_time_tracking_type_def
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
def additional_keys(self) -> list[str]:
|
|
62
|
+
return list(self.additional_properties.keys())
|
|
63
|
+
|
|
64
|
+
def __getitem__(self, key: str) -> Any:
|
|
65
|
+
return self.additional_properties[key]
|
|
66
|
+
|
|
67
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
68
|
+
self.additional_properties[key] = value
|
|
69
|
+
|
|
70
|
+
def __delitem__(self, key: str) -> None:
|
|
71
|
+
del self.additional_properties[key]
|
|
72
|
+
|
|
73
|
+
def __contains__(self, key: str) -> bool:
|
|
74
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
from collections.abc import Mapping
|
|
2
|
+
from typing import (
|
|
3
|
+
Any,
|
|
4
|
+
Literal,
|
|
5
|
+
TypeVar,
|
|
6
|
+
cast,
|
|
7
|
+
)
|
|
8
|
+
|
|
9
|
+
from attrs import define as _attrs_define
|
|
10
|
+
from attrs import field as _attrs_field
|
|
11
|
+
|
|
12
|
+
T = TypeVar("T", bound="UserSpaceConfigurationCustomPropertyUserTypeDef")
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@_attrs_define
|
|
16
|
+
class UserSpaceConfigurationCustomPropertyUserTypeDef:
|
|
17
|
+
"""
|
|
18
|
+
Attributes:
|
|
19
|
+
name (str):
|
|
20
|
+
type_ (Literal['User']):
|
|
21
|
+
is_multiple (bool):
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
name: str
|
|
25
|
+
type_: Literal["User"]
|
|
26
|
+
is_multiple: bool
|
|
27
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
28
|
+
|
|
29
|
+
def to_dict(self) -> dict[str, Any]:
|
|
30
|
+
name = self.name
|
|
31
|
+
|
|
32
|
+
type_ = self.type_
|
|
33
|
+
|
|
34
|
+
is_multiple = self.is_multiple
|
|
35
|
+
|
|
36
|
+
field_dict: dict[str, Any] = {}
|
|
37
|
+
field_dict.update(self.additional_properties)
|
|
38
|
+
field_dict.update(
|
|
39
|
+
{
|
|
40
|
+
"name": name,
|
|
41
|
+
"type": type_,
|
|
42
|
+
"isMultiple": is_multiple,
|
|
43
|
+
}
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
return field_dict
|
|
47
|
+
|
|
48
|
+
@classmethod
|
|
49
|
+
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
50
|
+
d = dict(src_dict)
|
|
51
|
+
name = d.pop("name")
|
|
52
|
+
|
|
53
|
+
type_ = cast(Literal["User"], d.pop("type"))
|
|
54
|
+
if type_ != "User":
|
|
55
|
+
raise ValueError(f"type must match const 'User', got '{type_}'")
|
|
56
|
+
|
|
57
|
+
is_multiple = d.pop("isMultiple")
|
|
58
|
+
|
|
59
|
+
user_space_configuration_custom_property_user_type_def = cls(
|
|
60
|
+
name=name,
|
|
61
|
+
type_=type_,
|
|
62
|
+
is_multiple=is_multiple,
|
|
63
|
+
)
|
|
64
|
+
|
|
65
|
+
user_space_configuration_custom_property_user_type_def.additional_properties = d
|
|
66
|
+
return user_space_configuration_custom_property_user_type_def
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
def additional_keys(self) -> list[str]:
|
|
70
|
+
return list(self.additional_properties.keys())
|
|
71
|
+
|
|
72
|
+
def __getitem__(self, key: str) -> Any:
|
|
73
|
+
return self.additional_properties[key]
|
|
74
|
+
|
|
75
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
76
|
+
self.additional_properties[key] = value
|
|
77
|
+
|
|
78
|
+
def __delitem__(self, key: str) -> None:
|
|
79
|
+
del self.additional_properties[key]
|
|
80
|
+
|
|
81
|
+
def __contains__(self, key: str) -> bool:
|
|
82
|
+
return key in self.additional_properties
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dart-tools
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.4
|
|
4
4
|
Summary: The Dart CLI and Python Library
|
|
5
5
|
Author-email: Dart <software@itsdart.com>
|
|
6
6
|
License: MIT License
|
|
7
7
|
|
|
8
|
-
Copyright (c)
|
|
8
|
+
Copyright (c) 2025 Dart
|
|
9
9
|
|
|
10
10
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
11
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -54,11 +54,11 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
54
54
|
Requires-Python: >=3.9
|
|
55
55
|
Description-Content-Type: text/markdown
|
|
56
56
|
License-File: LICENSE
|
|
57
|
-
Requires-Dist: attrs
|
|
58
|
-
Requires-Dist: dateparser
|
|
59
|
-
Requires-Dist: httpx
|
|
60
|
-
Requires-Dist: pick
|
|
61
|
-
Requires-Dist: platformdirs
|
|
57
|
+
Requires-Dist: attrs>=25.3
|
|
58
|
+
Requires-Dist: dateparser>=1.2
|
|
59
|
+
Requires-Dist: httpx>=0.28
|
|
60
|
+
Requires-Dist: pick>=2.4
|
|
61
|
+
Requires-Dist: platformdirs>=4.3
|
|
62
62
|
Dynamic: license-file
|
|
63
63
|
|
|
64
64
|
<div align="center">
|
|
@@ -7,36 +7,36 @@ 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
|
-
dart/generated/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
11
10
|
dart/generated/types.py,sha256=E1hhDh_zXfsSQ0NCt9-uw90_Mr5iIlsdfnfvxv5HarU,1005
|
|
12
|
-
dart/generated/api/__init__.py,sha256=
|
|
11
|
+
dart/generated/api/__init__.py,sha256=LmRMQNOJjUSyQhrOaV7YNBf0HDM0BHQ_O5TVEaG9aqc,383
|
|
13
12
|
dart/generated/api/comment/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
14
13
|
dart/generated/api/comment/create_comment.py,sha256=G9kpQ60IrMC4cxXP--wsPvVtYPMmByy-t55wV4WkvbI,4757
|
|
15
14
|
dart/generated/api/config/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
16
15
|
dart/generated/api/config/get_config.py,sha256=C9Pw-IhVpxCaIv_rbL85kKBsHze9rJ0O1FTXyFbSw9I,3913
|
|
17
16
|
dart/generated/api/dartboard/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
18
|
-
dart/generated/api/dartboard/retrieve_dartboard.py,sha256=
|
|
17
|
+
dart/generated/api/dartboard/retrieve_dartboard.py,sha256=OOlHfnllNwvMxzJ_LYs2i5rFu5NzCQ8OCpKcfRQLcsk,4584
|
|
19
18
|
dart/generated/api/doc/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
20
19
|
dart/generated/api/doc/create_doc.py,sha256=IK0FDGTzdjT_b5uDCJbtbBZygGt_Lh_0XyJBBVFDorc,4993
|
|
21
|
-
dart/generated/api/doc/delete_doc.py,sha256=
|
|
20
|
+
dart/generated/api/doc/delete_doc.py,sha256=tO-E4p3ZETAkJiMokIsFV6W6wa3zkPV5Fp4a97-3eWU,4355
|
|
22
21
|
dart/generated/api/doc/list_docs.py,sha256=-u0K6yeTmZyaN2E9a9dTHgCkjhD9CFopYV4vLOfQEqo,8869
|
|
23
|
-
dart/generated/api/doc/retrieve_doc.py,sha256=
|
|
24
|
-
dart/generated/api/doc/update_doc.py,sha256=
|
|
22
|
+
dart/generated/api/doc/retrieve_doc.py,sha256=HbJQx3UJDOYTnXPlNvemGK5-I0hczgLVmvffrIIC1MI,4344
|
|
23
|
+
dart/generated/api/doc/update_doc.py,sha256=3kt2VuN7TAn35iJFR9Im_fO6EHAH6puFA-r7N0m7mZI,5146
|
|
25
24
|
dart/generated/api/folder/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
26
|
-
dart/generated/api/folder/retrieve_folder.py,sha256=
|
|
25
|
+
dart/generated/api/folder/retrieve_folder.py,sha256=Mag6KvIYh8gORQafuNKDnJL59sqPsnwsCjjz_TrxiO0,4502
|
|
27
26
|
dart/generated/api/task/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
28
27
|
dart/generated/api/task/create_task.py,sha256=0qLps0cHZE6LqA9cUQEExEpnhT4k83AHrz8nm1TzS0Q,5057
|
|
29
|
-
dart/generated/api/task/delete_task.py,sha256=
|
|
30
|
-
dart/generated/api/task/list_tasks.py,sha256=
|
|
31
|
-
dart/generated/api/task/retrieve_task.py,sha256=
|
|
32
|
-
dart/generated/api/task/update_task.py,sha256=
|
|
28
|
+
dart/generated/api/task/delete_task.py,sha256=3cpKEcUTKTPkvEW1s7fEXGDVUcNIbAx8AV21R2H2Dxw,4381
|
|
29
|
+
dart/generated/api/task/list_tasks.py,sha256=q4jDwu1D-KH8Pd0wn7LffBTM0ChrTNo6-bZAvv3nBrE,17407
|
|
30
|
+
dart/generated/api/task/retrieve_task.py,sha256=Cmf0FPrbGxzIEO22BrcsixDs_HCEqw07L_MZn8bPXUc,4442
|
|
31
|
+
dart/generated/api/task/update_task.py,sha256=5f8wbMwQqRHya7D-iMFOcSL2VF1-flBUIIOYRJ1PjOA,5183
|
|
33
32
|
dart/generated/api/view/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
34
|
-
dart/generated/api/view/retrieve_view.py,sha256=
|
|
35
|
-
dart/generated/models/__init__.py,sha256=
|
|
33
|
+
dart/generated/api/view/retrieve_view.py,sha256=hQUpYzihR6u9m6Zy02RyHT5UDgPTa8ZvTlyYf-Znm0Y,4454
|
|
34
|
+
dart/generated/models/__init__.py,sha256=uaBYAne8YIOIKz2Kf3GBpYTf7lHap69LEwOF_dikn70,3940
|
|
36
35
|
dart/generated/models/comment.py,sha256=xxjnssdNxXO3iO8cHH5TYDEmsL9ItvH9OM-F0TeljjQ,2361
|
|
37
36
|
dart/generated/models/comment_create.py,sha256=n_Q3riMI0U17rzpp7SKvhnA3YhtyJxXMuXumtVRgZpw,1764
|
|
38
37
|
dart/generated/models/concise_doc.py,sha256=xrJIJr4rm_iG0DlmpemBtzDaOxroHC2NgsG-V9CNsX8,2200
|
|
39
|
-
dart/generated/models/concise_task.py,sha256=
|
|
38
|
+
dart/generated/models/concise_task.py,sha256=aME0txheSEfVzFnIF2kKo5gNrOeAxCFrqxwQCG4etV4,11675
|
|
39
|
+
dart/generated/models/custom_properties.py,sha256=NmBTVtlzJbhZn_DURZLREdw_rVeK_isTQ9LT9CEYDVg,5172
|
|
40
40
|
dart/generated/models/dartboard.py,sha256=QWRy37OFBrlloUAk4_eG9E_pMZgFNAWejYmA1UwL32I,2789
|
|
41
41
|
dart/generated/models/doc.py,sha256=f_1aVMo7aCQTGOhH19IjrkucIbINj7n_OkbaZnbJ9tc,2298
|
|
42
42
|
dart/generated/models/doc_create.py,sha256=HOpiuuDg7fNEkwoUvXqceXKI59cDVBS5PzTR08iYE7E,2134
|
|
@@ -46,11 +46,21 @@ dart/generated/models/list_docs_o_item.py,sha256=owGxTljNQTi1KAHkfTknrSTMEome1x7
|
|
|
46
46
|
dart/generated/models/paginated_concise_doc_list.py,sha256=Y7YbOwd7TaHm7b9rHJvVKEynHEp-xgCyN0Kw5gEZ4i8,3665
|
|
47
47
|
dart/generated/models/paginated_concise_task_list.py,sha256=Yu-r-WvWBH3LfMWGm3YNQ30w1-B0mdxjx5jykKFFQlY,3677
|
|
48
48
|
dart/generated/models/priority.py,sha256=eupjzXQndyaia8svwVmylisIGwl6OQ_0g8pgcsm8118,195
|
|
49
|
-
dart/generated/models/task.py,sha256=
|
|
50
|
-
dart/generated/models/task_create.py,sha256=
|
|
51
|
-
dart/generated/models/task_update.py,sha256=
|
|
49
|
+
dart/generated/models/task.py,sha256=5hfP16QCAZ58YUrFLGa_WcwL1hkdtgBB2mvJWEtU-Is,11846
|
|
50
|
+
dart/generated/models/task_create.py,sha256=2lK42smy-3vDVm82rvEi2DTk2yZQNgiemt-iCki9fTk,11578
|
|
51
|
+
dart/generated/models/task_update.py,sha256=V5C7W0OJqEgYExlrA8FCD86RZ42gb9_Yf5H_L08iGqk,11821
|
|
52
52
|
dart/generated/models/user.py,sha256=Vl63zDoadat1k5NtTq3AAI0NMTp5T3DOIAcM5zZXD3o,1552
|
|
53
|
-
dart/generated/models/user_space_configuration.py,sha256=
|
|
53
|
+
dart/generated/models/user_space_configuration.py,sha256=iFfcWLp2kmSYO3uR92CyeY2BV6mm6FtGSyYeW5y_zZk,16898
|
|
54
|
+
dart/generated/models/user_space_configuration_custom_property_checkbox_type_def.py,sha256=tW7yyj3vN2_pf_DFLiWDEiXnIwj2P-fPsl9cc4y55uw,2014
|
|
55
|
+
dart/generated/models/user_space_configuration_custom_property_dates_type_def.py,sha256=FCMD8RyFO-xKz8gFOmxZoKOLVVXTAF1aoDXf6lzwTVI,2167
|
|
56
|
+
dart/generated/models/user_space_configuration_custom_property_multiselect_type_def.py,sha256=KmHqf_NCZbMQG_GaaLPZ1Mm5FSiQQP5Ro3LOZAyl61g,2246
|
|
57
|
+
dart/generated/models/user_space_configuration_custom_property_number_type_def.py,sha256=V8ahGgXSUhN0xN9B2U4lN5AvXFkYe7lHE3N3rg8SS9w,2623
|
|
58
|
+
dart/generated/models/user_space_configuration_custom_property_number_type_def_custom_property_number_format_type_def.py,sha256=c2TkfeoVX66ZIrTb0aU9FTT0sktWtWDC5AmAcsmNxCI,265
|
|
59
|
+
dart/generated/models/user_space_configuration_custom_property_select_type_def.py,sha256=KApr_pWraBW8O1VIAO5nzL1YA5Fmu-ljJKTtu49nHxg,2196
|
|
60
|
+
dart/generated/models/user_space_configuration_custom_property_status_type_def.py,sha256=KVFN8Vv2u9SA4kSNlf_VBtCl6BqHm7yjAA_dDPMFR4I,1994
|
|
61
|
+
dart/generated/models/user_space_configuration_custom_property_text_type_def.py,sha256=xxTXv-Sq8-6YC_Xp-8l3R9Vgtq4DkXWUjUtGtsczVwQ,1974
|
|
62
|
+
dart/generated/models/user_space_configuration_custom_property_time_tracking_type_def.py,sha256=B9va5jpkdEawyaB7eikffJPevJRWZAYEcQld_SMv8lw,2062
|
|
63
|
+
dart/generated/models/user_space_configuration_custom_property_user_type_def.py,sha256=O5M7KvMe_jd2kafazvR6HD6Qj16YtPbkZHfEaVmJ9dE,2187
|
|
54
64
|
dart/generated/models/view.py,sha256=X7w6hH387LTAY8nbjGDNdf0hbho2O2al8kVOhCZi4Pg,2739
|
|
55
65
|
dart/generated/models/wrapped_comment.py,sha256=tjMBU-NZYQ6n_jSn6LOT00JPWGcJjFjAWSlz77cDIT8,1613
|
|
56
66
|
dart/generated/models/wrapped_comment_create.py,sha256=g_t09rNShbqDpdkUBSGY0jS5tO0qaPtoJR_VfewTZq0,1690
|
|
@@ -63,9 +73,9 @@ dart/generated/models/wrapped_task.py,sha256=TRlVMxIGhDwSaJlXdMH6q7Vx2hpz7EdiGns
|
|
|
63
73
|
dart/generated/models/wrapped_task_create.py,sha256=Oxdot2EwfEuC3l4uo0fAvmyjRNVkXALmWCvfgHI7BcI,1654
|
|
64
74
|
dart/generated/models/wrapped_task_update.py,sha256=_erGSSR_k6ahF_RFjgLKdyitx5TDQiFw_Ml77zHQdJM,1654
|
|
65
75
|
dart/generated/models/wrapped_view.py,sha256=zflJxA4UnITM8w-0EObw4AF54yS-c_e5UL6vaikXyG8,1577
|
|
66
|
-
dart_tools-0.7.
|
|
67
|
-
dart_tools-0.7.
|
|
68
|
-
dart_tools-0.7.
|
|
69
|
-
dart_tools-0.7.
|
|
70
|
-
dart_tools-0.7.
|
|
71
|
-
dart_tools-0.7.
|
|
76
|
+
dart_tools-0.7.4.dist-info/licenses/LICENSE,sha256=aD_0TnuylEaAHWNURgifNek_ODn5Pg36o9gFdspgHtg,1061
|
|
77
|
+
dart_tools-0.7.4.dist-info/METADATA,sha256=2AYJyrO3ren5lVJaS6Y227f3VmrOBfXIwD4WhI_gg7w,9008
|
|
78
|
+
dart_tools-0.7.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
79
|
+
dart_tools-0.7.4.dist-info/entry_points.txt,sha256=KOVAnDWJbSKn9HoXWQ7x6NfACYzSMGHBBaBxonHEv6w,34
|
|
80
|
+
dart_tools-0.7.4.dist-info/top_level.txt,sha256=ZwUQ6QjCyi1i32BJOAkbOA7UfgitLmIwToJGJwZXPrg,5
|
|
81
|
+
dart_tools-0.7.4.dist-info/RECORD,,
|
dart/generated/py.typed
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# Marker file for PEP 561
|
|
File without changes
|
|
File without changes
|