dart-tools 0.6.14__py3-none-any.whl → 0.6.16__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 (35) hide show
  1. dart/generated/api/comments/comments_list.py +15 -0
  2. dart/generated/api/dartboards/dartboards_list.py +15 -0
  3. dart/generated/api/dashboards/dashboards_list.py +15 -0
  4. dart/generated/api/docs/docs_list.py +15 -0
  5. dart/generated/api/folders/folders_list.py +15 -0
  6. dart/generated/api/options/options_list.py +15 -0
  7. dart/generated/api/properties/properties_list.py +15 -0
  8. dart/generated/api/spaces/spaces_list.py +15 -0
  9. dart/generated/api/statuses/statuses_list.py +15 -0
  10. dart/generated/api/task_kinds/task_kinds_list.py +15 -0
  11. dart/generated/api/tasks/tasks_list.py +15 -0
  12. dart/generated/api/users/users_list.py +15 -0
  13. dart/generated/api/views/views_list.py +15 -0
  14. dart/generated/models/bar_chart_adtl.py +26 -0
  15. dart/generated/models/dartboard.py +25 -0
  16. dart/generated/models/dartboard_create.py +30 -0
  17. dart/generated/models/dartboard_update.py +30 -0
  18. dart/generated/models/docs_list_o_item.py +6 -2
  19. dart/generated/models/request_body.py +8 -5
  20. dart/generated/models/space.py +0 -14
  21. dart/generated/models/space_create.py +0 -20
  22. dart/generated/models/space_update.py +0 -20
  23. dart/generated/models/table_chart_adtl.py +8 -8
  24. dart/generated/models/task_create.py +6 -8
  25. dart/generated/models/tenant.py +8 -0
  26. dart/generated/models/tenant_update.py +9 -0
  27. dart/generated/models/transaction.py +11 -9
  28. dart/generated/models/user.py +13 -13
  29. {dart_tools-0.6.14.dist-info → dart_tools-0.6.16.dist-info}/METADATA +1 -1
  30. {dart_tools-0.6.14.dist-info → dart_tools-0.6.16.dist-info}/RECORD +35 -35
  31. {dart_tools-0.6.14.dist-info → dart_tools-0.6.16.dist-info}/LICENSE +0 -0
  32. {dart_tools-0.6.14.dist-info → dart_tools-0.6.16.dist-info}/WHEEL +0 -0
  33. {dart_tools-0.6.14.dist-info → dart_tools-0.6.16.dist-info}/dist/dart-tools-0.3.3.tar.gz +0 -0
  34. {dart_tools-0.6.14.dist-info → dart_tools-0.6.16.dist-info}/entry_points.txt +0 -0
  35. {dart_tools-0.6.14.dist-info → dart_tools-0.6.16.dist-info}/top_level.txt +0 -0
@@ -12,6 +12,7 @@ from ...types import UNSET, Response, Unset
12
12
 
