dart-tools 0.6.14__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.14.dist-info → dart_tools-0.6.15.dist-info}/METADATA +1 -1
- {dart_tools-0.6.14.dist-info → dart_tools-0.6.15.dist-info}/RECORD +34 -34
- {dart_tools-0.6.14.dist-info → dart_tools-0.6.15.dist-info}/LICENSE +0 -0
- {dart_tools-0.6.14.dist-info → dart_tools-0.6.15.dist-info}/WHEEL +0 -0
- {dart_tools-0.6.14.dist-info → dart_tools-0.6.15.dist-info}/dist/dart-tools-0.3.3.tar.gz +0 -0
- {dart_tools-0.6.14.dist-info → dart_tools-0.6.15.dist-info}/entry_points.txt +0 -0
- {dart_tools-0.6.14.dist-info → dart_tools-0.6.15.dist-info}/top_level.txt +0 -0
|
@@ -14,6 +14,7 @@ def _get_kwargs(
|
|
|
14
14
|
*,
|
|
15
15
|
author: Union[Unset, str] = UNSET,
|
|
16
16
|
author_duid: Union[Unset, str] = UNSET,
|
|
17
|
+
duids: Union[Unset, str] = UNSET,
|
|
17
18
|
limit: Union[Unset, int] = UNSET,
|
|
18
19
|
offset: Union[Unset, int] = UNSET,
|
|
19
20
|
published_at: Union[Unset, datetime.date] = UNSET,
|
|
@@ -28,6 +29,8 @@ def _get_kwargs(
|
|
|
28
29
|
|
|
29
30
|
params["author_duid"] = author_duid
|
|
30
31
|
|
|
32
|
+
params["duids"] = duids
|
|
33
|
+
|
|
31
34
|
params["limit"] = limit
|
|
32
35
|
|
|
33
36
|
params["offset"] = offset
|
|
@@ -85,6 +88,7 @@ def sync_detailed(
|
|
|
85
88
|
client: AuthenticatedClient,
|
|
86
89
|
author: Union[Unset, str] = UNSET,
|
|
87
90
|
author_duid: Union[Unset, str] = UNSET,
|
|
91
|
+
duids: Union[Unset, str] = UNSET,
|
|
88
92
|
limit: Union[Unset, int] = UNSET,
|
|
89
93
|
offset: Union[Unset, int] = UNSET,
|
|
90
94
|
published_at: Union[Unset, datetime.date] = UNSET,
|
|
@@ -97,6 +101,7 @@ def sync_detailed(
|
|
|
97
101
|
Args:
|
|
98
102
|
author (Union[Unset, str]):
|
|
99
103
|
author_duid (Union[Unset, str]):
|
|
104
|
+
duids (Union[Unset, str]):
|
|
100
105
|
limit (Union[Unset, int]):
|
|
101
106
|
offset (Union[Unset, int]):
|
|
102
107
|
published_at (Union[Unset, datetime.date]):
|
|
@@ -116,6 +121,7 @@ def sync_detailed(
|
|
|
116
121
|
kwargs = _get_kwargs(
|
|
117
122
|
author=author,
|
|
118
123
|
author_duid=author_duid,
|
|
124
|
+
duids=duids,
|
|
119
125
|
limit=limit,
|
|
120
126
|
offset=offset,
|
|
121
127
|
published_at=published_at,
|
|
@@ -137,6 +143,7 @@ def sync(
|
|
|
137
143
|
client: AuthenticatedClient,
|
|
138
144
|
author: Union[Unset, str] = UNSET,
|
|
139
145
|
author_duid: Union[Unset, str] = UNSET,
|
|
146
|
+
duids: Union[Unset, str] = UNSET,
|
|
140
147
|
limit: Union[Unset, int] = UNSET,
|
|
141
148
|
offset: Union[Unset, int] = UNSET,
|
|
142
149
|
published_at: Union[Unset, datetime.date] = UNSET,
|
|
@@ -149,6 +156,7 @@ def sync(
|
|
|
149
156
|
Args:
|
|
150
157
|
author (Union[Unset, str]):
|
|
151
158
|
author_duid (Union[Unset, str]):
|
|
159
|
+
duids (Union[Unset, str]):
|
|
152
160
|
limit (Union[Unset, int]):
|
|
153
161
|
offset (Union[Unset, int]):
|
|
154
162
|
published_at (Union[Unset, datetime.date]):
|
|
@@ -169,6 +177,7 @@ def sync(
|
|
|
169
177
|
client=client,
|
|
170
178
|
author=author,
|
|
171
179
|
author_duid=author_duid,
|
|
180
|
+
duids=duids,
|
|
172
181
|
limit=limit,
|
|
173
182
|
offset=offset,
|
|
174
183
|
published_at=published_at,
|
|
@@ -184,6 +193,7 @@ async def asyncio_detailed(
|
|
|
184
193
|
client: AuthenticatedClient,
|
|
185
194
|
author: Union[Unset, str] = UNSET,
|
|
186
195
|
author_duid: Union[Unset, str] = UNSET,
|
|
196
|
+
duids: Union[Unset, str] = UNSET,
|
|
187
197
|
limit: Union[Unset, int] = UNSET,
|
|
188
198
|
offset: Union[Unset, int] = UNSET,
|
|
189
199
|
published_at: Union[Unset, datetime.date] = UNSET,
|
|
@@ -196,6 +206,7 @@ async def asyncio_detailed(
|
|
|
196
206
|
Args:
|
|
197
207
|
author (Union[Unset, str]):
|
|
198
208
|
author_duid (Union[Unset, str]):
|
|
209
|
+
duids (Union[Unset, str]):
|
|
199
210
|
limit (Union[Unset, int]):
|
|
200
211
|
offset (Union[Unset, int]):
|
|
201
212
|
published_at (Union[Unset, datetime.date]):
|
|
@@ -215,6 +226,7 @@ async def asyncio_detailed(
|
|
|
215
226
|
kwargs = _get_kwargs(
|
|
216
227
|
author=author,
|
|
217
228
|
author_duid=author_duid,
|
|
229
|
+
duids=duids,
|
|
218
230
|
limit=limit,
|
|
219
231
|
offset=offset,
|
|
220
232
|
published_at=published_at,
|
|
@@ -234,6 +246,7 @@ async def asyncio(
|
|
|
234
246
|
client: AuthenticatedClient,
|
|
235
247
|
author: Union[Unset, str] = UNSET,
|
|
236
248
|
author_duid: Union[Unset, str] = UNSET,
|
|
249
|
+
duids: Union[Unset, str] = UNSET,
|
|
237
250
|
limit: Union[Unset, int] = UNSET,
|
|
238
251
|
offset: Union[Unset, int] = UNSET,
|
|
239
252
|
published_at: Union[Unset, datetime.date] = UNSET,
|
|
@@ -246,6 +259,7 @@ async def asyncio(
|
|
|
246
259
|
Args:
|
|
247
260
|
author (Union[Unset, str]):
|
|
248
261
|
author_duid (Union[Unset, str]):
|
|
262
|
+
duids (Union[Unset, str]):
|
|
249
263
|
limit (Union[Unset, int]):
|
|
250
264
|
offset (Union[Unset, int]):
|
|
251
265
|
published_at (Union[Unset, datetime.date]):
|
|
@@ -267,6 +281,7 @@ async def asyncio(
|
|
|
267
281
|
client=client,
|
|
268
282
|
author=author,
|
|
269
283
|
author_duid=author_duid,
|
|
284
|
+
duids=duids,
|
|
270
285
|
limit=limit,
|
|
271
286
|
offset=offset,
|
|
272
287
|
published_at=published_at,
|
|
@@ -13,6 +13,7 @@ from ...types import UNSET, Response, Unset
|
|
|
13
13
|
|
|
14
14
|
def _get_kwargs(
|
|
15
15
|
*,
|
|
16
|
+
duids: Union[Unset, str] = UNSET,
|
|
16
17
|
finished_at: Union[Unset, datetime.date] = UNSET,
|
|
17
18
|
kind: Union[Unset, DartboardsListKind] = UNSET,
|
|
18
19
|
limit: Union[Unset, int] = UNSET,
|
|
@@ -24,6 +25,8 @@ def _get_kwargs(
|
|
|
24
25
|
) -> Dict[str, Any]:
|
|
25
26
|
params: Dict[str, Any] = {}
|
|
26
27
|
|
|
28
|
+
params["duids"] = duids
|
|
29
|
+
|
|
27
30
|
json_finished_at: Union[Unset, str] = UNSET
|
|
28
31
|
if not isinstance(finished_at, Unset):
|
|
29
32
|
json_finished_at = finished_at.isoformat()
|
|
@@ -88,6 +91,7 @@ def _build_response(
|
|
|
88
91
|
def sync_detailed(
|
|
89
92
|
*,
|
|
90
93
|
client: AuthenticatedClient,
|
|
94
|
+
duids: Union[Unset, str] = UNSET,
|
|
91
95
|
finished_at: Union[Unset, datetime.date] = UNSET,
|
|
92
96
|
kind: Union[Unset, DartboardsListKind] = UNSET,
|
|
93
97
|
limit: Union[Unset, int] = UNSET,
|
|
@@ -99,6 +103,7 @@ def sync_detailed(
|
|
|
99
103
|
) -> Response[PaginatedDartboardList]:
|
|
100
104
|
"""
|
|
101
105
|
Args:
|
|
106
|
+
duids (Union[Unset, str]):
|
|
102
107
|
finished_at (Union[Unset, datetime.date]):
|
|
103
108
|
kind (Union[Unset, DartboardsListKind]):
|
|
104
109
|
limit (Union[Unset, int]):
|
|
@@ -117,6 +122,7 @@ def sync_detailed(
|
|
|
117
122
|
"""
|
|
118
123
|
|
|
119
124
|
kwargs = _get_kwargs(
|
|
125
|
+
duids=duids,
|
|
120
126
|
finished_at=finished_at,
|
|
121
127
|
kind=kind,
|
|
122
128
|
limit=limit,
|
|
@@ -137,6 +143,7 @@ def sync_detailed(
|
|
|
137
143
|
def sync(
|
|
138
144
|
*,
|
|
139
145
|
client: AuthenticatedClient,
|
|
146
|
+
duids: Union[Unset, str] = UNSET,
|
|
140
147
|
finished_at: Union[Unset, datetime.date] = UNSET,
|
|
141
148
|
kind: Union[Unset, DartboardsListKind] = UNSET,
|
|
142
149
|
limit: Union[Unset, int] = UNSET,
|
|
@@ -148,6 +155,7 @@ def sync(
|
|
|
148
155
|
) -> Optional[PaginatedDartboardList]:
|
|
149
156
|
"""
|
|
150
157
|
Args:
|
|
158
|
+
duids (Union[Unset, str]):
|
|
151
159
|
finished_at (Union[Unset, datetime.date]):
|
|
152
160
|
kind (Union[Unset, DartboardsListKind]):
|
|
153
161
|
limit (Union[Unset, int]):
|
|
@@ -167,6 +175,7 @@ def sync(
|
|
|
167
175
|
|
|
168
176
|
return sync_detailed(
|
|
169
177
|
client=client,
|
|
178
|
+
duids=duids,
|
|
170
179
|
finished_at=finished_at,
|
|
171
180
|
kind=kind,
|
|
172
181
|
limit=limit,
|
|
@@ -181,6 +190,7 @@ def sync(
|
|
|
181
190
|
async def asyncio_detailed(
|
|
182
191
|
*,
|
|
183
192
|
client: AuthenticatedClient,
|
|
193
|
+
duids: Union[Unset, str] = UNSET,
|
|
184
194
|
finished_at: Union[Unset, datetime.date] = UNSET,
|
|
185
195
|
kind: Union[Unset, DartboardsListKind] = UNSET,
|
|
186
196
|
limit: Union[Unset, int] = UNSET,
|
|
@@ -192,6 +202,7 @@ async def asyncio_detailed(
|
|
|
192
202
|
) -> Response[PaginatedDartboardList]:
|
|
193
203
|
"""
|
|
194
204
|
Args:
|
|
205
|
+
duids (Union[Unset, str]):
|
|
195
206
|
finished_at (Union[Unset, datetime.date]):
|
|
196
207
|
kind (Union[Unset, DartboardsListKind]):
|
|
197
208
|
limit (Union[Unset, int]):
|
|
@@ -210,6 +221,7 @@ async def asyncio_detailed(
|
|
|
210
221
|
"""
|
|
211
222
|
|
|
212
223
|
kwargs = _get_kwargs(
|
|
224
|
+
duids=duids,
|
|
213
225
|
finished_at=finished_at,
|
|
214
226
|
kind=kind,
|
|
215
227
|
limit=limit,
|
|
@@ -228,6 +240,7 @@ async def asyncio_detailed(
|
|
|
228
240
|
async def asyncio(
|
|
229
241
|
*,
|
|
230
242
|
client: AuthenticatedClient,
|
|
243
|
+
duids: Union[Unset, str] = UNSET,
|
|
231
244
|
finished_at: Union[Unset, datetime.date] = UNSET,
|
|
232
245
|
kind: Union[Unset, DartboardsListKind] = UNSET,
|
|
233
246
|
limit: Union[Unset, int] = UNSET,
|
|
@@ -239,6 +252,7 @@ async def asyncio(
|
|
|
239
252
|
) -> Optional[PaginatedDartboardList]:
|
|
240
253
|
"""
|
|
241
254
|
Args:
|
|
255
|
+
duids (Union[Unset, str]):
|
|
242
256
|
finished_at (Union[Unset, datetime.date]):
|
|
243
257
|
kind (Union[Unset, DartboardsListKind]):
|
|
244
258
|
limit (Union[Unset, int]):
|
|
@@ -259,6 +273,7 @@ async def asyncio(
|
|
|
259
273
|
return (
|
|
260
274
|
await asyncio_detailed(
|
|
261
275
|
client=client,
|
|
276
|
+
duids=duids,
|
|
262
277
|
finished_at=finished_at,
|
|
263
278
|
kind=kind,
|
|
264
279
|
limit=limit,
|
|
@@ -11,12 +11,15 @@ from ...types import UNSET, Response, Unset
|
|
|
11
11
|
|
|
12
12
|
def _get_kwargs(
|
|
13
13
|
*,
|
|
14
|
+
duids: Union[Unset, str] = UNSET,
|
|
14
15
|
limit: Union[Unset, int] = UNSET,
|
|
15
16
|
offset: Union[Unset, int] = UNSET,
|
|
16
17
|
title: Union[Unset, str] = UNSET,
|
|
17
18
|
) -> Dict[str, Any]:
|
|
18
19
|
params: Dict[str, Any] = {}
|
|
19
20
|
|
|
21
|
+
params["duids"] = duids
|
|
22
|
+
|
|
20
23
|
params["limit"] = limit
|
|
21
24
|
|
|
22
25
|
params["offset"] = offset
|
|
@@ -61,12 +64,14 @@ def _build_response(
|
|
|
61
64
|
def sync_detailed(
|
|
62
65
|
*,
|
|
63
66
|
client: AuthenticatedClient,
|
|
67
|
+
duids: Union[Unset, str] = UNSET,
|
|
64
68
|
limit: Union[Unset, int] = UNSET,
|
|
65
69
|
offset: Union[Unset, int] = UNSET,
|
|
66
70
|
title: Union[Unset, str] = UNSET,
|
|
67
71
|
) -> Response[PaginatedDashboardList]:
|
|
68
72
|
"""
|
|
69
73
|
Args:
|
|
74
|
+
duids (Union[Unset, str]):
|
|
70
75
|
limit (Union[Unset, int]):
|
|
71
76
|
offset (Union[Unset, int]):
|
|
72
77
|
title (Union[Unset, str]):
|
|
@@ -80,6 +85,7 @@ def sync_detailed(
|
|
|
80
85
|
"""
|
|
81
86
|
|
|
82
87
|
kwargs = _get_kwargs(
|
|
88
|
+
duids=duids,
|
|
83
89
|
limit=limit,
|
|
84
90
|
offset=offset,
|
|
85
91
|
title=title,
|
|
@@ -95,12 +101,14 @@ def sync_detailed(
|
|
|
95
101
|
def sync(
|
|
96
102
|
*,
|
|
97
103
|
client: AuthenticatedClient,
|
|
104
|
+
duids: Union[Unset, str] = UNSET,
|
|
98
105
|
limit: Union[Unset, int] = UNSET,
|
|
99
106
|
offset: Union[Unset, int] = UNSET,
|
|
100
107
|
title: Union[Unset, str] = UNSET,
|
|
101
108
|
) -> Optional[PaginatedDashboardList]:
|
|
102
109
|
"""
|
|
103
110
|
Args:
|
|
111
|
+
duids (Union[Unset, str]):
|
|
104
112
|
limit (Union[Unset, int]):
|
|
105
113
|
offset (Union[Unset, int]):
|
|
106
114
|
title (Union[Unset, str]):
|
|
@@ -115,6 +123,7 @@ def sync(
|
|
|
115
123
|
|
|
116
124
|
return sync_detailed(
|
|
117
125
|
client=client,
|
|
126
|
+
duids=duids,
|
|
118
127
|
limit=limit,
|
|
119
128
|
offset=offset,
|
|
120
129
|
title=title,
|
|
@@ -124,12 +133,14 @@ def sync(
|
|
|
124
133
|
async def asyncio_detailed(
|
|
125
134
|
*,
|
|
126
135
|
client: AuthenticatedClient,
|
|
136
|
+
duids: Union[Unset, str] = UNSET,
|
|
127
137
|
limit: Union[Unset, int] = UNSET,
|
|
128
138
|
offset: Union[Unset, int] = UNSET,
|
|
129
139
|
title: Union[Unset, str] = UNSET,
|
|
130
140
|
) -> Response[PaginatedDashboardList]:
|
|
131
141
|
"""
|
|
132
142
|
Args:
|
|
143
|
+
duids (Union[Unset, str]):
|
|
133
144
|
limit (Union[Unset, int]):
|
|
134
145
|
offset (Union[Unset, int]):
|
|
135
146
|
title (Union[Unset, str]):
|
|
@@ -143,6 +154,7 @@ async def asyncio_detailed(
|
|
|
143
154
|
"""
|
|
144
155
|
|
|
145
156
|
kwargs = _get_kwargs(
|
|
157
|
+
duids=duids,
|
|
146
158
|
limit=limit,
|
|
147
159
|
offset=offset,
|
|
148
160
|
title=title,
|
|
@@ -156,12 +168,14 @@ async def asyncio_detailed(
|
|
|
156
168
|
async def asyncio(
|
|
157
169
|
*,
|
|
158
170
|
client: AuthenticatedClient,
|
|
171
|
+
duids: Union[Unset, str] = UNSET,
|
|
159
172
|
limit: Union[Unset, int] = UNSET,
|
|
160
173
|
offset: Union[Unset, int] = UNSET,
|
|
161
174
|
title: Union[Unset, str] = UNSET,
|
|
162
175
|
) -> Optional[PaginatedDashboardList]:
|
|
163
176
|
"""
|
|
164
177
|
Args:
|
|
178
|
+
duids (Union[Unset, str]):
|
|
165
179
|
limit (Union[Unset, int]):
|
|
166
180
|
offset (Union[Unset, int]):
|
|
167
181
|
title (Union[Unset, str]):
|
|
@@ -177,6 +191,7 @@ async def asyncio(
|
|
|
177
191
|
return (
|
|
178
192
|
await asyncio_detailed(
|
|
179
193
|
client=client,
|
|
194
|
+
duids=duids,
|
|
180
195
|
limit=limit,
|
|
181
196
|
offset=offset,
|
|
182
197
|
title=title,
|
|
@@ -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
|
editor: Union[Unset, str] = UNSET,
|
|
16
17
|
editor_duid: Union[Unset, str] = UNSET,
|
|
17
18
|
folder: Union[Unset, str] = UNSET,
|
|
@@ -30,6 +31,8 @@ def _get_kwargs(
|
|
|
30
31
|
) -> Dict[str, Any]:
|
|
31
32
|
params: Dict[str, Any] = {}
|
|
32
33
|
|
|
34
|
+
params["duids"] = duids
|
|
35
|
+
|
|
33
36
|
params["editor"] = editor
|
|
34
37
|
|
|
35
38
|
params["editor_duid"] = editor_duid
|
|
@@ -105,6 +108,7 @@ def _build_response(
|
|
|
105
108
|
def sync_detailed(
|
|
106
109
|
*,
|
|
107
110
|
client: AuthenticatedClient,
|
|
111
|
+
duids: Union[Unset, str] = UNSET,
|
|
108
112
|
editor: Union[Unset, str] = UNSET,
|
|
109
113
|
editor_duid: Union[Unset, str] = UNSET,
|
|
110
114
|
folder: Union[Unset, str] = UNSET,
|
|
@@ -123,6 +127,7 @@ def sync_detailed(
|
|
|
123
127
|
) -> Response[PaginatedDocList]:
|
|
124
128
|
"""
|
|
125
129
|
Args:
|
|
130
|
+
duids (Union[Unset, str]):
|
|
126
131
|
editor (Union[Unset, str]):
|
|
127
132
|
editor_duid (Union[Unset, str]):
|
|
128
133
|
folder (Union[Unset, str]):
|
|
@@ -148,6 +153,7 @@ def sync_detailed(
|
|
|
148
153
|
"""
|
|
149
154
|
|
|
150
155
|
kwargs = _get_kwargs(
|
|
156
|
+
duids=duids,
|
|
151
157
|
editor=editor,
|
|
152
158
|
editor_duid=editor_duid,
|
|
153
159
|
folder=folder,
|
|
@@ -175,6 +181,7 @@ def sync_detailed(
|
|
|
175
181
|
def sync(
|
|
176
182
|
*,
|
|
177
183
|
client: AuthenticatedClient,
|
|
184
|
+
duids: Union[Unset, str] = UNSET,
|
|
178
185
|
editor: Union[Unset, str] = UNSET,
|
|
179
186
|
editor_duid: Union[Unset, str] = UNSET,
|
|
180
187
|
folder: Union[Unset, str] = UNSET,
|
|
@@ -193,6 +200,7 @@ def sync(
|
|
|
193
200
|
) -> Optional[PaginatedDocList]:
|
|
194
201
|
"""
|
|
195
202
|
Args:
|
|
203
|
+
duids (Union[Unset, str]):
|
|
196
204
|
editor (Union[Unset, str]):
|
|
197
205
|
editor_duid (Union[Unset, str]):
|
|
198
206
|
folder (Union[Unset, str]):
|
|
@@ -219,6 +227,7 @@ def sync(
|
|
|
219
227
|
|
|
220
228
|
return sync_detailed(
|
|
221
229
|
client=client,
|
|
230
|
+
duids=duids,
|
|
222
231
|
editor=editor,
|
|
223
232
|
editor_duid=editor_duid,
|
|
224
233
|
folder=folder,
|
|
@@ -240,6 +249,7 @@ def sync(
|
|
|
240
249
|
async def asyncio_detailed(
|
|
241
250
|
*,
|
|
242
251
|
client: AuthenticatedClient,
|
|
252
|
+
duids: Union[Unset, str] = UNSET,
|
|
243
253
|
editor: Union[Unset, str] = UNSET,
|
|
244
254
|
editor_duid: Union[Unset, str] = UNSET,
|
|
245
255
|
folder: Union[Unset, str] = UNSET,
|
|
@@ -258,6 +268,7 @@ async def asyncio_detailed(
|
|
|
258
268
|
) -> Response[PaginatedDocList]:
|
|
259
269
|
"""
|
|
260
270
|
Args:
|
|
271
|
+
duids (Union[Unset, str]):
|
|
261
272
|
editor (Union[Unset, str]):
|
|
262
273
|
editor_duid (Union[Unset, str]):
|
|
263
274
|
folder (Union[Unset, str]):
|
|
@@ -283,6 +294,7 @@ async def asyncio_detailed(
|
|
|
283
294
|
"""
|
|
284
295
|
|
|
285
296
|
kwargs = _get_kwargs(
|
|
297
|
+
duids=duids,
|
|
286
298
|
editor=editor,
|
|
287
299
|
editor_duid=editor_duid,
|
|
288
300
|
folder=folder,
|
|
@@ -308,6 +320,7 @@ async def asyncio_detailed(
|
|
|
308
320
|
async def asyncio(
|
|
309
321
|
*,
|
|
310
322
|
client: AuthenticatedClient,
|
|
323
|
+
duids: Union[Unset, str] = UNSET,
|
|
311
324
|
editor: Union[Unset, str] = UNSET,
|
|
312
325
|
editor_duid: Union[Unset, str] = UNSET,
|
|
313
326
|
folder: Union[Unset, str] = UNSET,
|
|
@@ -326,6 +339,7 @@ async def asyncio(
|
|
|
326
339
|
) -> Optional[PaginatedDocList]:
|
|
327
340
|
"""
|
|
328
341
|
Args:
|
|
342
|
+
duids (Union[Unset, str]):
|
|
329
343
|
editor (Union[Unset, str]):
|
|
330
344
|
editor_duid (Union[Unset, str]):
|
|
331
345
|
folder (Union[Unset, str]):
|
|
@@ -353,6 +367,7 @@ async def asyncio(
|
|
|
353
367
|
return (
|
|
354
368
|
await asyncio_detailed(
|
|
355
369
|
client=client,
|
|
370
|
+
duids=duids,
|
|
356
371
|
editor=editor,
|
|
357
372
|
editor_duid=editor_duid,
|
|
358
373
|
folder=folder,
|
|
@@ -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, FoldersListKind] = UNSET,
|
|
16
17
|
limit: Union[Unset, int] = UNSET,
|
|
17
18
|
offset: Union[Unset, int] = UNSET,
|
|
@@ -21,6 +22,8 @@ def _get_kwargs(
|
|
|
21
22
|
) -> Dict[str, Any]:
|
|
22
23
|
params: Dict[str, Any] = {}
|
|
23
24
|
|
|
25
|
+
params["duids"] = duids
|
|
26
|
+
|
|
24
27
|
json_kind: Union[Unset, str] = UNSET
|
|
25
28
|
if not isinstance(kind, Unset):
|
|
26
29
|
json_kind = kind.value
|
|
@@ -75,6 +78,7 @@ def _build_response(
|
|
|
75
78
|
def sync_detailed(
|
|
76
79
|
*,
|
|
77
80
|
client: AuthenticatedClient,
|
|
81
|
+
duids: Union[Unset, str] = UNSET,
|
|
78
82
|
kind: Union[Unset, FoldersListKind] = UNSET,
|
|
79
83
|
limit: Union[Unset, int] = UNSET,
|
|
80
84
|
offset: Union[Unset, int] = UNSET,
|
|
@@ -84,6 +88,7 @@ def sync_detailed(
|
|
|
84
88
|
) -> Response[PaginatedFolderList]:
|
|
85
89
|
"""
|
|
86
90
|
Args:
|
|
91
|
+
duids (Union[Unset, str]):
|
|
87
92
|
kind (Union[Unset, FoldersListKind]):
|
|
88
93
|
limit (Union[Unset, int]):
|
|
89
94
|
offset (Union[Unset, int]):
|
|
@@ -100,6 +105,7 @@ def sync_detailed(
|
|
|
100
105
|
"""
|
|
101
106
|
|
|
102
107
|
kwargs = _get_kwargs(
|
|
108
|
+
duids=duids,
|
|
103
109
|
kind=kind,
|
|
104
110
|
limit=limit,
|
|
105
111
|
offset=offset,
|
|
@@ -118,6 +124,7 @@ def sync_detailed(
|
|
|
118
124
|
def sync(
|
|
119
125
|
*,
|
|
120
126
|
client: AuthenticatedClient,
|
|
127
|
+
duids: Union[Unset, str] = UNSET,
|
|
121
128
|
kind: Union[Unset, FoldersListKind] = UNSET,
|
|
122
129
|
limit: Union[Unset, int] = UNSET,
|
|
123
130
|
offset: Union[Unset, int] = UNSET,
|
|
@@ -127,6 +134,7 @@ def sync(
|
|
|
127
134
|
) -> Optional[PaginatedFolderList]:
|
|
128
135
|
"""
|
|
129
136
|
Args:
|
|
137
|
+
duids (Union[Unset, str]):
|
|
130
138
|
kind (Union[Unset, FoldersListKind]):
|
|
131
139
|
limit (Union[Unset, int]):
|
|
132
140
|
offset (Union[Unset, int]):
|
|
@@ -144,6 +152,7 @@ def sync(
|
|
|
144
152
|
|
|
145
153
|
return sync_detailed(
|
|
146
154
|
client=client,
|
|
155
|
+
duids=duids,
|
|
147
156
|
kind=kind,
|
|
148
157
|
limit=limit,
|
|
149
158
|
offset=offset,
|
|
@@ -156,6 +165,7 @@ def sync(
|
|
|
156
165
|
async def asyncio_detailed(
|
|
157
166
|
*,
|
|
158
167
|
client: AuthenticatedClient,
|
|
168
|
+
duids: Union[Unset, str] = UNSET,
|
|
159
169
|
kind: Union[Unset, FoldersListKind] = UNSET,
|
|
160
170
|
limit: Union[Unset, int] = UNSET,
|
|
161
171
|
offset: Union[Unset, int] = UNSET,
|
|
@@ -165,6 +175,7 @@ async def asyncio_detailed(
|
|
|
165
175
|
) -> Response[PaginatedFolderList]:
|
|
166
176
|
"""
|
|
167
177
|
Args:
|
|
178
|
+
duids (Union[Unset, str]):
|
|
168
179
|
kind (Union[Unset, FoldersListKind]):
|
|
169
180
|
limit (Union[Unset, int]):
|
|
170
181
|
offset (Union[Unset, int]):
|
|
@@ -181,6 +192,7 @@ async def asyncio_detailed(
|
|
|
181
192
|
"""
|
|
182
193
|
|
|
183
194
|
kwargs = _get_kwargs(
|
|
195
|
+
duids=duids,
|
|
184
196
|
kind=kind,
|
|
185
197
|
limit=limit,
|
|
186
198
|
offset=offset,
|
|
@@ -197,6 +209,7 @@ async def asyncio_detailed(
|
|
|
197
209
|
async def asyncio(
|
|
198
210
|
*,
|
|
199
211
|
client: AuthenticatedClient,
|
|
212
|
+
duids: Union[Unset, str] = UNSET,
|
|
200
213
|
kind: Union[Unset, FoldersListKind] = UNSET,
|
|
201
214
|
limit: Union[Unset, int] = UNSET,
|
|
202
215
|
offset: Union[Unset, int] = UNSET,
|
|
@@ -206,6 +219,7 @@ async def asyncio(
|
|
|
206
219
|
) -> Optional[PaginatedFolderList]:
|
|
207
220
|
"""
|
|
208
221
|
Args:
|
|
222
|
+
duids (Union[Unset, str]):
|
|
209
223
|
kind (Union[Unset, FoldersListKind]):
|
|
210
224
|
limit (Union[Unset, int]):
|
|
211
225
|
offset (Union[Unset, int]):
|
|
@@ -224,6 +238,7 @@ async def asyncio(
|
|
|
224
238
|
return (
|
|
225
239
|
await asyncio_detailed(
|
|
226
240
|
client=client,
|
|
241
|
+
duids=duids,
|
|
227
242
|
kind=kind,
|
|
228
243
|
limit=limit,
|
|
229
244
|
offset=offset,
|
|
@@ -12,6 +12,7 @@ from ...types import UNSET, Response, Unset
|
|
|
12
12
|
def _get_kwargs(
|
|
13
13
|
*,
|
|
14
14
|
default_only: Union[Unset, bool] = UNSET,
|
|
15
|
+
duids: Union[Unset, str] = UNSET,
|
|
15
16
|
limit: Union[Unset, int] = UNSET,
|
|
16
17
|
offset: Union[Unset, int] = UNSET,
|
|
17
18
|
property_: Union[Unset, str] = UNSET,
|
|
@@ -22,6 +23,8 @@ def _get_kwargs(
|
|
|
22
23
|
|
|
23
24
|
params["default_only"] = default_only
|
|
24
25
|
|
|
26
|
+
params["duids"] = duids
|
|
27
|
+
|
|
25
28
|
params["limit"] = limit
|
|
26
29
|
|
|
27
30
|
params["offset"] = offset
|
|
@@ -71,6 +74,7 @@ def sync_detailed(
|
|
|
71
74
|
*,
|
|
72
75
|
client: AuthenticatedClient,
|
|
73
76
|
default_only: Union[Unset, bool] = UNSET,
|
|
77
|
+
duids: Union[Unset, str] = UNSET,
|
|
74
78
|
limit: Union[Unset, int] = UNSET,
|
|
75
79
|
offset: Union[Unset, int] = UNSET,
|
|
76
80
|
property_: Union[Unset, str] = UNSET,
|
|
@@ -80,6 +84,7 @@ def sync_detailed(
|
|
|
80
84
|
"""
|
|
81
85
|
Args:
|
|
82
86
|
default_only (Union[Unset, bool]):
|
|
87
|
+
duids (Union[Unset, str]):
|
|
83
88
|
limit (Union[Unset, int]):
|
|
84
89
|
offset (Union[Unset, int]):
|
|
85
90
|
property_ (Union[Unset, str]):
|
|
@@ -96,6 +101,7 @@ def sync_detailed(
|
|
|
96
101
|
|
|
97
102
|
kwargs = _get_kwargs(
|
|
98
103
|
default_only=default_only,
|
|
104
|
+
duids=duids,
|
|
99
105
|
limit=limit,
|
|
100
106
|
offset=offset,
|
|
101
107
|
property_=property_,
|
|
@@ -114,6 +120,7 @@ def sync(
|
|
|
114
120
|
*,
|
|
115
121
|
client: AuthenticatedClient,
|
|
116
122
|
default_only: Union[Unset, bool] = UNSET,
|
|
123
|
+
duids: Union[Unset, str] = UNSET,
|
|
117
124
|
limit: Union[Unset, int] = UNSET,
|
|
118
125
|
offset: Union[Unset, int] = UNSET,
|
|
119
126
|
property_: Union[Unset, str] = UNSET,
|
|
@@ -123,6 +130,7 @@ def sync(
|
|
|
123
130
|
"""
|
|
124
131
|
Args:
|
|
125
132
|
default_only (Union[Unset, bool]):
|
|
133
|
+
duids (Union[Unset, str]):
|
|
126
134
|
limit (Union[Unset, int]):
|
|
127
135
|
offset (Union[Unset, int]):
|
|
128
136
|
property_ (Union[Unset, str]):
|
|
@@ -140,6 +148,7 @@ def sync(
|
|
|
140
148
|
return sync_detailed(
|
|
141
149
|
client=client,
|
|
142
150
|
default_only=default_only,
|
|
151
|
+
duids=duids,
|
|
143
152
|
limit=limit,
|
|
144
153
|
offset=offset,
|
|
145
154
|
property_=property_,
|
|
@@ -152,6 +161,7 @@ async def asyncio_detailed(
|
|
|
152
161
|
*,
|
|
153
162
|
client: AuthenticatedClient,
|
|
154
163
|
default_only: Union[Unset, bool] = UNSET,
|
|
164
|
+
duids: Union[Unset, str] = UNSET,
|
|
155
165
|
limit: Union[Unset, int] = UNSET,
|
|
156
166
|
offset: Union[Unset, int] = UNSET,
|
|
157
167
|
property_: Union[Unset, str] = UNSET,
|
|
@@ -161,6 +171,7 @@ async def asyncio_detailed(
|
|
|
161
171
|
"""
|
|
162
172
|
Args:
|
|
163
173
|
default_only (Union[Unset, bool]):
|
|
174
|
+
duids (Union[Unset, str]):
|
|
164
175
|
limit (Union[Unset, int]):
|
|
165
176
|
offset (Union[Unset, int]):
|
|
166
177
|
property_ (Union[Unset, str]):
|
|
@@ -177,6 +188,7 @@ async def asyncio_detailed(
|
|
|
177
188
|
|
|
178
189
|
kwargs = _get_kwargs(
|
|
179
190
|
default_only=default_only,
|
|
191
|
+
duids=duids,
|
|
180
192
|
limit=limit,
|
|
181
193
|
offset=offset,
|
|
182
194
|
property_=property_,
|
|
@@ -193,6 +205,7 @@ async def asyncio(
|
|
|
193
205
|
*,
|
|
194
206
|
client: AuthenticatedClient,
|
|
195
207
|
default_only: Union[Unset, bool] = UNSET,
|
|
208
|
+
duids: Union[Unset, str] = UNSET,
|
|
196
209
|
limit: Union[Unset, int] = UNSET,
|
|
197
210
|
offset: Union[Unset, int] = UNSET,
|
|
198
211
|
property_: Union[Unset, str] = UNSET,
|
|
@@ -202,6 +215,7 @@ async def asyncio(
|
|
|
202
215
|
"""
|
|
203
216
|
Args:
|
|
204
217
|
default_only (Union[Unset, bool]):
|
|
218
|
+
duids (Union[Unset, str]):
|
|
205
219
|
limit (Union[Unset, int]):
|
|
206
220
|
offset (Union[Unset, int]):
|
|
207
221
|
property_ (Union[Unset, str]):
|
|
@@ -220,6 +234,7 @@ async def asyncio(
|
|
|
220
234
|
await asyncio_detailed(
|
|
221
235
|
client=client,
|
|
222
236
|
default_only=default_only,
|
|
237
|
+
duids=duids,
|
|
223
238
|
limit=limit,
|
|
224
239
|
offset=offset,
|
|
225
240
|
property_=property_,
|