windmill-api 1.467.1__py3-none-any.whl → 1.469.0__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.

@@ -24,6 +24,7 @@ def _get_kwargs(
24
24
  exclude_operations: Union[Unset, None, str] = UNSET,
25
25
  resource: Union[Unset, None, str] = UNSET,
26
26
  action_kind: Union[Unset, None, ListAuditLogsActionKind] = UNSET,
27
+ all_workspaces: Union[Unset, None, bool] = UNSET,
27
28
  ) -> Dict[str, Any]:
28
29
  pass
29
30
 
@@ -60,6 +61,8 @@ def _get_kwargs(
60
61
 
61
62
  params["action_kind"] = json_action_kind
62
63
 
64
+ params["all_workspaces"] = all_workspaces
65
+
63
66
  params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
64
67
 
65
68
  return {
@@ -114,6 +117,7 @@ def sync_detailed(
114
117
  exclude_operations: Union[Unset, None, str] = UNSET,
115
118
  resource: Union[Unset, None, str] = UNSET,
116
119
  action_kind: Union[Unset, None, ListAuditLogsActionKind] = UNSET,
120
+ all_workspaces: Union[Unset, None, bool] = UNSET,
117
121
  ) -> Response[List["ListAuditLogsResponse200Item"]]:
118
122
  """list audit logs (requires admin privilege)
119
123
 
@@ -129,6 +133,7 @@ def sync_detailed(
129
133
  exclude_operations (Union[Unset, None, str]):
130
134
  resource (Union[Unset, None, str]):
131
135
  action_kind (Union[Unset, None, ListAuditLogsActionKind]):
136
+ all_workspaces (Union[Unset, None, bool]):
132
137
 
133
138
  Raises:
134
139
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -150,6 +155,7 @@ def sync_detailed(
150
155
  exclude_operations=exclude_operations,
151
156
  resource=resource,
152
157
  action_kind=action_kind,
158
+ all_workspaces=all_workspaces,
153
159
  )
154
160
 
155
161
  response = client.get_httpx_client().request(
@@ -173,6 +179,7 @@ def sync(
173
179
  exclude_operations: Union[Unset, None, str] = UNSET,
174
180
  resource: Union[Unset, None, str] = UNSET,
175
181
  action_kind: Union[Unset, None, ListAuditLogsActionKind] = UNSET,
182
+ all_workspaces: Union[Unset, None, bool] = UNSET,
176
183
  ) -> Optional[List["ListAuditLogsResponse200Item"]]:
177
184
  """list audit logs (requires admin privilege)
178
185
 
@@ -188,6 +195,7 @@ def sync(
188
195
  exclude_operations (Union[Unset, None, str]):
189
196
  resource (Union[Unset, None, str]):
190
197
  action_kind (Union[Unset, None, ListAuditLogsActionKind]):
198
+ all_workspaces (Union[Unset, None, bool]):
191
199
 
192
200
  Raises:
193
201
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -210,6 +218,7 @@ def sync(
210
218
  exclude_operations=exclude_operations,
211
219
  resource=resource,
212
220
  action_kind=action_kind,
221
+ all_workspaces=all_workspaces,
213
222
  ).parsed
214
223
 
215
224
 
@@ -227,6 +236,7 @@ async def asyncio_detailed(
227
236
  exclude_operations: Union[Unset, None, str] = UNSET,
228
237
  resource: Union[Unset, None, str] = UNSET,
229
238
  action_kind: Union[Unset, None, ListAuditLogsActionKind] = UNSET,
239
+ all_workspaces: Union[Unset, None, bool] = UNSET,
230
240
  ) -> Response[List["ListAuditLogsResponse200Item"]]:
231
241
  """list audit logs (requires admin privilege)
232
242
 
@@ -242,6 +252,7 @@ async def asyncio_detailed(
242
252
  exclude_operations (Union[Unset, None, str]):
243
253
  resource (Union[Unset, None, str]):
244
254
  action_kind (Union[Unset, None, ListAuditLogsActionKind]):
255
+ all_workspaces (Union[Unset, None, bool]):
245
256
 
246
257
  Raises:
247
258
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -263,6 +274,7 @@ async def asyncio_detailed(
263
274
  exclude_operations=exclude_operations,
264
275
  resource=resource,
265
276
  action_kind=action_kind,
277
+ all_workspaces=all_workspaces,
266
278
  )
267
279
 
268
280
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -284,6 +296,7 @@ async def asyncio(
284
296
  exclude_operations: Union[Unset, None, str] = UNSET,
285
297
  resource: Union[Unset, None, str] = UNSET,
286
298
  action_kind: Union[Unset, None, ListAuditLogsActionKind] = UNSET,
299
+ all_workspaces: Union[Unset, None, bool] = UNSET,
287
300
  ) -> Optional[List["ListAuditLogsResponse200Item"]]:
288
301
  """list audit logs (requires admin privilege)
289
302
 
@@ -299,6 +312,7 @@ async def asyncio(
299
312
  exclude_operations (Union[Unset, None, str]):
300
313
  resource (Union[Unset, None, str]):
301
314
  action_kind (Union[Unset, None, ListAuditLogsActionKind]):
315
+ all_workspaces (Union[Unset, None, bool]):
302
316
 
303
317
  Raises:
304
318
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -322,5 +336,6 @@ async def asyncio(
322
336
  exclude_operations=exclude_operations,
323
337
  resource=resource,
324
338
  action_kind=action_kind,
339
+ all_workspaces=all_workspaces,
325
340
  )
326
341
  ).parsed
@@ -0,0 +1,166 @@
1
+ from http import HTTPStatus
2
+ from typing import Any, Dict, Optional, Union
3
+
4
+ import httpx
5
+
6
+ from ... import errors
7
+ from ...client import AuthenticatedClient, Client
8
+ from ...models.get_flow_deployment_status_response_200 import GetFlowDeploymentStatusResponse200
9
+ from ...types import Response
10
+
11
+
12
+ def _get_kwargs(
13
+ workspace: str,
14
+ path: str,
15
+ ) -> Dict[str, Any]:
16
+ pass
17
+
18
+ return {
19
+ "method": "get",
20
+ "url": "/w/{workspace}/flows/deployment_status/p/{path}".format(
21
+ workspace=workspace,
22
+ path=path,
23
+ ),
24
+ }
25
+
26
+
27
+ def _parse_response(
28
+ *, client: Union[AuthenticatedClient, Client], response: httpx.Response
29
+ ) -> Optional[GetFlowDeploymentStatusResponse200]:
30
+ if response.status_code == HTTPStatus.OK:
31
+ response_200 = GetFlowDeploymentStatusResponse200.from_dict(response.json())
32
+
33
+ return response_200
34
+ if client.raise_on_unexpected_status:
35
+ raise errors.UnexpectedStatus(response.status_code, response.content)
36
+ else:
37
+ return None
38
+
39
+
40
+ def _build_response(
41
+ *, client: Union[AuthenticatedClient, Client], response: httpx.Response
42
+ ) -> Response[GetFlowDeploymentStatusResponse200]:
43
+ return Response(
44
+ status_code=HTTPStatus(response.status_code),
45
+ content=response.content,
46
+ headers=response.headers,
47
+ parsed=_parse_response(client=client, response=response),
48
+ )
49
+
50
+
51
+ def sync_detailed(
52
+ workspace: str,
53
+ path: str,
54
+ *,
55
+ client: Union[AuthenticatedClient, Client],
56
+ ) -> Response[GetFlowDeploymentStatusResponse200]:
57
+ """get flow deployment status
58
+
59
+ Args:
60
+ workspace (str):
61
+ path (str):
62
+
63
+ Raises:
64
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
65
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
66
+
67
+ Returns:
68
+ Response[GetFlowDeploymentStatusResponse200]
69
+ """
70
+
71
+ kwargs = _get_kwargs(
72
+ workspace=workspace,
73
+ path=path,
74
+ )
75
+
76
+ response = client.get_httpx_client().request(
77
+ **kwargs,
78
+ )
79
+
80
+ return _build_response(client=client, response=response)
81
+
82
+
83
+ def sync(
84
+ workspace: str,
85
+ path: str,
86
+ *,
87
+ client: Union[AuthenticatedClient, Client],
88
+ ) -> Optional[GetFlowDeploymentStatusResponse200]:
89
+ """get flow deployment status
90
+
91
+ Args:
92
+ workspace (str):
93
+ path (str):
94
+
95
+ Raises:
96
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
97
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
98
+
99
+ Returns:
100
+ GetFlowDeploymentStatusResponse200
101
+ """
102
+
103
+ return sync_detailed(
104
+ workspace=workspace,
105
+ path=path,
106
+ client=client,
107
+ ).parsed
108
+
109
+
110
+ async def asyncio_detailed(
111
+ workspace: str,
112
+ path: str,
113
+ *,
114
+ client: Union[AuthenticatedClient, Client],
115
+ ) -> Response[GetFlowDeploymentStatusResponse200]:
116
+ """get flow deployment status
117
+
118
+ Args:
119
+ workspace (str):
120
+ path (str):
121
+
122
+ Raises:
123
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
124
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
125
+
126
+ Returns:
127
+ Response[GetFlowDeploymentStatusResponse200]
128
+ """
129
+
130
+ kwargs = _get_kwargs(
131
+ workspace=workspace,
132
+ path=path,
133
+ )
134
+
135
+ response = await client.get_async_httpx_client().request(**kwargs)
136
+
137
+ return _build_response(client=client, response=response)
138
+
139
+
140
+ async def asyncio(
141
+ workspace: str,
142
+ path: str,
143
+ *,
144
+ client: Union[AuthenticatedClient, Client],
145
+ ) -> Optional[GetFlowDeploymentStatusResponse200]:
146
+ """get flow deployment status
147
+
148
+ Args:
149
+ workspace (str):
150
+ path (str):
151
+
152
+ Raises:
153
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
154
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
155
+
156
+ Returns:
157
+ GetFlowDeploymentStatusResponse200
158
+ """
159
+
160
+ return (
161
+ await asyncio_detailed(
162
+ workspace=workspace,
163
+ path=path,
164
+ client=client,
165
+ )
166
+ ).parsed
@@ -39,6 +39,7 @@ class GetFlowByPathResponse200:
39
39
  timeout (Union[Unset, float]):
40
40
  visible_to_runner_only (Union[Unset, bool]):
41
41
  on_behalf_of_email (Union[Unset, str]):
42
+ lock_error_logs (Union[Unset, str]):
42
43
  """
43
44
 
44
45
  summary: str
@@ -60,6 +61,7 @@ class GetFlowByPathResponse200:
60
61
  timeout: Union[Unset, float] = UNSET
61
62
  visible_to_runner_only: Union[Unset, bool] = UNSET
62
63
  on_behalf_of_email: Union[Unset, str] = UNSET
64
+ lock_error_logs: Union[Unset, str] = UNSET
63
65
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
64
66
 
65
67
  def to_dict(self) -> Dict[str, Any]:
@@ -88,6 +90,7 @@ class GetFlowByPathResponse200:
88
90
  timeout = self.timeout
89
91
  visible_to_runner_only = self.visible_to_runner_only
90
92
  on_behalf_of_email = self.on_behalf_of_email
93
+ lock_error_logs = self.lock_error_logs
91
94
 
92
95
  field_dict: Dict[str, Any] = {}
93
96
  field_dict.update(self.additional_properties)
@@ -126,6 +129,8 @@ class GetFlowByPathResponse200:
126
129
  field_dict["visible_to_runner_only"] = visible_to_runner_only
127
130
  if on_behalf_of_email is not UNSET:
128
131
  field_dict["on_behalf_of_email"] = on_behalf_of_email
132
+ if lock_error_logs is not UNSET:
133
+ field_dict["lock_error_logs"] = lock_error_logs
129
134
 
130
135
  return field_dict
131
136
 
@@ -179,6 +184,8 @@ class GetFlowByPathResponse200:
179
184
 
180
185
  on_behalf_of_email = d.pop("on_behalf_of_email", UNSET)
181
186
 
187
+ lock_error_logs = d.pop("lock_error_logs", UNSET)
188
+
182
189
  get_flow_by_path_response_200 = cls(
183
190
  summary=summary,
184
191
  value=value,
@@ -199,6 +206,7 @@ class GetFlowByPathResponse200:
199
206
  timeout=timeout,
200
207
  visible_to_runner_only=visible_to_runner_only,
201
208
  on_behalf_of_email=on_behalf_of_email,
209
+ lock_error_logs=lock_error_logs,
202
210
  )
203
211
 
204
212
  get_flow_by_path_response_200.additional_properties = d
@@ -45,6 +45,7 @@ class GetFlowByPathWithDraftResponse200Draft:
45
45
  timeout (Union[Unset, float]):
46
46
  visible_to_runner_only (Union[Unset, bool]):
47
47
  on_behalf_of_email (Union[Unset, str]):
48
+ lock_error_logs (Union[Unset, str]):
48
49
  """
49
50
 
50
51
  summary: str
@@ -66,6 +67,7 @@ class GetFlowByPathWithDraftResponse200Draft:
66
67
  timeout: Union[Unset, float] = UNSET
67
68
  visible_to_runner_only: Union[Unset, bool] = UNSET
68
69
  on_behalf_of_email: Union[Unset, str] = UNSET
70
+ lock_error_logs: Union[Unset, str] = UNSET
69
71
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
70
72
 
71
73
  def to_dict(self) -> Dict[str, Any]:
@@ -94,6 +96,7 @@ class GetFlowByPathWithDraftResponse200Draft:
94
96
  timeout = self.timeout
95
97
  visible_to_runner_only = self.visible_to_runner_only
96
98
  on_behalf_of_email = self.on_behalf_of_email
99
+ lock_error_logs = self.lock_error_logs
97
100
 
98
101
  field_dict: Dict[str, Any] = {}
99
102
  field_dict.update(self.additional_properties)
@@ -132,6 +135,8 @@ class GetFlowByPathWithDraftResponse200Draft:
132
135
  field_dict["visible_to_runner_only"] = visible_to_runner_only
133
136
  if on_behalf_of_email is not UNSET:
134
137
  field_dict["on_behalf_of_email"] = on_behalf_of_email
138
+ if lock_error_logs is not UNSET:
139
+ field_dict["lock_error_logs"] = lock_error_logs
135
140
 
136
141
  return field_dict
137
142
 
@@ -191,6 +196,8 @@ class GetFlowByPathWithDraftResponse200Draft:
191
196
 
192
197
  on_behalf_of_email = d.pop("on_behalf_of_email", UNSET)
193
198
 
199
+ lock_error_logs = d.pop("lock_error_logs", UNSET)
200
+
194
201
  get_flow_by_path_with_draft_response_200_draft = cls(
195
202
  summary=summary,
196
203
  value=value,
@@ -211,6 +218,7 @@ class GetFlowByPathWithDraftResponse200Draft:
211
218
  timeout=timeout,
212
219
  visible_to_runner_only=visible_to_runner_only,
213
220
  on_behalf_of_email=on_behalf_of_email,
221
+ lock_error_logs=lock_error_logs,
214
222
  )
215
223
 
216
224
  get_flow_by_path_with_draft_response_200_draft.additional_properties = d
@@ -0,0 +1,58 @@
1
+ from typing import Any, Dict, List, Type, TypeVar, Union
2
+
3
+ from attrs import define as _attrs_define
4
+ from attrs import field as _attrs_field
5
+
6
+ from ..types import UNSET, Unset
7
+
8
+ T = TypeVar("T", bound="GetFlowDeploymentStatusResponse200")
9
+
10
+
11
+ @_attrs_define
12
+ class GetFlowDeploymentStatusResponse200:
13
+ """
14
+ Attributes:
15
+ lock_error_logs (Union[Unset, str]):
16
+ """
17
+
18
+ lock_error_logs: Union[Unset, str] = UNSET
19
+ additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
20
+
21
+ def to_dict(self) -> Dict[str, Any]:
22
+ lock_error_logs = self.lock_error_logs
23
+
24
+ field_dict: Dict[str, Any] = {}
25
+ field_dict.update(self.additional_properties)
26
+ field_dict.update({})
27
+ if lock_error_logs is not UNSET:
28
+ field_dict["lock_error_logs"] = lock_error_logs
29
+
30
+ return field_dict
31
+
32
+ @classmethod
33
+ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
34
+ d = src_dict.copy()
35
+ lock_error_logs = d.pop("lock_error_logs", UNSET)
36
+
37
+ get_flow_deployment_status_response_200 = cls(
38
+ lock_error_logs=lock_error_logs,
39
+ )
40
+
41
+ get_flow_deployment_status_response_200.additional_properties = d
42
+ return get_flow_deployment_status_response_200
43
+
44
+ @property
45
+ def additional_keys(self) -> List[str]:
46
+ return list(self.additional_properties.keys())
47
+
48
+ def __getitem__(self, key: str) -> Any:
49
+ return self.additional_properties[key]
50
+
51
+ def __setitem__(self, key: str, value: Any) -> None:
52
+ self.additional_properties[key] = value
53
+
54
+ def __delitem__(self, key: str) -> None:
55
+ del self.additional_properties[key]
56
+
57
+ def __contains__(self, key: str) -> bool:
58
+ return key in self.additional_properties
@@ -39,6 +39,7 @@ class GetFlowVersionResponse200:
39
39
  timeout (Union[Unset, float]):
40
40
  visible_to_runner_only (Union[Unset, bool]):
41
41
  on_behalf_of_email (Union[Unset, str]):
42
+ lock_error_logs (Union[Unset, str]):
42
43
  """
43
44
 
44
45
  summary: str
@@ -60,6 +61,7 @@ class GetFlowVersionResponse200:
60
61
  timeout: Union[Unset, float] = UNSET
61
62
  visible_to_runner_only: Union[Unset, bool] = UNSET
62
63
  on_behalf_of_email: Union[Unset, str] = UNSET
64
+ lock_error_logs: Union[Unset, str] = UNSET
63
65
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
64
66
 
65
67
  def to_dict(self) -> Dict[str, Any]:
@@ -88,6 +90,7 @@ class GetFlowVersionResponse200:
88
90
  timeout = self.timeout
89
91
  visible_to_runner_only = self.visible_to_runner_only
90
92
  on_behalf_of_email = self.on_behalf_of_email
93
+ lock_error_logs = self.lock_error_logs
91
94
 
92
95
  field_dict: Dict[str, Any] = {}
93
96
  field_dict.update(self.additional_properties)
@@ -126,6 +129,8 @@ class GetFlowVersionResponse200:
126
129
  field_dict["visible_to_runner_only"] = visible_to_runner_only
127
130
  if on_behalf_of_email is not UNSET:
128
131
  field_dict["on_behalf_of_email"] = on_behalf_of_email
132
+ if lock_error_logs is not UNSET:
133
+ field_dict["lock_error_logs"] = lock_error_logs
129
134
 
130
135
  return field_dict
131
136
 
@@ -179,6 +184,8 @@ class GetFlowVersionResponse200:
179
184
 
180
185
  on_behalf_of_email = d.pop("on_behalf_of_email", UNSET)
181
186
 
187
+ lock_error_logs = d.pop("lock_error_logs", UNSET)
188
+
182
189
  get_flow_version_response_200 = cls(
183
190
  summary=summary,
184
191
  value=value,
@@ -199,6 +206,7 @@ class GetFlowVersionResponse200:
199
206
  timeout=timeout,
200
207
  visible_to_runner_only=visible_to_runner_only,
201
208
  on_behalf_of_email=on_behalf_of_email,
209
+ lock_error_logs=lock_error_logs,
202
210
  )
203
211
 
204
212
  get_flow_version_response_200.additional_properties = d
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: windmill-api
3
- Version: 1.467.1
3
+ Version: 1.469.0
4
4
  Summary: A client library for accessing Windmill API
5
5
  License: Apache-2.0
6
6
  Author: Ruben Fiszel
@@ -24,7 +24,7 @@ windmill_api/api/app/update_app.py,sha256=3V5xj6CiAPHorcn4OWX7EJ3pnV0KavzOQptpf9
24
24
  windmill_api/api/app/update_app_history.py,sha256=m7cNhphZx7jtm38zq7hFnGS5YmpXD3Gq5T16iZm0uy0,3050
25
25
  windmill_api/api/audit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
26
  windmill_api/api/audit/get_audit_log.py,sha256=y-HItlwPj0pX89bFFCtJaEd47IB4JeSbotp2iWgDgNM,4106
27
- windmill_api/api/audit/list_audit_logs.py,sha256=7TE_RLNa08FJ8E0Tp5_qKLBFlJpqdATIupngUn9K7T4,11116
27
+ windmill_api/api/audit/list_audit_logs.py,sha256=xXSANzjyVm5JOSgHXiXOAQ8UUw161kQREAowu-jHEF0,11797
28
28
  windmill_api/api/capture/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
29
  windmill_api/api/capture/delete_capture.py,sha256=lRYBSe16PTkW9BOXw-_a5VtR6e-Rq_78uCK4WY-WYZU,2479
30
30
  windmill_api/api/capture/get_capture.py,sha256=N3R-fUouHMfD-g9VBw3jlkVh-NdXFmWv9Z-nCfuSxfQ,3982
@@ -57,6 +57,7 @@ windmill_api/api/flow/delete_flow_by_path.py,sha256=VfDYijTdfKIIx-ME-GhPmL5HkWJ7
57
57
  windmill_api/api/flow/exists_flow_by_path.py,sha256=YZuCYmtAcDPInobJibqXoUVQTCylIserohEgYbWsnv0,3784
58
58
  windmill_api/api/flow/get_flow_by_path.py,sha256=zg_PiWpieqQaP8cw4Fq4c1l7_-XY73Yu3lK886PqAuY,4978
59
59
  windmill_api/api/flow/get_flow_by_path_with_draft.py,sha256=LmkuXkN7B-HNdo_iq21z4oMFM6W363NAd78GTlb6cp0,4246
60
+ windmill_api/api/flow/get_flow_deployment_status.py,sha256=WX0GDjR4bL6sMDvBncp42RgP53sAuJrsLO2ZltdJI5k,4263
60
61
  windmill_api/api/flow/get_flow_history.py,sha256=OT_yKnEKMKssKuzqWdKRTKtLkAON0pzzhAP7g9w3cJw,4453
61
62
  windmill_api/api/flow/get_flow_latest_version.py,sha256=3E7xnvLMZSpnj2wbIfw1Kcbfw-5f4KDKwBqmDV6worg,4219
62
63
  windmill_api/api/flow/get_flow_version.py,sha256=Wd3gQWT-R77GiB__eEBJ1ou_31n87DP0qkc0zecysV4,4436
@@ -1520,7 +1521,7 @@ windmill_api/models/get_critical_alerts_response_200.py,sha256=kg2Vs9aXLIrenI2u8
1520
1521
  windmill_api/models/get_critical_alerts_response_200_alerts_item.py,sha256=nQsqYz_Kua-QYkq8JFD55cBI-L8TPyNc6ZBvVUutH78,3775
1521
1522
  windmill_api/models/get_default_scripts_response_200.py,sha256=ekfscpG1XtNxHvpokDZ7pI0W6DAdITytKNg09XwSgtc,2537
1522
1523
  windmill_api/models/get_deploy_to_response_200.py,sha256=xZHLxF4DVyJtjVYFRWhSC4gCu1nC1wIAHlvwB-dV8EU,1623
1523
- windmill_api/models/get_flow_by_path_response_200.py,sha256=iZG5afegTupCM0Ur3Q2dybmdctcVr_vrbXmnImiTxsk,7698
1524
+ windmill_api/models/get_flow_by_path_response_200.py,sha256=MkRU-NQ9hjxdGgSfM6pINFsmvxoEPPD5CP5pf_quNW4,8042
1524
1525
  windmill_api/models/get_flow_by_path_response_200_extra_perms.py,sha256=w3bWMRwPa6P0a46NqeIq8_8F3cKVnoXZ54qk2iqo8B4,1346
1525
1526
  windmill_api/models/get_flow_by_path_response_200_schema.py,sha256=RRPFK8HZ3-HZd75U2wsZnnD3zP_3u2MaKM6lNmgAoWU,1320
1526
1527
  windmill_api/models/get_flow_by_path_response_200_value.py,sha256=C-n2eQuI2SaNClj4f1LTA17hyl8cWjUaG_RdhvksXR0,7220
@@ -1582,7 +1583,7 @@ windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_susp
1582
1583
  windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_user_groups_required_type_1.py,sha256=QXnAAGirsPTgU29p9dx_ZBBf59-CqCzVFs7anRf6YTM,2407
1583
1584
  windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_user_groups_required_type_1_type.py,sha256=AI14GoeoQUSUMpTy8tveoJltK_h7L8OsGLZFuRskxwo,216
1584
1585
  windmill_api/models/get_flow_by_path_with_draft_response_200.py,sha256=MUKvW2SXmcZOiBzCSIaH0P39a4SegBGxmPbGD2H0yhQ,2313
1585
- windmill_api/models/get_flow_by_path_with_draft_response_200_draft.py,sha256=ybqTnLut7cJRHP1lO9EnhwKbJA5960GbiEtbZa6jieg,8229
1586
+ windmill_api/models/get_flow_by_path_with_draft_response_200_draft.py,sha256=igWLvh6qSyKJOFR9-l6Xu7PsoUTILShzVkypEQRn7VU,8573
1586
1587
  windmill_api/models/get_flow_by_path_with_draft_response_200_draft_extra_perms.py,sha256=SqcQSyv7l-IbZqjpVnur20cnVcJAtJRJrsHsS_3cmCs,1425
1587
1588
  windmill_api/models/get_flow_by_path_with_draft_response_200_draft_schema.py,sha256=o68DXOL8DAf4pjCjJtlofqgzuDjRIjRDW97iR133vEI,1399
1588
1589
  windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value.py,sha256=w47lp13cX2LGl3My68Ltm0ncaUj4RzgHMLpZvzLAg3A,7728
@@ -1643,9 +1644,10 @@ windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preproc
1643
1644
  windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_user_groups_required_type_0_type.py,sha256=hMbDi30HRil-GD1zF5MVNuPCNmugRCooQqo2wrmviZQ,230
1644
1645
  windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_user_groups_required_type_1.py,sha256=D4pNMMIJ8g9RRIRgGQS2k6oss5jaOfV6DFp56rGiP9Q,2641
1645
1646
  windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_user_groups_required_type_1_type.py,sha256=QmtbEP7csYyXuCD8xYWRToKD-yuQwz1buw8HhU6xWS4,230
1647
+ windmill_api/models/get_flow_deployment_status_response_200.py,sha256=6MdQzXsCRbW92kkKD5gdFiZ7oGGFUVEhhmXHrILvUAI,1752
1646
1648
  windmill_api/models/get_flow_history_response_200_item.py,sha256=yPZ2y8yQzTK_MUsnR9pAx_2OmA7zk-pcM_zu0wl2558,2179
1647
1649
  windmill_api/models/get_flow_latest_version_response_200.py,sha256=TQpE1BRZAavotAbVdcd2QyZhJtOWsHDvLCFoXFCA4L4,2189
1648
- windmill_api/models/get_flow_version_response_200.py,sha256=bjtcmzLPpWHTgSRHqTiagl1RVCwm1A__VCua6TFPASI,7716
1650
+ windmill_api/models/get_flow_version_response_200.py,sha256=P5Mnb45af0qovrPHDsF1zlfHzsXwiD1Jwxwz1Zyaits,8060
1649
1651
  windmill_api/models/get_flow_version_response_200_extra_perms.py,sha256=WuW6SS3WsUSbespoJo86LTTlMRWDCxZFzMEzjf4mQks,1348
1650
1652
  windmill_api/models/get_flow_version_response_200_schema.py,sha256=6Aw7uzu9fmJt3Xz6nTatjGoXztUoRderwYrb0-w1ILc,1322
1651
1653
  windmill_api/models/get_flow_version_response_200_value.py,sha256=D2iEf_ljytdC09NBuaVEmXybqPxVlY2h4X_nZPDqzOA,7239
@@ -3717,7 +3719,7 @@ windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1li
3717
3719
  windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
3718
3720
  windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
3719
3721
  windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
3720
- windmill_api-1.467.1.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
3721
- windmill_api-1.467.1.dist-info/METADATA,sha256=_UN-MafAZIS0aEJ_hWrwr3cHABnrxV06OLnQnyjZKQA,5023
3722
- windmill_api-1.467.1.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
3723
- windmill_api-1.467.1.dist-info/RECORD,,
3722
+ windmill_api-1.469.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
3723
+ windmill_api-1.469.0.dist-info/METADATA,sha256=vUVyiWERVm0ZfrsrHsfoJNmAU-tJ4OTAvSdkD9b6W6E,5023
3724
+ windmill_api-1.469.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
3725
+ windmill_api-1.469.0.dist-info/RECORD,,