windmill-api 1.452.1__py3-none-any.whl → 1.453.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.
- windmill_api/api/capture/get_capture.py +166 -0
- windmill_api/models/create_websocket_trigger_json_body.py +7 -0
- windmill_api/models/edit_websocket_trigger.py +7 -0
- windmill_api/models/get_capture_response_200.py +94 -0
- windmill_api/models/get_capture_response_200_trigger_kind.py +13 -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/test_websocket_connection_json_body.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.452.1.dist-info → windmill_api-1.453.0.dist-info}/METADATA +1 -1
- {windmill_api-1.452.1.dist-info → windmill_api-1.453.0.dist-info}/RECORD +15 -12
- {windmill_api-1.452.1.dist-info → windmill_api-1.453.0.dist-info}/LICENSE +0 -0
- {windmill_api-1.452.1.dist-info → windmill_api-1.453.0.dist-info}/WHEEL +0 -0
|
@@ -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_capture_response_200 import GetCaptureResponse200
|
|
9
|
+
from ...types import Response
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def _get_kwargs(
|
|
13
|
+
workspace: str,
|
|
14
|
+
id: int,
|
|
15
|
+
) -> Dict[str, Any]:
|
|
16
|
+
pass
|
|
17
|
+
|
|
18
|
+
return {
|
|
19
|
+
"method": "get",
|
|
20
|
+
"url": "/w/{workspace}/capture/{id}".format(
|
|
21
|
+
workspace=workspace,
|
|
22
|
+
id=id,
|
|
23
|
+
),
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
def _parse_response(
|
|
28
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
|
29
|
+
) -> Optional[GetCaptureResponse200]:
|
|
30
|
+
if response.status_code == HTTPStatus.OK:
|
|
31
|
+
response_200 = GetCaptureResponse200.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[GetCaptureResponse200]:
|
|
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
|
+
id: int,
|
|
54
|
+
*,
|
|
55
|
+
client: Union[AuthenticatedClient, Client],
|
|
56
|
+
) -> Response[GetCaptureResponse200]:
|
|
57
|
+
"""get a capture
|
|
58
|
+
|
|
59
|
+
Args:
|
|
60
|
+
workspace (str):
|
|
61
|
+
id (int):
|
|
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[GetCaptureResponse200]
|
|
69
|
+
"""
|
|
70
|
+
|
|
71
|
+
kwargs = _get_kwargs(
|
|
72
|
+
workspace=workspace,
|
|
73
|
+
id=id,
|
|
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
|
+
id: int,
|
|
86
|
+
*,
|
|
87
|
+
client: Union[AuthenticatedClient, Client],
|
|
88
|
+
) -> Optional[GetCaptureResponse200]:
|
|
89
|
+
"""get a capture
|
|
90
|
+
|
|
91
|
+
Args:
|
|
92
|
+
workspace (str):
|
|
93
|
+
id (int):
|
|
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
|
+
GetCaptureResponse200
|
|
101
|
+
"""
|
|
102
|
+
|
|
103
|
+
return sync_detailed(
|
|
104
|
+
workspace=workspace,
|
|
105
|
+
id=id,
|
|
106
|
+
client=client,
|
|
107
|
+
).parsed
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
async def asyncio_detailed(
|
|
111
|
+
workspace: str,
|
|
112
|
+
id: int,
|
|
113
|
+
*,
|
|
114
|
+
client: Union[AuthenticatedClient, Client],
|
|
115
|
+
) -> Response[GetCaptureResponse200]:
|
|
116
|
+
"""get a capture
|
|
117
|
+
|
|
118
|
+
Args:
|
|
119
|
+
workspace (str):
|
|
120
|
+
id (int):
|
|
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[GetCaptureResponse200]
|
|
128
|
+
"""
|
|
129
|
+
|
|
130
|
+
kwargs = _get_kwargs(
|
|
131
|
+
workspace=workspace,
|
|
132
|
+
id=id,
|
|
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
|
+
id: int,
|
|
143
|
+
*,
|
|
144
|
+
client: Union[AuthenticatedClient, Client],
|
|
145
|
+
) -> Optional[GetCaptureResponse200]:
|
|
146
|
+
"""get a capture
|
|
147
|
+
|
|
148
|
+
Args:
|
|
149
|
+
workspace (str):
|
|
150
|
+
id (int):
|
|
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
|
+
GetCaptureResponse200
|
|
158
|
+
"""
|
|
159
|
+
|
|
160
|
+
return (
|
|
161
|
+
await asyncio_detailed(
|
|
162
|
+
workspace=workspace,
|
|
163
|
+
id=id,
|
|
164
|
+
client=client,
|
|
165
|
+
)
|
|
166
|
+
).parsed
|
|
@@ -30,6 +30,7 @@ class CreateWebsocketTriggerJsonBody:
|
|
|
30
30
|
is_flow (bool):
|
|
31
31
|
url (str):
|
|
32
32
|
filters (List['CreateWebsocketTriggerJsonBodyFiltersItem']):
|
|
33
|
+
can_return_message (bool):
|
|
33
34
|
enabled (Union[Unset, bool]):
|
|
34
35
|
initial_messages (Union[Unset, List[Union['CreateWebsocketTriggerJsonBodyInitialMessagesItemType0',
|
|
35
36
|
'CreateWebsocketTriggerJsonBodyInitialMessagesItemType1']]]):
|
|
@@ -41,6 +42,7 @@ class CreateWebsocketTriggerJsonBody:
|
|
|
41
42
|
is_flow: bool
|
|
42
43
|
url: str
|
|
43
44
|
filters: List["CreateWebsocketTriggerJsonBodyFiltersItem"]
|
|
45
|
+
can_return_message: bool
|
|
44
46
|
enabled: Union[Unset, bool] = UNSET
|
|
45
47
|
initial_messages: Union[
|
|
46
48
|
Unset,
|
|
@@ -69,6 +71,7 @@ class CreateWebsocketTriggerJsonBody:
|
|
|
69
71
|
|
|
70
72
|
filters.append(filters_item)
|
|
71
73
|
|
|
74
|
+
can_return_message = self.can_return_message
|
|
72
75
|
enabled = self.enabled
|
|
73
76
|
initial_messages: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
74
77
|
if not isinstance(self.initial_messages, Unset):
|
|
@@ -97,6 +100,7 @@ class CreateWebsocketTriggerJsonBody:
|
|
|
97
100
|
"is_flow": is_flow,
|
|
98
101
|
"url": url,
|
|
99
102
|
"filters": filters,
|
|
103
|
+
"can_return_message": can_return_message,
|
|
100
104
|
}
|
|
101
105
|
)
|
|
102
106
|
if enabled is not UNSET:
|
|
@@ -137,6 +141,8 @@ class CreateWebsocketTriggerJsonBody:
|
|
|
137
141
|
|
|
138
142
|
filters.append(filters_item)
|
|
139
143
|
|
|
144
|
+
can_return_message = d.pop("can_return_message")
|
|
145
|
+
|
|
140
146
|
enabled = d.pop("enabled", UNSET)
|
|
141
147
|
|
|
142
148
|
initial_messages = []
|
|
@@ -182,6 +188,7 @@ class CreateWebsocketTriggerJsonBody:
|
|
|
182
188
|
is_flow=is_flow,
|
|
183
189
|
url=url,
|
|
184
190
|
filters=filters,
|
|
191
|
+
can_return_message=can_return_message,
|
|
185
192
|
enabled=enabled,
|
|
186
193
|
initial_messages=initial_messages,
|
|
187
194
|
url_runnable_args=url_runnable_args,
|
|
@@ -28,6 +28,7 @@ class EditWebsocketTrigger:
|
|
|
28
28
|
script_path (str):
|
|
29
29
|
is_flow (bool):
|
|
30
30
|
filters (List['EditWebsocketTriggerFiltersItem']):
|
|
31
|
+
can_return_message (bool):
|
|
31
32
|
initial_messages (Union[Unset, List[Union['EditWebsocketTriggerInitialMessagesItemType0',
|
|
32
33
|
'EditWebsocketTriggerInitialMessagesItemType1']]]):
|
|
33
34
|
url_runnable_args (Union[Unset, EditWebsocketTriggerUrlRunnableArgs]):
|
|
@@ -38,6 +39,7 @@ class EditWebsocketTrigger:
|
|
|
38
39
|
script_path: str
|
|
39
40
|
is_flow: bool
|
|
40
41
|
filters: List["EditWebsocketTriggerFiltersItem"]
|
|
42
|
+
can_return_message: bool
|
|
41
43
|
initial_messages: Union[
|
|
42
44
|
Unset,
|
|
43
45
|
List[Union["EditWebsocketTriggerInitialMessagesItemType0", "EditWebsocketTriggerInitialMessagesItemType1"]],
|
|
@@ -60,6 +62,7 @@ class EditWebsocketTrigger:
|
|
|
60
62
|
|
|
61
63
|
filters.append(filters_item)
|
|
62
64
|
|
|
65
|
+
can_return_message = self.can_return_message
|
|
63
66
|
initial_messages: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
64
67
|
if not isinstance(self.initial_messages, Unset):
|
|
65
68
|
initial_messages = []
|
|
@@ -87,6 +90,7 @@ class EditWebsocketTrigger:
|
|
|
87
90
|
"script_path": script_path,
|
|
88
91
|
"is_flow": is_flow,
|
|
89
92
|
"filters": filters,
|
|
93
|
+
"can_return_message": can_return_message,
|
|
90
94
|
}
|
|
91
95
|
)
|
|
92
96
|
if initial_messages is not UNSET:
|
|
@@ -123,6 +127,8 @@ class EditWebsocketTrigger:
|
|
|
123
127
|
|
|
124
128
|
filters.append(filters_item)
|
|
125
129
|
|
|
130
|
+
can_return_message = d.pop("can_return_message")
|
|
131
|
+
|
|
126
132
|
initial_messages = []
|
|
127
133
|
_initial_messages = d.pop("initial_messages", UNSET)
|
|
128
134
|
for initial_messages_item_data in _initial_messages or []:
|
|
@@ -161,6 +167,7 @@ class EditWebsocketTrigger:
|
|
|
161
167
|
script_path=script_path,
|
|
162
168
|
is_flow=is_flow,
|
|
163
169
|
filters=filters,
|
|
170
|
+
can_return_message=can_return_message,
|
|
164
171
|
initial_messages=initial_messages,
|
|
165
172
|
url_runnable_args=url_runnable_args,
|
|
166
173
|
)
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import datetime
|
|
2
|
+
from typing import Any, Dict, List, Type, TypeVar, Union
|
|
3
|
+
|
|
4
|
+
from attrs import define as _attrs_define
|
|
5
|
+
from attrs import field as _attrs_field
|
|
6
|
+
from dateutil.parser import isoparse
|
|
7
|
+
|
|
8
|
+
from ..models.get_capture_response_200_trigger_kind import GetCaptureResponse200TriggerKind
|
|
9
|
+
from ..types import UNSET, Unset
|
|
10
|
+
|
|
11
|
+
T = TypeVar("T", bound="GetCaptureResponse200")
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
@_attrs_define
|
|
15
|
+
class GetCaptureResponse200:
|
|
16
|
+
"""
|
|
17
|
+
Attributes:
|
|
18
|
+
trigger_kind (GetCaptureResponse200TriggerKind):
|
|
19
|
+
payload (Any):
|
|
20
|
+
id (int):
|
|
21
|
+
created_at (datetime.datetime):
|
|
22
|
+
trigger_extra (Union[Unset, Any]):
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
trigger_kind: GetCaptureResponse200TriggerKind
|
|
26
|
+
payload: Any
|
|
27
|
+
id: int
|
|
28
|
+
created_at: datetime.datetime
|
|
29
|
+
trigger_extra: Union[Unset, Any] = UNSET
|
|
30
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
31
|
+
|
|
32
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
33
|
+
trigger_kind = self.trigger_kind.value
|
|
34
|
+
|
|
35
|
+
payload = self.payload
|
|
36
|
+
id = self.id
|
|
37
|
+
created_at = self.created_at.isoformat()
|
|
38
|
+
|
|
39
|
+
trigger_extra = self.trigger_extra
|
|
40
|
+
|
|
41
|
+
field_dict: Dict[str, Any] = {}
|
|
42
|
+
field_dict.update(self.additional_properties)
|
|
43
|
+
field_dict.update(
|
|
44
|
+
{
|
|
45
|
+
"trigger_kind": trigger_kind,
|
|
46
|
+
"payload": payload,
|
|
47
|
+
"id": id,
|
|
48
|
+
"created_at": created_at,
|
|
49
|
+
}
|
|
50
|
+
)
|
|
51
|
+
if trigger_extra is not UNSET:
|
|
52
|
+
field_dict["trigger_extra"] = trigger_extra
|
|
53
|
+
|
|
54
|
+
return field_dict
|
|
55
|
+
|
|
56
|
+
@classmethod
|
|
57
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
58
|
+
d = src_dict.copy()
|
|
59
|
+
trigger_kind = GetCaptureResponse200TriggerKind(d.pop("trigger_kind"))
|
|
60
|
+
|
|
61
|
+
payload = d.pop("payload")
|
|
62
|
+
|
|
63
|
+
id = d.pop("id")
|
|
64
|
+
|
|
65
|
+
created_at = isoparse(d.pop("created_at"))
|
|
66
|
+
|
|
67
|
+
trigger_extra = d.pop("trigger_extra", UNSET)
|
|
68
|
+
|
|
69
|
+
get_capture_response_200 = cls(
|
|
70
|
+
trigger_kind=trigger_kind,
|
|
71
|
+
payload=payload,
|
|
72
|
+
id=id,
|
|
73
|
+
created_at=created_at,
|
|
74
|
+
trigger_extra=trigger_extra,
|
|
75
|
+
)
|
|
76
|
+
|
|
77
|
+
get_capture_response_200.additional_properties = d
|
|
78
|
+
return get_capture_response_200
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
def additional_keys(self) -> List[str]:
|
|
82
|
+
return list(self.additional_properties.keys())
|
|
83
|
+
|
|
84
|
+
def __getitem__(self, key: str) -> Any:
|
|
85
|
+
return self.additional_properties[key]
|
|
86
|
+
|
|
87
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
88
|
+
self.additional_properties[key] = value
|
|
89
|
+
|
|
90
|
+
def __delitem__(self, key: str) -> None:
|
|
91
|
+
del self.additional_properties[key]
|
|
92
|
+
|
|
93
|
+
def __contains__(self, key: str) -> bool:
|
|
94
|
+
return key in self.additional_properties
|
|
@@ -34,6 +34,7 @@ class GetWebsocketTriggerResponse200:
|
|
|
34
34
|
is_flow (bool):
|
|
35
35
|
enabled (bool):
|
|
36
36
|
filters (List['GetWebsocketTriggerResponse200FiltersItem']):
|
|
37
|
+
can_return_message (bool):
|
|
37
38
|
email (str):
|
|
38
39
|
extra_perms (GetWebsocketTriggerResponse200ExtraPerms):
|
|
39
40
|
workspace_id (str):
|
|
@@ -53,6 +54,7 @@ class GetWebsocketTriggerResponse200:
|
|
|
53
54
|
is_flow: bool
|
|
54
55
|
enabled: bool
|
|
55
56
|
filters: List["GetWebsocketTriggerResponse200FiltersItem"]
|
|
57
|
+
can_return_message: bool
|
|
56
58
|
email: str
|
|
57
59
|
extra_perms: "GetWebsocketTriggerResponse200ExtraPerms"
|
|
58
60
|
workspace_id: str
|
|
@@ -89,6 +91,7 @@ class GetWebsocketTriggerResponse200:
|
|
|
89
91
|
|
|
90
92
|
filters.append(filters_item)
|
|
91
93
|
|
|
94
|
+
can_return_message = self.can_return_message
|
|
92
95
|
email = self.email
|
|
93
96
|
extra_perms = self.extra_perms.to_dict()
|
|
94
97
|
|
|
@@ -130,6 +133,7 @@ class GetWebsocketTriggerResponse200:
|
|
|
130
133
|
"is_flow": is_flow,
|
|
131
134
|
"enabled": enabled,
|
|
132
135
|
"filters": filters,
|
|
136
|
+
"can_return_message": can_return_message,
|
|
133
137
|
"email": email,
|
|
134
138
|
"extra_perms": extra_perms,
|
|
135
139
|
"workspace_id": workspace_id,
|
|
@@ -182,6 +186,8 @@ class GetWebsocketTriggerResponse200:
|
|
|
182
186
|
|
|
183
187
|
filters.append(filters_item)
|
|
184
188
|
|
|
189
|
+
can_return_message = d.pop("can_return_message")
|
|
190
|
+
|
|
185
191
|
email = d.pop("email")
|
|
186
192
|
|
|
187
193
|
extra_perms = GetWebsocketTriggerResponse200ExtraPerms.from_dict(d.pop("extra_perms"))
|
|
@@ -247,6 +253,7 @@ class GetWebsocketTriggerResponse200:
|
|
|
247
253
|
is_flow=is_flow,
|
|
248
254
|
enabled=enabled,
|
|
249
255
|
filters=filters,
|
|
256
|
+
can_return_message=can_return_message,
|
|
250
257
|
email=email,
|
|
251
258
|
extra_perms=extra_perms,
|
|
252
259
|
workspace_id=workspace_id,
|
|
@@ -38,6 +38,7 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
38
38
|
is_flow (bool):
|
|
39
39
|
enabled (bool):
|
|
40
40
|
filters (List['ListWebsocketTriggersResponse200ItemFiltersItem']):
|
|
41
|
+
can_return_message (bool):
|
|
41
42
|
email (str):
|
|
42
43
|
extra_perms (ListWebsocketTriggersResponse200ItemExtraPerms):
|
|
43
44
|
workspace_id (str):
|
|
@@ -57,6 +58,7 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
57
58
|
is_flow: bool
|
|
58
59
|
enabled: bool
|
|
59
60
|
filters: List["ListWebsocketTriggersResponse200ItemFiltersItem"]
|
|
61
|
+
can_return_message: bool
|
|
60
62
|
email: str
|
|
61
63
|
extra_perms: "ListWebsocketTriggersResponse200ItemExtraPerms"
|
|
62
64
|
workspace_id: str
|
|
@@ -93,6 +95,7 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
93
95
|
|
|
94
96
|
filters.append(filters_item)
|
|
95
97
|
|
|
98
|
+
can_return_message = self.can_return_message
|
|
96
99
|
email = self.email
|
|
97
100
|
extra_perms = self.extra_perms.to_dict()
|
|
98
101
|
|
|
@@ -134,6 +137,7 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
134
137
|
"is_flow": is_flow,
|
|
135
138
|
"enabled": enabled,
|
|
136
139
|
"filters": filters,
|
|
140
|
+
"can_return_message": can_return_message,
|
|
137
141
|
"email": email,
|
|
138
142
|
"extra_perms": extra_perms,
|
|
139
143
|
"workspace_id": workspace_id,
|
|
@@ -190,6 +194,8 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
190
194
|
|
|
191
195
|
filters.append(filters_item)
|
|
192
196
|
|
|
197
|
+
can_return_message = d.pop("can_return_message")
|
|
198
|
+
|
|
193
199
|
email = d.pop("email")
|
|
194
200
|
|
|
195
201
|
extra_perms = ListWebsocketTriggersResponse200ItemExtraPerms.from_dict(d.pop("extra_perms"))
|
|
@@ -257,6 +263,7 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
257
263
|
is_flow=is_flow,
|
|
258
264
|
enabled=enabled,
|
|
259
265
|
filters=filters,
|
|
266
|
+
can_return_message=can_return_message,
|
|
260
267
|
email=email,
|
|
261
268
|
extra_perms=extra_perms,
|
|
262
269
|
workspace_id=workspace_id,
|
|
@@ -24,6 +24,7 @@ class NewWebsocketTrigger:
|
|
|
24
24
|
is_flow (bool):
|
|
25
25
|
url (str):
|
|
26
26
|
filters (List['NewWebsocketTriggerFiltersItem']):
|
|
27
|
+
can_return_message (bool):
|
|
27
28
|
enabled (Union[Unset, bool]):
|
|
28
29
|
initial_messages (Union[Unset, List[Union['NewWebsocketTriggerInitialMessagesItemType0',
|
|
29
30
|
'NewWebsocketTriggerInitialMessagesItemType1']]]):
|
|
@@ -35,6 +36,7 @@ class NewWebsocketTrigger:
|
|
|
35
36
|
is_flow: bool
|
|
36
37
|
url: str
|
|
37
38
|
filters: List["NewWebsocketTriggerFiltersItem"]
|
|
39
|
+
can_return_message: bool
|
|
38
40
|
enabled: Union[Unset, bool] = UNSET
|
|
39
41
|
initial_messages: Union[
|
|
40
42
|
Unset, List[Union["NewWebsocketTriggerInitialMessagesItemType0", "NewWebsocketTriggerInitialMessagesItemType1"]]
|
|
@@ -57,6 +59,7 @@ class NewWebsocketTrigger:
|
|
|
57
59
|
|
|
58
60
|
filters.append(filters_item)
|
|
59
61
|
|
|
62
|
+
can_return_message = self.can_return_message
|
|
60
63
|
enabled = self.enabled
|
|
61
64
|
initial_messages: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
62
65
|
if not isinstance(self.initial_messages, Unset):
|
|
@@ -85,6 +88,7 @@ class NewWebsocketTrigger:
|
|
|
85
88
|
"is_flow": is_flow,
|
|
86
89
|
"url": url,
|
|
87
90
|
"filters": filters,
|
|
91
|
+
"can_return_message": can_return_message,
|
|
88
92
|
}
|
|
89
93
|
)
|
|
90
94
|
if enabled is not UNSET:
|
|
@@ -123,6 +127,8 @@ class NewWebsocketTrigger:
|
|
|
123
127
|
|
|
124
128
|
filters.append(filters_item)
|
|
125
129
|
|
|
130
|
+
can_return_message = d.pop("can_return_message")
|
|
131
|
+
|
|
126
132
|
enabled = d.pop("enabled", UNSET)
|
|
127
133
|
|
|
128
134
|
initial_messages = []
|
|
@@ -163,6 +169,7 @@ class NewWebsocketTrigger:
|
|
|
163
169
|
is_flow=is_flow,
|
|
164
170
|
url=url,
|
|
165
171
|
filters=filters,
|
|
172
|
+
can_return_message=can_return_message,
|
|
166
173
|
enabled=enabled,
|
|
167
174
|
initial_messages=initial_messages,
|
|
168
175
|
url_runnable_args=url_runnable_args,
|
|
@@ -19,15 +19,18 @@ class TestWebsocketConnectionJsonBody:
|
|
|
19
19
|
"""
|
|
20
20
|
Attributes:
|
|
21
21
|
url (str):
|
|
22
|
+
can_return_message (bool):
|
|
22
23
|
url_runnable_args (Union[Unset, TestWebsocketConnectionJsonBodyUrlRunnableArgs]):
|
|
23
24
|
"""
|
|
24
25
|
|
|
25
26
|
url: str
|
|
27
|
+
can_return_message: bool
|
|
26
28
|
url_runnable_args: Union[Unset, "TestWebsocketConnectionJsonBodyUrlRunnableArgs"] = UNSET
|
|
27
29
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
28
30
|
|
|
29
31
|
def to_dict(self) -> Dict[str, Any]:
|
|
30
32
|
url = self.url
|
|
33
|
+
can_return_message = self.can_return_message
|
|
31
34
|
url_runnable_args: Union[Unset, Dict[str, Any]] = UNSET
|
|
32
35
|
if not isinstance(self.url_runnable_args, Unset):
|
|
33
36
|
url_runnable_args = self.url_runnable_args.to_dict()
|
|
@@ -37,6 +40,7 @@ class TestWebsocketConnectionJsonBody:
|
|
|
37
40
|
field_dict.update(
|
|
38
41
|
{
|
|
39
42
|
"url": url,
|
|
43
|
+
"can_return_message": can_return_message,
|
|
40
44
|
}
|
|
41
45
|
)
|
|
42
46
|
if url_runnable_args is not UNSET:
|
|
@@ -53,6 +57,8 @@ class TestWebsocketConnectionJsonBody:
|
|
|
53
57
|
d = src_dict.copy()
|
|
54
58
|
url = d.pop("url")
|
|
55
59
|
|
|
60
|
+
can_return_message = d.pop("can_return_message")
|
|
61
|
+
|
|
56
62
|
_url_runnable_args = d.pop("url_runnable_args", UNSET)
|
|
57
63
|
url_runnable_args: Union[Unset, TestWebsocketConnectionJsonBodyUrlRunnableArgs]
|
|
58
64
|
if isinstance(_url_runnable_args, Unset):
|
|
@@ -62,6 +68,7 @@ class TestWebsocketConnectionJsonBody:
|
|
|
62
68
|
|
|
63
69
|
test_websocket_connection_json_body = cls(
|
|
64
70
|
url=url,
|
|
71
|
+
can_return_message=can_return_message,
|
|
65
72
|
url_runnable_args=url_runnable_args,
|
|
66
73
|
)
|
|
67
74
|
|
|
@@ -30,6 +30,7 @@ class UpdateWebsocketTriggerJsonBody:
|
|
|
30
30
|
script_path (str):
|
|
31
31
|
is_flow (bool):
|
|
32
32
|
filters (List['UpdateWebsocketTriggerJsonBodyFiltersItem']):
|
|
33
|
+
can_return_message (bool):
|
|
33
34
|
initial_messages (Union[Unset, List[Union['UpdateWebsocketTriggerJsonBodyInitialMessagesItemType0',
|
|
34
35
|
'UpdateWebsocketTriggerJsonBodyInitialMessagesItemType1']]]):
|
|
35
36
|
url_runnable_args (Union[Unset, UpdateWebsocketTriggerJsonBodyUrlRunnableArgs]):
|
|
@@ -40,6 +41,7 @@ class UpdateWebsocketTriggerJsonBody:
|
|
|
40
41
|
script_path: str
|
|
41
42
|
is_flow: bool
|
|
42
43
|
filters: List["UpdateWebsocketTriggerJsonBodyFiltersItem"]
|
|
44
|
+
can_return_message: bool
|
|
43
45
|
initial_messages: Union[
|
|
44
46
|
Unset,
|
|
45
47
|
List[
|
|
@@ -67,6 +69,7 @@ class UpdateWebsocketTriggerJsonBody:
|
|
|
67
69
|
|
|
68
70
|
filters.append(filters_item)
|
|
69
71
|
|
|
72
|
+
can_return_message = self.can_return_message
|
|
70
73
|
initial_messages: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
71
74
|
if not isinstance(self.initial_messages, Unset):
|
|
72
75
|
initial_messages = []
|
|
@@ -94,6 +97,7 @@ class UpdateWebsocketTriggerJsonBody:
|
|
|
94
97
|
"script_path": script_path,
|
|
95
98
|
"is_flow": is_flow,
|
|
96
99
|
"filters": filters,
|
|
100
|
+
"can_return_message": can_return_message,
|
|
97
101
|
}
|
|
98
102
|
)
|
|
99
103
|
if initial_messages is not UNSET:
|
|
@@ -132,6 +136,8 @@ class UpdateWebsocketTriggerJsonBody:
|
|
|
132
136
|
|
|
133
137
|
filters.append(filters_item)
|
|
134
138
|
|
|
139
|
+
can_return_message = d.pop("can_return_message")
|
|
140
|
+
|
|
135
141
|
initial_messages = []
|
|
136
142
|
_initial_messages = d.pop("initial_messages", UNSET)
|
|
137
143
|
for initial_messages_item_data in _initial_messages or []:
|
|
@@ -175,6 +181,7 @@ class UpdateWebsocketTriggerJsonBody:
|
|
|
175
181
|
script_path=script_path,
|
|
176
182
|
is_flow=is_flow,
|
|
177
183
|
filters=filters,
|
|
184
|
+
can_return_message=can_return_message,
|
|
178
185
|
initial_messages=initial_messages,
|
|
179
186
|
url_runnable_args=url_runnable_args,
|
|
180
187
|
)
|
|
@@ -28,6 +28,7 @@ class WebsocketTrigger:
|
|
|
28
28
|
is_flow (bool):
|
|
29
29
|
enabled (bool):
|
|
30
30
|
filters (List['WebsocketTriggerFiltersItem']):
|
|
31
|
+
can_return_message (bool):
|
|
31
32
|
email (str):
|
|
32
33
|
extra_perms (WebsocketTriggerExtraPerms):
|
|
33
34
|
workspace_id (str):
|
|
@@ -47,6 +48,7 @@ class WebsocketTrigger:
|
|
|
47
48
|
is_flow: bool
|
|
48
49
|
enabled: bool
|
|
49
50
|
filters: List["WebsocketTriggerFiltersItem"]
|
|
51
|
+
can_return_message: bool
|
|
50
52
|
email: str
|
|
51
53
|
extra_perms: "WebsocketTriggerExtraPerms"
|
|
52
54
|
workspace_id: str
|
|
@@ -75,6 +77,7 @@ class WebsocketTrigger:
|
|
|
75
77
|
|
|
76
78
|
filters.append(filters_item)
|
|
77
79
|
|
|
80
|
+
can_return_message = self.can_return_message
|
|
78
81
|
email = self.email
|
|
79
82
|
extra_perms = self.extra_perms.to_dict()
|
|
80
83
|
|
|
@@ -116,6 +119,7 @@ class WebsocketTrigger:
|
|
|
116
119
|
"is_flow": is_flow,
|
|
117
120
|
"enabled": enabled,
|
|
118
121
|
"filters": filters,
|
|
122
|
+
"can_return_message": can_return_message,
|
|
119
123
|
"email": email,
|
|
120
124
|
"extra_perms": extra_perms,
|
|
121
125
|
"workspace_id": workspace_id,
|
|
@@ -162,6 +166,8 @@ class WebsocketTrigger:
|
|
|
162
166
|
|
|
163
167
|
filters.append(filters_item)
|
|
164
168
|
|
|
169
|
+
can_return_message = d.pop("can_return_message")
|
|
170
|
+
|
|
165
171
|
email = d.pop("email")
|
|
166
172
|
|
|
167
173
|
extra_perms = WebsocketTriggerExtraPerms.from_dict(d.pop("extra_perms"))
|
|
@@ -222,6 +228,7 @@ class WebsocketTrigger:
|
|
|
222
228
|
is_flow=is_flow,
|
|
223
229
|
enabled=enabled,
|
|
224
230
|
filters=filters,
|
|
231
|
+
can_return_message=can_return_message,
|
|
225
232
|
email=email,
|
|
226
233
|
extra_perms=extra_perms,
|
|
227
234
|
workspace_id=workspace_id,
|
|
@@ -27,6 +27,7 @@ windmill_api/api/audit/get_audit_log.py,sha256=y-HItlwPj0pX89bFFCtJaEd47IB4JeSbo
|
|
|
27
27
|
windmill_api/api/audit/list_audit_logs.py,sha256=7TE_RLNa08FJ8E0Tp5_qKLBFlJpqdATIupngUn9K7T4,11116
|
|
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
|
+
windmill_api/api/capture/get_capture.py,sha256=N3R-fUouHMfD-g9VBw3jlkVh-NdXFmWv9Z-nCfuSxfQ,3982
|
|
30
31
|
windmill_api/api/capture/get_capture_configs.py,sha256=hJrdYEKdfU5dAYn4uo7zHo4WI4bFnvux_ryD_xqfoTA,5325
|
|
31
32
|
windmill_api/api/capture/list_captures.py,sha256=MbeO-J5GdeMnIdTpqj0Onco0tpRG7SQZrVf1WitT5Hs,7440
|
|
32
33
|
windmill_api/api/capture/ping_capture_config.py,sha256=Gr6zzTeWqqAYFTb8RBh5rUdxCmxmz_deeqmS9_81qfs,3454
|
|
@@ -733,7 +734,7 @@ windmill_api/models/create_token_json_body.py,sha256=EQV--Yd3KEAuzAB8d3uLBxB3M1t
|
|
|
733
734
|
windmill_api/models/create_user_globally_json_body.py,sha256=MrDk6Voi0gHLvhzS48pwixj7wRZ05bu1Bce5J-sXsVc,2427
|
|
734
735
|
windmill_api/models/create_variable.py,sha256=IJcYEB53wQ8avSx0W_ZSYi1BZ9aZ1bserdFsrSQHkA8,3227
|
|
735
736
|
windmill_api/models/create_variable_json_body.py,sha256=5qITUtE7-0T8tILyCMkpdzWUJmvnJxvqvyCSN5k-ytI,3273
|
|
736
|
-
windmill_api/models/create_websocket_trigger_json_body.py,sha256=
|
|
737
|
+
windmill_api/models/create_websocket_trigger_json_body.py,sha256=0D7080flNfdicfOP-ZML78MJAURZxYbBexRaxul81OU,7999
|
|
737
738
|
windmill_api/models/create_websocket_trigger_json_body_filters_item.py,sha256=0YOVijuD5EfH8tlBEnmzUEinc51QtNsuUsMUAkluetU,1724
|
|
738
739
|
windmill_api/models/create_websocket_trigger_json_body_initial_messages_item_type_0.py,sha256=-TDFDaI1NFYJSMYOWf4Zbv6tbJcjJw3o-vpu1JXnVVg,1726
|
|
739
740
|
windmill_api/models/create_websocket_trigger_json_body_initial_messages_item_type_1.py,sha256=P_i9rpvYLsvJPaNf8bjDCgV_ft2v8z4QapiiGoiPi7Q,2440
|
|
@@ -878,7 +879,7 @@ windmill_api/models/edit_schedule_retry_exponential.py,sha256=Bk6iUxztHB7d6Vz7nU
|
|
|
878
879
|
windmill_api/models/edit_slack_command_json_body.py,sha256=EY_Rh0I3xIlwjYqoJcM-KTHLS-xSx78jWihtMRNno2U,1754
|
|
879
880
|
windmill_api/models/edit_variable.py,sha256=__0sMsabcqq0wbxCR87WecRHp2NSzxFJUmofT6Up7_w,2323
|
|
880
881
|
windmill_api/models/edit_webhook_json_body.py,sha256=dabl1MMH7ckA2108RA_bGcg-J_51NomeBJshulM5X-o,1583
|
|
881
|
-
windmill_api/models/edit_websocket_trigger.py,sha256=
|
|
882
|
+
windmill_api/models/edit_websocket_trigger.py,sha256=uMynOOGz9pMDOtIUgeQTGw6yI-d1yxYTnx4amZ8b4jA,7123
|
|
882
883
|
windmill_api/models/edit_websocket_trigger_filters_item.py,sha256=-POer0QJaV45tolvTrwrrcrYqtl9kotlPnUhTu2kjE0,1668
|
|
883
884
|
windmill_api/models/edit_websocket_trigger_initial_messages_item_type_0.py,sha256=c66awEdnvL8JdBojbQwj7wABfowT9WedrjfX-UC5UmQ,1670
|
|
884
885
|
windmill_api/models/edit_websocket_trigger_initial_messages_item_type_1.py,sha256=J1Um0xiXFDUlSNRV-j9Od0YB4GWCACSfOHba5Yfdb-g,2288
|
|
@@ -1401,6 +1402,8 @@ windmill_api/models/get_audit_log_response_200_parameters.py,sha256=0DpzZiiQe-WP
|
|
|
1401
1402
|
windmill_api/models/get_capture_configs_response_200_item.py,sha256=Ru4nl77ejFHiheMVY_lQjTCieQeCiUEf0UHjjkSuMI4,3249
|
|
1402
1403
|
windmill_api/models/get_capture_configs_response_200_item_trigger_kind.py,sha256=LYTGNBEgU03LPJl6vy7xZYAh9jDxhFy1JLragNv97yo,276
|
|
1403
1404
|
windmill_api/models/get_capture_configs_runnable_kind.py,sha256=VWQCYIDQqajAHhcs3aZHMfZUA_SdkF_7aXvvDlhO4hc,174
|
|
1405
|
+
windmill_api/models/get_capture_response_200.py,sha256=DqyjJjcmN8PnqXPTkUd2uI4MRZqqgBMTAOYaCRTJ99s,2707
|
|
1406
|
+
windmill_api/models/get_capture_response_200_trigger_kind.py,sha256=GnHtIFUSaNUvGWtA9Hs2ptV7LQzsc8gOB8UOTzmqkW8,265
|
|
1404
1407
|
windmill_api/models/get_completed_count_response_200.py,sha256=cudwRJHt5jvqGetkTemW-1aOSR5ni5znOGrkvpSR9jE,1621
|
|
1405
1408
|
windmill_api/models/get_completed_job_response_200.py,sha256=WU9M3CKuwAImLhWwvMrRW1x0vHyOpSqJ_PfkjzMM5dA,12875
|
|
1406
1409
|
windmill_api/models/get_completed_job_response_200_args.py,sha256=bQB1sy6V5vnJFgmQ9I08gmCNgWDZ1LGRlwPE1a9ROho,1317
|
|
@@ -2218,7 +2221,7 @@ windmill_api/models/get_used_triggers_response_200.py,sha256=OYeDh_UVXb_Z5EObuLz
|
|
|
2218
2221
|
windmill_api/models/get_user_response_200.py,sha256=dOaKRO-S3czJbqByMTJsiIY635mMBhlzBr258Sc5G5k,3869
|
|
2219
2222
|
windmill_api/models/get_variable_response_200.py,sha256=3WK2IMm6-Jr7tvy-jfOFrt1eMIUXVQyLzTcogJZQZlw,5430
|
|
2220
2223
|
windmill_api/models/get_variable_response_200_extra_perms.py,sha256=NkIQGAWfX954BcR6UBrYbATENEmbWT7-8639NOeTtdE,1330
|
|
2221
|
-
windmill_api/models/get_websocket_trigger_response_200.py,sha256=
|
|
2224
|
+
windmill_api/models/get_websocket_trigger_response_200.py,sha256=5jtZyrnx0VSREh2-oeYVcH_e1umh7v5R1DZOaA1w1mE,10597
|
|
2222
2225
|
windmill_api/models/get_websocket_trigger_response_200_extra_perms.py,sha256=pRzAa8jXG5D_2gB2scjbHsrozVUjFnRzZgrvfP_Bmfo,1373
|
|
2223
2226
|
windmill_api/models/get_websocket_trigger_response_200_filters_item.py,sha256=t6-Nregsn3ExhgWzNFRnQRAyVGO_9rf_4yCWO_jpnHk,1724
|
|
2224
2227
|
windmill_api/models/get_websocket_trigger_response_200_initial_messages_item_type_0.py,sha256=dPnORPf3vJMNmeAFq9Z1_zEeGQmqULYY3LlE3M39D54,1726
|
|
@@ -3015,7 +3018,7 @@ windmill_api/models/list_users_response_200_item.py,sha256=mpvg4zd9SQAUldbqUSN0V
|
|
|
3015
3018
|
windmill_api/models/list_users_usage_response_200_item.py,sha256=0ZKMktaSC_LTPolx1JXEEwINvWmf03Tl4OKSakKf6JU,1910
|
|
3016
3019
|
windmill_api/models/list_variable_response_200_item.py,sha256=nrPTcHabE71NPFFws-4Zl-7I8u1JOZacAabbiVdLjfk,5495
|
|
3017
3020
|
windmill_api/models/list_variable_response_200_item_extra_perms.py,sha256=Tx5hXdRHxg4SBN__jLzKf5cT09WbuLSmuOgDDkaKBlU,1358
|
|
3018
|
-
windmill_api/models/list_websocket_triggers_response_200_item.py,sha256=
|
|
3021
|
+
windmill_api/models/list_websocket_triggers_response_200_item.py,sha256=RpNNPDROrs3pzGDAMqQ503m2BHoLGTAx7PJWwnP2D-A,11011
|
|
3019
3022
|
windmill_api/models/list_websocket_triggers_response_200_item_extra_perms.py,sha256=_cTl7paU0ENy9JF0xdoXAB66XfkIGMNNebYIIS1X9Mg,1406
|
|
3020
3023
|
windmill_api/models/list_websocket_triggers_response_200_item_filters_item.py,sha256=-pwVHt2Vao8qMm5LRkDItiYouZs82j8PtCaxM88spXk,1757
|
|
3021
3024
|
windmill_api/models/list_websocket_triggers_response_200_item_initial_messages_item_type_0.py,sha256=SxOaH3Y4w1hcIBnrTvODBAh9NRgvs5MLd_uxVp4ZVRA,1759
|
|
@@ -3093,7 +3096,7 @@ windmill_api/models/new_script_with_draft_language.py,sha256=NKBrpym1RNr6v57oL7-
|
|
|
3093
3096
|
windmill_api/models/new_script_with_draft_schema.py,sha256=jDYRyPisWlZtHbRMtO6Gt7D4xx9Qcg_UCHSCbn9vbYs,1284
|
|
3094
3097
|
windmill_api/models/new_token.py,sha256=nVlHs1c4g88Kfu3qvlkYtw9YLulJiyARia_aDlVu36Q,2863
|
|
3095
3098
|
windmill_api/models/new_token_impersonate.py,sha256=GABdQQzrVzDGwCePOSnGZCuOLLhufr0I4BRdzzs_YeU,2848
|
|
3096
|
-
windmill_api/models/new_websocket_trigger.py,sha256=
|
|
3099
|
+
windmill_api/models/new_websocket_trigger.py,sha256=AFI6YgL6jfF1aHr9vyytpy4j4M1TLid_1zI2_3_-HRw,7299
|
|
3097
3100
|
windmill_api/models/new_websocket_trigger_filters_item.py,sha256=50_gt5fyW8wQ6qlfYopSP0rZ6r4HJ9bkuPW7u6D8WK4,1663
|
|
3098
3101
|
windmill_api/models/new_websocket_trigger_initial_messages_item_type_0.py,sha256=dI4q3RyA6xnlZwipd3pwNayyOKp9GxHSofBgbWmUi5k,1665
|
|
3099
3102
|
windmill_api/models/new_websocket_trigger_initial_messages_item_type_1.py,sha256=5kfF_YRJ7YvRJ5nqHiRwMDKctNXx1OEsP5v0BVe841w,2276
|
|
@@ -3543,7 +3546,7 @@ windmill_api/models/test_nats_connection_json_body_connection.py,sha256=CLP-2I6U
|
|
|
3543
3546
|
windmill_api/models/test_object_storage_config_json_body.py,sha256=8hs2BhGwf4zG2AueTdCileLEVqh8IPKL0cCof7RH9WQ,1322
|
|
3544
3547
|
windmill_api/models/test_smtp_json_body.py,sha256=1EnU2xqXl2GQ3QmZ68cuyV08h1KxzKbw5aVYrCMZxgM,1830
|
|
3545
3548
|
windmill_api/models/test_smtp_json_body_smtp.py,sha256=8fDDqj9vT6-NGxbATM6SquS7tkzSItr5KdJ996BGL1g,2565
|
|
3546
|
-
windmill_api/models/test_websocket_connection_json_body.py,sha256=
|
|
3549
|
+
windmill_api/models/test_websocket_connection_json_body.py,sha256=k3PoNLbzo7W_amLFxp7BJJ8vjOTjNlK7Mhf9b4ygyBI,3065
|
|
3547
3550
|
windmill_api/models/test_websocket_connection_json_body_url_runnable_args.py,sha256=PB7DeLlvFFi4lDeZlUtkn_9sYGT4YY-AtexVvXFXudk,1403
|
|
3548
3551
|
windmill_api/models/timeseries_metric.py,sha256=lEh6phLe8osZpD0gnfZ6esqbCZQ8DG1qhp2ygt63Wj4,2360
|
|
3549
3552
|
windmill_api/models/timeseries_metric_values_item.py,sha256=eyL1fDGwrnzV4XRrxtoeZTYHSnWUZrLJxLh_qysG9cE,1808
|
|
@@ -3602,7 +3605,7 @@ windmill_api/models/update_script_history_json_body.py,sha256=NbzKPozXuao9W_nfuE
|
|
|
3602
3605
|
windmill_api/models/update_tutorial_progress_json_body.py,sha256=_9TW14AiLcdQl_O0bhRWO3ZBMupOCA5p2rRAEnSM8Ag,1652
|
|
3603
3606
|
windmill_api/models/update_user_json_body.py,sha256=305gbqcehnNd2vc1AtkkEfd_64Pbi7upzrouQWOAdjU,2129
|
|
3604
3607
|
windmill_api/models/update_variable_json_body.py,sha256=W7XVPn83xzqy3YsNJtRNlzUUpoCOdszg7ApRopCGmvE,2379
|
|
3605
|
-
windmill_api/models/update_websocket_trigger_json_body.py,sha256=
|
|
3608
|
+
windmill_api/models/update_websocket_trigger_json_body.py,sha256=qzQvbCg86TvLXwR-gNBjuBcQHqSYYTojppShniXVr_E,7741
|
|
3606
3609
|
windmill_api/models/update_websocket_trigger_json_body_filters_item.py,sha256=fjK6AsrSk7yKOqZneDFjPl_oWJBM1t9mS1MC9sBE1Dc,1724
|
|
3607
3610
|
windmill_api/models/update_websocket_trigger_json_body_initial_messages_item_type_0.py,sha256=-gIgTc_OYVclhCoW3XEvnBR-9h_shYDHzx_oyvC53n0,1726
|
|
3608
3611
|
windmill_api/models/update_websocket_trigger_json_body_initial_messages_item_type_1.py,sha256=RAC77kImpoOhUy9hXQfh8xb34a-rJ5TtJpe5ottcf1A,2440
|
|
@@ -3615,7 +3618,7 @@ windmill_api/models/user_usage.py,sha256=3ePY0rntlxIaDIe7iKA7U-taV3OIsR90QWH71zO
|
|
|
3615
3618
|
windmill_api/models/user_workspace_list.py,sha256=5xDEkP2JoQEzVmY444NGT-wIeColo4aespbGBFZYGnQ,2325
|
|
3616
3619
|
windmill_api/models/user_workspace_list_workspaces_item.py,sha256=Y-Aq1H1xtQFBNq0z8bNg-xVkYptAmlYkWToTRG_OhpQ,3391
|
|
3617
3620
|
windmill_api/models/user_workspace_list_workspaces_item_operator_settings.py,sha256=TwAfSI-1t8zJhhGlgFW6_LHwxk5u8epGkImNPmydLiI,3432
|
|
3618
|
-
windmill_api/models/websocket_trigger.py,sha256=
|
|
3621
|
+
windmill_api/models/websocket_trigger.py,sha256=zVkrqM2Dtij3HZF9wOniwvQcwHSlTzQcjQFBxnSv-sw,9589
|
|
3619
3622
|
windmill_api/models/websocket_trigger_extra_perms.py,sha256=qKA9RR-E4lwQTM6Iu07Z6wvI_lMuoc6iWnqBEPGTbPU,1294
|
|
3620
3623
|
windmill_api/models/websocket_trigger_filters_item.py,sha256=Taenpp5uO6de_H3edj0-Bd9yb7zBKRnnihjK14AsqNs,1645
|
|
3621
3624
|
windmill_api/models/websocket_trigger_initial_message_type_0.py,sha256=uq3wISjKOoaJQ4N990v9MEOnq_Ph72VdkDuI-ZE8_1U,1619
|
|
@@ -3672,7 +3675,7 @@ windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1li
|
|
|
3672
3675
|
windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
|
|
3673
3676
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
3674
3677
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
3675
|
-
windmill_api-1.
|
|
3676
|
-
windmill_api-1.
|
|
3677
|
-
windmill_api-1.
|
|
3678
|
-
windmill_api-1.
|
|
3678
|
+
windmill_api-1.453.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
3679
|
+
windmill_api-1.453.0.dist-info/METADATA,sha256=5iRcQ330WhXCnMZjRwcNUgTht37TUjbF8QIvGhKMYtU,5023
|
|
3680
|
+
windmill_api-1.453.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
3681
|
+
windmill_api-1.453.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|