windmill-api 1.547.0__py3-none-any.whl → 1.548.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/workspace/get_dependency_map.py +157 -0
- windmill_api/api/workspace/rebuild_dependency_map.py +93 -0
- windmill_api/models/create_websocket_trigger_json_body.py +7 -0
- windmill_api/models/dependency_map.py +90 -0
- windmill_api/models/edit_websocket_trigger.py +7 -0
- windmill_api/models/get_dependency_map_response_200_item.py +90 -0
- windmill_api/models/get_websocket_trigger_response_200.py +7 -0
- windmill_api/models/list_websocket_triggers_response_200_item.py +7 -0
- windmill_api/models/new_websocket_trigger.py +7 -0
- windmill_api/models/update_websocket_trigger_json_body.py +7 -0
- windmill_api/models/websocket_trigger.py +7 -0
- {windmill_api-1.547.0.dist-info → windmill_api-1.548.1.dist-info}/METADATA +1 -1
- {windmill_api-1.547.0.dist-info → windmill_api-1.548.1.dist-info}/RECORD +15 -11
- {windmill_api-1.547.0.dist-info → windmill_api-1.548.1.dist-info}/LICENSE +0 -0
- {windmill_api-1.547.0.dist-info → windmill_api-1.548.1.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
from http import HTTPStatus
|
|
2
|
+
from typing import Any, Dict, List, Optional, Union
|
|
3
|
+
|
|
4
|
+
import httpx
|
|
5
|
+
|
|
6
|
+
from ... import errors
|
|
7
|
+
from ...client import AuthenticatedClient, Client
|
|
8
|
+
from ...models.get_dependency_map_response_200_item import GetDependencyMapResponse200Item
|
|
9
|
+
from ...types import Response
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def _get_kwargs(
|
|
13
|
+
workspace: str,
|
|
14
|
+
) -> Dict[str, Any]:
|
|
15
|
+
pass
|
|
16
|
+
|
|
17
|
+
return {
|
|
18
|
+
"method": "get",
|
|
19
|
+
"url": "/w/{workspace}/workspaces/get_dependency_map".format(
|
|
20
|
+
workspace=workspace,
|
|
21
|
+
),
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def _parse_response(
|
|
26
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
|
27
|
+
) -> Optional[List["GetDependencyMapResponse200Item"]]:
|
|
28
|
+
if response.status_code == HTTPStatus.OK:
|
|
29
|
+
response_200 = []
|
|
30
|
+
_response_200 = response.json()
|
|
31
|
+
for response_200_item_data in _response_200:
|
|
32
|
+
response_200_item = GetDependencyMapResponse200Item.from_dict(response_200_item_data)
|
|
33
|
+
|
|
34
|
+
response_200.append(response_200_item)
|
|
35
|
+
|
|
36
|
+
return response_200
|
|
37
|
+
if client.raise_on_unexpected_status:
|
|
38
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
|
39
|
+
else:
|
|
40
|
+
return None
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
def _build_response(
|
|
44
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
|
45
|
+
) -> Response[List["GetDependencyMapResponse200Item"]]:
|
|
46
|
+
return Response(
|
|
47
|
+
status_code=HTTPStatus(response.status_code),
|
|
48
|
+
content=response.content,
|
|
49
|
+
headers=response.headers,
|
|
50
|
+
parsed=_parse_response(client=client, response=response),
|
|
51
|
+
)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
def sync_detailed(
|
|
55
|
+
workspace: str,
|
|
56
|
+
*,
|
|
57
|
+
client: Union[AuthenticatedClient, Client],
|
|
58
|
+
) -> Response[List["GetDependencyMapResponse200Item"]]:
|
|
59
|
+
"""get dependency map
|
|
60
|
+
|
|
61
|
+
Args:
|
|
62
|
+
workspace (str):
|
|
63
|
+
|
|
64
|
+
Raises:
|
|
65
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
66
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
67
|
+
|
|
68
|
+
Returns:
|
|
69
|
+
Response[List['GetDependencyMapResponse200Item']]
|
|
70
|
+
"""
|
|
71
|
+
|
|
72
|
+
kwargs = _get_kwargs(
|
|
73
|
+
workspace=workspace,
|
|
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
|
+
*,
|
|
86
|
+
client: Union[AuthenticatedClient, Client],
|
|
87
|
+
) -> Optional[List["GetDependencyMapResponse200Item"]]:
|
|
88
|
+
"""get dependency map
|
|
89
|
+
|
|
90
|
+
Args:
|
|
91
|
+
workspace (str):
|
|
92
|
+
|
|
93
|
+
Raises:
|
|
94
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
95
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
96
|
+
|
|
97
|
+
Returns:
|
|
98
|
+
List['GetDependencyMapResponse200Item']
|
|
99
|
+
"""
|
|
100
|
+
|
|
101
|
+
return sync_detailed(
|
|
102
|
+
workspace=workspace,
|
|
103
|
+
client=client,
|
|
104
|
+
).parsed
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
async def asyncio_detailed(
|
|
108
|
+
workspace: str,
|
|
109
|
+
*,
|
|
110
|
+
client: Union[AuthenticatedClient, Client],
|
|
111
|
+
) -> Response[List["GetDependencyMapResponse200Item"]]:
|
|
112
|
+
"""get dependency map
|
|
113
|
+
|
|
114
|
+
Args:
|
|
115
|
+
workspace (str):
|
|
116
|
+
|
|
117
|
+
Raises:
|
|
118
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
119
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
120
|
+
|
|
121
|
+
Returns:
|
|
122
|
+
Response[List['GetDependencyMapResponse200Item']]
|
|
123
|
+
"""
|
|
124
|
+
|
|
125
|
+
kwargs = _get_kwargs(
|
|
126
|
+
workspace=workspace,
|
|
127
|
+
)
|
|
128
|
+
|
|
129
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
|
130
|
+
|
|
131
|
+
return _build_response(client=client, response=response)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
async def asyncio(
|
|
135
|
+
workspace: str,
|
|
136
|
+
*,
|
|
137
|
+
client: Union[AuthenticatedClient, Client],
|
|
138
|
+
) -> Optional[List["GetDependencyMapResponse200Item"]]:
|
|
139
|
+
"""get dependency map
|
|
140
|
+
|
|
141
|
+
Args:
|
|
142
|
+
workspace (str):
|
|
143
|
+
|
|
144
|
+
Raises:
|
|
145
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
146
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
147
|
+
|
|
148
|
+
Returns:
|
|
149
|
+
List['GetDependencyMapResponse200Item']
|
|
150
|
+
"""
|
|
151
|
+
|
|
152
|
+
return (
|
|
153
|
+
await asyncio_detailed(
|
|
154
|
+
workspace=workspace,
|
|
155
|
+
client=client,
|
|
156
|
+
)
|
|
157
|
+
).parsed
|
|
@@ -0,0 +1,93 @@
|
|
|
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 ...types import Response
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def _get_kwargs(
|
|
12
|
+
workspace: str,
|
|
13
|
+
) -> Dict[str, Any]:
|
|
14
|
+
pass
|
|
15
|
+
|
|
16
|
+
return {
|
|
17
|
+
"method": "post",
|
|
18
|
+
"url": "/w/{workspace}/workspaces/rebuild_dependency_map".format(
|
|
19
|
+
workspace=workspace,
|
|
20
|
+
),
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
def _parse_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Optional[Any]:
|
|
25
|
+
if client.raise_on_unexpected_status:
|
|
26
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
|
27
|
+
else:
|
|
28
|
+
return None
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[Any]:
|
|
32
|
+
return Response(
|
|
33
|
+
status_code=HTTPStatus(response.status_code),
|
|
34
|
+
content=response.content,
|
|
35
|
+
headers=response.headers,
|
|
36
|
+
parsed=_parse_response(client=client, response=response),
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
def sync_detailed(
|
|
41
|
+
workspace: str,
|
|
42
|
+
*,
|
|
43
|
+
client: Union[AuthenticatedClient, Client],
|
|
44
|
+
) -> Response[Any]:
|
|
45
|
+
"""rebuild dependency map
|
|
46
|
+
|
|
47
|
+
Args:
|
|
48
|
+
workspace (str):
|
|
49
|
+
|
|
50
|
+
Raises:
|
|
51
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
52
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
53
|
+
|
|
54
|
+
Returns:
|
|
55
|
+
Response[Any]
|
|
56
|
+
"""
|
|
57
|
+
|
|
58
|
+
kwargs = _get_kwargs(
|
|
59
|
+
workspace=workspace,
|
|
60
|
+
)
|
|
61
|
+
|
|
62
|
+
response = client.get_httpx_client().request(
|
|
63
|
+
**kwargs,
|
|
64
|
+
)
|
|
65
|
+
|
|
66
|
+
return _build_response(client=client, response=response)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
async def asyncio_detailed(
|
|
70
|
+
workspace: str,
|
|
71
|
+
*,
|
|
72
|
+
client: Union[AuthenticatedClient, Client],
|
|
73
|
+
) -> Response[Any]:
|
|
74
|
+
"""rebuild dependency map
|
|
75
|
+
|
|
76
|
+
Args:
|
|
77
|
+
workspace (str):
|
|
78
|
+
|
|
79
|
+
Raises:
|
|
80
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
81
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
82
|
+
|
|
83
|
+
Returns:
|
|
84
|
+
Response[Any]
|
|
85
|
+
"""
|
|
86
|
+
|
|
87
|
+
kwargs = _get_kwargs(
|
|
88
|
+
workspace=workspace,
|
|
89
|
+
)
|
|
90
|
+
|
|
91
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
|
92
|
+
|
|
93
|
+
return _build_response(client=client, response=response)
|
|
@@ -35,6 +35,7 @@ class CreateWebsocketTriggerJsonBody:
|
|
|
35
35
|
url (str):
|
|
36
36
|
filters (List['CreateWebsocketTriggerJsonBodyFiltersItem']):
|
|
37
37
|
can_return_message (bool):
|
|
38
|
+
can_return_error_result (bool):
|
|
38
39
|
enabled (Union[Unset, bool]):
|
|
39
40
|
initial_messages (Union[Unset, List[Union['CreateWebsocketTriggerJsonBodyInitialMessagesItemType0',
|
|
40
41
|
'CreateWebsocketTriggerJsonBodyInitialMessagesItemType1']]]):
|
|
@@ -52,6 +53,7 @@ class CreateWebsocketTriggerJsonBody:
|
|
|
52
53
|
url: str
|
|
53
54
|
filters: List["CreateWebsocketTriggerJsonBodyFiltersItem"]
|
|
54
55
|
can_return_message: bool
|
|
56
|
+
can_return_error_result: bool
|
|
55
57
|
enabled: Union[Unset, bool] = UNSET
|
|
56
58
|
initial_messages: Union[
|
|
57
59
|
Unset,
|
|
@@ -84,6 +86,7 @@ class CreateWebsocketTriggerJsonBody:
|
|
|
84
86
|
filters.append(filters_item)
|
|
85
87
|
|
|
86
88
|
can_return_message = self.can_return_message
|
|
89
|
+
can_return_error_result = self.can_return_error_result
|
|
87
90
|
enabled = self.enabled
|
|
88
91
|
initial_messages: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
89
92
|
if not isinstance(self.initial_messages, Unset):
|
|
@@ -122,6 +125,7 @@ class CreateWebsocketTriggerJsonBody:
|
|
|
122
125
|
"url": url,
|
|
123
126
|
"filters": filters,
|
|
124
127
|
"can_return_message": can_return_message,
|
|
128
|
+
"can_return_error_result": can_return_error_result,
|
|
125
129
|
}
|
|
126
130
|
)
|
|
127
131
|
if enabled is not UNSET:
|
|
@@ -174,6 +178,8 @@ class CreateWebsocketTriggerJsonBody:
|
|
|
174
178
|
|
|
175
179
|
can_return_message = d.pop("can_return_message")
|
|
176
180
|
|
|
181
|
+
can_return_error_result = d.pop("can_return_error_result")
|
|
182
|
+
|
|
177
183
|
enabled = d.pop("enabled", UNSET)
|
|
178
184
|
|
|
179
185
|
initial_messages = []
|
|
@@ -236,6 +242,7 @@ class CreateWebsocketTriggerJsonBody:
|
|
|
236
242
|
url=url,
|
|
237
243
|
filters=filters,
|
|
238
244
|
can_return_message=can_return_message,
|
|
245
|
+
can_return_error_result=can_return_error_result,
|
|
239
246
|
enabled=enabled,
|
|
240
247
|
initial_messages=initial_messages,
|
|
241
248
|
url_runnable_args=url_runnable_args,
|
|
@@ -0,0 +1,90 @@
|
|
|
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="DependencyMap")
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@_attrs_define
|
|
12
|
+
class DependencyMap:
|
|
13
|
+
"""
|
|
14
|
+
Attributes:
|
|
15
|
+
workspace_id (Union[Unset, None, str]):
|
|
16
|
+
importer_path (Union[Unset, None, str]):
|
|
17
|
+
importer_kind (Union[Unset, None, str]):
|
|
18
|
+
imported_path (Union[Unset, None, str]):
|
|
19
|
+
importer_node_id (Union[Unset, None, str]):
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
workspace_id: Union[Unset, None, str] = UNSET
|
|
23
|
+
importer_path: Union[Unset, None, str] = UNSET
|
|
24
|
+
importer_kind: Union[Unset, None, str] = UNSET
|
|
25
|
+
imported_path: Union[Unset, None, str] = UNSET
|
|
26
|
+
importer_node_id: Union[Unset, None, str] = UNSET
|
|
27
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
28
|
+
|
|
29
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
30
|
+
workspace_id = self.workspace_id
|
|
31
|
+
importer_path = self.importer_path
|
|
32
|
+
importer_kind = self.importer_kind
|
|
33
|
+
imported_path = self.imported_path
|
|
34
|
+
importer_node_id = self.importer_node_id
|
|
35
|
+
|
|
36
|
+
field_dict: Dict[str, Any] = {}
|
|
37
|
+
field_dict.update(self.additional_properties)
|
|
38
|
+
field_dict.update({})
|
|
39
|
+
if workspace_id is not UNSET:
|
|
40
|
+
field_dict["workspace_id"] = workspace_id
|
|
41
|
+
if importer_path is not UNSET:
|
|
42
|
+
field_dict["importer_path"] = importer_path
|
|
43
|
+
if importer_kind is not UNSET:
|
|
44
|
+
field_dict["importer_kind"] = importer_kind
|
|
45
|
+
if imported_path is not UNSET:
|
|
46
|
+
field_dict["imported_path"] = imported_path
|
|
47
|
+
if importer_node_id is not UNSET:
|
|
48
|
+
field_dict["importer_node_id"] = importer_node_id
|
|
49
|
+
|
|
50
|
+
return field_dict
|
|
51
|
+
|
|
52
|
+
@classmethod
|
|
53
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
54
|
+
d = src_dict.copy()
|
|
55
|
+
workspace_id = d.pop("workspace_id", UNSET)
|
|
56
|
+
|
|
57
|
+
importer_path = d.pop("importer_path", UNSET)
|
|
58
|
+
|
|
59
|
+
importer_kind = d.pop("importer_kind", UNSET)
|
|
60
|
+
|
|
61
|
+
imported_path = d.pop("imported_path", UNSET)
|
|
62
|
+
|
|
63
|
+
importer_node_id = d.pop("importer_node_id", UNSET)
|
|
64
|
+
|
|
65
|
+
dependency_map = cls(
|
|
66
|
+
workspace_id=workspace_id,
|
|
67
|
+
importer_path=importer_path,
|
|
68
|
+
importer_kind=importer_kind,
|
|
69
|
+
imported_path=imported_path,
|
|
70
|
+
importer_node_id=importer_node_id,
|
|
71
|
+
)
|
|
72
|
+
|
|
73
|
+
dependency_map.additional_properties = d
|
|
74
|
+
return dependency_map
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
def additional_keys(self) -> List[str]:
|
|
78
|
+
return list(self.additional_properties.keys())
|
|
79
|
+
|
|
80
|
+
def __getitem__(self, key: str) -> Any:
|
|
81
|
+
return self.additional_properties[key]
|
|
82
|
+
|
|
83
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
84
|
+
self.additional_properties[key] = value
|
|
85
|
+
|
|
86
|
+
def __delitem__(self, key: str) -> None:
|
|
87
|
+
del self.additional_properties[key]
|
|
88
|
+
|
|
89
|
+
def __contains__(self, key: str) -> bool:
|
|
90
|
+
return key in self.additional_properties
|
|
@@ -31,6 +31,7 @@ class EditWebsocketTrigger:
|
|
|
31
31
|
is_flow (bool):
|
|
32
32
|
filters (List['EditWebsocketTriggerFiltersItem']):
|
|
33
33
|
can_return_message (bool):
|
|
34
|
+
can_return_error_result (bool):
|
|
34
35
|
initial_messages (Union[Unset, List[Union['EditWebsocketTriggerInitialMessagesItemType0',
|
|
35
36
|
'EditWebsocketTriggerInitialMessagesItemType1']]]):
|
|
36
37
|
url_runnable_args (Union[Unset, EditWebsocketTriggerUrlRunnableArgs]): The arguments to pass to the script or
|
|
@@ -47,6 +48,7 @@ class EditWebsocketTrigger:
|
|
|
47
48
|
is_flow: bool
|
|
48
49
|
filters: List["EditWebsocketTriggerFiltersItem"]
|
|
49
50
|
can_return_message: bool
|
|
51
|
+
can_return_error_result: bool
|
|
50
52
|
initial_messages: Union[
|
|
51
53
|
Unset,
|
|
52
54
|
List[Union["EditWebsocketTriggerInitialMessagesItemType0", "EditWebsocketTriggerInitialMessagesItemType1"]],
|
|
@@ -73,6 +75,7 @@ class EditWebsocketTrigger:
|
|
|
73
75
|
filters.append(filters_item)
|
|
74
76
|
|
|
75
77
|
can_return_message = self.can_return_message
|
|
78
|
+
can_return_error_result = self.can_return_error_result
|
|
76
79
|
initial_messages: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
77
80
|
if not isinstance(self.initial_messages, Unset):
|
|
78
81
|
initial_messages = []
|
|
@@ -110,6 +113,7 @@ class EditWebsocketTrigger:
|
|
|
110
113
|
"is_flow": is_flow,
|
|
111
114
|
"filters": filters,
|
|
112
115
|
"can_return_message": can_return_message,
|
|
116
|
+
"can_return_error_result": can_return_error_result,
|
|
113
117
|
}
|
|
114
118
|
)
|
|
115
119
|
if initial_messages is not UNSET:
|
|
@@ -156,6 +160,8 @@ class EditWebsocketTrigger:
|
|
|
156
160
|
|
|
157
161
|
can_return_message = d.pop("can_return_message")
|
|
158
162
|
|
|
163
|
+
can_return_error_result = d.pop("can_return_error_result")
|
|
164
|
+
|
|
159
165
|
initial_messages = []
|
|
160
166
|
_initial_messages = d.pop("initial_messages", UNSET)
|
|
161
167
|
for initial_messages_item_data in _initial_messages or []:
|
|
@@ -211,6 +217,7 @@ class EditWebsocketTrigger:
|
|
|
211
217
|
is_flow=is_flow,
|
|
212
218
|
filters=filters,
|
|
213
219
|
can_return_message=can_return_message,
|
|
220
|
+
can_return_error_result=can_return_error_result,
|
|
214
221
|
initial_messages=initial_messages,
|
|
215
222
|
url_runnable_args=url_runnable_args,
|
|
216
223
|
error_handler_path=error_handler_path,
|
|
@@ -0,0 +1,90 @@
|
|
|
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="GetDependencyMapResponse200Item")
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@_attrs_define
|
|
12
|
+
class GetDependencyMapResponse200Item:
|
|
13
|
+
"""
|
|
14
|
+
Attributes:
|
|
15
|
+
workspace_id (Union[Unset, None, str]):
|
|
16
|
+
importer_path (Union[Unset, None, str]):
|
|
17
|
+
importer_kind (Union[Unset, None, str]):
|
|
18
|
+
imported_path (Union[Unset, None, str]):
|
|
19
|
+
importer_node_id (Union[Unset, None, str]):
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
workspace_id: Union[Unset, None, str] = UNSET
|
|
23
|
+
importer_path: Union[Unset, None, str] = UNSET
|
|
24
|
+
importer_kind: Union[Unset, None, str] = UNSET
|
|
25
|
+
imported_path: Union[Unset, None, str] = UNSET
|
|
26
|
+
importer_node_id: Union[Unset, None, str] = UNSET
|
|
27
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
28
|
+
|
|
29
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
30
|
+
workspace_id = self.workspace_id
|
|
31
|
+
importer_path = self.importer_path
|
|
32
|
+
importer_kind = self.importer_kind
|
|
33
|
+
imported_path = self.imported_path
|
|
34
|
+
importer_node_id = self.importer_node_id
|
|
35
|
+
|
|
36
|
+
field_dict: Dict[str, Any] = {}
|
|
37
|
+
field_dict.update(self.additional_properties)
|
|
38
|
+
field_dict.update({})
|
|
39
|
+
if workspace_id is not UNSET:
|
|
40
|
+
field_dict["workspace_id"] = workspace_id
|
|
41
|
+
if importer_path is not UNSET:
|
|
42
|
+
field_dict["importer_path"] = importer_path
|
|
43
|
+
if importer_kind is not UNSET:
|
|
44
|
+
field_dict["importer_kind"] = importer_kind
|
|
45
|
+
if imported_path is not UNSET:
|
|
46
|
+
field_dict["imported_path"] = imported_path
|
|
47
|
+
if importer_node_id is not UNSET:
|
|
48
|
+
field_dict["importer_node_id"] = importer_node_id
|
|
49
|
+
|
|
50
|
+
return field_dict
|
|
51
|
+
|
|
52
|
+
@classmethod
|
|
53
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
54
|
+
d = src_dict.copy()
|
|
55
|
+
workspace_id = d.pop("workspace_id", UNSET)
|
|
56
|
+
|
|
57
|
+
importer_path = d.pop("importer_path", UNSET)
|
|
58
|
+
|
|
59
|
+
importer_kind = d.pop("importer_kind", UNSET)
|
|
60
|
+
|
|
61
|
+
imported_path = d.pop("imported_path", UNSET)
|
|
62
|
+
|
|
63
|
+
importer_node_id = d.pop("importer_node_id", UNSET)
|
|
64
|
+
|
|
65
|
+
get_dependency_map_response_200_item = cls(
|
|
66
|
+
workspace_id=workspace_id,
|
|
67
|
+
importer_path=importer_path,
|
|
68
|
+
importer_kind=importer_kind,
|
|
69
|
+
imported_path=imported_path,
|
|
70
|
+
importer_node_id=importer_node_id,
|
|
71
|
+
)
|
|
72
|
+
|
|
73
|
+
get_dependency_map_response_200_item.additional_properties = d
|
|
74
|
+
return get_dependency_map_response_200_item
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
def additional_keys(self) -> List[str]:
|
|
78
|
+
return list(self.additional_properties.keys())
|
|
79
|
+
|
|
80
|
+
def __getitem__(self, key: str) -> Any:
|
|
81
|
+
return self.additional_properties[key]
|
|
82
|
+
|
|
83
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
84
|
+
self.additional_properties[key] = value
|
|
85
|
+
|
|
86
|
+
def __delitem__(self, key: str) -> None:
|
|
87
|
+
del self.additional_properties[key]
|
|
88
|
+
|
|
89
|
+
def __contains__(self, key: str) -> bool:
|
|
90
|
+
return key in self.additional_properties
|
|
@@ -36,6 +36,7 @@ class GetWebsocketTriggerResponse200:
|
|
|
36
36
|
enabled (bool):
|
|
37
37
|
filters (List['GetWebsocketTriggerResponse200FiltersItem']):
|
|
38
38
|
can_return_message (bool):
|
|
39
|
+
can_return_error_result (bool):
|
|
39
40
|
path (str):
|
|
40
41
|
script_path (str):
|
|
41
42
|
email (str):
|
|
@@ -61,6 +62,7 @@ class GetWebsocketTriggerResponse200:
|
|
|
61
62
|
enabled: bool
|
|
62
63
|
filters: List["GetWebsocketTriggerResponse200FiltersItem"]
|
|
63
64
|
can_return_message: bool
|
|
65
|
+
can_return_error_result: bool
|
|
64
66
|
path: str
|
|
65
67
|
script_path: str
|
|
66
68
|
email: str
|
|
@@ -101,6 +103,7 @@ class GetWebsocketTriggerResponse200:
|
|
|
101
103
|
filters.append(filters_item)
|
|
102
104
|
|
|
103
105
|
can_return_message = self.can_return_message
|
|
106
|
+
can_return_error_result = self.can_return_error_result
|
|
104
107
|
path = self.path
|
|
105
108
|
script_path = self.script_path
|
|
106
109
|
email = self.email
|
|
@@ -152,6 +155,7 @@ class GetWebsocketTriggerResponse200:
|
|
|
152
155
|
"enabled": enabled,
|
|
153
156
|
"filters": filters,
|
|
154
157
|
"can_return_message": can_return_message,
|
|
158
|
+
"can_return_error_result": can_return_error_result,
|
|
155
159
|
"path": path,
|
|
156
160
|
"script_path": script_path,
|
|
157
161
|
"email": email,
|
|
@@ -213,6 +217,8 @@ class GetWebsocketTriggerResponse200:
|
|
|
213
217
|
|
|
214
218
|
can_return_message = d.pop("can_return_message")
|
|
215
219
|
|
|
220
|
+
can_return_error_result = d.pop("can_return_error_result")
|
|
221
|
+
|
|
216
222
|
path = d.pop("path")
|
|
217
223
|
|
|
218
224
|
script_path = d.pop("script_path")
|
|
@@ -298,6 +304,7 @@ class GetWebsocketTriggerResponse200:
|
|
|
298
304
|
enabled=enabled,
|
|
299
305
|
filters=filters,
|
|
300
306
|
can_return_message=can_return_message,
|
|
307
|
+
can_return_error_result=can_return_error_result,
|
|
301
308
|
path=path,
|
|
302
309
|
script_path=script_path,
|
|
303
310
|
email=email,
|
|
@@ -40,6 +40,7 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
40
40
|
enabled (bool):
|
|
41
41
|
filters (List['ListWebsocketTriggersResponse200ItemFiltersItem']):
|
|
42
42
|
can_return_message (bool):
|
|
43
|
+
can_return_error_result (bool):
|
|
43
44
|
path (str):
|
|
44
45
|
script_path (str):
|
|
45
46
|
email (str):
|
|
@@ -65,6 +66,7 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
65
66
|
enabled: bool
|
|
66
67
|
filters: List["ListWebsocketTriggersResponse200ItemFiltersItem"]
|
|
67
68
|
can_return_message: bool
|
|
69
|
+
can_return_error_result: bool
|
|
68
70
|
path: str
|
|
69
71
|
script_path: str
|
|
70
72
|
email: str
|
|
@@ -105,6 +107,7 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
105
107
|
filters.append(filters_item)
|
|
106
108
|
|
|
107
109
|
can_return_message = self.can_return_message
|
|
110
|
+
can_return_error_result = self.can_return_error_result
|
|
108
111
|
path = self.path
|
|
109
112
|
script_path = self.script_path
|
|
110
113
|
email = self.email
|
|
@@ -156,6 +159,7 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
156
159
|
"enabled": enabled,
|
|
157
160
|
"filters": filters,
|
|
158
161
|
"can_return_message": can_return_message,
|
|
162
|
+
"can_return_error_result": can_return_error_result,
|
|
159
163
|
"path": path,
|
|
160
164
|
"script_path": script_path,
|
|
161
165
|
"email": email,
|
|
@@ -221,6 +225,8 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
221
225
|
|
|
222
226
|
can_return_message = d.pop("can_return_message")
|
|
223
227
|
|
|
228
|
+
can_return_error_result = d.pop("can_return_error_result")
|
|
229
|
+
|
|
224
230
|
path = d.pop("path")
|
|
225
231
|
|
|
226
232
|
script_path = d.pop("script_path")
|
|
@@ -308,6 +314,7 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
308
314
|
enabled=enabled,
|
|
309
315
|
filters=filters,
|
|
310
316
|
can_return_message=can_return_message,
|
|
317
|
+
can_return_error_result=can_return_error_result,
|
|
311
318
|
path=path,
|
|
312
319
|
script_path=script_path,
|
|
313
320
|
email=email,
|
|
@@ -27,6 +27,7 @@ class NewWebsocketTrigger:
|
|
|
27
27
|
url (str):
|
|
28
28
|
filters (List['NewWebsocketTriggerFiltersItem']):
|
|
29
29
|
can_return_message (bool):
|
|
30
|
+
can_return_error_result (bool):
|
|
30
31
|
enabled (Union[Unset, bool]):
|
|
31
32
|
initial_messages (Union[Unset, List[Union['NewWebsocketTriggerInitialMessagesItemType0',
|
|
32
33
|
'NewWebsocketTriggerInitialMessagesItemType1']]]):
|
|
@@ -44,6 +45,7 @@ class NewWebsocketTrigger:
|
|
|
44
45
|
url: str
|
|
45
46
|
filters: List["NewWebsocketTriggerFiltersItem"]
|
|
46
47
|
can_return_message: bool
|
|
48
|
+
can_return_error_result: bool
|
|
47
49
|
enabled: Union[Unset, bool] = UNSET
|
|
48
50
|
initial_messages: Union[
|
|
49
51
|
Unset, List[Union["NewWebsocketTriggerInitialMessagesItemType0", "NewWebsocketTriggerInitialMessagesItemType1"]]
|
|
@@ -70,6 +72,7 @@ class NewWebsocketTrigger:
|
|
|
70
72
|
filters.append(filters_item)
|
|
71
73
|
|
|
72
74
|
can_return_message = self.can_return_message
|
|
75
|
+
can_return_error_result = self.can_return_error_result
|
|
73
76
|
enabled = self.enabled
|
|
74
77
|
initial_messages: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
75
78
|
if not isinstance(self.initial_messages, Unset):
|
|
@@ -108,6 +111,7 @@ class NewWebsocketTrigger:
|
|
|
108
111
|
"url": url,
|
|
109
112
|
"filters": filters,
|
|
110
113
|
"can_return_message": can_return_message,
|
|
114
|
+
"can_return_error_result": can_return_error_result,
|
|
111
115
|
}
|
|
112
116
|
)
|
|
113
117
|
if enabled is not UNSET:
|
|
@@ -156,6 +160,8 @@ class NewWebsocketTrigger:
|
|
|
156
160
|
|
|
157
161
|
can_return_message = d.pop("can_return_message")
|
|
158
162
|
|
|
163
|
+
can_return_error_result = d.pop("can_return_error_result")
|
|
164
|
+
|
|
159
165
|
enabled = d.pop("enabled", UNSET)
|
|
160
166
|
|
|
161
167
|
initial_messages = []
|
|
@@ -213,6 +219,7 @@ class NewWebsocketTrigger:
|
|
|
213
219
|
url=url,
|
|
214
220
|
filters=filters,
|
|
215
221
|
can_return_message=can_return_message,
|
|
222
|
+
can_return_error_result=can_return_error_result,
|
|
216
223
|
enabled=enabled,
|
|
217
224
|
initial_messages=initial_messages,
|
|
218
225
|
url_runnable_args=url_runnable_args,
|
|
@@ -35,6 +35,7 @@ class UpdateWebsocketTriggerJsonBody:
|
|
|
35
35
|
is_flow (bool):
|
|
36
36
|
filters (List['UpdateWebsocketTriggerJsonBodyFiltersItem']):
|
|
37
37
|
can_return_message (bool):
|
|
38
|
+
can_return_error_result (bool):
|
|
38
39
|
initial_messages (Union[Unset, List[Union['UpdateWebsocketTriggerJsonBodyInitialMessagesItemType0',
|
|
39
40
|
'UpdateWebsocketTriggerJsonBodyInitialMessagesItemType1']]]):
|
|
40
41
|
url_runnable_args (Union[Unset, UpdateWebsocketTriggerJsonBodyUrlRunnableArgs]): The arguments to pass to the
|
|
@@ -51,6 +52,7 @@ class UpdateWebsocketTriggerJsonBody:
|
|
|
51
52
|
is_flow: bool
|
|
52
53
|
filters: List["UpdateWebsocketTriggerJsonBodyFiltersItem"]
|
|
53
54
|
can_return_message: bool
|
|
55
|
+
can_return_error_result: bool
|
|
54
56
|
initial_messages: Union[
|
|
55
57
|
Unset,
|
|
56
58
|
List[
|
|
@@ -82,6 +84,7 @@ class UpdateWebsocketTriggerJsonBody:
|
|
|
82
84
|
filters.append(filters_item)
|
|
83
85
|
|
|
84
86
|
can_return_message = self.can_return_message
|
|
87
|
+
can_return_error_result = self.can_return_error_result
|
|
85
88
|
initial_messages: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
86
89
|
if not isinstance(self.initial_messages, Unset):
|
|
87
90
|
initial_messages = []
|
|
@@ -119,6 +122,7 @@ class UpdateWebsocketTriggerJsonBody:
|
|
|
119
122
|
"is_flow": is_flow,
|
|
120
123
|
"filters": filters,
|
|
121
124
|
"can_return_message": can_return_message,
|
|
125
|
+
"can_return_error_result": can_return_error_result,
|
|
122
126
|
}
|
|
123
127
|
)
|
|
124
128
|
if initial_messages is not UNSET:
|
|
@@ -169,6 +173,8 @@ class UpdateWebsocketTriggerJsonBody:
|
|
|
169
173
|
|
|
170
174
|
can_return_message = d.pop("can_return_message")
|
|
171
175
|
|
|
176
|
+
can_return_error_result = d.pop("can_return_error_result")
|
|
177
|
+
|
|
172
178
|
initial_messages = []
|
|
173
179
|
_initial_messages = d.pop("initial_messages", UNSET)
|
|
174
180
|
for initial_messages_item_data in _initial_messages or []:
|
|
@@ -229,6 +235,7 @@ class UpdateWebsocketTriggerJsonBody:
|
|
|
229
235
|
is_flow=is_flow,
|
|
230
236
|
filters=filters,
|
|
231
237
|
can_return_message=can_return_message,
|
|
238
|
+
can_return_error_result=can_return_error_result,
|
|
232
239
|
initial_messages=initial_messages,
|
|
233
240
|
url_runnable_args=url_runnable_args,
|
|
234
241
|
error_handler_path=error_handler_path,
|
|
@@ -28,6 +28,7 @@ class WebsocketTrigger:
|
|
|
28
28
|
enabled (bool):
|
|
29
29
|
filters (List['WebsocketTriggerFiltersItem']):
|
|
30
30
|
can_return_message (bool):
|
|
31
|
+
can_return_error_result (bool):
|
|
31
32
|
path (str):
|
|
32
33
|
script_path (str):
|
|
33
34
|
email (str):
|
|
@@ -51,6 +52,7 @@ class WebsocketTrigger:
|
|
|
51
52
|
enabled: bool
|
|
52
53
|
filters: List["WebsocketTriggerFiltersItem"]
|
|
53
54
|
can_return_message: bool
|
|
55
|
+
can_return_error_result: bool
|
|
54
56
|
path: str
|
|
55
57
|
script_path: str
|
|
56
58
|
email: str
|
|
@@ -83,6 +85,7 @@ class WebsocketTrigger:
|
|
|
83
85
|
filters.append(filters_item)
|
|
84
86
|
|
|
85
87
|
can_return_message = self.can_return_message
|
|
88
|
+
can_return_error_result = self.can_return_error_result
|
|
86
89
|
path = self.path
|
|
87
90
|
script_path = self.script_path
|
|
88
91
|
email = self.email
|
|
@@ -134,6 +137,7 @@ class WebsocketTrigger:
|
|
|
134
137
|
"enabled": enabled,
|
|
135
138
|
"filters": filters,
|
|
136
139
|
"can_return_message": can_return_message,
|
|
140
|
+
"can_return_error_result": can_return_error_result,
|
|
137
141
|
"path": path,
|
|
138
142
|
"script_path": script_path,
|
|
139
143
|
"email": email,
|
|
@@ -187,6 +191,8 @@ class WebsocketTrigger:
|
|
|
187
191
|
|
|
188
192
|
can_return_message = d.pop("can_return_message")
|
|
189
193
|
|
|
194
|
+
can_return_error_result = d.pop("can_return_error_result")
|
|
195
|
+
|
|
190
196
|
path = d.pop("path")
|
|
191
197
|
|
|
192
198
|
script_path = d.pop("script_path")
|
|
@@ -267,6 +273,7 @@ class WebsocketTrigger:
|
|
|
267
273
|
enabled=enabled,
|
|
268
274
|
filters=filters,
|
|
269
275
|
can_return_message=can_return_message,
|
|
276
|
+
can_return_error_result=can_return_error_result,
|
|
270
277
|
path=path,
|
|
271
278
|
script_path=script_path,
|
|
272
279
|
email=email,
|
|
@@ -537,6 +537,7 @@ windmill_api/api/workspace/exists_username.py,sha256=W9uQfIiIeoU9Rl2H8jLEmcK_RVt
|
|
|
537
537
|
windmill_api/api/workspace/exists_workspace.py,sha256=_01vG7HhYTaUKjbWK_UN0FeZ84osvzjco_ki74VLMTE,2481
|
|
538
538
|
windmill_api/api/workspace/get_copilot_info.py,sha256=zm1L5yVZy_1Hs3jUKl-9nm9l1oNdr317fs6LwJjIxYg,3842
|
|
539
539
|
windmill_api/api/workspace/get_default_scripts.py,sha256=9FNLmZvcpl2OQe0NDMXonBxXXjDv85pZkaqm8Ee00eI,3948
|
|
540
|
+
windmill_api/api/workspace/get_dependency_map.py,sha256=eAhUeQThRAMzurb-OYfQiEIhwgsbHxj5qXHwhp8MBYo,4204
|
|
540
541
|
windmill_api/api/workspace/get_deploy_to.py,sha256=svqiDBqN9dTF-oyXDg9yzqoHdBBmMoRuvZashhxvIkI,3788
|
|
541
542
|
windmill_api/api/workspace/get_github_app_token.py,sha256=b-DC2cU5YRqz7eXB5kxPpWTK7zQ9ojg6919aPG4hzdw,4566
|
|
542
543
|
windmill_api/api/workspace/get_is_premium.py,sha256=G1Dp-UbeRhoQUr-DXvEQvkJfXgPeUDmM_y7dILZ312c,3560
|
|
@@ -559,6 +560,7 @@ windmill_api/api/workspace/list_pending_invites.py,sha256=i0y9AFotS9gTArnolnD0zE
|
|
|
559
560
|
windmill_api/api/workspace/list_user_workspaces.py,sha256=WAPqd38cBGihsZqcvphwwkcgLt-PM8_ZgmNA-fFYhr4,3571
|
|
560
561
|
windmill_api/api/workspace/list_workspaces.py,sha256=oWzVwO72_bmbYGa6WuC04m7IMLm-bFuSS2WHqtvDPNA,3783
|
|
561
562
|
windmill_api/api/workspace/list_workspaces_as_super_admin.py,sha256=10uKmgQmDcq6RMV1Y6o5T--VvB5ZcJA80GWfc80GYDA,5330
|
|
563
|
+
windmill_api/api/workspace/rebuild_dependency_map.py,sha256=YlG_gUEcR-pp7umldmNK75Y3Wvaln2WgBzQ6MgbUSSs,2320
|
|
562
564
|
windmill_api/api/workspace/run_slack_message_test_job.py,sha256=2lpe8ae9bLYxBZTEbJHhH0OZKMzxAO8tiq1edon-WcI,2832
|
|
563
565
|
windmill_api/api/workspace/run_teams_message_test_job.py,sha256=lpmj5y3g0-xOQWJ4iXGkoJ5EXIB-hATo_h4PREdUxXI,2832
|
|
564
566
|
windmill_api/api/workspace/set_environment_variable.py,sha256=EGDoktKua4YqffjpLAvudoOxRIhDPkcTlJ7JwxFeiPM,2798
|
|
@@ -1039,7 +1041,7 @@ windmill_api/models/create_token_json_body.py,sha256=EQV--Yd3KEAuzAB8d3uLBxB3M1t
|
|
|
1039
1041
|
windmill_api/models/create_user_globally_json_body.py,sha256=x-MHfJUK-V3-4CnN6MMWD1LsuiO_pGaqO3dXJJwICRw,2763
|
|
1040
1042
|
windmill_api/models/create_variable.py,sha256=jsBLP9J-nlUFdSbK1wrWH1XZuN8KJVlKwu3eCr6llh8,3444
|
|
1041
1043
|
windmill_api/models/create_variable_json_body.py,sha256=3whRBnfqLKbT1e44o5ORM6fE0j7jRf4c6XPmLb1Qlzk,3490
|
|
1042
|
-
windmill_api/models/create_websocket_trigger_json_body.py,sha256=
|
|
1044
|
+
windmill_api/models/create_websocket_trigger_json_body.py,sha256=hS1jbEQ0cpui8Hf4aXp1c7om9jBmS6NPKJPwq7sJKbY,10868
|
|
1043
1045
|
windmill_api/models/create_websocket_trigger_json_body_error_handler_args.py,sha256=YRkdQ2KysPwVLZboGbomhuIhVDDpgOHB2BNimF4JD5U,1445
|
|
1044
1046
|
windmill_api/models/create_websocket_trigger_json_body_filters_item.py,sha256=0YOVijuD5EfH8tlBEnmzUEinc51QtNsuUsMUAkluetU,1724
|
|
1045
1047
|
windmill_api/models/create_websocket_trigger_json_body_initial_messages_item_type_0.py,sha256=-TDFDaI1NFYJSMYOWf4Zbv6tbJcjJw3o-vpu1JXnVVg,1726
|
|
@@ -1189,6 +1191,7 @@ windmill_api/models/delete_script_by_hash_response_200_schema.py,sha256=1Y38poP8
|
|
|
1189
1191
|
windmill_api/models/delete_scripts_bulk_json_body.py,sha256=yq_WIT1stFU_3dlb7t-hH9rbw4iEX6c1cSy9X4o0IoI,1541
|
|
1190
1192
|
windmill_api/models/delete_variables_bulk_json_body.py,sha256=QayDFFYGjqoJZWV7DdHdxsNybjhWqrKDeIeJPhlv1Wk,1551
|
|
1191
1193
|
windmill_api/models/delivery_type.py,sha256=NlmPp1pbhy9urtS9Rql89i5SI6HXnQsEBbBOkJj8U3c,153
|
|
1194
|
+
windmill_api/models/dependency_map.py,sha256=Yn02X4iHNyjTjJdLlhyY_zvpo67cb1w4965qYOOBubc,2983
|
|
1192
1195
|
windmill_api/models/download_openapi_spec_json_body.py,sha256=y33x4l1tAFtTEfl8ZJaVBRIGVN7KvT-6llY4gd14YZk,6185
|
|
1193
1196
|
windmill_api/models/download_openapi_spec_json_body_http_route_filters_item.py,sha256=HUpRPr_iIGYi-rW5zqTXn0HZ2XU130Wx0zwCCDy4268,2162
|
|
1194
1197
|
windmill_api/models/download_openapi_spec_json_body_info.py,sha256=vUGdC0SMTfNjL3CwdCS1m0r7WbME7-KfKEza5FVpMCg,4260
|
|
@@ -1321,7 +1324,7 @@ windmill_api/models/edit_sqs_trigger_retry_retry_if.py,sha256=q07qjilaMzSbTSXjKe
|
|
|
1321
1324
|
windmill_api/models/edit_teams_command_json_body.py,sha256=jelV_UzxoWsbUyxYYN7Y6jCzHo-Y1lDJs5WR3KKzhTM,1754
|
|
1322
1325
|
windmill_api/models/edit_variable.py,sha256=Jo-ebePu94kFC2rLqKoSdynpQc8nLl_qSZKF32-GMFE,2447
|
|
1323
1326
|
windmill_api/models/edit_webhook_json_body.py,sha256=dabl1MMH7ckA2108RA_bGcg-J_51NomeBJshulM5X-o,1583
|
|
1324
|
-
windmill_api/models/edit_websocket_trigger.py,sha256=
|
|
1327
|
+
windmill_api/models/edit_websocket_trigger.py,sha256=CSQTNesj2xL1xXTel6Z-xZJG4J2jslrSvkVW2ChfgJw,9782
|
|
1325
1328
|
windmill_api/models/edit_websocket_trigger_error_handler_args.py,sha256=ag7QBlmM7WoaHtAIcSxQRyLs6TWym-SB3JBQUNvr3DQ,1389
|
|
1326
1329
|
windmill_api/models/edit_websocket_trigger_filters_item.py,sha256=-POer0QJaV45tolvTrwrrcrYqtl9kotlPnUhTu2kjE0,1668
|
|
1327
1330
|
windmill_api/models/edit_websocket_trigger_initial_messages_item_type_0.py,sha256=c66awEdnvL8JdBojbQwj7wABfowT9WedrjfX-UC5UmQ,1670
|
|
@@ -2216,6 +2219,7 @@ windmill_api/models/get_counts_of_running_jobs_per_tag_response_200.py,sha256=A4
|
|
|
2216
2219
|
windmill_api/models/get_critical_alerts_response_200.py,sha256=kg2Vs9aXLIrenI2u848ooi-nnkrGRO9UfrthkWgW3rI,3120
|
|
2217
2220
|
windmill_api/models/get_critical_alerts_response_200_alerts_item.py,sha256=nQsqYz_Kua-QYkq8JFD55cBI-L8TPyNc6ZBvVUutH78,3775
|
|
2218
2221
|
windmill_api/models/get_default_scripts_response_200.py,sha256=ekfscpG1XtNxHvpokDZ7pI0W6DAdITytKNg09XwSgtc,2537
|
|
2222
|
+
windmill_api/models/get_dependency_map_response_200_item.py,sha256=KeFaorIxTq9TR_8XEPAdYEthHKyWtQlpI3JY8S6QS34,3085
|
|
2219
2223
|
windmill_api/models/get_deploy_to_response_200.py,sha256=xZHLxF4DVyJtjVYFRWhSC4gCu1nC1wIAHlvwB-dV8EU,1623
|
|
2220
2224
|
windmill_api/models/get_email_trigger_response_200.py,sha256=dZVgdSSYtqCInSK0oMEwCmGti0calvYuHtCM9hRAFeM,6390
|
|
2221
2225
|
windmill_api/models/get_email_trigger_response_200_error_handler_args.py,sha256=Z1BPEJ77dZfz-1uN2FJvVcUwTI4yjwGadc8QTLNf_QM,1425
|
|
@@ -3259,7 +3263,7 @@ windmill_api/models/get_user_response_200_added_via.py,sha256=w-lzed2N9ooOauAk95
|
|
|
3259
3263
|
windmill_api/models/get_user_response_200_added_via_source.py,sha256=cANgL0u8oFPMV7y3Sb1k6lHlf7FkV73TW4YZUdK_XP0,219
|
|
3260
3264
|
windmill_api/models/get_variable_response_200.py,sha256=3WK2IMm6-Jr7tvy-jfOFrt1eMIUXVQyLzTcogJZQZlw,5430
|
|
3261
3265
|
windmill_api/models/get_variable_response_200_extra_perms.py,sha256=NkIQGAWfX954BcR6UBrYbATENEmbWT7-8639NOeTtdE,1330
|
|
3262
|
-
windmill_api/models/get_websocket_trigger_response_200.py,sha256=
|
|
3266
|
+
windmill_api/models/get_websocket_trigger_response_200.py,sha256=wDMVHXbAuXhMbgOxY_XXcE23vO22VSBJaIDo8kUCIOM,13466
|
|
3263
3267
|
windmill_api/models/get_websocket_trigger_response_200_error_handler_args.py,sha256=E9LHhE0KD8G7dtCORu3F1cNrupUJOJrMR7Mp48TRDjI,1445
|
|
3264
3268
|
windmill_api/models/get_websocket_trigger_response_200_extra_perms.py,sha256=pRzAa8jXG5D_2gB2scjbHsrozVUjFnRzZgrvfP_Bmfo,1373
|
|
3265
3269
|
windmill_api/models/get_websocket_trigger_response_200_filters_item.py,sha256=t6-Nregsn3ExhgWzNFRnQRAyVGO_9rf_4yCWO_jpnHk,1724
|
|
@@ -4420,7 +4424,7 @@ windmill_api/models/list_users_response_200_item_added_via_source.py,sha256=mlUg
|
|
|
4420
4424
|
windmill_api/models/list_users_usage_response_200_item.py,sha256=0ZKMktaSC_LTPolx1JXEEwINvWmf03Tl4OKSakKf6JU,1910
|
|
4421
4425
|
windmill_api/models/list_variable_response_200_item.py,sha256=nrPTcHabE71NPFFws-4Zl-7I8u1JOZacAabbiVdLjfk,5495
|
|
4422
4426
|
windmill_api/models/list_variable_response_200_item_extra_perms.py,sha256=Tx5hXdRHxg4SBN__jLzKf5cT09WbuLSmuOgDDkaKBlU,1358
|
|
4423
|
-
windmill_api/models/list_websocket_triggers_response_200_item.py,sha256=
|
|
4427
|
+
windmill_api/models/list_websocket_triggers_response_200_item.py,sha256=IZ_g0JwT9ZdG1iNsa62Hf_81IQbwwX6gXuzGV-6xV_M,13980
|
|
4424
4428
|
windmill_api/models/list_websocket_triggers_response_200_item_error_handler_args.py,sha256=XdAtm8KyZi5FtmMtvNIQS2l74OiNjO4shCsyVGd9364,1478
|
|
4425
4429
|
windmill_api/models/list_websocket_triggers_response_200_item_extra_perms.py,sha256=_cTl7paU0ENy9JF0xdoXAB66XfkIGMNNebYIIS1X9Mg,1406
|
|
4426
4430
|
windmill_api/models/list_websocket_triggers_response_200_item_filters_item.py,sha256=-pwVHt2Vao8qMm5LRkDItiYouZs82j8PtCaxM88spXk,1757
|
|
@@ -4587,7 +4591,7 @@ windmill_api/models/new_sqs_trigger_retry_exponential.py,sha256=gi2V914BiKqkjOPN
|
|
|
4587
4591
|
windmill_api/models/new_sqs_trigger_retry_retry_if.py,sha256=9J4o52XKOLWKZcgMnTCJdVaNAdjYD4fQ56W_WOfuslM,1499
|
|
4588
4592
|
windmill_api/models/new_token.py,sha256=nVlHs1c4g88Kfu3qvlkYtw9YLulJiyARia_aDlVu36Q,2863
|
|
4589
4593
|
windmill_api/models/new_token_impersonate.py,sha256=GABdQQzrVzDGwCePOSnGZCuOLLhufr0I4BRdzzs_YeU,2848
|
|
4590
|
-
windmill_api/models/new_websocket_trigger.py,sha256=
|
|
4594
|
+
windmill_api/models/new_websocket_trigger.py,sha256=x0BCJ0KNP_EI-zgCsp3l0k44NkN27cTYtwhNyF-wawE,9942
|
|
4591
4595
|
windmill_api/models/new_websocket_trigger_error_handler_args.py,sha256=d3tMR-bSgMg4f2SiIpR2Exrad3luDZ6PiD9c4jTh8gk,1384
|
|
4592
4596
|
windmill_api/models/new_websocket_trigger_filters_item.py,sha256=50_gt5fyW8wQ6qlfYopSP0rZ6r4HJ9bkuPW7u6D8WK4,1663
|
|
4593
4597
|
windmill_api/models/new_websocket_trigger_initial_messages_item_type_0.py,sha256=dI4q3RyA6xnlZwipd3pwNayyOKp9GxHSofBgbWmUi5k,1665
|
|
@@ -5382,7 +5386,7 @@ windmill_api/models/update_sqs_trigger_json_body_retry_retry_if.py,sha256=4RFDQV
|
|
|
5382
5386
|
windmill_api/models/update_tutorial_progress_json_body.py,sha256=_9TW14AiLcdQl_O0bhRWO3ZBMupOCA5p2rRAEnSM8Ag,1652
|
|
5383
5387
|
windmill_api/models/update_user_json_body.py,sha256=305gbqcehnNd2vc1AtkkEfd_64Pbi7upzrouQWOAdjU,2129
|
|
5384
5388
|
windmill_api/models/update_variable_json_body.py,sha256=c3pnGz6HGKoLRoV1d0owFjddRMT5pMdT8HFq_isIr4E,2503
|
|
5385
|
-
windmill_api/models/update_websocket_trigger_json_body.py,sha256
|
|
5389
|
+
windmill_api/models/update_websocket_trigger_json_body.py,sha256=FQmjkxnAkWNELKXnTaEo91Eq9_e6rVWTbs_-NSXxkJQ,10610
|
|
5386
5390
|
windmill_api/models/update_websocket_trigger_json_body_error_handler_args.py,sha256=V42h4cy1_YxPaYAchXWQH8WGRoqL9wLF188TKo8EmV8,1445
|
|
5387
5391
|
windmill_api/models/update_websocket_trigger_json_body_filters_item.py,sha256=fjK6AsrSk7yKOqZneDFjPl_oWJBM1t9mS1MC9sBE1Dc,1724
|
|
5388
5392
|
windmill_api/models/update_websocket_trigger_json_body_initial_messages_item_type_0.py,sha256=-gIgTc_OYVclhCoW3XEvnBR-9h_shYDHzx_oyvC53n0,1726
|
|
@@ -5407,7 +5411,7 @@ windmill_api/models/user_workspace_list_workspaces_item_operator_settings.py,sha
|
|
|
5407
5411
|
windmill_api/models/webhook_filters.py,sha256=VyJ6SBtlFltHm50FfT9EFM-Lg-PopqN1biHY91teJf0,2673
|
|
5408
5412
|
windmill_api/models/webhook_filters_runnable_kind.py,sha256=Mr6lwWDXKNB-k3F98xHQc1TrL23I11jgBGCMAe93KvI,171
|
|
5409
5413
|
windmill_api/models/webhook_filters_user_or_folder_regex.py,sha256=QaCUKHcYP9WtYtCwQ7mKe3gGJgxq7NzaWJRku_P0nMU,178
|
|
5410
|
-
windmill_api/models/websocket_trigger.py,sha256=
|
|
5414
|
+
windmill_api/models/websocket_trigger.py,sha256=Vrh02oZKGUF7n_93YT3AM9n2mo3P8cIAsoxFLzIkCgo,12156
|
|
5411
5415
|
windmill_api/models/websocket_trigger_error_handler_args.py,sha256=kCHyqa9tvdd3GoKw9tUjpAKl4nlNzUHm90Z7_RH1mfs,1366
|
|
5412
5416
|
windmill_api/models/websocket_trigger_extra_perms.py,sha256=qKA9RR-E4lwQTM6Iu07Z6wvI_lMuoc6iWnqBEPGTbPU,1294
|
|
5413
5417
|
windmill_api/models/websocket_trigger_filters_item.py,sha256=Taenpp5uO6de_H3edj0-Bd9yb7zBKRnnihjK14AsqNs,1645
|
|
@@ -5481,7 +5485,7 @@ windmill_api/models/workspace_invite.py,sha256=wp-J-VJLkXsfQzw1PdNPGQhETsFCFXh1e
|
|
|
5481
5485
|
windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
|
|
5482
5486
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
5483
5487
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
5484
|
-
windmill_api-1.
|
|
5485
|
-
windmill_api-1.
|
|
5486
|
-
windmill_api-1.
|
|
5487
|
-
windmill_api-1.
|
|
5488
|
+
windmill_api-1.548.1.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
5489
|
+
windmill_api-1.548.1.dist-info/METADATA,sha256=5wDxcpE76ILSIPrn9j9tHQFoeCcrxBPi631wf6iphqY,5023
|
|
5490
|
+
windmill_api-1.548.1.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
5491
|
+
windmill_api-1.548.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|