13
13
  def _get_kwargs(
14
14
  *,
15
+ duids: Union[Unset, str] = UNSET,
15
16
  kind: Union[Unset, PropertiesListKind] = UNSET,
16
17
  limit: Union[Unset, int] = UNSET,
17
18
  offset: Union[Unset, int] = UNSET,
@@ -19,6 +20,8 @@ def _get_kwargs(
19
20
  ) -> Dict[str, Any]:
20
21
  params: Dict[str, Any] = {}
21
22
 
23
+ params["duids"] = duids
24
+
22
25
  json_kind: Union[Unset, str] = UNSET
23
26
  if not isinstance(kind, Unset):
24
27
  json_kind = kind.value
@@ -69,6 +72,7 @@ def _build_response(
69
72
  def sync_detailed(
70
73
  *,
71
74
  client: AuthenticatedClient,
75
+ duids: Union[Unset, str] = UNSET,
72
76
  kind: Union[Unset, PropertiesListKind] = UNSET,
73
77
  limit: Union[Unset, int] = UNSET,
74
78
  offset: Union[Unset, int] = UNSET,
@@ -76,6 +80,7 @@ def sync_detailed(
76
80
  ) -> Response[PaginatedPropertyList]:
77
81
  """
78
82
  Args:
83
+ duids (Union[Unset, str]):
79
84
  kind (Union[Unset, PropertiesListKind]):
80
85
  limit (Union[Unset, int]):
81
86
  offset (Union[Unset, int]):
@@ -90,6 +95,7 @@ def sync_detailed(
90
95
  """
91
96
 
92
97
  kwargs = _get_kwargs(
98
+ duids=duids,
93
99
  kind=kind,
94
100
  limit=limit,
95
101
  offset=offset,
@@ -106,6 +112,7 @@ def sync_detailed(
106
112
  def sync(
107
113
  *,
108
114
  client: AuthenticatedClient,
115
+ duids: Union[Unset, str] = UNSET,
109
116
  kind: Union[Unset, PropertiesListKind] = UNSET,
110
117
  limit: Union[Unset, int] = UNSET,
111
118
  offset: Union[Unset, int] = UNSET,
@@ -113,6 +120,7 @@ def sync(
113
120
  ) -> Optional[PaginatedPropertyList]:
114
121
  """
115
122
  Args:
123
+ duids (Union[Unset, str]):
116
124
  kind (Union[Unset, PropertiesListKind]):
117
125
  limit (Union[Unset, int]):
118
126
  offset (Union[Unset, int]):
@@ -128,6 +136,7 @@ def sync(
128
136
 
129
137
  return sync_detailed(
130
138
  client=client,
139
+ duids=duids,
131
140
  kind=kind,
132
141
  limit=limit,
133
142
  offset=offset,
@@ -138,6 +147,7 @@ def sync(
138
147
  async def asyncio_detailed(
139
148
  *,
140
149
  client: AuthenticatedClient,
150
+ duids: Union[Unset, str] = UNSET,
141
151
  kind: Union[Unset, PropertiesListKind] = UNSET,
142
152
  limit: Union[Unset, int] = UNSET,
143
153
  offset: Union[Unset, int] = UNSET,
@@ -145,6 +155,7 @@ async def asyncio_detailed(
145
155
  ) -> Response[PaginatedPropertyList]:
146
156
  """
147
157
  Args:
158
+ duids (Union[Unset, str]):
148
159
  kind (Union[Unset, PropertiesListKind]):
149
160
  limit (Union[Unset, int]):
150
161
  offset (Union[Unset, int]):
@@ -159,6 +170,7 @@ async def asyncio_detailed(
159
170
  """
160
171
 
161
172
  kwargs = _get_kwargs(
173
+ duids=duids,
162
174
  kind=kind,
163
175
  limit=limit,
164
176
  offset=offset,
@@ -173,6 +185,7 @@ async def asyncio_detailed(
173
185
  async def asyncio(
174
186
  *,
175
187
  client: AuthenticatedClient,
188
+ duids: Union[Unset, str] = UNSET,
176
189
  kind: Union[Unset, PropertiesListKind] = UNSET,
177
190
  limit: Union[Unset, int] = UNSET,
178
191
  offset: Union[Unset, int] = UNSET,
@@ -180,6 +193,7 @@ async def asyncio(
180
193
  ) -> Optional[PaginatedPropertyList]:
181
194
  """
182
195
  Args:
196
+ duids (Union[Unset, str]):
183
197
  kind (Union[Unset, PropertiesListKind]):
184
198
  limit (Union[Unset, int]):
185
199
  offset (Union[Unset, int]):
@@ -196,6 +210,7 @@ async def asyncio(
196
210
  return (
197
211
  await asyncio_detailed(
198
212
  client=client,
213
+ duids=duids,
199
214
  kind=kind,
200
215
  limit=limit,
201
216
  offset=offset,
@@ -13,6 +13,7 @@ def _get_kwargs(
13
13
  *,
14
14
  abrev: Union[Unset, str] = UNSET,
15
15
  description: Union[Unset, str] = UNSET,
16
+ duids: Union[Unset, str] = UNSET,
16
17
  limit: Union[Unset, int] = UNSET,
17
18
  offset: Union[Unset, int] = UNSET,
18
19
  title: Union[Unset, str] = UNSET,
@@ -23,6 +24,8 @@ def _get_kwargs(
23
24
 
24
25
  params["description"] = description
25
26
 
27
+ params["duids"] = duids
28
+
26
29
  params["limit"] = limit
27
30
 
28
31
  params["offset"] = offset
@@ -69,6 +72,7 @@ def sync_detailed(
69
72
  client: AuthenticatedClient,
70
73
  abrev: Union[Unset, str] = UNSET,
71
74
  description: Union[Unset, str] = UNSET,
75
+ duids: Union[Unset, str] = UNSET,
72
76
  limit: Union[Unset, int] = UNSET,
73
77
  offset: Union[Unset, int] = UNSET,
74
78
  title: Union[Unset, str] = UNSET,
@@ -77,6 +81,7 @@ def sync_detailed(
77
81
  Args:
78
82
  abrev (Union[Unset, str]):
79
83
  description (Union[Unset, str]):
84
+ duids (Union[Unset, str]):
80
85
  limit (Union[Unset, int]):
81
86
  offset (Union[Unset, int]):
82
87
  title (Union[Unset, str]):
@@ -92,6 +97,7 @@ def sync_detailed(
92
97
  kwargs = _get_kwargs(
93
98
  abrev=abrev,
94
99
  description=description,
100
+ duids=duids,
95
101
  limit=limit,
96
102
  offset=offset,
97
103
  title=title,
@@ -109,6 +115,7 @@ def sync(
109
115
  client: AuthenticatedClient,
110
116
  abrev: Union[Unset, str] = UNSET,
111
117
  description: Union[Unset, str] = UNSET,
118
+ duids: Union[Unset, str] = UNSET,
112
119
  limit: Union[Unset, int] = UNSET,
113
120
  offset: Union[Unset, int] = UNSET,
114
121
  title: Union[Unset, str] = UNSET,
@@ -117,6 +124,7 @@ def sync(
117
124
  Args:
118
125
  abrev (Union[Unset, str]):
119
126
  description (Union[Unset, str]):
127
+ duids (Union[Unset, str]):
120
128
  limit (Union[Unset, int]):
121
129
  offset (Union[Unset, int]):
122
130
  title (Union[Unset, str]):
@@ -133,6 +141,7 @@ def sync(
133
141
  client=client,
134
142
  abrev=abrev,
135
143
  description=description,
144
+ duids=duids,
136
145
  limit=limit,
137
146
  offset=offset,
138
147
  title=title,
@@ -144,6 +153,7 @@ async def asyncio_detailed(
144
153
  client: AuthenticatedClient,
145
154
  abrev: Union[Unset, str] = UNSET,
146
155
  description: Union[Unset, str] = UNSET,
156
+ duids: Union[Unset, str] = UNSET,
147
157
  limit: Union[Unset, int] = UNSET,
148
158
  offset: Union[Unset, int] = UNSET,
149
159
  title: Union[Unset, str] = UNSET,
@@ -152,6 +162,7 @@ async def asyncio_detailed(
152
162
  Args:
153
163
  abrev (Union[Unset, str]):
154
164
  description (Union[Unset, str]):
165
+ duids (Union[Unset, str]):
155
166
  limit (Union[Unset, int]):
156
167
  offset (Union[Unset, int]):
157
168
  title (Union[Unset, str]):
@@ -167,6 +178,7 @@ async def asyncio_detailed(
167
178
  kwargs = _get_kwargs(
168
179
  abrev=abrev,
169
180
  description=description,
181
+ duids=duids,
170
182
  limit=limit,
171
183
  offset=offset,
172
184
  title=title,
@@ -182,6 +194,7 @@ async def asyncio(
182
194
  client: AuthenticatedClient,
183
195
  abrev: Union[Unset, str] = UNSET,
184
196
  description: Union[Unset, str] = UNSET,
197
+ duids: Union[Unset, str] = UNSET,
185
198
  limit: Union[Unset, int] = UNSET,
186
199
  offset: Union[Unset, int] = UNSET,
187
200
  title: Union[Unset, str] = UNSET,
@@ -190,6 +203,7 @@ async def asyncio(
190
203
  Args:
191
204
  abrev (Union[Unset, str]):
192
205
  description (Union[Unset, str]):
206
+ duids (Union[Unset, str]):
193
207
  limit (Union[Unset, int]):
194
208
  offset (Union[Unset, int]):
195
209
  title (Union[Unset, str]):
@@ -207,6 +221,7 @@ async def asyncio(
207
221
  client=client,
208
222
  abrev=abrev,
209
223
  description=description,
224
+ duids=duids,
210
225
  limit=limit,
211
226
  offset=offset,
212
227
  title=title,
@@ -13,6 +13,7 @@ from ...types import UNSET, Response, Unset
13
13
  def _get_kwargs(
14
14
  *,
15
15
  default_only: Union[Unset, bool] = UNSET,
16
+ duids: Union[Unset, str] = UNSET,
16
17
  kind: Union[Unset, StatusesListKind] = UNSET,
17
18
  limit: Union[Unset, int] = UNSET,
18
19
  offset: Union[Unset, int] = UNSET,
@@ -24,6 +25,8 @@ def _get_kwargs(
24
25
 
25
26
  params["default_only"] = default_only
26
27
 
28
+ params["duids"] = duids
29
+
27
30
  json_kind: Union[Unset, str] = UNSET
28
31
  if not isinstance(kind, Unset):
29
32
  json_kind = kind.value
@@ -79,6 +82,7 @@ def sync_detailed(
79
82
  *,
80
83
  client: AuthenticatedClient,
81
84
  default_only: Union[Unset, bool] = UNSET,
85
+ duids: Union[Unset, str] = UNSET,
82
86
  kind: Union[Unset, StatusesListKind] = UNSET,
83
87
  limit: Union[Unset, int] = UNSET,
84
88
  offset: Union[Unset, int] = UNSET,
@@ -89,6 +93,7 @@ def sync_detailed(
89
93
  """
90
94
  Args:
91
95
  default_only (Union[Unset, bool]):
96
+ duids (Union[Unset, str]):
92
97
  kind (Union[Unset, StatusesListKind]):
93
98
  limit (Union[Unset, int]):
94
99
  offset (Union[Unset, int]):
@@ -106,6 +111,7 @@ def sync_detailed(
106
111
 
107
112
  kwargs = _get_kwargs(
108
113
  default_only=default_only,
114
+ duids=duids,
109
115
  kind=kind,
110
116
  limit=limit,
111
117
  offset=offset,
@@ -125,6 +131,7 @@ def sync(
125
131
  *,
126
132
  client: AuthenticatedClient,
127
133
  default_only: Union[Unset, bool] = UNSET,
134
+ duids: Union[Unset, str] = UNSET,
128
135
  kind: Union[Unset, StatusesListKind] = UNSET,
129
136
  limit: Union[Unset, int] = UNSET,
130
137
  offset: Union[Unset, int] = UNSET,
@@ -135,6 +142,7 @@ def sync(
135
142
  """
136
143
  Args:
137
144
  default_only (Union[Unset, bool]):
145
+ duids (Union[Unset, str]):
138
146
  kind (Union[Unset, StatusesListKind]):
139
147
  limit (Union[Unset, int]):
140
148
  offset (Union[Unset, int]):
@@ -153,6 +161,7 @@ def sync(
153
161
  return sync_detailed(
154
162
  client=client,
155
163
  default_only=default_only,
164
+ duids=duids,
156
165
  kind=kind,
157
166
  limit=limit,
158
167
  offset=offset,
@@ -166,6 +175,7 @@ async def asyncio_detailed(
166
175
  *,
167
176
  client: AuthenticatedClient,
168
177
  default_only: Union[Unset, bool] = UNSET,
178
+ duids: Union[Unset, str] = UNSET,
169
179
  kind: Union[Unset, StatusesListKind] = UNSET,
170
180
  limit: Union[Unset, int] = UNSET,
171
181
  offset: Union[Unset, int] = UNSET,
@@ -176,6 +186,7 @@ async def asyncio_detailed(
176
186
  """
177
187
  Args:
178
188
  default_only (Union[Unset, bool]):
189
+ duids (Union[Unset, str]):
179
190
  kind (Union[Unset, StatusesListKind]):
180
191
  limit (Union[Unset, int]):
181
192
  offset (Union[Unset, int]):
@@ -193,6 +204,7 @@ async def asyncio_detailed(
193
204
 
194
205
  kwargs = _get_kwargs(
195
206
  default_only=default_only,
207
+ duids=duids,
196
208
  kind=kind,
197
209
  limit=limit,
198
210
  offset=offset,
@@ -210,6 +222,7 @@ async def asyncio(
210
222
  *,
211
223
  client: AuthenticatedClient,
212
224
  default_only: Union[Unset, bool] = UNSET,
225
+ duids: Union[Unset, str] = UNSET,
213
226
  kind: Union[Unset, StatusesListKind] = UNSET,
214
227
  limit: Union[Unset, int] = UNSET,
215
228
  offset: Union[Unset, int] = UNSET,
@@ -220,6 +233,7 @@ async def asyncio(
220
233
  """
221
234
  Args:
222
235
  default_only (Union[Unset, bool]):
236
+ duids (Union[Unset, str]):
223
237
  kind (Union[Unset, StatusesListKind]):
224
238
  limit (Union[Unset, int]):
225
239
  offset (Union[Unset, int]):
@@ -239,6 +253,7 @@ async def asyncio(
239
253
  await asyncio_detailed(
240
254
  client=client,
241
255
  default_only=default_only,
256
+ duids=duids,
242
257
  kind=kind,
243
258
  limit=limit,
244
259
  offset=offset,
@@ -12,6 +12,7 @@ from ...types import UNSET, Response, Unset
12
12
 
13
13
  def _get_kwargs(
14
14
  *,
15
+ duids: Union[Unset, str] = UNSET,
15
16
  kind: Union[Unset, TaskKindsListKind] = UNSET,
16
17
  limit: Union[Unset, int] = UNSET,
17
18
  offset: Union[Unset, int] = UNSET,
@@ -19,6 +20,8 @@ def _get_kwargs(
19
20
  ) -> Dict[str, Any]:
20
21
  params: Dict[str, Any] = {}
21
22
 
23
+ params["duids"] = duids
24
+
22
25
  json_kind: Union[Unset, str] = UNSET
23
26
  if not isinstance(kind, Unset):
24
27
  json_kind = kind.value
@@ -69,6 +72,7 @@ def _build_response(
69
72
  def sync_detailed(
70
73
  *,
71
74
  client: AuthenticatedClient,
75
+ duids: Union[Unset, str] = UNSET,
72
76
  kind: Union[Unset, TaskKindsListKind] = UNSET,
73
77
  limit: Union[Unset, int] = UNSET,
74
78
  offset: Union[Unset, int] = UNSET,
@@ -76,6 +80,7 @@ def sync_detailed(
76
80
  ) -> Response[PaginatedTaskKindList]:
77
81
  """
78
82
  Args:
83
+ duids (Union[Unset, str]):
79
84
  kind (Union[Unset, TaskKindsListKind]):
80
85
  limit (Union[Unset, int]):
81
86
  offset (Union[Unset, int]):
@@ -90,6 +95,7 @@ def sync_detailed(
90
95
  """
91
96
 
92
97
  kwargs = _get_kwargs(
98
+ duids=duids,
93
99
  kind=kind,
94
100
  limit=limit,
95
101
  offset=offset,
@@ -106,6 +112,7 @@ def sync_detailed(
106
112
  def sync(
107
113
  *,
108
114
  client: AuthenticatedClient,
115
+ duids: Union[Unset, str] = UNSET,
109
116
  kind: Union[Unset, TaskKindsListKind] = UNSET,
110
117
  limit: Union[Unset, int] = UNSET,
111
118
  offset: Union[Unset, int] = UNSET,
@@ -113,6 +120,7 @@ def sync(
113
120
  ) -> Optional[PaginatedTaskKindList]:
114
121
  """
115
122
  Args:
123
+ duids (Union[Unset, str]):
116
124
  kind (Union[Unset, TaskKindsListKind]):
117
125
  limit (Union[Unset, int]):
118
126
  offset (Union[Unset, int]):
@@ -128,6 +136,7 @@ def sync(
128
136
 
129
137
  return sync_detailed(
130
138
  client=client,
139
+ duids=duids,
131
140
  kind=kind,
132
141
  limit=limit,
133
142
  offset=offset,
@@ -138,6 +147,7 @@ def sync(
138
147
  async def asyncio_detailed(
139
148
  *,
140
149
  client: AuthenticatedClient,
150
+ duids: Union[Unset, str] = UNSET,
141
151
  kind: Union[Unset, TaskKindsListKind] = UNSET,
142
152
  limit: Union[Unset, int] = UNSET,
143
153
  offset: Union[Unset, int] = UNSET,
@@ -145,6 +155,7 @@ async def asyncio_detailed(
145
155
  ) -> Response[PaginatedTaskKindList]:
146
156
  """
147
157
  Args:
158
+ duids (Union[Unset, str]):
148
159
  kind (Union[Unset, TaskKindsListKind]):
149
160
  limit (Union[Unset, int]):
150
161
  offset (Union[Unset, int]):
@@ -159,6 +170,7 @@ async def asyncio_detailed(
159
170
  """
160
171
 
161
172
  kwargs = _get_kwargs(
173
+ duids=duids,
162
174
  kind=kind,
163
175
  limit=limit,
164
176
  offset=offset,
@@ -173,6 +185,7 @@ async def asyncio_detailed(
173
185
  async def asyncio(
174
186
  *,
175
187
  client: AuthenticatedClient,
188
+ duids: Union[Unset, str] = UNSET,
176
189
  kind: Union[Unset, TaskKindsListKind] = UNSET,
177
190
  limit: Union[Unset, int] = UNSET,
178
191
  offset: Union[Unset, int] = UNSET,
@@ -180,6 +193,7 @@ async def asyncio(
180
193
  ) -> Optional[PaginatedTaskKindList]:
181
194
  """
182
195
  Args:
196
+ duids (Union[Unset, str]):
183
197
  kind (Union[Unset, TaskKindsListKind]):
184
198
  limit (Union[Unset, int]):
185
199
  offset (Union[Unset, int]):
@@ -196,6 +210,7 @@ async def asyncio(
196
210
  return (
197
211
  await asyncio_detailed(
198
212
  client=client,
213
+ duids=duids,
199
214
  kind=kind,
200
215
  limit=limit,
201
216
  offset=offset,
@@ -18,6 +18,7 @@ def _get_kwargs(
18
18
  dartboard_duid: Union[Unset, str] = UNSET,
19
19
  description: Union[Unset, str] = UNSET,
20
20
  due_at: Union[Unset, datetime.date] = UNSET,
21
+ duids: Union[Unset, str] = UNSET,
21
22
  in_trash: Union[Unset, bool] = UNSET,
22
23
  is_draft: Union[Unset, bool] = UNSET,
23
24
  kind: Union[Unset, str] = UNSET,
@@ -50,6 +51,8 @@ def _get_kwargs(
50
51
  json_due_at = due_at.isoformat()
51
52
  params["due_at"] = json_due_at
52
53
 
54
+ params["duids"] = duids
55
+
53
56
  params["in_trash"] = in_trash
54
57
 
55
58
  params["is_draft"] = is_draft
@@ -125,6 +128,7 @@ def sync_detailed(
125
128
  dartboard_duid: Union[Unset, str] = UNSET,
126
129
  description: Union[Unset, str] = UNSET,
127
130
  due_at: Union[Unset, datetime.date] = UNSET,
131
+ duids: Union[Unset, str] = UNSET,
128
132
  in_trash: Union[Unset, bool] = UNSET,
129
133
  is_draft: Union[Unset, bool] = UNSET,
130
134
  kind: Union[Unset, str] = UNSET,
@@ -148,6 +152,7 @@ def sync_detailed(
148
152
  dartboard_duid (Union[Unset, str]):
149
153
  description (Union[Unset, str]):
150
154
  due_at (Union[Unset, datetime.date]):
155
+ duids (Union[Unset, str]):
151
156
  in_trash (Union[Unset, bool]):
152
157
  is_draft (Union[Unset, bool]):
153
158
  kind (Union[Unset, str]):
@@ -178,6 +183,7 @@ def sync_detailed(
178
183
  dartboard_duid=dartboard_duid,
179
184
  description=description,
180
185
  due_at=due_at,
186
+ duids=duids,
181
187
  in_trash=in_trash,
182
188
  is_draft=is_draft,
183
189
  kind=kind,
@@ -210,6 +216,7 @@ def sync(
210
216
  dartboard_duid: Union[Unset, str] = UNSET,
211
217
  description: Union[Unset, str] = UNSET,
212
218
  due_at: Union[Unset, datetime.date] = UNSET,
219
+ duids: Union[Unset, str] = UNSET,
213
220
  in_trash: Union[Unset, bool] = UNSET,
214
221
  is_draft: Union[Unset, bool] = UNSET,
215
222
  kind: Union[Unset, str] = UNSET,
@@ -233,6 +240,7 @@ def sync(
233
240
  dartboard_duid (Union[Unset, str]):
234
241
  description (Union[Unset, str]):
235
242
  due_at (Union[Unset, datetime.date]):
243
+ duids (Union[Unset, str]):
236
244
  in_trash (Union[Unset, bool]):
237
245
  is_draft (Union[Unset, bool]):
238
246
  kind (Union[Unset, str]):
@@ -264,6 +272,7 @@ def sync(
264
272
  dartboard_duid=dartboard_duid,
265
273
  description=description,
266
274
  due_at=due_at,
275
+ duids=duids,
267
276
  in_trash=in_trash,
268
277
  is_draft=is_draft,
269
278
  kind=kind,
@@ -290,6 +299,7 @@ async def asyncio_detailed(
290
299
  dartboard_duid: Union[Unset, str] = UNSET,
291
300
  description: Union[Unset, str] = UNSET,
292
301
  due_at: Union[Unset, datetime.date] = UNSET,
302
+ duids: Union[Unset, str] = UNSET,
293
303
  in_trash: Union[Unset, bool] = UNSET,
294
304
  is_draft: Union[Unset, bool] = UNSET,
295
305
  kind: Union[Unset, str] = UNSET,
@@ -313,6 +323,7 @@ async def asyncio_detailed(
313
323
  dartboard_duid (Union[Unset, str]):
314
324
  description (Union[Unset, str]):
315
325
  due_at (Union[Unset, datetime.date]):
326
+ duids (Union[Unset, str]):
316
327
  in_trash (Union[Unset, bool]):
317
328
  is_draft (Union[Unset, bool]):
318
329
  kind (Union[Unset, str]):
@@ -343,6 +354,7 @@ async def asyncio_detailed(
343
354
  dartboard_duid=dartboard_duid,
344
355
  description=description,
345
356
  due_at=due_at,
357
+ duids=duids,
346
358
  in_trash=in_trash,
347
359
  is_draft=is_draft,
348
360
  kind=kind,
@@ -373,6 +385,7 @@ async def asyncio(
373
385
  dartboard_duid: Union[Unset, str] = UNSET,
374
386
  description: Union[Unset, str] = UNSET,
375
387
  due_at: Union[Unset, datetime.date] = UNSET,
388
+ duids: Union[Unset, str] = UNSET,
376
389
  in_trash: Union[Unset, bool] = UNSET,
377
390
  is_draft: Union[Unset, bool] = UNSET,
378
391
  kind: Union[Unset, str] = UNSET,
@@ -396,6 +409,7 @@ async def asyncio(
396
409
  dartboard_duid (Union[Unset, str]):
397
410
  description (Union[Unset, str]):
398
411
  due_at (Union[Unset, datetime.date]):
412
+ duids (Union[Unset, str]):
399
413
  in_trash (Union[Unset, bool]):
400
414
  is_draft (Union[Unset, bool]):
401
415
  kind (Union[Unset, str]):
@@ -428,6 +442,7 @@ async def asyncio(
428
442
  dartboard_duid=dartboard_duid,
429
443
  description=description,
430
444
  due_at=due_at,
445
+ duids=duids,
431
446
  in_trash=in_trash,
432
447
  is_draft=is_draft,
433
448
  kind=kind,
@@ -11,6 +11,7 @@ from ...types import UNSET, Response, Unset
11
11
 
12
12
  def _get_kwargs(
13
13
  *,
14
+ duids: Union[Unset, str] = UNSET,
14
15
  email: Union[Unset, str] = UNSET,
15
16
  limit: Union[Unset, int] = UNSET,
16
17
  name: Union[Unset, str] = UNSET,
@@ -19,6 +20,8 @@ def _get_kwargs(
19
20
  ) -> Dict[str, Any]:
20
21
  params: Dict[str, Any] = {}
21
22
 
23
+ params["duids"] = duids
24
+
22
25
  params["email"] = email
23
26
 
24
27
  params["limit"] = limit
@@ -67,6 +70,7 @@ def _build_response(
67
70
  def sync_detailed(
68
71
  *,
69
72
  client: AuthenticatedClient,
73
+ duids: Union[Unset, str] = UNSET,
70
74
  email: Union[Unset, str] = UNSET,
71
75
  limit: Union[Unset, int] = UNSET,
72
76
  name: Union[Unset, str] = UNSET,
@@ -75,6 +79,7 @@ def sync_detailed(
75
79
  ) -> Response[PaginatedUserList]:
76
80
  """
77
81
  Args:
82
+ duids (Union[Unset, str]):
78
83
  email (Union[Unset, str]):
79
84
  limit (Union[Unset, int]):
80
85
  name (Union[Unset, str]):
@@ -90,6 +95,7 @@ def sync_detailed(
90
95
  """
91
96
 
92
97
  kwargs = _get_kwargs(
98
+ duids=duids,
93
99
  email=email,
94
100
  limit=limit,
95
101
  name=name,
@@ -107,6 +113,7 @@ def sync_detailed(
107
113
  def sync(
108
114
  *,
109
115
  client: AuthenticatedClient,
116
+ duids: Union[Unset, str] = UNSET,
110
117
  email: Union[Unset, str] = UNSET,
111
118
  limit: Union[Unset, int] = UNSET,
112
119
  name: Union[Unset, str] = UNSET,
@@ -115,6 +122,7 @@ def sync(
115
122
  ) -> Optional[PaginatedUserList]:
116
123
  """
117
124
  Args:
125
+ duids (Union[Unset, str]):
118
126
  email (Union[Unset, str]):
119
127
  limit (Union[Unset, int]):
120
128
  name (Union[Unset, str]):
@@ -131,6 +139,7 @@ def sync(
131
139
 
132
140
  return sync_detailed(
133
141
  client=client,
142
+ duids=duids,
134
143
  email=email,
135
144
  limit=limit,
136
145
  name=name,
@@ -142,6 +151,7 @@ def sync(
142
151
  async def asyncio_detailed(
143
152
  *,
144
153
  client: AuthenticatedClient,
154
+ duids: Union[Unset, str] = UNSET,
145
155
  email: Union[Unset, str] = UNSET,
146
156
  limit: Union[Unset, int] = UNSET,
147
157
  name: Union[Unset, str] = UNSET,
@@ -150,6 +160,7 @@ async def asyncio_detailed(
150
160
  ) -> Response[PaginatedUserList]:
151
161
  """
152
162
  Args:
163
+ duids (Union[Unset, str]):
153
164
  email (Union[Unset, str]):
154
165
  limit (Union[Unset, int]):
155
166
  name (Union[Unset, str]):
@@ -165,6 +176,7 @@ async def asyncio_detailed(
165
176
  """
166
177
 
167
178
  kwargs = _get_kwargs(
179
+ duids=duids,
168
180
  email=email,
169
181
  limit=limit,
170
182
  name=name,
@@ -180,6 +192,7 @@ async def asyncio_detailed(
180
192
  async def asyncio(
181
193
  *,
182
194
  client: AuthenticatedClient,
195
+ duids: Union[Unset, str] = UNSET,
183
196
  email: Union[Unset, str] = UNSET,
184
197
  limit: Union[Unset, int] = UNSET,
185
198
  name: Union[Unset, str] = UNSET,
@@ -188,6 +201,7 @@ async def asyncio(
188
201
  ) -> Optional[PaginatedUserList]:
189
202
  """
190
203
  Args:
204
+ duids (Union[Unset, str]):
191
205
  email (Union[Unset, str]):
192
206
  limit (Union[Unset, int]):
193
207
  name (Union[Unset, str]):
@@ -205,6 +219,7 @@ async def asyncio(
205
219
  return (
206
220
  await asyncio_detailed(
207
221
  client=client,
222
+ duids=duids,
208
223
  email=email,
209
224
  limit=limit,
210
225
  name=name,