dart-tools 0.6.13__py3-none-any.whl → 0.6.15__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/comments/comments_list.py +15 -0
- dart/generated/api/dartboards/dartboards_list.py +15 -0
- dart/generated/api/dashboards/dashboards_list.py +15 -0
- dart/generated/api/docs/docs_list.py +15 -0
- dart/generated/api/folders/folders_list.py +15 -0
- dart/generated/api/options/options_list.py +15 -0
- dart/generated/api/properties/properties_list.py +15 -0
- dart/generated/api/spaces/spaces_list.py +15 -0
- dart/generated/api/statuses/statuses_list.py +15 -0
- dart/generated/api/task_kinds/task_kinds_list.py +15 -0
- dart/generated/api/tasks/tasks_list.py +15 -0
- dart/generated/api/users/users_list.py +15 -0
- dart/generated/api/views/views_list.py +15 -0
- dart/generated/models/bar_chart_adtl.py +26 -0
- dart/generated/models/dartboard.py +25 -0
- dart/generated/models/dartboard_create.py +30 -0
- dart/generated/models/dartboard_update.py +30 -0
- dart/generated/models/docs_list_o_item.py +6 -2
- dart/generated/models/space.py +0 -14
- dart/generated/models/space_create.py +0 -20
- dart/generated/models/space_update.py +0 -20
- dart/generated/models/table_chart_adtl.py +8 -8
- dart/generated/models/task_create.py +6 -8
- dart/generated/models/tenant.py +8 -0
- dart/generated/models/tenant_update.py +9 -0
- dart/generated/models/transaction.py +11 -9
- dart/generated/models/user.py +13 -13
- {dart_tools-0.6.13.dist-info → dart_tools-0.6.15.dist-info}/METADATA +3 -11
- {dart_tools-0.6.13.dist-info → dart_tools-0.6.15.dist-info}/RECORD +34 -34
- {dart_tools-0.6.13.dist-info → dart_tools-0.6.15.dist-info}/LICENSE +0 -0
- {dart_tools-0.6.13.dist-info → dart_tools-0.6.15.dist-info}/WHEEL +0 -0
- {dart_tools-0.6.13.dist-info → dart_tools-0.6.15.dist-info}/dist/dart-tools-0.3.3.tar.gz +0 -0
- {dart_tools-0.6.13.dist-info → dart_tools-0.6.15.dist-info}/entry_points.txt +0 -0
- {dart_tools-0.6.13.dist-info → dart_tools-0.6.15.dist-info}/top_level.txt +0 -0
dart/generated/models/tenant.py
CHANGED
|
@@ -35,6 +35,7 @@ class Tenant:
|
|
|
35
35
|
backlog_enabled (bool):
|
|
36
36
|
ai_assignment_enabled (bool):
|
|
37
37
|
email_integration_enabled (bool):
|
|
38
|
+
scim_enabled (bool):
|
|
38
39
|
close_parent_on_close_all_subtasks (bool):
|
|
39
40
|
move_subtasks_on_move_parent (bool):
|
|
40
41
|
update_subtasks_status_on_update_parent_status (bool):
|
|
@@ -61,6 +62,7 @@ class Tenant:
|
|
|
61
62
|
backlog_enabled: bool
|
|
62
63
|
ai_assignment_enabled: bool
|
|
63
64
|
email_integration_enabled: bool
|
|
65
|
+
scim_enabled: bool
|
|
64
66
|
close_parent_on_close_all_subtasks: bool
|
|
65
67
|
move_subtasks_on_move_parent: bool
|
|
66
68
|
update_subtasks_status_on_update_parent_status: bool
|
|
@@ -107,6 +109,8 @@ class Tenant:
|
|
|
107
109
|
|
|
108
110
|
email_integration_enabled = self.email_integration_enabled
|
|
109
111
|
|
|
112
|
+
scim_enabled = self.scim_enabled
|
|
113
|
+
|
|
110
114
|
close_parent_on_close_all_subtasks = self.close_parent_on_close_all_subtasks
|
|
111
115
|
|
|
112
116
|
move_subtasks_on_move_parent = self.move_subtasks_on_move_parent
|
|
@@ -172,6 +176,7 @@ class Tenant:
|
|
|
172
176
|
"backlogEnabled": backlog_enabled,
|
|
173
177
|
"aiAssignmentEnabled": ai_assignment_enabled,
|
|
174
178
|
"emailIntegrationEnabled": email_integration_enabled,
|
|
179
|
+
"scimEnabled": scim_enabled,
|
|
175
180
|
"closeParentOnCloseAllSubtasks": close_parent_on_close_all_subtasks,
|
|
176
181
|
"moveSubtasksOnMoveParent": move_subtasks_on_move_parent,
|
|
177
182
|
"updateSubtasksStatusOnUpdateParentStatus": update_subtasks_status_on_update_parent_status,
|
|
@@ -227,6 +232,8 @@ class Tenant:
|
|
|
227
232
|
|
|
228
233
|
email_integration_enabled = d.pop("emailIntegrationEnabled")
|
|
229
234
|
|
|
235
|
+
scim_enabled = d.pop("scimEnabled")
|
|
236
|
+
|
|
230
237
|
close_parent_on_close_all_subtasks = d.pop("closeParentOnCloseAllSubtasks")
|
|
231
238
|
|
|
232
239
|
move_subtasks_on_move_parent = d.pop("moveSubtasksOnMoveParent")
|
|
@@ -343,6 +350,7 @@ class Tenant:
|
|
|
343
350
|
backlog_enabled=backlog_enabled,
|
|
344
351
|
ai_assignment_enabled=ai_assignment_enabled,
|
|
345
352
|
email_integration_enabled=email_integration_enabled,
|
|
353
|
+
scim_enabled=scim_enabled,
|
|
346
354
|
close_parent_on_close_all_subtasks=close_parent_on_close_all_subtasks,
|
|
347
355
|
move_subtasks_on_move_parent=move_subtasks_on_move_parent,
|
|
348
356
|
update_subtasks_status_on_update_parent_status=update_subtasks_status_on_update_parent_status,
|
|
@@ -17,6 +17,7 @@ class TenantUpdate:
|
|
|
17
17
|
backlog_enabled (Union[Unset, bool]):
|
|
18
18
|
ai_assignment_enabled (Union[Unset, bool]):
|
|
19
19
|
email_integration_enabled (Union[Unset, bool]):
|
|
20
|
+
scim_enabled (Union[Unset, bool]):
|
|
20
21
|
close_parent_on_close_all_subtasks (Union[Unset, bool]):
|
|
21
22
|
move_subtasks_on_move_parent (Union[Unset, bool]):
|
|
22
23
|
update_subtasks_status_on_update_parent_status (Union[Unset, bool]):
|
|
@@ -31,6 +32,7 @@ class TenantUpdate:
|
|
|
31
32
|
backlog_enabled: Union[Unset, bool] = UNSET
|
|
32
33
|
ai_assignment_enabled: Union[Unset, bool] = UNSET
|
|
33
34
|
email_integration_enabled: Union[Unset, bool] = UNSET
|
|
35
|
+
scim_enabled: Union[Unset, bool] = UNSET
|
|
34
36
|
close_parent_on_close_all_subtasks: Union[Unset, bool] = UNSET
|
|
35
37
|
move_subtasks_on_move_parent: Union[Unset, bool] = UNSET
|
|
36
38
|
update_subtasks_status_on_update_parent_status: Union[Unset, bool] = UNSET
|
|
@@ -51,6 +53,8 @@ class TenantUpdate:
|
|
|
51
53
|
|
|
52
54
|
email_integration_enabled = self.email_integration_enabled
|
|
53
55
|
|
|
56
|
+
scim_enabled = self.scim_enabled
|
|
57
|
+
|
|
54
58
|
close_parent_on_close_all_subtasks = self.close_parent_on_close_all_subtasks
|
|
55
59
|
|
|
56
60
|
move_subtasks_on_move_parent = self.move_subtasks_on_move_parent
|
|
@@ -78,6 +82,8 @@ class TenantUpdate:
|
|
|
78
82
|
field_dict["aiAssignmentEnabled"] = ai_assignment_enabled
|
|
79
83
|
if email_integration_enabled is not UNSET:
|
|
80
84
|
field_dict["emailIntegrationEnabled"] = email_integration_enabled
|
|
85
|
+
if scim_enabled is not UNSET:
|
|
86
|
+
field_dict["scimEnabled"] = scim_enabled
|
|
81
87
|
if close_parent_on_close_all_subtasks is not UNSET:
|
|
82
88
|
field_dict["closeParentOnCloseAllSubtasks"] = close_parent_on_close_all_subtasks
|
|
83
89
|
if move_subtasks_on_move_parent is not UNSET:
|
|
@@ -108,6 +114,8 @@ class TenantUpdate:
|
|
|
108
114
|
|
|
109
115
|
email_integration_enabled = d.pop("emailIntegrationEnabled", UNSET)
|
|
110
116
|
|
|
117
|
+
scim_enabled = d.pop("scimEnabled", UNSET)
|
|
118
|
+
|
|
111
119
|
close_parent_on_close_all_subtasks = d.pop("closeParentOnCloseAllSubtasks", UNSET)
|
|
112
120
|
|
|
113
121
|
move_subtasks_on_move_parent = d.pop("moveSubtasksOnMoveParent", UNSET)
|
|
@@ -128,6 +136,7 @@ class TenantUpdate:
|
|
|
128
136
|
backlog_enabled=backlog_enabled,
|
|
129
137
|
ai_assignment_enabled=ai_assignment_enabled,
|
|
130
138
|
email_integration_enabled=email_integration_enabled,
|
|
139
|
+
scim_enabled=scim_enabled,
|
|
131
140
|
close_parent_on_close_all_subtasks=close_parent_on_close_all_subtasks,
|
|
132
141
|
move_subtasks_on_move_parent=move_subtasks_on_move_parent,
|
|
133
142
|
update_subtasks_status_on_update_parent_status=update_subtasks_status_on_update_parent_status,
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar
|
|
1
|
+
from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar, Union
|
|
2
2
|
|
|
3
3
|
from attrs import define as _attrs_define
|
|
4
4
|
from attrs import field as _attrs_field
|
|
5
5
|
|
|
6
6
|
from ..models.transaction_kind import TransactionKind
|
|
7
|
+
from ..types import UNSET, Unset
|
|
7
8
|
|
|
8
9
|
if TYPE_CHECKING:
|
|
9
10
|
from ..models.operation import Operation
|
|
@@ -16,7 +17,6 @@ T = TypeVar("T", bound="Transaction")
|
|
|
16
17
|
class Transaction:
|
|
17
18
|
"""
|
|
18
19
|
Attributes:
|
|
19
|
-
duid (str):
|
|
20
20
|
kind (TransactionKind): * `brainstorm_create` - BRAINSTORM_CREATE
|
|
21
21
|
* `brainstorm_delete` - BRAINSTORM_DELETE
|
|
22
22
|
* `brainstorm_update` - BRAINSTORM_UPDATE
|
|
@@ -85,16 +85,15 @@ class Transaction:
|
|
|
85
85
|
* `webhook_delete` - WEBHOOK_DELETE
|
|
86
86
|
* `webhook_update` - WEBHOOK_UPDATE
|
|
87
87
|
operations (List['Operation']):
|
|
88
|
+
duid (Union[Unset, str]):
|
|
88
89
|
"""
|
|
89
90
|
|
|
90
|
-
duid: str
|
|
91
91
|
kind: TransactionKind
|
|
92
92
|
operations: List["Operation"]
|
|
93
|
+
duid: Union[Unset, str] = UNSET
|
|
93
94
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
94
95
|
|
|
95
96
|
def to_dict(self) -> Dict[str, Any]:
|
|
96
|
-
duid = self.duid
|
|
97
|
-
|
|
98
97
|
kind = self.kind.value
|
|
99
98
|
|
|
100
99
|
operations = []
|
|
@@ -102,15 +101,18 @@ class Transaction:
|
|
|
102
101
|
operations_item = operations_item_data.to_dict()
|
|
103
102
|
operations.append(operations_item)
|
|
104
103
|
|
|
104
|
+
duid = self.duid
|
|
105
|
+
|
|
105
106
|
field_dict: Dict[str, Any] = {}
|
|
106
107
|
field_dict.update(self.additional_properties)
|
|
107
108
|
field_dict.update(
|
|
108
109
|
{
|
|
109
|
-
"duid": duid,
|
|
110
110
|
"kind": kind,
|
|
111
111
|
"operations": operations,
|
|
112
112
|
}
|
|
113
113
|
)
|
|
114
|
+
if duid is not UNSET:
|
|
115
|
+
field_dict["duid"] = duid
|
|
114
116
|
|
|
115
117
|
return field_dict
|
|
116
118
|
|
|
@@ -119,8 +121,6 @@ class Transaction:
|
|
|
119
121
|
from ..models.operation import Operation
|
|
120
122
|
|
|
121
123
|
d = src_dict.copy()
|
|
122
|
-
duid = d.pop("duid")
|
|
123
|
-
|
|
124
124
|
kind = TransactionKind(d.pop("kind"))
|
|
125
125
|
|
|
126
126
|
operations = []
|
|
@@ -130,10 +130,12 @@ class Transaction:
|
|
|
130
130
|
|
|
131
131
|
operations.append(operations_item)
|
|
132
132
|
|
|
133
|
+
duid = d.pop("duid", UNSET)
|
|
134
|
+
|
|
133
135
|
transaction = cls(
|
|
134
|
-
duid=duid,
|
|
135
136
|
kind=kind,
|
|
136
137
|
operations=operations,
|
|
138
|
+
duid=duid,
|
|
137
139
|
)
|
|
138
140
|
|
|
139
141
|
transaction.additional_properties = d
|
dart/generated/models/user.py
CHANGED
|
@@ -43,9 +43,9 @@ class User:
|
|
|
43
43
|
* `Overlay` - OVERLAY
|
|
44
44
|
sections (Any):
|
|
45
45
|
layout (Any):
|
|
46
|
+
auth_token (Union[None, str]):
|
|
46
47
|
image_url (Union[None, str]):
|
|
47
48
|
is_admin (bool):
|
|
48
|
-
auth_token (Union[None, str]):
|
|
49
49
|
google_data (Union['GoogleData', None]):
|
|
50
50
|
updated_by_client_duid (Union[None, Unset, str]):
|
|
51
51
|
"""
|
|
@@ -61,9 +61,9 @@ class User:
|
|
|
61
61
|
task_detail_mode: TaskDetailMode
|
|
62
62
|
sections: Any
|
|
63
63
|
layout: Any
|
|
64
|
+
auth_token: Union[None, str]
|
|
64
65
|
image_url: Union[None, str]
|
|
65
66
|
is_admin: bool
|
|
66
|
-
auth_token: Union[None, str]
|
|
67
67
|
google_data: Union["GoogleData", None]
|
|
68
68
|
updated_by_client_duid: Union[None, Unset, str] = UNSET
|
|
69
69
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
@@ -93,14 +93,14 @@ class User:
|
|
|
93
93
|
|
|
94
94
|
layout = self.layout
|
|
95
95
|
|
|
96
|
+
auth_token: Union[None, str]
|
|
97
|
+
auth_token = self.auth_token
|
|
98
|
+
|
|
96
99
|
image_url: Union[None, str]
|
|
97
100
|
image_url = self.image_url
|
|
98
101
|
|
|
99
102
|
is_admin = self.is_admin
|
|
100
103
|
|
|
101
|
-
auth_token: Union[None, str]
|
|
102
|
-
auth_token = self.auth_token
|
|
103
|
-
|
|
104
104
|
google_data: Union[Dict[str, Any], None]
|
|
105
105
|
if isinstance(self.google_data, GoogleData):
|
|
106
106
|
google_data = self.google_data.to_dict()
|
|
@@ -128,9 +128,9 @@ class User:
|
|
|
128
128
|
"taskDetailMode": task_detail_mode,
|
|
129
129
|
"sections": sections,
|
|
130
130
|
"layout": layout,
|
|
131
|
+
"authToken": auth_token,
|
|
131
132
|
"imageUrl": image_url,
|
|
132
133
|
"isAdmin": is_admin,
|
|
133
|
-
"authToken": auth_token,
|
|
134
134
|
"googleData": google_data,
|
|
135
135
|
}
|
|
136
136
|
)
|
|
@@ -166,21 +166,21 @@ class User:
|
|
|
166
166
|
|
|
167
167
|
layout = d.pop("layout")
|
|
168
168
|
|
|
169
|
-
def
|
|
169
|
+
def _parse_auth_token(data: object) -> Union[None, str]:
|
|
170
170
|
if data is None:
|
|
171
171
|
return data
|
|
172
172
|
return cast(Union[None, str], data)
|
|
173
173
|
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
is_admin = d.pop("isAdmin")
|
|
174
|
+
auth_token = _parse_auth_token(d.pop("authToken"))
|
|
177
175
|
|
|
178
|
-
def
|
|
176
|
+
def _parse_image_url(data: object) -> Union[None, str]:
|
|
179
177
|
if data is None:
|
|
180
178
|
return data
|
|
181
179
|
return cast(Union[None, str], data)
|
|
182
180
|
|
|
183
|
-
|
|
181
|
+
image_url = _parse_image_url(d.pop("imageUrl"))
|
|
182
|
+
|
|
183
|
+
is_admin = d.pop("isAdmin")
|
|
184
184
|
|
|
185
185
|
def _parse_google_data(data: object) -> Union["GoogleData", None]:
|
|
186
186
|
if data is None:
|
|
@@ -218,9 +218,9 @@ class User:
|
|
|
218
218
|
task_detail_mode=task_detail_mode,
|
|
219
219
|
sections=sections,
|
|
220
220
|
layout=layout,
|
|
221
|
+
auth_token=auth_token,
|
|
221
222
|
image_url=image_url,
|
|
222
223
|
is_admin=is_admin,
|
|
223
|
-
auth_token=auth_token,
|
|
224
224
|
google_data=google_data,
|
|
225
225
|
updated_by_client_duid=updated_by_client_duid,
|
|
226
226
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: dart-tools
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.15
|
|
4
4
|
Summary: The Dart CLI and Python Library
|
|
5
5
|
Author-email: Dart Software Team <software@itsdart.com>
|
|
6
6
|
License: MIT License
|
|
@@ -78,14 +78,13 @@ Requires-Dist: requests
|
|
|
78
78
|
- [Installation](#installation)
|
|
79
79
|
- [Using the CLI](#using-the-cli)
|
|
80
80
|
- [Using the Python Library](#using-the-python-library)
|
|
81
|
-
|
|
81
|
+
- [Using the Python Library in AWS Lambda Functions](#using-the-python-library-in-aws-lambda-functions)
|
|
82
82
|
- [Advanced Usage](#advanced-usage)
|
|
83
83
|
- [Help and Resources](#help-and-resources)
|
|
84
84
|
- [Contributing](#contributing)
|
|
85
85
|
- [License](#license)
|
|
86
86
|
|
|
87
87
|
|
|
88
|
-
<a name="installation"></a>
|
|
89
88
|
## Installation
|
|
90
89
|
|
|
91
90
|
In the terminal, install by running
|
|
@@ -94,7 +93,6 @@ pip install dart-tools
|
|
|
94
93
|
```
|
|
95
94
|
|
|
96
95
|
|
|
97
|
-
<a name="using-the-cli"></a>
|
|
98
96
|
## Using the CLI
|
|
99
97
|
|
|
100
98
|
Start off by setting up authentication with
|
|
@@ -117,7 +115,6 @@ dart updatetask [DUID] -s Done
|
|
|
117
115
|
This command will mark the referenced task 'Done'. Here `[DUID]` is meant to be replaced (including the brackets) with the 'Dart ID' of an existing task. You can get a DUID from any existing task in a number of ways, such as by copying it from the end of a task's URL or by clicking the '...' button in a task page in Dart and then choosing 'Copy ID'.
|
|
118
116
|
|
|
119
117
|
|
|
120
|
-
<a name="using-the-python-library"></a>
|
|
121
118
|
## Using the Python Library
|
|
122
119
|
|
|
123
120
|
First, set up authentication. Run `dart login` in the terminal for an interactive process, or visit [your Dart profile](https://app.itsdart.com/?settings=account) and then run `dart.login(token)` or save the token into the `DART_TOKEN` environment variable.
|
|
@@ -140,8 +137,7 @@ update_task(new_task.duid, status_title="Done")
|
|
|
140
137
|
```
|
|
141
138
|
|
|
142
139
|
|
|
143
|
-
|
|
144
|
-
### In AWS Lambda Functions
|
|
140
|
+
## Using the Python Library in AWS Lambda Functions
|
|
145
141
|
|
|
146
142
|
To use the `dart-tools` Python library in an AWS Lambda function, you need to package the library with your Lambda deployment package (see more details at [Working with .zip file archives for Python Lambda functions](https://docs.aws.amazon.com/lambda/latest/dg/python-package.html)). Follow these steps:
|
|
147
143
|
|
|
@@ -179,7 +175,6 @@ To use the `dart-tools` Python library in an AWS Lambda function, you need to pa
|
|
|
179
175
|
By following these steps, you can use the `dart-tools` Python library within your AWS Lambda functions.
|
|
180
176
|
|
|
181
177
|
|
|
182
|
-
<a name="advanced-usage"></a>
|
|
183
178
|
## Advanced Usage
|
|
184
179
|
|
|
185
180
|
Almost anything that can be done in Dart can be done with the Python library, but there are not convenient wrapper functions for everything.
|
|
@@ -218,7 +213,6 @@ response = dart.transact([task_update_op], TransactionKind.TASK_UPDATE)
|
|
|
218
213
|
```
|
|
219
214
|
|
|
220
215
|
|
|
221
|
-
<a name="help-and-resources"></a>
|
|
222
216
|
## Help and Resources
|
|
223
217
|
|
|
224
218
|
- [Homepage](https://www.itsdart.com/?nr=1)
|
|
@@ -230,13 +224,11 @@ response = dart.transact([task_update_op], TransactionKind.TASK_UPDATE)
|
|
|
230
224
|
- Email us at [support@itsdart.com](mailto:support@itsdart.com)
|
|
231
225
|
|
|
232
226
|
|
|
233
|
-
<a name="contributing"></a>
|
|
234
227
|
## Contributing
|
|
235
228
|
|
|
236
229
|
Contributions are welcome! Please open an issue or submit a pull request.
|
|
237
230
|
|
|
238
231
|
|
|
239
|
-
<a name="license"></a>
|
|
240
232
|
## License
|
|
241
233
|
|
|
242
234
|
This project is licensed under [the MIT License](LICENSE).
|
|
@@ -12,15 +12,15 @@ dart/generated/api/__init__.py,sha256=zTSiG_ujSjAqWPyc435YXaX9XTlpMjiJWBbV-f-Ytd
|
|
|
12
12
|
dart/generated/api/attachments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
dart/generated/api/attachments/attachments_list.py,sha256=Jf2rA9QDtNcNW_x2PW9bLHHssQD9nOBFmrjiUXAVMgg,4398
|
|
14
14
|
dart/generated/api/comments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
dart/generated/api/comments/comments_list.py,sha256=
|
|
15
|
+
dart/generated/api/comments/comments_list.py,sha256=d67zKWA8iNBuV-RJtnzKNhXjrMh41fEICGHHgQQxbp4,8493
|
|
16
16
|
dart/generated/api/dartboards/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
dart/generated/api/dartboards/dartboards_list.py,sha256=
|
|
17
|
+
dart/generated/api/dartboards/dartboards_list.py,sha256=3TPN8Rj1SMVWh8kzYJ7zeG_pdhYy6MblgXJJlujOrn8,8595
|
|
18
18
|
dart/generated/api/dashboards/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
-
dart/generated/api/dashboards/dashboards_list.py,sha256=
|
|
19
|
+
dart/generated/api/dashboards/dashboards_list.py,sha256=VSIdmoERJ1GW6UY_HfZ8ceP-p1m16AT0tbCD7-8bMQ8,5278
|
|
20
20
|
dart/generated/api/docs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
-
dart/generated/api/docs/docs_list.py,sha256=
|
|
21
|
+
dart/generated/api/docs/docs_list.py,sha256=cg8gTgTaky72khz2kvCKMhdPl3GxtD2qthRZFh8rE2M,11593
|
|
22
22
|
dart/generated/api/folders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
-
dart/generated/api/folders/folders_list.py,sha256=
|
|
23
|
+
dart/generated/api/folders/folders_list.py,sha256=fzE7A6iiVjQjp_bT73iJZVo9io91AEDWnS4xdLea1Ek,6931
|
|
24
24
|
dart/generated/api/form_fields/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
25
|
dart/generated/api/form_fields/form_fields_list.py,sha256=gQDPdcSVZdiC1APNr_WZSLlRURRokWU5PB4_nXF5dYg,4386
|
|
26
26
|
dart/generated/api/forms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -30,9 +30,9 @@ dart/generated/api/layouts/layouts_list.py,sha256=jaQUZsKMWdHIr8AQZCYICjASGkiqJU
|
|
|
30
30
|
dart/generated/api/links/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
31
|
dart/generated/api/links/links_list.py,sha256=DU2y35gJ_OkTbJM_cXYFA4F3_qo_bypO5q-h6xZ8ZUM,4367
|
|
32
32
|
dart/generated/api/options/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
-
dart/generated/api/options/options_list.py,sha256=
|
|
33
|
+
dart/generated/api/options/options_list.py,sha256=jYtqNNVDjL2mGyrWOm9sA5yVWTq3eo_NUIcxCmdJ45A,6946
|
|
34
34
|
dart/generated/api/properties/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
-
dart/generated/api/properties/properties_list.py,sha256=
|
|
35
|
+
dart/generated/api/properties/properties_list.py,sha256=UWANEZNzuLPnvgR_wBiuDxt2Lf_lrsee1PVIbySZEds,6004
|
|
36
36
|
dart/generated/api/reactions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
37
|
dart/generated/api/reactions/reactions_list.py,sha256=qqwW5eQ7ImM_Z1_LepE5QWfZKqEu6VRW1oE2tV7SrhQ,4462
|
|
38
38
|
dart/generated/api/relationship_kinds/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -40,15 +40,15 @@ dart/generated/api/relationship_kinds/relationship_kinds_list.py,sha256=9bkkCwHi
|
|
|
40
40
|
dart/generated/api/relationships/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
41
|
dart/generated/api/relationships/relationships_list.py,sha256=Ems2XuJSzDlB8toSZkhUouH_821hInRmCQfeQleeeu8,4426
|
|
42
42
|
dart/generated/api/spaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
-
dart/generated/api/spaces/spaces_list.py,sha256=
|
|
43
|
+
dart/generated/api/spaces/spaces_list.py,sha256=jBsAAAWrou0_XBsCFb4N9raXgrVS0qvKjkt3o-fbl-0,6230
|
|
44
44
|
dart/generated/api/statuses/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
-
dart/generated/api/statuses/statuses_list.py,sha256=
|
|
45
|
+
dart/generated/api/statuses/statuses_list.py,sha256=m8je_YksW6MnVyvYxpchMIVytqFZGDnCaVHJ5O0nZDo,7664
|
|
46
46
|
dart/generated/api/task_doc_relationships/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
47
|
dart/generated/api/task_doc_relationships/task_doc_relationships_list.py,sha256=Yh8UAPq-nYtlTtgZiblqgkdgZ-crIWZqY8MET6ytKKM,4528
|
|
48
48
|
dart/generated/api/task_kinds/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
-
dart/generated/api/task_kinds/task_kinds_list.py,sha256=
|
|
49
|
+
dart/generated/api/task_kinds/task_kinds_list.py,sha256=F939SMOTyOK8K9qM2o_N2XBd4B18XnITI7OC6IV2VwU,5995
|
|
50
50
|
dart/generated/api/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
-
dart/generated/api/tasks/tasks_list.py,sha256=
|
|
51
|
+
dart/generated/api/tasks/tasks_list.py,sha256=2dzK8O5xtpKKrU-zZBd_2iVwupNECJiabjOGZA1WX5U,14442
|
|
52
52
|
dart/generated/api/tenants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
53
|
dart/generated/api/tenants/tenants_list.py,sha256=GbVA5EyktJcgfXnss6Bko_BBKsi8ZCwa4aYLvfvwzbA,4342
|
|
54
54
|
dart/generated/api/transactions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -58,16 +58,16 @@ dart/generated/api/user_dartboard_layouts/user_dartboard_layouts_list.py,sha256=
|
|
|
58
58
|
dart/generated/api/user_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
59
|
dart/generated/api/user_data/user_data_entity_retrieve.py,sha256=DBdktTKxqMiEeHf7Db91n2hhC2aDYWr-p11egQsykg0,17896
|
|
60
60
|
dart/generated/api/users/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
-
dart/generated/api/users/users_list.py,sha256=
|
|
61
|
+
dart/generated/api/users/users_list.py,sha256=Pz_tFMFiCrrFEweF_PvhqeI9fQ4hwD4TURYvhxTLPwY,6064
|
|
62
62
|
dart/generated/api/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
-
dart/generated/api/views/views_list.py,sha256=
|
|
63
|
+
dart/generated/api/views/views_list.py,sha256=KTJ9p8iccH8Lv91jRpUojCwKyd4ZFAKDXnQhjK1_5xU,5208
|
|
64
64
|
dart/generated/api/webhooks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
65
65
|
dart/generated/api/webhooks/webhooks_list.py,sha256=Gbhf996imceb11lQo-EXj0LQ6WhfhaQqPXpS1D9eU_g,4356
|
|
66
66
|
dart/generated/models/__init__.py,sha256=GqHuKxzI1IxmhpvOloIpAIJlZpP_rKifmlExIMV_g2E,12807
|
|
67
67
|
dart/generated/models/attachment.py,sha256=qhdCbyrnxjLGPYDInul-RcXPc_2XqpCLXQ5Br5bHWa4,2804
|
|
68
68
|
dart/generated/models/attachment_create.py,sha256=2XEcYM6tG3kjBTHtTkAxqiY9DxfV--K4MsYYoteW9gY,3252
|
|
69
69
|
dart/generated/models/attachment_update.py,sha256=S2SAKia3gsrq5WDK-8ZbaiujvzesyCYPpqJGIWXUtKs,3582
|
|
70
|
-
dart/generated/models/bar_chart_adtl.py,sha256=
|
|
70
|
+
dart/generated/models/bar_chart_adtl.py,sha256=EBdpTxV-aA_7wbFfejP2S-QZczypQ_AalnETlVPCV10,3150
|
|
71
71
|
dart/generated/models/brainstorm.py,sha256=8qxJjryBK-aKovQ7MRS27l8siV4P1MedXrtdgp1tc5c,4357
|
|
72
72
|
dart/generated/models/brainstorm_create.py,sha256=IbA8ZPHh_bRukNh4dV643IBMWlsgHo4J62Ea3bOzmi0,3895
|
|
73
73
|
dart/generated/models/brainstorm_state.py,sha256=nPIjJSomqJWXIp73MSr97TC7kmr8W-8QomxF79mIY4w,190
|
|
@@ -82,10 +82,10 @@ dart/generated/models/comment_reaction.py,sha256=awktQougPceQwwbHKuh1u3joBOethqZ
|
|
|
82
82
|
dart/generated/models/comment_reaction_create.py,sha256=KMDvsYoKwTq_fBVun27yif6bGWIWC9YmA0cpMxIangs,2055
|
|
83
83
|
dart/generated/models/comment_reaction_update.py,sha256=oVZSN2roijvkYL9jg6fs7nMHC7WEY-o8fd1kjZ3e05Q,2355
|
|
84
84
|
dart/generated/models/comment_update.py,sha256=3eWkJHhIedofxiMSRJYExVnPfv5voZq545lwz78dROg,4528
|
|
85
|
-
dart/generated/models/dartboard.py,sha256=
|
|
86
|
-
dart/generated/models/dartboard_create.py,sha256=
|
|
85
|
+
dart/generated/models/dartboard.py,sha256=mNCZxAul83OSJOLzbiCZvO_4H8WISXgzSKU22yZG2_Q,10336
|
|
86
|
+
dart/generated/models/dartboard_create.py,sha256=hfeh-9PtpdHsAE_ZaI0RzoOQj1w1fLJtJ1q45DeHIxs,11264
|
|
87
87
|
dart/generated/models/dartboard_kind.py,sha256=6x_UTr2RlnPDj-Ezdr_9WYwQN_w84Lb-wspA8lODFi4,230
|
|
88
|
-
dart/generated/models/dartboard_update.py,sha256=
|
|
88
|
+
dart/generated/models/dartboard_update.py,sha256=FpALMtpB4qao2Q7O3t3lAq6VR1uqr2QLC3Z2ssIkJ0A,11433
|
|
89
89
|
dart/generated/models/dartboards_list_kind.py,sha256=ntTAdGigl9m1wF56g7RItIktZYDlzlhUJgiiNp5XzyQ,235
|
|
90
90
|
dart/generated/models/dashboard.py,sha256=UElPj4y0OuuzCDsqT6rivqp-b3t3Wgy7KkJ0X2Hi-qM,5470
|
|
91
91
|
dart/generated/models/dashboard_create.py,sha256=oEANpOPpS-yIXfOuyHXbDRgv19J_HttYGhwGp6uNAnU,5526
|
|
@@ -95,7 +95,7 @@ dart/generated/models/doc.py,sha256=EF6_hxVb46TDr6W8xoToBzbN7I4gyIYEIJfOIEOYqGg,
|
|
|
95
95
|
dart/generated/models/doc_create.py,sha256=24qPS7rc5kN6dgdvQDKU9yP_2jl9Sd7GsowPGF9itw8,10071
|
|
96
96
|
dart/generated/models/doc_source_type.py,sha256=r5gfj-A8xeEd5tGxwAGXRtIZYvhJctYmrzu85yXbqOc,306
|
|
97
97
|
dart/generated/models/doc_update.py,sha256=IN4VD8fllOypOkrT2-4N-q-EawsinoeiewWQ0xngztk,10071
|
|
98
|
-
dart/generated/models/docs_list_o_item.py,sha256
|
|
98
|
+
dart/generated/models/docs_list_o_item.py,sha256=-ERajEkOZqTi2pVSPkl1iRMI7S0wy8bSnQcJIy-dRRs,299
|
|
99
99
|
dart/generated/models/entity_name.py,sha256=TV21rI44YMb75InHVOgWmnl1M5l2M72gi9bL_-C1JlA,449
|
|
100
100
|
dart/generated/models/event.py,sha256=BpQoS7KtYUkYRqWbNcz1IRaZWjj3fEw-5jPB8TZ3sTQ,15084
|
|
101
101
|
dart/generated/models/event_actor.py,sha256=5QLWEjM-gNVwklKRYOUDIKEPzfaLUZ1AuJet0sTV9x8,589
|
|
@@ -190,10 +190,10 @@ dart/generated/models/saml_config_tenant_extension_status.py,sha256=2_swyxXbQ6Z_
|
|
|
190
190
|
dart/generated/models/slack_integration.py,sha256=_IIaOKX0cRTqbmMNqT_hLCkQJQzwq7NiRR4PWxKYRgM,2794
|
|
191
191
|
dart/generated/models/slack_integration_tenant_extension_status.py,sha256=860Te21CkGZfXvwBAMTCNhRxvV7uVwwer1UirHCw3W8,216
|
|
192
192
|
dart/generated/models/sort.py,sha256=ks84_10PHFYcOzrA5r9arSNdE_q0Y-w36s2FSZiv6OI,1612
|
|
193
|
-
dart/generated/models/space.py,sha256=
|
|
194
|
-
dart/generated/models/space_create.py,sha256=
|
|
193
|
+
dart/generated/models/space.py,sha256=vX31Dm0gHOVP6YAi2aWWFpp4M30AGoytaVFvAAOjTN4,10837
|
|
194
|
+
dart/generated/models/space_create.py,sha256=unOuyrjGfN3yAk4Lt-CKyLjBbTf9zBhr1T-hj9MQEFM,13039
|
|
195
195
|
dart/generated/models/space_kind.py,sha256=hbmgFwYT3M8lOpFEk_GoqLCUj4y_fOqOP2h6EtmT6n4,188
|
|
196
|
-
dart/generated/models/space_update.py,sha256=
|
|
196
|
+
dart/generated/models/space_update.py,sha256=jPeIoB2DU7EpEdntNN8U8jPYv4zM5Dy73Jp0m9HBkEU,13121
|
|
197
197
|
dart/generated/models/sprint_mode.py,sha256=nFUmqyPaoVgTRqfvluHYWptfWYJ_lFx__MwNgbmRwog,151
|
|
198
198
|
dart/generated/models/status.py,sha256=KVogjtamMDfQGep71123WJhjMP2YnN6VGi2QSf_lFLc,3827
|
|
199
199
|
dart/generated/models/status_create.py,sha256=SWx9aa6zWF6jSuTR_MVbhwsVjV6LlLu_nb-9oEQPcW4,3293
|
|
@@ -203,9 +203,9 @@ dart/generated/models/statuses_list_kind.py,sha256=EZUlBEIRBcO1YpPpZrU0mQRU68aik
|
|
|
203
203
|
dart/generated/models/subscription.py,sha256=2b9-ecdh3uGWBuFcFLsW6tgXuqr1my93agiByiNlfIs,167
|
|
204
204
|
dart/generated/models/subtask_display_mode.py,sha256=3kTrKA4SnI00kenkgkMmqGFtC-WQRDY3bRYKibMo8g0,172
|
|
205
205
|
dart/generated/models/summary_statistic_kind.py,sha256=m-gbpcoi5ahkt6ffC3u1QoG48dd7iDnsqG74XGLGS4A,403
|
|
206
|
-
dart/generated/models/table_chart_adtl.py,sha256=
|
|
206
|
+
dart/generated/models/table_chart_adtl.py,sha256=ugE46w447Z2Suv7jbl9ioFS7_78IQmgvt5L4xJFuFic,3184
|
|
207
207
|
dart/generated/models/task.py,sha256=TaUr0CPXTHooYVdxnceYtsRzssDyRCmJeYmGAcrpzwc,17407
|
|
208
|
-
dart/generated/models/task_create.py,sha256=
|
|
208
|
+
dart/generated/models/task_create.py,sha256=zxyBfWUReZ11fxO-1tKLgmo_UNwpwqn3F_6e7T9Glvo,21425
|
|
209
209
|
dart/generated/models/task_detail_mode.py,sha256=1656X6Q4lroiRauL2WHj_bGH9u8wZCfW1Ma19x8QMGo,199
|
|
210
210
|
dart/generated/models/task_doc_relationship.py,sha256=UdEfpkuKWE5s9kDu-xi8NrJNUBkO4OJbmIpP-29s4N8,2779
|
|
211
211
|
dart/generated/models/task_doc_relationship_create.py,sha256=zLFRi6p_YbU-Onu96-DggVwNLE2v-YebRpOYakhJSTI,1865
|
|
@@ -225,13 +225,13 @@ dart/generated/models/task_notion_document_page_map_type_0.py,sha256=rZXEsgF6zyf
|
|
|
225
225
|
dart/generated/models/task_properties.py,sha256=3pLiihk3TtyIb1S7uiE3jBPBCNBvEBr1oxPcsnTY6QE,1195
|
|
226
226
|
dart/generated/models/task_source_type.py,sha256=8smwcTTZgYgLKd660CCOFjZ9ktMM-7I4zHj_f16wzUk,811
|
|
227
227
|
dart/generated/models/task_update.py,sha256=axyLvfX8GW5WVccfeIYZSMH3JcbIfgWGOo16uTEzZYY,21379
|
|
228
|
-
dart/generated/models/tenant.py,sha256=
|
|
229
|
-
dart/generated/models/tenant_update.py,sha256=
|
|
228
|
+
dart/generated/models/tenant.py,sha256=COvkwWcUFT0U1C1zNFQHo6asf41cj2sInSihJvItD6I,14670
|
|
229
|
+
dart/generated/models/tenant_update.py,sha256=D97151qh9ImLp0k4d-zwIocnCxNMwsHSwf6HeQ2S0CY,6844
|
|
230
230
|
dart/generated/models/theme.py,sha256=BoXqFI-BLtlsN45CT1fCB9RcmFY0Lhk9nHNrzpYl8dU,186
|
|
231
|
-
dart/generated/models/transaction.py,sha256=
|
|
231
|
+
dart/generated/models/transaction.py,sha256=3sz7AiAU0Y76LfZv4f43l87vomhG0_1r4Xf6aVDXqbk,5863
|
|
232
232
|
dart/generated/models/transaction_kind.py,sha256=JBGWEmWD0FgyJWTFk1rgFJ17XuV_-IFItS40bfD1yPg,2842
|
|
233
233
|
dart/generated/models/transaction_response.py,sha256=T6XN-dTs6s9kvL_zDAx7vNZA72rkMChtM5gs0BGL-Xg,2473
|
|
234
|
-
dart/generated/models/user.py,sha256=
|
|
234
|
+
dart/generated/models/user.py,sha256=ZE4wj7F2x_jsg74JrV2MZhbnZYwoTv2HI5LCbJ48tOA,7100
|
|
235
235
|
dart/generated/models/user_dartboard_layout.py,sha256=dQiwdDOablbIXqsQVPVYlbKyR7YlGGtqHEQ7pchHKHE,1719
|
|
236
236
|
dart/generated/models/user_dartboard_layout_create.py,sha256=9unqjRSqTreIYhZkCJoWzNK5x-5n-jarp_-RESb0D8E,1993
|
|
237
237
|
dart/generated/models/user_data_entity_retrieve_entity_kind.py,sha256=Qd9bdU0fvsGcT7-7V7Uz-IMFUy3MrWIhXNDKVojdTWs,853
|
|
@@ -248,10 +248,10 @@ dart/generated/models/webhook.py,sha256=90ZjBe-oh8hTQMb8CafWTZTUsaj9eHxu85uU-JxT
|
|
|
248
248
|
dart/generated/models/webhook_create.py,sha256=kyhv-pI8i4URwul5Ive3hh7TirpDB1YQmio8tn0lkJo,1834
|
|
249
249
|
dart/generated/models/webhook_update.py,sha256=iy9mx8yyKn9182td88pOnc2H7_4H8xl27m8tV3j8hEI,1916
|
|
250
250
|
dart/generated/models/zapier_integration.py,sha256=3cKzM0UHNte6Jg-hnroOvgMUHiD7iv1fodrWZoAIaag,1783
|
|
251
|
-
dart_tools-0.6.
|
|
252
|
-
dart_tools-0.6.
|
|
253
|
-
dart_tools-0.6.
|
|
254
|
-
dart_tools-0.6.
|
|
255
|
-
dart_tools-0.6.
|
|
256
|
-
dart_tools-0.6.
|
|
257
|
-
dart_tools-0.6.
|
|
251
|
+
dart_tools-0.6.15.dist-info/dist/dart-tools-0.3.3.tar.gz,sha256=JHf6kKcFBOXsnB62lpeV3xcv-GVusi5CysY2tAxgxvk,8788
|
|
252
|
+
dart_tools-0.6.15.dist-info/LICENSE,sha256=4ZrQkL_PyaBC3paDrqLnD3knKAXS2i8HwJGyUgRUxls,1061
|
|
253
|
+
dart_tools-0.6.15.dist-info/METADATA,sha256=MUbZyur1IYOC2RY5CTpFKLgOfVBjTFkSjojNJ62L8QE,9129
|
|
254
|
+
dart_tools-0.6.15.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
255
|
+
dart_tools-0.6.15.dist-info/entry_points.txt,sha256=KOVAnDWJbSKn9HoXWQ7x6NfACYzSMGHBBaBxonHEv6w,34
|
|
256
|
+
dart_tools-0.6.15.dist-info/top_level.txt,sha256=ZwUQ6QjCyi1i32BJOAkbOA7UfgitLmIwToJGJwZXPrg,5
|
|
257
|
+
dart_tools-0.6.15.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|