windmill-api 1.566.1__py3-none-any.whl → 1.567.1__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 windmill-api might be problematic. Click here for more details.
- windmill_api/api/concurrency_groups/list_extended_jobs.py +72 -55
- windmill_api/api/job/list_filtered_jobs_uuids.py +72 -55
- windmill_api/api/job/list_jobs.py +72 -70
- windmill_api/api/workspace/create_workspace_fork.py +10 -1
- windmill_api/models/completed_job.py +16 -0
- windmill_api/models/create_workspace_fork.py +0 -15
- windmill_api/models/create_workspace_fork_json_body.py +0 -15
- windmill_api/models/delete_completed_job_response_200.py +16 -0
- windmill_api/models/extended_jobs_jobs_item_type_0.py +16 -0
- windmill_api/models/get_completed_job_response_200.py +16 -0
- windmill_api/models/get_job_response_200_type_0.py +16 -0
- windmill_api/models/get_suspended_job_flow_response_200_job_type_0.py +16 -0
- windmill_api/models/list_completed_jobs_response_200_item.py +16 -0
- windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0.py +16 -0
- windmill_api/models/list_jobs_response_200_item_type_0.py +16 -0
- {windmill_api-1.566.1.dist-info → windmill_api-1.567.1.dist-info}/METADATA +1 -1
- {windmill_api-1.566.1.dist-info → windmill_api-1.567.1.dist-info}/RECORD +19 -19
- {windmill_api-1.566.1.dist-info → windmill_api-1.567.1.dist-info}/LICENSE +0 -0
- {windmill_api-1.566.1.dist-info → windmill_api-1.567.1.dist-info}/WHEEL +0 -0
|
@@ -43,6 +43,7 @@ class ExtendedJobsJobsItemType0:
|
|
|
43
43
|
tag (str):
|
|
44
44
|
workspace_id (Union[Unset, str]):
|
|
45
45
|
parent_job (Union[Unset, str]):
|
|
46
|
+
completed_at (Union[Unset, datetime.datetime]):
|
|
46
47
|
script_path (Union[Unset, str]):
|
|
47
48
|
script_hash (Union[Unset, str]):
|
|
48
49
|
args (Union[Unset, ExtendedJobsJobsItemType0Args]): The arguments to pass to the script or flow
|
|
@@ -83,6 +84,7 @@ class ExtendedJobsJobsItemType0:
|
|
|
83
84
|
tag: str
|
|
84
85
|
workspace_id: Union[Unset, str] = UNSET
|
|
85
86
|
parent_job: Union[Unset, str] = UNSET
|
|
87
|
+
completed_at: Union[Unset, datetime.datetime] = UNSET
|
|
86
88
|
script_path: Union[Unset, str] = UNSET
|
|
87
89
|
script_hash: Union[Unset, str] = UNSET
|
|
88
90
|
args: Union[Unset, "ExtendedJobsJobsItemType0Args"] = UNSET
|
|
@@ -127,6 +129,10 @@ class ExtendedJobsJobsItemType0:
|
|
|
127
129
|
tag = self.tag
|
|
128
130
|
workspace_id = self.workspace_id
|
|
129
131
|
parent_job = self.parent_job
|
|
132
|
+
completed_at: Union[Unset, str] = UNSET
|
|
133
|
+
if not isinstance(self.completed_at, Unset):
|
|
134
|
+
completed_at = self.completed_at.isoformat()
|
|
135
|
+
|
|
130
136
|
script_path = self.script_path
|
|
131
137
|
script_hash = self.script_hash
|
|
132
138
|
args: Union[Unset, Dict[str, Any]] = UNSET
|
|
@@ -194,6 +200,8 @@ class ExtendedJobsJobsItemType0:
|
|
|
194
200
|
field_dict["workspace_id"] = workspace_id
|
|
195
201
|
if parent_job is not UNSET:
|
|
196
202
|
field_dict["parent_job"] = parent_job
|
|
203
|
+
if completed_at is not UNSET:
|
|
204
|
+
field_dict["completed_at"] = completed_at
|
|
197
205
|
if script_path is not UNSET:
|
|
198
206
|
field_dict["script_path"] = script_path
|
|
199
207
|
if script_hash is not UNSET:
|
|
@@ -283,6 +291,13 @@ class ExtendedJobsJobsItemType0:
|
|
|
283
291
|
|
|
284
292
|
parent_job = d.pop("parent_job", UNSET)
|
|
285
293
|
|
|
294
|
+
_completed_at = d.pop("completed_at", UNSET)
|
|
295
|
+
completed_at: Union[Unset, datetime.datetime]
|
|
296
|
+
if isinstance(_completed_at, Unset):
|
|
297
|
+
completed_at = UNSET
|
|
298
|
+
else:
|
|
299
|
+
completed_at = isoparse(_completed_at)
|
|
300
|
+
|
|
286
301
|
script_path = d.pop("script_path", UNSET)
|
|
287
302
|
|
|
288
303
|
script_hash = d.pop("script_hash", UNSET)
|
|
@@ -374,6 +389,7 @@ class ExtendedJobsJobsItemType0:
|
|
|
374
389
|
tag=tag,
|
|
375
390
|
workspace_id=workspace_id,
|
|
376
391
|
parent_job=parent_job,
|
|
392
|
+
completed_at=completed_at,
|
|
377
393
|
script_path=script_path,
|
|
378
394
|
script_hash=script_hash,
|
|
379
395
|
args=args,
|
|
@@ -42,6 +42,7 @@ class GetCompletedJobResponse200:
|
|
|
42
42
|
tag (str):
|
|
43
43
|
workspace_id (Union[Unset, str]):
|
|
44
44
|
parent_job (Union[Unset, str]):
|
|
45
|
+
completed_at (Union[Unset, datetime.datetime]):
|
|
45
46
|
script_path (Union[Unset, str]):
|
|
46
47
|
script_hash (Union[Unset, str]):
|
|
47
48
|
args (Union[Unset, GetCompletedJobResponse200Args]): The arguments to pass to the script or flow
|
|
@@ -81,6 +82,7 @@ class GetCompletedJobResponse200:
|
|
|
81
82
|
tag: str
|
|
82
83
|
workspace_id: Union[Unset, str] = UNSET
|
|
83
84
|
parent_job: Union[Unset, str] = UNSET
|
|
85
|
+
completed_at: Union[Unset, datetime.datetime] = UNSET
|
|
84
86
|
script_path: Union[Unset, str] = UNSET
|
|
85
87
|
script_hash: Union[Unset, str] = UNSET
|
|
86
88
|
args: Union[Unset, "GetCompletedJobResponse200Args"] = UNSET
|
|
@@ -124,6 +126,10 @@ class GetCompletedJobResponse200:
|
|
|
124
126
|
tag = self.tag
|
|
125
127
|
workspace_id = self.workspace_id
|
|
126
128
|
parent_job = self.parent_job
|
|
129
|
+
completed_at: Union[Unset, str] = UNSET
|
|
130
|
+
if not isinstance(self.completed_at, Unset):
|
|
131
|
+
completed_at = self.completed_at.isoformat()
|
|
132
|
+
|
|
127
133
|
script_path = self.script_path
|
|
128
134
|
script_hash = self.script_hash
|
|
129
135
|
args: Union[Unset, Dict[str, Any]] = UNSET
|
|
@@ -188,6 +194,8 @@ class GetCompletedJobResponse200:
|
|
|
188
194
|
field_dict["workspace_id"] = workspace_id
|
|
189
195
|
if parent_job is not UNSET:
|
|
190
196
|
field_dict["parent_job"] = parent_job
|
|
197
|
+
if completed_at is not UNSET:
|
|
198
|
+
field_dict["completed_at"] = completed_at
|
|
191
199
|
if script_path is not UNSET:
|
|
192
200
|
field_dict["script_path"] = script_path
|
|
193
201
|
if script_hash is not UNSET:
|
|
@@ -275,6 +283,13 @@ class GetCompletedJobResponse200:
|
|
|
275
283
|
|
|
276
284
|
parent_job = d.pop("parent_job", UNSET)
|
|
277
285
|
|
|
286
|
+
_completed_at = d.pop("completed_at", UNSET)
|
|
287
|
+
completed_at: Union[Unset, datetime.datetime]
|
|
288
|
+
if isinstance(_completed_at, Unset):
|
|
289
|
+
completed_at = UNSET
|
|
290
|
+
else:
|
|
291
|
+
completed_at = isoparse(_completed_at)
|
|
292
|
+
|
|
278
293
|
script_path = d.pop("script_path", UNSET)
|
|
279
294
|
|
|
280
295
|
script_hash = d.pop("script_hash", UNSET)
|
|
@@ -359,6 +374,7 @@ class GetCompletedJobResponse200:
|
|
|
359
374
|
tag=tag,
|
|
360
375
|
workspace_id=workspace_id,
|
|
361
376
|
parent_job=parent_job,
|
|
377
|
+
completed_at=completed_at,
|
|
362
378
|
script_path=script_path,
|
|
363
379
|
script_hash=script_hash,
|
|
364
380
|
args=args,
|
|
@@ -41,6 +41,7 @@ class GetJobResponse200Type0:
|
|
|
41
41
|
tag (str):
|
|
42
42
|
workspace_id (Union[Unset, str]):
|
|
43
43
|
parent_job (Union[Unset, str]):
|
|
44
|
+
completed_at (Union[Unset, datetime.datetime]):
|
|
44
45
|
script_path (Union[Unset, str]):
|
|
45
46
|
script_hash (Union[Unset, str]):
|
|
46
47
|
args (Union[Unset, GetJobResponse200Type0Args]): The arguments to pass to the script or flow
|
|
@@ -81,6 +82,7 @@ class GetJobResponse200Type0:
|
|
|
81
82
|
tag: str
|
|
82
83
|
workspace_id: Union[Unset, str] = UNSET
|
|
83
84
|
parent_job: Union[Unset, str] = UNSET
|
|
85
|
+
completed_at: Union[Unset, datetime.datetime] = UNSET
|
|
84
86
|
script_path: Union[Unset, str] = UNSET
|
|
85
87
|
script_hash: Union[Unset, str] = UNSET
|
|
86
88
|
args: Union[Unset, "GetJobResponse200Type0Args"] = UNSET
|
|
@@ -125,6 +127,10 @@ class GetJobResponse200Type0:
|
|
|
125
127
|
tag = self.tag
|
|
126
128
|
workspace_id = self.workspace_id
|
|
127
129
|
parent_job = self.parent_job
|
|
130
|
+
completed_at: Union[Unset, str] = UNSET
|
|
131
|
+
if not isinstance(self.completed_at, Unset):
|
|
132
|
+
completed_at = self.completed_at.isoformat()
|
|
133
|
+
|
|
128
134
|
script_path = self.script_path
|
|
129
135
|
script_hash = self.script_hash
|
|
130
136
|
args: Union[Unset, Dict[str, Any]] = UNSET
|
|
@@ -192,6 +198,8 @@ class GetJobResponse200Type0:
|
|
|
192
198
|
field_dict["workspace_id"] = workspace_id
|
|
193
199
|
if parent_job is not UNSET:
|
|
194
200
|
field_dict["parent_job"] = parent_job
|
|
201
|
+
if completed_at is not UNSET:
|
|
202
|
+
field_dict["completed_at"] = completed_at
|
|
195
203
|
if script_path is not UNSET:
|
|
196
204
|
field_dict["script_path"] = script_path
|
|
197
205
|
if script_hash is not UNSET:
|
|
@@ -281,6 +289,13 @@ class GetJobResponse200Type0:
|
|
|
281
289
|
|
|
282
290
|
parent_job = d.pop("parent_job", UNSET)
|
|
283
291
|
|
|
292
|
+
_completed_at = d.pop("completed_at", UNSET)
|
|
293
|
+
completed_at: Union[Unset, datetime.datetime]
|
|
294
|
+
if isinstance(_completed_at, Unset):
|
|
295
|
+
completed_at = UNSET
|
|
296
|
+
else:
|
|
297
|
+
completed_at = isoparse(_completed_at)
|
|
298
|
+
|
|
284
299
|
script_path = d.pop("script_path", UNSET)
|
|
285
300
|
|
|
286
301
|
script_hash = d.pop("script_hash", UNSET)
|
|
@@ -372,6 +387,7 @@ class GetJobResponse200Type0:
|
|
|
372
387
|
tag=tag,
|
|
373
388
|
workspace_id=workspace_id,
|
|
374
389
|
parent_job=parent_job,
|
|
390
|
+
completed_at=completed_at,
|
|
375
391
|
script_path=script_path,
|
|
376
392
|
script_hash=script_hash,
|
|
377
393
|
args=args,
|
|
@@ -51,6 +51,7 @@ class GetSuspendedJobFlowResponse200JobType0:
|
|
|
51
51
|
tag (str):
|
|
52
52
|
workspace_id (Union[Unset, str]):
|
|
53
53
|
parent_job (Union[Unset, str]):
|
|
54
|
+
completed_at (Union[Unset, datetime.datetime]):
|
|
54
55
|
script_path (Union[Unset, str]):
|
|
55
56
|
script_hash (Union[Unset, str]):
|
|
56
57
|
args (Union[Unset, GetSuspendedJobFlowResponse200JobType0Args]): The arguments to pass to the script or flow
|
|
@@ -91,6 +92,7 @@ class GetSuspendedJobFlowResponse200JobType0:
|
|
|
91
92
|
tag: str
|
|
92
93
|
workspace_id: Union[Unset, str] = UNSET
|
|
93
94
|
parent_job: Union[Unset, str] = UNSET
|
|
95
|
+
completed_at: Union[Unset, datetime.datetime] = UNSET
|
|
94
96
|
script_path: Union[Unset, str] = UNSET
|
|
95
97
|
script_hash: Union[Unset, str] = UNSET
|
|
96
98
|
args: Union[Unset, "GetSuspendedJobFlowResponse200JobType0Args"] = UNSET
|
|
@@ -135,6 +137,10 @@ class GetSuspendedJobFlowResponse200JobType0:
|
|
|
135
137
|
tag = self.tag
|
|
136
138
|
workspace_id = self.workspace_id
|
|
137
139
|
parent_job = self.parent_job
|
|
140
|
+
completed_at: Union[Unset, str] = UNSET
|
|
141
|
+
if not isinstance(self.completed_at, Unset):
|
|
142
|
+
completed_at = self.completed_at.isoformat()
|
|
143
|
+
|
|
138
144
|
script_path = self.script_path
|
|
139
145
|
script_hash = self.script_hash
|
|
140
146
|
args: Union[Unset, Dict[str, Any]] = UNSET
|
|
@@ -202,6 +208,8 @@ class GetSuspendedJobFlowResponse200JobType0:
|
|
|
202
208
|
field_dict["workspace_id"] = workspace_id
|
|
203
209
|
if parent_job is not UNSET:
|
|
204
210
|
field_dict["parent_job"] = parent_job
|
|
211
|
+
if completed_at is not UNSET:
|
|
212
|
+
field_dict["completed_at"] = completed_at
|
|
205
213
|
if script_path is not UNSET:
|
|
206
214
|
field_dict["script_path"] = script_path
|
|
207
215
|
if script_hash is not UNSET:
|
|
@@ -297,6 +305,13 @@ class GetSuspendedJobFlowResponse200JobType0:
|
|
|
297
305
|
|
|
298
306
|
parent_job = d.pop("parent_job", UNSET)
|
|
299
307
|
|
|
308
|
+
_completed_at = d.pop("completed_at", UNSET)
|
|
309
|
+
completed_at: Union[Unset, datetime.datetime]
|
|
310
|
+
if isinstance(_completed_at, Unset):
|
|
311
|
+
completed_at = UNSET
|
|
312
|
+
else:
|
|
313
|
+
completed_at = isoparse(_completed_at)
|
|
314
|
+
|
|
300
315
|
script_path = d.pop("script_path", UNSET)
|
|
301
316
|
|
|
302
317
|
script_hash = d.pop("script_hash", UNSET)
|
|
@@ -390,6 +405,7 @@ class GetSuspendedJobFlowResponse200JobType0:
|
|
|
390
405
|
tag=tag,
|
|
391
406
|
workspace_id=workspace_id,
|
|
392
407
|
parent_job=parent_job,
|
|
408
|
+
completed_at=completed_at,
|
|
393
409
|
script_path=script_path,
|
|
394
410
|
script_hash=script_hash,
|
|
395
411
|
args=args,
|
|
@@ -42,6 +42,7 @@ class ListCompletedJobsResponse200Item:
|
|
|
42
42
|
tag (str):
|
|
43
43
|
workspace_id (Union[Unset, str]):
|
|
44
44
|
parent_job (Union[Unset, str]):
|
|
45
|
+
completed_at (Union[Unset, datetime.datetime]):
|
|
45
46
|
script_path (Union[Unset, str]):
|
|
46
47
|
script_hash (Union[Unset, str]):
|
|
47
48
|
args (Union[Unset, ListCompletedJobsResponse200ItemArgs]): The arguments to pass to the script or flow
|
|
@@ -81,6 +82,7 @@ class ListCompletedJobsResponse200Item:
|
|
|
81
82
|
tag: str
|
|
82
83
|
workspace_id: Union[Unset, str] = UNSET
|
|
83
84
|
parent_job: Union[Unset, str] = UNSET
|
|
85
|
+
completed_at: Union[Unset, datetime.datetime] = UNSET
|
|
84
86
|
script_path: Union[Unset, str] = UNSET
|
|
85
87
|
script_hash: Union[Unset, str] = UNSET
|
|
86
88
|
args: Union[Unset, "ListCompletedJobsResponse200ItemArgs"] = UNSET
|
|
@@ -124,6 +126,10 @@ class ListCompletedJobsResponse200Item:
|
|
|
124
126
|
tag = self.tag
|
|
125
127
|
workspace_id = self.workspace_id
|
|
126
128
|
parent_job = self.parent_job
|
|
129
|
+
completed_at: Union[Unset, str] = UNSET
|
|
130
|
+
if not isinstance(self.completed_at, Unset):
|
|
131
|
+
completed_at = self.completed_at.isoformat()
|
|
132
|
+
|
|
127
133
|
script_path = self.script_path
|
|
128
134
|
script_hash = self.script_hash
|
|
129
135
|
args: Union[Unset, Dict[str, Any]] = UNSET
|
|
@@ -188,6 +194,8 @@ class ListCompletedJobsResponse200Item:
|
|
|
188
194
|
field_dict["workspace_id"] = workspace_id
|
|
189
195
|
if parent_job is not UNSET:
|
|
190
196
|
field_dict["parent_job"] = parent_job
|
|
197
|
+
if completed_at is not UNSET:
|
|
198
|
+
field_dict["completed_at"] = completed_at
|
|
191
199
|
if script_path is not UNSET:
|
|
192
200
|
field_dict["script_path"] = script_path
|
|
193
201
|
if script_hash is not UNSET:
|
|
@@ -277,6 +285,13 @@ class ListCompletedJobsResponse200Item:
|
|
|
277
285
|
|
|
278
286
|
parent_job = d.pop("parent_job", UNSET)
|
|
279
287
|
|
|
288
|
+
_completed_at = d.pop("completed_at", UNSET)
|
|
289
|
+
completed_at: Union[Unset, datetime.datetime]
|
|
290
|
+
if isinstance(_completed_at, Unset):
|
|
291
|
+
completed_at = UNSET
|
|
292
|
+
else:
|
|
293
|
+
completed_at = isoparse(_completed_at)
|
|
294
|
+
|
|
280
295
|
script_path = d.pop("script_path", UNSET)
|
|
281
296
|
|
|
282
297
|
script_hash = d.pop("script_hash", UNSET)
|
|
@@ -363,6 +378,7 @@ class ListCompletedJobsResponse200Item:
|
|
|
363
378
|
tag=tag,
|
|
364
379
|
workspace_id=workspace_id,
|
|
365
380
|
parent_job=parent_job,
|
|
381
|
+
completed_at=completed_at,
|
|
366
382
|
script_path=script_path,
|
|
367
383
|
script_hash=script_hash,
|
|
368
384
|
args=args,
|
|
@@ -53,6 +53,7 @@ class ListExtendedJobsResponse200JobsItemType0:
|
|
|
53
53
|
tag (str):
|
|
54
54
|
workspace_id (Union[Unset, str]):
|
|
55
55
|
parent_job (Union[Unset, str]):
|
|
56
|
+
completed_at (Union[Unset, datetime.datetime]):
|
|
56
57
|
script_path (Union[Unset, str]):
|
|
57
58
|
script_hash (Union[Unset, str]):
|
|
58
59
|
args (Union[Unset, ListExtendedJobsResponse200JobsItemType0Args]): The arguments to pass to the script or flow
|
|
@@ -93,6 +94,7 @@ class ListExtendedJobsResponse200JobsItemType0:
|
|
|
93
94
|
tag: str
|
|
94
95
|
workspace_id: Union[Unset, str] = UNSET
|
|
95
96
|
parent_job: Union[Unset, str] = UNSET
|
|
97
|
+
completed_at: Union[Unset, datetime.datetime] = UNSET
|
|
96
98
|
script_path: Union[Unset, str] = UNSET
|
|
97
99
|
script_hash: Union[Unset, str] = UNSET
|
|
98
100
|
args: Union[Unset, "ListExtendedJobsResponse200JobsItemType0Args"] = UNSET
|
|
@@ -137,6 +139,10 @@ class ListExtendedJobsResponse200JobsItemType0:
|
|
|
137
139
|
tag = self.tag
|
|
138
140
|
workspace_id = self.workspace_id
|
|
139
141
|
parent_job = self.parent_job
|
|
142
|
+
completed_at: Union[Unset, str] = UNSET
|
|
143
|
+
if not isinstance(self.completed_at, Unset):
|
|
144
|
+
completed_at = self.completed_at.isoformat()
|
|
145
|
+
|
|
140
146
|
script_path = self.script_path
|
|
141
147
|
script_hash = self.script_hash
|
|
142
148
|
args: Union[Unset, Dict[str, Any]] = UNSET
|
|
@@ -204,6 +210,8 @@ class ListExtendedJobsResponse200JobsItemType0:
|
|
|
204
210
|
field_dict["workspace_id"] = workspace_id
|
|
205
211
|
if parent_job is not UNSET:
|
|
206
212
|
field_dict["parent_job"] = parent_job
|
|
213
|
+
if completed_at is not UNSET:
|
|
214
|
+
field_dict["completed_at"] = completed_at
|
|
207
215
|
if script_path is not UNSET:
|
|
208
216
|
field_dict["script_path"] = script_path
|
|
209
217
|
if script_hash is not UNSET:
|
|
@@ -299,6 +307,13 @@ class ListExtendedJobsResponse200JobsItemType0:
|
|
|
299
307
|
|
|
300
308
|
parent_job = d.pop("parent_job", UNSET)
|
|
301
309
|
|
|
310
|
+
_completed_at = d.pop("completed_at", UNSET)
|
|
311
|
+
completed_at: Union[Unset, datetime.datetime]
|
|
312
|
+
if isinstance(_completed_at, Unset):
|
|
313
|
+
completed_at = UNSET
|
|
314
|
+
else:
|
|
315
|
+
completed_at = isoparse(_completed_at)
|
|
316
|
+
|
|
302
317
|
script_path = d.pop("script_path", UNSET)
|
|
303
318
|
|
|
304
319
|
script_hash = d.pop("script_hash", UNSET)
|
|
@@ -392,6 +407,7 @@ class ListExtendedJobsResponse200JobsItemType0:
|
|
|
392
407
|
tag=tag,
|
|
393
408
|
workspace_id=workspace_id,
|
|
394
409
|
parent_job=parent_job,
|
|
410
|
+
completed_at=completed_at,
|
|
395
411
|
script_path=script_path,
|
|
396
412
|
script_hash=script_hash,
|
|
397
413
|
args=args,
|
|
@@ -43,6 +43,7 @@ class ListJobsResponse200ItemType0:
|
|
|
43
43
|
tag (str):
|
|
44
44
|
workspace_id (Union[Unset, str]):
|
|
45
45
|
parent_job (Union[Unset, str]):
|
|
46
|
+
completed_at (Union[Unset, datetime.datetime]):
|
|
46
47
|
script_path (Union[Unset, str]):
|
|
47
48
|
script_hash (Union[Unset, str]):
|
|
48
49
|
args (Union[Unset, ListJobsResponse200ItemType0Args]): The arguments to pass to the script or flow
|
|
@@ -83,6 +84,7 @@ class ListJobsResponse200ItemType0:
|
|
|
83
84
|
tag: str
|
|
84
85
|
workspace_id: Union[Unset, str] = UNSET
|
|
85
86
|
parent_job: Union[Unset, str] = UNSET
|
|
87
|
+
completed_at: Union[Unset, datetime.datetime] = UNSET
|
|
86
88
|
script_path: Union[Unset, str] = UNSET
|
|
87
89
|
script_hash: Union[Unset, str] = UNSET
|
|
88
90
|
args: Union[Unset, "ListJobsResponse200ItemType0Args"] = UNSET
|
|
@@ -127,6 +129,10 @@ class ListJobsResponse200ItemType0:
|
|
|
127
129
|
tag = self.tag
|
|
128
130
|
workspace_id = self.workspace_id
|
|
129
131
|
parent_job = self.parent_job
|
|
132
|
+
completed_at: Union[Unset, str] = UNSET
|
|
133
|
+
if not isinstance(self.completed_at, Unset):
|
|
134
|
+
completed_at = self.completed_at.isoformat()
|
|
135
|
+
|
|
130
136
|
script_path = self.script_path
|
|
131
137
|
script_hash = self.script_hash
|
|
132
138
|
args: Union[Unset, Dict[str, Any]] = UNSET
|
|
@@ -194,6 +200,8 @@ class ListJobsResponse200ItemType0:
|
|
|
194
200
|
field_dict["workspace_id"] = workspace_id
|
|
195
201
|
if parent_job is not UNSET:
|
|
196
202
|
field_dict["parent_job"] = parent_job
|
|
203
|
+
if completed_at is not UNSET:
|
|
204
|
+
field_dict["completed_at"] = completed_at
|
|
197
205
|
if script_path is not UNSET:
|
|
198
206
|
field_dict["script_path"] = script_path
|
|
199
207
|
if script_hash is not UNSET:
|
|
@@ -283,6 +291,13 @@ class ListJobsResponse200ItemType0:
|
|
|
283
291
|
|
|
284
292
|
parent_job = d.pop("parent_job", UNSET)
|
|
285
293
|
|
|
294
|
+
_completed_at = d.pop("completed_at", UNSET)
|
|
295
|
+
completed_at: Union[Unset, datetime.datetime]
|
|
296
|
+
if isinstance(_completed_at, Unset):
|
|
297
|
+
completed_at = UNSET
|
|
298
|
+
else:
|
|
299
|
+
completed_at = isoparse(_completed_at)
|
|
300
|
+
|
|
286
301
|
script_path = d.pop("script_path", UNSET)
|
|
287
302
|
|
|
288
303
|
script_hash = d.pop("script_hash", UNSET)
|
|
@@ -376,6 +391,7 @@ class ListJobsResponse200ItemType0:
|
|
|
376
391
|
tag=tag,
|
|
377
392
|
workspace_id=workspace_id,
|
|
378
393
|
parent_job=parent_job,
|
|
394
|
+
completed_at=completed_at,
|
|
379
395
|
script_path=script_path,
|
|
380
396
|
script_hash=script_hash,
|
|
381
397
|
args=args,
|
|
@@ -52,7 +52,7 @@ windmill_api/api/concurrency_groups/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQ
|
|
|
52
52
|
windmill_api/api/concurrency_groups/delete_concurrency_group.py,sha256=hNmoT5fihR3Xfa0QmJM--uH2NwdCcQLIa6SJbJXDe1w,4076
|
|
53
53
|
windmill_api/api/concurrency_groups/get_concurrency_key.py,sha256=ky9Vfn_IXCYa-Lvfnm7UhqLf-cFHihXfu_PO17ZO1Ts,3576
|
|
54
54
|
windmill_api/api/concurrency_groups/list_concurrency_groups.py,sha256=WU2Vs0q3QjHB5_8z0skdtSaefFs3mzHGE-6dSxFCoH0,3859
|
|
55
|
-
windmill_api/api/concurrency_groups/list_extended_jobs.py,sha256=
|
|
55
|
+
windmill_api/api/concurrency_groups/list_extended_jobs.py,sha256=2NIPOgZlaxKB-SFMrp936Z0-wOziB1aldCTbHOW1Ahc,25191
|
|
56
56
|
windmill_api/api/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
57
|
windmill_api/api/config/delete_config.py,sha256=tIXSiXwRK6MUaolHhicQydeyht60L6LNlZDwd96OLF8,2223
|
|
58
58
|
windmill_api/api/config/get_config.py,sha256=ww07uiAEk2uV3IXQ5vSSbaSwM2OljVyMv2uUVhv54sE,3909
|
|
@@ -236,9 +236,9 @@ windmill_api/api/job/get_started_at_by_ids.py,sha256=TDZ6gJ6dx2_yzNL1IwTuXqWaIWD
|
|
|
236
236
|
windmill_api/api/job/get_suspended_job_flow.py,sha256=1ujITk_TDUgnZ-uWPRfBfb58qFtfGrEJF9TndIcHhok,5652
|
|
237
237
|
windmill_api/api/job/get_teams_approval_payload.py,sha256=t68Eiee-4Jrg3rgDqfLAtW3HHlRutUP4L7q1H3MmZDI,4876
|
|
238
238
|
windmill_api/api/job/list_completed_jobs.py,sha256=Ba7pXA-l4ryYpGktFgHK_nzrtzYxz1_EnsUMbr-Ttqw,18888
|
|
239
|
-
windmill_api/api/job/list_filtered_jobs_uuids.py,sha256=
|
|
239
|
+
windmill_api/api/job/list_filtered_jobs_uuids.py,sha256=Vm6hBAqoDKj1ZwhWwvKdcA1qCs6AUSkX38EXb8dy5lQ,26023
|
|
240
240
|
windmill_api/api/job/list_filtered_queue_uuids.py,sha256=gh5EUDcbIk4tnszu8Kxs6Nsd-umknDbG3iaPHTDjXhM,18820
|
|
241
|
-
windmill_api/api/job/list_jobs.py,sha256=
|
|
241
|
+
windmill_api/api/job/list_jobs.py,sha256=zRFluJSD8Fxc5wbTToQ8nPxrJ9K4hKJwwVF4cMn-nuo,27818
|
|
242
242
|
windmill_api/api/job/list_queue.py,sha256=0aMq6i-DksusbMM4_rel366HNwi16skILcv6B_vxfQg,19004
|
|
243
243
|
windmill_api/api/job/list_selected_job_groups.py,sha256=djZJjYoCH8nH5JNrTuojzlkv0hjm7wSITccmpQ9UwcY,2671
|
|
244
244
|
windmill_api/api/job/restart_flow_at_step.py,sha256=PqL-prbJpuEh4KAVignBUaWo_WN3HrTfPpauQp24Of8,6480
|
|
@@ -533,7 +533,7 @@ windmill_api/api/workspace/change_workspace_id.py,sha256=WfQ8Xg7XlFYrfylFL2yOZoF
|
|
|
533
533
|
windmill_api/api/workspace/change_workspace_name.py,sha256=Hn6tLyBBENBWwAaiel6ZQwcxoFUyqk4KzNCEDhuGWWk,2768
|
|
534
534
|
windmill_api/api/workspace/connect_teams.py,sha256=UyR9wjEspS0SrSsqLKyAEKQv3i3qDxxfG059yNmUoyE,2694
|
|
535
535
|
windmill_api/api/workspace/create_workspace.py,sha256=Ykhaqdsp0a5C6pkyNUYW8Js9LtCKgdi156KQf6tzElo,2481
|
|
536
|
-
windmill_api/api/workspace/create_workspace_fork.py,sha256=
|
|
536
|
+
windmill_api/api/workspace/create_workspace_fork.py,sha256=V9hLOO6NwZZq5gQiQ4yHF_ll8YA2-vk6TBBt4-_QoWw,2762
|
|
537
537
|
windmill_api/api/workspace/delete_git_sync_repository.py,sha256=vTT0_IH4qHzLmqVcEsIrwSMKj_SAyPP1NtqVVdcCWD0,2902
|
|
538
538
|
windmill_api/api/workspace/delete_invite.py,sha256=PfwTA5svQKFrbl_aiDc4NkL4POvd9uDxHQFApD7OYRg,2704
|
|
539
539
|
windmill_api/api/workspace/delete_workspace.py,sha256=RPcF68hin2-ebX1Nf0XjCWIu6dJADFlkOMUKfpS45c0,2921
|
|
@@ -777,7 +777,7 @@ windmill_api/models/change_workspace_name_json_body.py,sha256=ByJQqO7uQfddlxSbuK
|
|
|
777
777
|
windmill_api/models/channel_info.py,sha256=6mJzi8w-fUM26qviIFps7QdfoU94W1NOTe4z4N68qrk,2441
|
|
778
778
|
windmill_api/models/check_s3_folder_exists_response_200.py,sha256=WQB8nbg-s7hUFDqLROYGoJEwhiY7un4dBEZkQGcshbI,1816
|
|
779
779
|
windmill_api/models/clear_index_idx_name.py,sha256=zZ1Yiqd-K2Gz80K5q0aKiWDAe1bILZDCgGxC7ezWJNw,188
|
|
780
|
-
windmill_api/models/completed_job.py,sha256=
|
|
780
|
+
windmill_api/models/completed_job.py,sha256=Pre5zVMxoVmqbDJgaBCXFGkGTW8nllfRQ18I51upxog,14678
|
|
781
781
|
windmill_api/models/completed_job_args.py,sha256=l-nluO-gwKll2VZvlFXG6XlGxgr9OmgUJWXiFKuwN3Q,1280
|
|
782
782
|
windmill_api/models/completed_job_flow_status.py,sha256=U3nUMjfhqX8-eVVMEWdRuot6nd5Jb2RKHhJ4cNzH7kw,5112
|
|
783
783
|
windmill_api/models/completed_job_flow_status_failure_module.py,sha256=q-8pee5Kb-dBjm_jmoi_NT530_SOOcvfLQsOUD5Bbmg,15406
|
|
@@ -1071,12 +1071,12 @@ windmill_api/models/create_websocket_trigger_json_body_retry_exponential.py,sha2
|
|
|
1071
1071
|
windmill_api/models/create_websocket_trigger_json_body_retry_retry_if.py,sha256=Qen6ynuO-c40BRFEPHj8f97znCD0rh4BGVCa7qRyGQk,1590
|
|
1072
1072
|
windmill_api/models/create_websocket_trigger_json_body_url_runnable_args.py,sha256=Jr2AIUWbfHyEmonEA0Y67pXlRi_bvv3GTOYhgFGyBt4,1440
|
|
1073
1073
|
windmill_api/models/create_workspace.py,sha256=fUa2zDGqCbEuq5d8gA3DXZEEJMJItvIKhTMk-rru0-M,2101
|
|
1074
|
-
windmill_api/models/create_workspace_fork.py,sha256=
|
|
1075
|
-
windmill_api/models/create_workspace_fork_json_body.py,sha256=
|
|
1074
|
+
windmill_api/models/create_workspace_fork.py,sha256=rjkU9jndvD6C4UrDURWOsosFg8HIHprRKfTFsdZlg04,1857
|
|
1075
|
+
windmill_api/models/create_workspace_fork_json_body.py,sha256=GIrNRhloGLWGIjJso__9IWgv6lZy0vKbXfgzgMUJYeU,1903
|
|
1076
1076
|
windmill_api/models/create_workspace_json_body.py,sha256=GgbEd80YEihMoHT0mw_eZR1UhkfS732YtrmOiIztAQc,2147
|
|
1077
1077
|
windmill_api/models/critical_alert.py,sha256=hOEwvjlC0C_rl3CRrei8BFFZQFvR_iTQ9eBfE8tCUyo,3635
|
|
1078
1078
|
windmill_api/models/decline_invite_json_body.py,sha256=APY6WrYS2XvpWr0TefDZUSgNN-1gICXnmDHmit9MI88,1553
|
|
1079
|
-
windmill_api/models/delete_completed_job_response_200.py,sha256=
|
|
1079
|
+
windmill_api/models/delete_completed_job_response_200.py,sha256=y2n1pXwbUUNMskefk46Dd7Bqvu3ehnvwdppPwT3hOPM,15605
|
|
1080
1080
|
windmill_api/models/delete_completed_job_response_200_args.py,sha256=fCZU6HkFj9YCEe01fnSnI5XD3cwzBHpZY25iYbGGY0k,1374
|
|
1081
1081
|
windmill_api/models/delete_completed_job_response_200_flow_status.py,sha256=IMfQi2ItdbhUo-TgonKHV8ENSqECi6DvhpzmQKZEnoI,5938
|
|
1082
1082
|
windmill_api/models/delete_completed_job_response_200_flow_status_failure_module.py,sha256=jtbcwsLTflSL6Vqk8quBn2dX-D593OhKnvZB6iKttxQ,17142
|
|
@@ -1407,7 +1407,7 @@ windmill_api/models/export_instance_groups_response_200_item.py,sha256=PlZtwzJ7Z
|
|
|
1407
1407
|
windmill_api/models/exported_instance_group.py,sha256=OrmuD8jRDfwTVacL3nQgTC91hfHv2ojC6L3WyDDmxDI,3014
|
|
1408
1408
|
windmill_api/models/exported_user.py,sha256=VkHyIxkYhFBVWmDsktPZv_MN1UKuH-xcaHD41mVO1y0,3193
|
|
1409
1409
|
windmill_api/models/extended_jobs.py,sha256=-S9I8x-FWjniCrbqvUsKoojis11NpgDdW0wEwfVKaCI,4487
|
|
1410
|
-
windmill_api/models/extended_jobs_jobs_item_type_0.py,sha256=
|
|
1410
|
+
windmill_api/models/extended_jobs_jobs_item_type_0.py,sha256=yriaIHFBlFsjRAM5anR10r6iKtIlOhxyajMkn8PGp30,16044
|
|
1411
1411
|
windmill_api/models/extended_jobs_jobs_item_type_0_args.py,sha256=PIOnGu2K9oEqlUYmizgJI_gpL3RrTRowMrKPYAmokeU,1357
|
|
1412
1412
|
windmill_api/models/extended_jobs_jobs_item_type_0_flow_status.py,sha256=KJ0H5uZTXeCgEpUKo_w9I8PXX8PeeSEDzUYnjx3SFNw,5737
|
|
1413
1413
|
windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module.py,sha256=8feoMzdrBqFG4QZyaNZMAI0CrJpKuV-1bu42uT7GhGI,16836
|
|
@@ -2150,7 +2150,7 @@ windmill_api/models/get_capture_configs_runnable_kind.py,sha256=VWQCYIDQqajAHhcs
|
|
|
2150
2150
|
windmill_api/models/get_capture_response_200.py,sha256=Kh602CAGhQdLjV1TjkPF2pS3Kb_nruaAUXbgCETh3Xk,2636
|
|
2151
2151
|
windmill_api/models/get_capture_response_200_trigger_kind.py,sha256=c_j51tUN7nqpZEnfupeOVSD_2BcPTURf1RtYFB5xGwc,377
|
|
2152
2152
|
windmill_api/models/get_completed_count_response_200.py,sha256=cudwRJHt5jvqGetkTemW-1aOSR5ni5znOGrkvpSR9jE,1621
|
|
2153
|
-
windmill_api/models/get_completed_job_response_200.py,sha256
|
|
2153
|
+
windmill_api/models/get_completed_job_response_200.py,sha256=xmaJB8SINmTju3mHdbARMMSeKCfBCqAcllF18d9TWp8,15431
|
|
2154
2154
|
windmill_api/models/get_completed_job_response_200_args.py,sha256=UW6CzHkM-ShuDFDou-rOsV9kO8tyfoMkcYWF2HJpDR8,1359
|
|
2155
2155
|
windmill_api/models/get_completed_job_response_200_flow_status.py,sha256=FQIem-4fUuv9iwwTf0PPZwwunmtZgelQ2h_QS7Hrlcg,5761
|
|
2156
2156
|
windmill_api/models/get_completed_job_response_200_flow_status_failure_module.py,sha256=_VNh7_l4drb7aJWk84XPdQnXi_rE87o-CMEY31czhCk,16893
|
|
@@ -2663,7 +2663,7 @@ windmill_api/models/get_job_metrics_response_200_metrics_metadata_item.py,sha256
|
|
|
2663
2663
|
windmill_api/models/get_job_metrics_response_200_scalar_metrics_item.py,sha256=mm4o-GwvcB5TM1c2cBhKf6Vth9DDCJrJQW6yDEVD7LE,1918
|
|
2664
2664
|
windmill_api/models/get_job_metrics_response_200_timeseries_metrics_item.py,sha256=nHoWcpBjipkZaiD1wZbepQUAEY8AXb10URrVQPrqXhQ,2780
|
|
2665
2665
|
windmill_api/models/get_job_metrics_response_200_timeseries_metrics_item_values_item.py,sha256=PsK-J3cqqYc0C2lE2PojfO9odYNZNSD1Otl8T981dcE,1971
|
|
2666
|
-
windmill_api/models/get_job_response_200_type_0.py,sha256=
|
|
2666
|
+
windmill_api/models/get_job_response_200_type_0.py,sha256=WXWJ_o7MIgdXgxW9dRFwj8nrjFYYAp70vdJblMKvnh4,15865
|
|
2667
2667
|
windmill_api/models/get_job_response_200_type_0_args.py,sha256=j3d_EFUbwmTJgZa4uKC_lG5EHwzyl6zHzMKeybQVTVc,1342
|
|
2668
2668
|
windmill_api/models/get_job_response_200_type_0_flow_status.py,sha256=2W_EGmBHjJt3HT_3DtGYRe7YEj5-8DwN0f6Z15UBk6g,5632
|
|
2669
2669
|
windmill_api/models/get_job_response_200_type_0_flow_status_failure_module.py,sha256=N3Q_2M77NnBXArFQXLewcSmOwB08mjIIXHxo2FPycws,16569
|
|
@@ -3127,7 +3127,7 @@ windmill_api/models/get_sqs_trigger_response_200_retry_exponential.py,sha256=GG0
|
|
|
3127
3127
|
windmill_api/models/get_sqs_trigger_response_200_retry_retry_if.py,sha256=l8BqqjW6JzH9v86O_F9vYKXbCRrI9yIYHrJwL2zSCNo,1560
|
|
3128
3128
|
windmill_api/models/get_suspended_job_flow_response_200.py,sha256=K8sndU_ep_Lz2qX7BEbtiRe2xvFFQPUqapn_tHs-e1w,4020
|
|
3129
3129
|
windmill_api/models/get_suspended_job_flow_response_200_approvers_item.py,sha256=PyZOXIQTaOKbv0NgLwgR8ETDDRIQ_ih77iYTlx7dkr8,1827
|
|
3130
|
-
windmill_api/models/get_suspended_job_flow_response_200_job_type_0.py,sha256=
|
|
3130
|
+
windmill_api/models/get_suspended_job_flow_response_200_job_type_0.py,sha256=FqAVhgg8k1yBHpQzDaDes0TtvkGpZaLO6bqeQjeEeZs,16945
|
|
3131
3131
|
windmill_api/models/get_suspended_job_flow_response_200_job_type_0_args.py,sha256=sz0whQW4yACHrTtca_JHPEoyYPIYgacEPRFTTBOcVhM,1431
|
|
3132
3132
|
windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status.py,sha256=1YKk7nX3ut8YBXq1ODmRPr3forgRwgK19Pa_5G6DD6E,6319
|
|
3133
3133
|
windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module.py,sha256=330y55SiI7YCHx3jAbdYE8peyjo0UN_TWylXdT7sqqA,18187
|
|
@@ -3717,7 +3717,7 @@ windmill_api/models/list_captures_response_200_item.py,sha256=KRviYFOxsyWQ9CV2k_
|
|
|
3717
3717
|
windmill_api/models/list_captures_response_200_item_trigger_kind.py,sha256=5DKkzq-dTJKyeAIIEFXjRWulld5IB03WKdWbgAEBM6o,383
|
|
3718
3718
|
windmill_api/models/list_captures_runnable_kind.py,sha256=aX97pn4XHRbUoGVoEcMmhoLiGGjnEZU0eryz4Tl4AWQ,169
|
|
3719
3719
|
windmill_api/models/list_captures_trigger_kind.py,sha256=jpGSBL_H0U56ybhuUqS8fh5KPQL2qvSzy3tyUa4bK1M,368
|
|
3720
|
-
windmill_api/models/list_completed_jobs_response_200_item.py,sha256=
|
|
3720
|
+
windmill_api/models/list_completed_jobs_response_200_item.py,sha256=kLrPtDBStC0nMEIYB5Yn9-38ySmb4_6UyLn3BWquSUU,15787
|
|
3721
3721
|
windmill_api/models/list_completed_jobs_response_200_item_args.py,sha256=wHpBzUi1eKVUaDDDDpfSFTYtR1KccSmMqam54zAcrh8,1392
|
|
3722
3722
|
windmill_api/models/list_completed_jobs_response_200_item_flow_status.py,sha256=ufnL4lSiFIgBsT0t2yb1vzH1Qq8eiQzinWntrkKLko0,6054
|
|
3723
3723
|
windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module.py,sha256=eClFwhhls82Zb0T1HSqb5PjYmGn5pJj0CFvu5kH8fOE,17473
|
|
@@ -3856,7 +3856,7 @@ windmill_api/models/list_email_triggers_response_200_item_retry_constant.py,sha2
|
|
|
3856
3856
|
windmill_api/models/list_email_triggers_response_200_item_retry_exponential.py,sha256=Rz-NDqkodDWxI4c9zRdlmDlf9RVk6zvui3MAQfbbUf8,2618
|
|
3857
3857
|
windmill_api/models/list_email_triggers_response_200_item_retry_retry_if.py,sha256=KdN4Uo8RsyBc14gu5qV7s4j3H15Pt2vbyx70zjC875c,1603
|
|
3858
3858
|
windmill_api/models/list_extended_jobs_response_200.py,sha256=Uc_5z_xcI1F2c5D1l-172BVYPeiLaBw0XT3Gm95igog,5038
|
|
3859
|
-
windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0.py,sha256=
|
|
3859
|
+
windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0.py,sha256=Zp1N56P6ZP1MYsttJgGkB-MLrG2_A72gUCptUDiU_hI,17070
|
|
3860
3860
|
windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_args.py,sha256=bVi4bzj4VIsBBMKUkH1AasjomcBn_xF7f3PEOpYksYM,1441
|
|
3861
3861
|
windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status.py,sha256=NvWza9S7JmjS2AknqF9Xd_atKMFd7CtY26BXBCjyIhM,6389
|
|
3862
3862
|
windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module.py,sha256=kA9MZju9sNzdkBmvoc1x7L8GoM6lbl7zceK03IqiJFI,18381
|
|
@@ -4151,7 +4151,7 @@ windmill_api/models/list_inputs_runnable_type.py,sha256=RTfe5eGBgPlnk7vgyuH1IANs
|
|
|
4151
4151
|
windmill_api/models/list_instance_groups_response_200_item.py,sha256=7jdabz6lWOdm8o4lHBAsnLLz6Mi_BbWM2cPD1Hz9des,2215
|
|
4152
4152
|
windmill_api/models/list_instance_groups_with_workspaces_response_200_item.py,sha256=tadMtuEqw2tub8PZ0hz-eN1OEzQ6nIEmQGY9m-9dEZY,3672
|
|
4153
4153
|
windmill_api/models/list_instance_groups_with_workspaces_response_200_item_workspaces_item.py,sha256=Stto_NDccXdJxRFoUj99Cr_u4SMksIGN12n2Mds2ns4,2422
|
|
4154
|
-
windmill_api/models/list_jobs_response_200_item_type_0.py,sha256=
|
|
4154
|
+
windmill_api/models/list_jobs_response_200_item_type_0.py,sha256=ShhFbgfqA9yFgjgB_9p-FNPCQUygn5vd014HNLnjEvw,16250
|
|
4155
4155
|
windmill_api/models/list_jobs_response_200_item_type_0_args.py,sha256=cnINEtwUasLz79mm1wp0L78GDmeGh3p0Vt9pUdvAWos,1375
|
|
4156
4156
|
windmill_api/models/list_jobs_response_200_item_type_0_flow_status.py,sha256=QtdlRlr8ztUg4eU5YXSA5xJqJSbv54rJzprzp6x85aA,5925
|
|
4157
4157
|
windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module.py,sha256=0JCZk1ddta3_SecziyD6L4tkYiXCp6ycxMev2pS1cBk,17107
|
|
@@ -5727,7 +5727,7 @@ windmill_api/models/workspace_invite.py,sha256=wp-J-VJLkXsfQzw1PdNPGQhETsFCFXh1e
|
|
|
5727
5727
|
windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
|
|
5728
5728
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
5729
5729
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
5730
|
-
windmill_api-1.
|
|
5731
|
-
windmill_api-1.
|
|
5732
|
-
windmill_api-1.
|
|
5733
|
-
windmill_api-1.
|
|
5730
|
+
windmill_api-1.567.1.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
5731
|
+
windmill_api-1.567.1.dist-info/METADATA,sha256=t1fJaDhM3TdVI17aocpIiHbR4u4mCJVovG8ichDQc-c,5023
|
|
5732
|
+
windmill_api-1.567.1.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
5733
|
+
windmill_api-1.567.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|