windmill-api 1.497.1__py3-none-any.whl → 1.498.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/openapi/__init__.py +0 -0
- windmill_api/api/openapi/download_openapi_spec.py +166 -0
- windmill_api/api/openapi/generate_openapi_spec.py +105 -0
- windmill_api/models/create_http_trigger_json_body.py +16 -0
- windmill_api/models/create_http_triggers_json_body_item.py +16 -0
- windmill_api/models/download_openapi_spec_json_body.py +150 -0
- windmill_api/models/download_openapi_spec_json_body_http_route_filters_item.py +72 -0
- windmill_api/models/download_openapi_spec_json_body_info.py +122 -0
- windmill_api/models/download_openapi_spec_json_body_info_contact.py +74 -0
- windmill_api/models/download_openapi_spec_json_body_info_license.py +76 -0
- windmill_api/models/download_openapi_spec_json_body_openapi_spec_format.py +9 -0
- windmill_api/models/download_openapi_spec_json_body_webhook_filters_item.py +89 -0
- windmill_api/models/download_openapi_spec_json_body_webhook_filters_item_runnable_kind.py +9 -0
- windmill_api/models/download_openapi_spec_json_body_webhook_filters_item_user_or_folder_regex.py +10 -0
- windmill_api/models/edit_http_trigger.py +16 -0
- windmill_api/models/generate_openapi_spec.py +140 -0
- windmill_api/models/generate_openapi_spec_http_route_filters_item.py +72 -0
- windmill_api/models/generate_openapi_spec_info.py +122 -0
- windmill_api/models/generate_openapi_spec_info_contact.py +74 -0
- windmill_api/models/generate_openapi_spec_info_license.py +76 -0
- windmill_api/models/generate_openapi_spec_json_body.py +150 -0
- windmill_api/models/generate_openapi_spec_json_body_http_route_filters_item.py +72 -0
- windmill_api/models/generate_openapi_spec_json_body_info.py +122 -0
- windmill_api/models/generate_openapi_spec_json_body_info_contact.py +74 -0
- windmill_api/models/generate_openapi_spec_json_body_info_license.py +76 -0
- windmill_api/models/generate_openapi_spec_json_body_openapi_spec_format.py +9 -0
- windmill_api/models/generate_openapi_spec_json_body_webhook_filters_item.py +89 -0
- windmill_api/models/generate_openapi_spec_json_body_webhook_filters_item_runnable_kind.py +9 -0
- windmill_api/models/generate_openapi_spec_json_body_webhook_filters_item_user_or_folder_regex.py +10 -0
- windmill_api/models/generate_openapi_spec_openapi_spec_format.py +9 -0
- windmill_api/models/generate_openapi_spec_webhook_filters_item.py +87 -0
- windmill_api/models/generate_openapi_spec_webhook_filters_item_runnable_kind.py +9 -0
- windmill_api/models/generate_openapi_spec_webhook_filters_item_user_or_folder_regex.py +10 -0
- windmill_api/models/get_http_trigger_response_200.py +16 -0
- windmill_api/models/http_trigger.py +16 -0
- windmill_api/models/list_http_triggers_response_200_item.py +16 -0
- windmill_api/models/new_http_trigger.py +16 -0
- windmill_api/models/openapi_http_route_filters.py +72 -0
- windmill_api/models/openapi_spec_format.py +9 -0
- windmill_api/models/openapi_v3_info.py +122 -0
- windmill_api/models/openapi_v3_info_contact.py +74 -0
- windmill_api/models/openapi_v3_info_license.py +76 -0
- windmill_api/models/runnable_kind.py +9 -0
- windmill_api/models/update_http_trigger_json_body.py +16 -0
- windmill_api/models/webhook_filters.py +83 -0
- windmill_api/models/webhook_filters_runnable_kind.py +9 -0
- windmill_api/models/webhook_filters_user_or_folder_regex.py +10 -0
- {windmill_api-1.497.1.dist-info → windmill_api-1.498.0.dist-info}/METADATA +1 -1
- {windmill_api-1.497.1.dist-info → windmill_api-1.498.0.dist-info}/RECORD +51 -12
- {windmill_api-1.497.1.dist-info → windmill_api-1.498.0.dist-info}/LICENSE +0 -0
- {windmill_api-1.497.1.dist-info → windmill_api-1.498.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
from typing import TYPE_CHECKING, 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
|
+
if TYPE_CHECKING:
|
|
9
|
+
from ..models.openapi_v3_info_contact import OpenapiV3InfoContact
|
|
10
|
+
from ..models.openapi_v3_info_license import OpenapiV3InfoLicense
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
T = TypeVar("T", bound="OpenapiV3Info")
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
@_attrs_define
|
|
17
|
+
class OpenapiV3Info:
|
|
18
|
+
"""
|
|
19
|
+
Attributes:
|
|
20
|
+
title (str):
|
|
21
|
+
version (str):
|
|
22
|
+
description (Union[Unset, str]):
|
|
23
|
+
terms_of_service (Union[Unset, str]):
|
|
24
|
+
contact (Union[Unset, OpenapiV3InfoContact]):
|
|
25
|
+
license_ (Union[Unset, OpenapiV3InfoLicense]):
|
|
26
|
+
"""
|
|
27
|
+
|
|
28
|
+
title: str
|
|
29
|
+
version: str
|
|
30
|
+
description: Union[Unset, str] = UNSET
|
|
31
|
+
terms_of_service: Union[Unset, str] = UNSET
|
|
32
|
+
contact: Union[Unset, "OpenapiV3InfoContact"] = UNSET
|
|
33
|
+
license_: Union[Unset, "OpenapiV3InfoLicense"] = UNSET
|
|
34
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
35
|
+
|
|
36
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
37
|
+
title = self.title
|
|
38
|
+
version = self.version
|
|
39
|
+
description = self.description
|
|
40
|
+
terms_of_service = self.terms_of_service
|
|
41
|
+
contact: Union[Unset, Dict[str, Any]] = UNSET
|
|
42
|
+
if not isinstance(self.contact, Unset):
|
|
43
|
+
contact = self.contact.to_dict()
|
|
44
|
+
|
|
45
|
+
license_: Union[Unset, Dict[str, Any]] = UNSET
|
|
46
|
+
if not isinstance(self.license_, Unset):
|
|
47
|
+
license_ = self.license_.to_dict()
|
|
48
|
+
|
|
49
|
+
field_dict: Dict[str, Any] = {}
|
|
50
|
+
field_dict.update(self.additional_properties)
|
|
51
|
+
field_dict.update(
|
|
52
|
+
{
|
|
53
|
+
"title": title,
|
|
54
|
+
"version": version,
|
|
55
|
+
}
|
|
56
|
+
)
|
|
57
|
+
if description is not UNSET:
|
|
58
|
+
field_dict["description"] = description
|
|
59
|
+
if terms_of_service is not UNSET:
|
|
60
|
+
field_dict["terms_of_service"] = terms_of_service
|
|
61
|
+
if contact is not UNSET:
|
|
62
|
+
field_dict["contact"] = contact
|
|
63
|
+
if license_ is not UNSET:
|
|
64
|
+
field_dict["license"] = license_
|
|
65
|
+
|
|
66
|
+
return field_dict
|
|
67
|
+
|
|
68
|
+
@classmethod
|
|
69
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
70
|
+
from ..models.openapi_v3_info_contact import OpenapiV3InfoContact
|
|
71
|
+
from ..models.openapi_v3_info_license import OpenapiV3InfoLicense
|
|
72
|
+
|
|
73
|
+
d = src_dict.copy()
|
|
74
|
+
title = d.pop("title")
|
|
75
|
+
|
|
76
|
+
version = d.pop("version")
|
|
77
|
+
|
|
78
|
+
description = d.pop("description", UNSET)
|
|
79
|
+
|
|
80
|
+
terms_of_service = d.pop("terms_of_service", UNSET)
|
|
81
|
+
|
|
82
|
+
_contact = d.pop("contact", UNSET)
|
|
83
|
+
contact: Union[Unset, OpenapiV3InfoContact]
|
|
84
|
+
if isinstance(_contact, Unset):
|
|
85
|
+
contact = UNSET
|
|
86
|
+
else:
|
|
87
|
+
contact = OpenapiV3InfoContact.from_dict(_contact)
|
|
88
|
+
|
|
89
|
+
_license_ = d.pop("license", UNSET)
|
|
90
|
+
license_: Union[Unset, OpenapiV3InfoLicense]
|
|
91
|
+
if isinstance(_license_, Unset):
|
|
92
|
+
license_ = UNSET
|
|
93
|
+
else:
|
|
94
|
+
license_ = OpenapiV3InfoLicense.from_dict(_license_)
|
|
95
|
+
|
|
96
|
+
openapi_v3_info = cls(
|
|
97
|
+
title=title,
|
|
98
|
+
version=version,
|
|
99
|
+
description=description,
|
|
100
|
+
terms_of_service=terms_of_service,
|
|
101
|
+
contact=contact,
|
|
102
|
+
license_=license_,
|
|
103
|
+
)
|
|
104
|
+
|
|
105
|
+
openapi_v3_info.additional_properties = d
|
|
106
|
+
return openapi_v3_info
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
def additional_keys(self) -> List[str]:
|
|
110
|
+
return list(self.additional_properties.keys())
|
|
111
|
+
|
|
112
|
+
def __getitem__(self, key: str) -> Any:
|
|
113
|
+
return self.additional_properties[key]
|
|
114
|
+
|
|
115
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
116
|
+
self.additional_properties[key] = value
|
|
117
|
+
|
|
118
|
+
def __delitem__(self, key: str) -> None:
|
|
119
|
+
del self.additional_properties[key]
|
|
120
|
+
|
|
121
|
+
def __contains__(self, key: str) -> bool:
|
|
122
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,74 @@
|
|
|
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="OpenapiV3InfoContact")
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@_attrs_define
|
|
12
|
+
class OpenapiV3InfoContact:
|
|
13
|
+
"""
|
|
14
|
+
Attributes:
|
|
15
|
+
name (Union[Unset, str]):
|
|
16
|
+
url (Union[Unset, str]):
|
|
17
|
+
email (Union[Unset, str]):
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
name: Union[Unset, str] = UNSET
|
|
21
|
+
url: Union[Unset, str] = UNSET
|
|
22
|
+
email: Union[Unset, str] = UNSET
|
|
23
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
24
|
+
|
|
25
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
26
|
+
name = self.name
|
|
27
|
+
url = self.url
|
|
28
|
+
email = self.email
|
|
29
|
+
|
|
30
|
+
field_dict: Dict[str, Any] = {}
|
|
31
|
+
field_dict.update(self.additional_properties)
|
|
32
|
+
field_dict.update({})
|
|
33
|
+
if name is not UNSET:
|
|
34
|
+
field_dict["name"] = name
|
|
35
|
+
if url is not UNSET:
|
|
36
|
+
field_dict["url"] = url
|
|
37
|
+
if email is not UNSET:
|
|
38
|
+
field_dict["email"] = email
|
|
39
|
+
|
|
40
|
+
return field_dict
|
|
41
|
+
|
|
42
|
+
@classmethod
|
|
43
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
44
|
+
d = src_dict.copy()
|
|
45
|
+
name = d.pop("name", UNSET)
|
|
46
|
+
|
|
47
|
+
url = d.pop("url", UNSET)
|
|
48
|
+
|
|
49
|
+
email = d.pop("email", UNSET)
|
|
50
|
+
|
|
51
|
+
openapi_v3_info_contact = cls(
|
|
52
|
+
name=name,
|
|
53
|
+
url=url,
|
|
54
|
+
email=email,
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
openapi_v3_info_contact.additional_properties = d
|
|
58
|
+
return openapi_v3_info_contact
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
def additional_keys(self) -> List[str]:
|
|
62
|
+
return list(self.additional_properties.keys())
|
|
63
|
+
|
|
64
|
+
def __getitem__(self, key: str) -> Any:
|
|
65
|
+
return self.additional_properties[key]
|
|
66
|
+
|
|
67
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
68
|
+
self.additional_properties[key] = value
|
|
69
|
+
|
|
70
|
+
def __delitem__(self, key: str) -> None:
|
|
71
|
+
del self.additional_properties[key]
|
|
72
|
+
|
|
73
|
+
def __contains__(self, key: str) -> bool:
|
|
74
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,76 @@
|
|
|
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="OpenapiV3InfoLicense")
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@_attrs_define
|
|
12
|
+
class OpenapiV3InfoLicense:
|
|
13
|
+
"""
|
|
14
|
+
Attributes:
|
|
15
|
+
name (str):
|
|
16
|
+
identifier (Union[Unset, str]):
|
|
17
|
+
url (Union[Unset, str]):
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
name: str
|
|
21
|
+
identifier: Union[Unset, str] = UNSET
|
|
22
|
+
url: Union[Unset, str] = UNSET
|
|
23
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
24
|
+
|
|
25
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
26
|
+
name = self.name
|
|
27
|
+
identifier = self.identifier
|
|
28
|
+
url = self.url
|
|
29
|
+
|
|
30
|
+
field_dict: Dict[str, Any] = {}
|
|
31
|
+
field_dict.update(self.additional_properties)
|
|
32
|
+
field_dict.update(
|
|
33
|
+
{
|
|
34
|
+
"name": name,
|
|
35
|
+
}
|
|
36
|
+
)
|
|
37
|
+
if identifier is not UNSET:
|
|
38
|
+
field_dict["identifier"] = identifier
|
|
39
|
+
if url is not UNSET:
|
|
40
|
+
field_dict["url"] = url
|
|
41
|
+
|
|
42
|
+
return field_dict
|
|
43
|
+
|
|
44
|
+
@classmethod
|
|
45
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
46
|
+
d = src_dict.copy()
|
|
47
|
+
name = d.pop("name")
|
|
48
|
+
|
|
49
|
+
identifier = d.pop("identifier", UNSET)
|
|
50
|
+
|
|
51
|
+
url = d.pop("url", UNSET)
|
|
52
|
+
|
|
53
|
+
openapi_v3_info_license = cls(
|
|
54
|
+
name=name,
|
|
55
|
+
identifier=identifier,
|
|
56
|
+
url=url,
|
|
57
|
+
)
|
|
58
|
+
|
|
59
|
+
openapi_v3_info_license.additional_properties = d
|
|
60
|
+
return openapi_v3_info_license
|
|
61
|
+
|
|
62
|
+
@property
|
|
63
|
+
def additional_keys(self) -> List[str]:
|
|
64
|
+
return list(self.additional_properties.keys())
|
|
65
|
+
|
|
66
|
+
def __getitem__(self, key: str) -> Any:
|
|
67
|
+
return self.additional_properties[key]
|
|
68
|
+
|
|
69
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
70
|
+
self.additional_properties[key] = value
|
|
71
|
+
|
|
72
|
+
def __delitem__(self, key: str) -> None:
|
|
73
|
+
del self.additional_properties[key]
|
|
74
|
+
|
|
75
|
+
def __contains__(self, key: str) -> bool:
|
|
76
|
+
return key in self.additional_properties
|
|
@@ -26,6 +26,8 @@ class UpdateHttpTriggerJsonBody:
|
|
|
26
26
|
authentication_method (UpdateHttpTriggerJsonBodyAuthenticationMethod):
|
|
27
27
|
is_static_website (bool):
|
|
28
28
|
route_path (Union[Unset, str]):
|
|
29
|
+
summary (Union[Unset, str]):
|
|
30
|
+
description (Union[Unset, str]):
|
|
29
31
|
workspaced_route (Union[Unset, bool]):
|
|
30
32
|
static_asset_config (Union[Unset, UpdateHttpTriggerJsonBodyStaticAssetConfig]):
|
|
31
33
|
authentication_resource_path (Union[Unset, str]):
|
|
@@ -41,6 +43,8 @@ class UpdateHttpTriggerJsonBody:
|
|
|
41
43
|
authentication_method: UpdateHttpTriggerJsonBodyAuthenticationMethod
|
|
42
44
|
is_static_website: bool
|
|
43
45
|
route_path: Union[Unset, str] = UNSET
|
|
46
|
+
summary: Union[Unset, str] = UNSET
|
|
47
|
+
description: Union[Unset, str] = UNSET
|
|
44
48
|
workspaced_route: Union[Unset, bool] = UNSET
|
|
45
49
|
static_asset_config: Union[Unset, "UpdateHttpTriggerJsonBodyStaticAssetConfig"] = UNSET
|
|
46
50
|
authentication_resource_path: Union[Unset, str] = UNSET
|
|
@@ -59,6 +63,8 @@ class UpdateHttpTriggerJsonBody:
|
|
|
59
63
|
|
|
60
64
|
is_static_website = self.is_static_website
|
|
61
65
|
route_path = self.route_path
|
|
66
|
+
summary = self.summary
|
|
67
|
+
description = self.description
|
|
62
68
|
workspaced_route = self.workspaced_route
|
|
63
69
|
static_asset_config: Union[Unset, Dict[str, Any]] = UNSET
|
|
64
70
|
if not isinstance(self.static_asset_config, Unset):
|
|
@@ -83,6 +89,10 @@ class UpdateHttpTriggerJsonBody:
|
|
|
83
89
|
)
|
|
84
90
|
if route_path is not UNSET:
|
|
85
91
|
field_dict["route_path"] = route_path
|
|
92
|
+
if summary is not UNSET:
|
|
93
|
+
field_dict["summary"] = summary
|
|
94
|
+
if description is not UNSET:
|
|
95
|
+
field_dict["description"] = description
|
|
86
96
|
if workspaced_route is not UNSET:
|
|
87
97
|
field_dict["workspaced_route"] = workspaced_route
|
|
88
98
|
if static_asset_config is not UNSET:
|
|
@@ -119,6 +129,10 @@ class UpdateHttpTriggerJsonBody:
|
|
|
119
129
|
|
|
120
130
|
route_path = d.pop("route_path", UNSET)
|
|
121
131
|
|
|
132
|
+
summary = d.pop("summary", UNSET)
|
|
133
|
+
|
|
134
|
+
description = d.pop("description", UNSET)
|
|
135
|
+
|
|
122
136
|
workspaced_route = d.pop("workspaced_route", UNSET)
|
|
123
137
|
|
|
124
138
|
_static_asset_config = d.pop("static_asset_config", UNSET)
|
|
@@ -143,6 +157,8 @@ class UpdateHttpTriggerJsonBody:
|
|
|
143
157
|
authentication_method=authentication_method,
|
|
144
158
|
is_static_website=is_static_website,
|
|
145
159
|
route_path=route_path,
|
|
160
|
+
summary=summary,
|
|
161
|
+
description=description,
|
|
146
162
|
workspaced_route=workspaced_route,
|
|
147
163
|
static_asset_config=static_asset_config,
|
|
148
164
|
authentication_resource_path=authentication_resource_path,
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
from ..models.webhook_filters_runnable_kind import WebhookFiltersRunnableKind
|
|
7
|
+
from ..models.webhook_filters_user_or_folder_regex import WebhookFiltersUserOrFolderRegex
|
|
8
|
+
|
|
9
|
+
T = TypeVar("T", bound="WebhookFilters")
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@_attrs_define
|
|
13
|
+
class WebhookFilters:
|
|
14
|
+
"""
|
|
15
|
+
Attributes:
|
|
16
|
+
user_or_folder_regex (WebhookFiltersUserOrFolderRegex):
|
|
17
|
+
user_or_folder_regex_value (str):
|
|
18
|
+
path (str):
|
|
19
|
+
runnable_kind (WebhookFiltersRunnableKind):
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
user_or_folder_regex: WebhookFiltersUserOrFolderRegex
|
|
23
|
+
user_or_folder_regex_value: str
|
|
24
|
+
path: str
|
|
25
|
+
runnable_kind: WebhookFiltersRunnableKind
|
|
26
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
27
|
+
|
|
28
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
29
|
+
user_or_folder_regex = self.user_or_folder_regex.value
|
|
30
|
+
|
|
31
|
+
user_or_folder_regex_value = self.user_or_folder_regex_value
|
|
32
|
+
path = self.path
|
|
33
|
+
runnable_kind = self.runnable_kind.value
|
|
34
|
+
|
|
35
|
+
field_dict: Dict[str, Any] = {}
|
|
36
|
+
field_dict.update(self.additional_properties)
|
|
37
|
+
field_dict.update(
|
|
38
|
+
{
|
|
39
|
+
"user_or_folder_regex": user_or_folder_regex,
|
|
40
|
+
"user_or_folder_regex_value": user_or_folder_regex_value,
|
|
41
|
+
"path": path,
|
|
42
|
+
"runnable_kind": runnable_kind,
|
|
43
|
+
}
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
return field_dict
|
|
47
|
+
|
|
48
|
+
@classmethod
|
|
49
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
50
|
+
d = src_dict.copy()
|
|
51
|
+
user_or_folder_regex = WebhookFiltersUserOrFolderRegex(d.pop("user_or_folder_regex"))
|
|
52
|
+
|
|
53
|
+
user_or_folder_regex_value = d.pop("user_or_folder_regex_value")
|
|
54
|
+
|
|
55
|
+
path = d.pop("path")
|
|
56
|
+
|
|
57
|
+
runnable_kind = WebhookFiltersRunnableKind(d.pop("runnable_kind"))
|
|
58
|
+
|
|
59
|
+
webhook_filters = cls(
|
|
60
|
+
user_or_folder_regex=user_or_folder_regex,
|
|
61
|
+
user_or_folder_regex_value=user_or_folder_regex_value,
|
|
62
|
+
path=path,
|
|
63
|
+
runnable_kind=runnable_kind,
|
|
64
|
+
)
|
|
65
|
+
|
|
66
|
+
webhook_filters.additional_properties = d
|
|
67
|
+
return webhook_filters
|
|
68
|
+
|
|
69
|
+
@property
|
|
70
|
+
def additional_keys(self) -> List[str]:
|
|
71
|
+
return list(self.additional_properties.keys())
|
|
72
|
+
|
|
73
|
+
def __getitem__(self, key: str) -> Any:
|
|
74
|
+
return self.additional_properties[key]
|
|
75
|
+
|
|
76
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
77
|
+
self.additional_properties[key] = value
|
|
78
|
+
|
|
79
|
+
def __delitem__(self, key: str) -> None:
|
|
80
|
+
del self.additional_properties[key]
|
|
81
|
+
|
|
82
|
+
def __contains__(self, key: str) -> bool:
|
|
83
|
+
return key in self.additional_properties
|
|
@@ -273,6 +273,9 @@ windmill_api/api/oauth/list_o_auth_logins.py,sha256=QH-QBZ2L4S0jB7p67eg8YC23kipS
|
|
|
273
273
|
windmill_api/api/oauth/refresh_token.py,sha256=h3YcB6GylN24-z05qyP1uaROlOcODhTE2fwRpP9QJaE,2818
|
|
274
274
|
windmill_api/api/oidc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
275
275
|
windmill_api/api/oidc/get_oidc_token.py,sha256=IvGVRPqx91zERILJBhbJyXIJSPfbHEpolKN046QWsK0,2502
|
|
276
|
+
windmill_api/api/openapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
277
|
+
windmill_api/api/openapi/download_openapi_spec.py,sha256=NVpOn5KbHdDfWp9ozdIK61nHV66XyegVFQS2eTypyfw,4343
|
|
278
|
+
windmill_api/api/openapi/generate_openapi_spec.py,sha256=uUHojhobA7G5aJYb3RROJUzzfOhb5SJUcCoKpDoR1yg,2802
|
|
276
279
|
windmill_api/api/postgres_trigger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
277
280
|
windmill_api/api/postgres_trigger/create_postgres_publication.py,sha256=S1chzpM5Xx4P2WMdq-D_exXBMIdbIt0eNwH3vB_vOzM,3224
|
|
278
281
|
windmill_api/api/postgres_trigger/create_postgres_replication_slot.py,sha256=f5ZZttacsTWGQWEfkRrZibw-M0SvrWLEVjyp4h4FQeE,3019
|
|
@@ -803,11 +806,11 @@ windmill_api/models/create_gcp_trigger_json_body_delivery_config.py,sha256=Ck82V
|
|
|
803
806
|
windmill_api/models/create_gcp_trigger_json_body_delivery_type.py,sha256=_fnpBE6Eembk6XMo7p2Nez_Sw4k8u26nxSrfSGgBFdQ,177
|
|
804
807
|
windmill_api/models/create_gcp_trigger_json_body_subscription_mode.py,sha256=hlquvYrp2ZeKRQ3ivrbObeAchk9HPAjSc4WM5uihtkQ,207
|
|
805
808
|
windmill_api/models/create_group_json_body.py,sha256=KXgcsdIu7W99Ut5xbgH2911BEgrd-BxYAfN5r5TOyuw,1760
|
|
806
|
-
windmill_api/models/create_http_trigger_json_body.py,sha256=
|
|
809
|
+
windmill_api/models/create_http_trigger_json_body.py,sha256=EfO61K9KQ3JZvGTfIUoTu0yygvgS0gbg2_MJ4P4XT_Y,6754
|
|
807
810
|
windmill_api/models/create_http_trigger_json_body_authentication_method.py,sha256=LjPtWr9A-WFWQY8KdURiqYvW0vFTNRflICjqbkv0vUY,312
|
|
808
811
|
windmill_api/models/create_http_trigger_json_body_http_method.py,sha256=ZhVY_jUbOVXcckh4w56I0N9fGd0dYYYNViIhOM3495I,232
|
|
809
812
|
windmill_api/models/create_http_trigger_json_body_static_asset_config.py,sha256=SqNzKOi6BLVpyb7Gb72V452jrnWh3KRijIwr5Eiwox4,2134
|
|
810
|
-
windmill_api/models/create_http_triggers_json_body_item.py,sha256=
|
|
813
|
+
windmill_api/models/create_http_triggers_json_body_item.py,sha256=nZmAmhA0aW-SbzWNUuW98fSZQRqy61RcNwStWxHVctU,6902
|
|
811
814
|
windmill_api/models/create_http_triggers_json_body_item_authentication_method.py,sha256=CxT_urqmohlod14KHV0H5ykrzV0A80x8p4hTzVy2qiU,317
|
|
812
815
|
windmill_api/models/create_http_triggers_json_body_item_http_method.py,sha256=6QDXJnFs04v1UduAySZysTioISbVJ4c0X5uG7AYNP78,237
|
|
813
816
|
windmill_api/models/create_http_triggers_json_body_item_static_asset_config.py,sha256=nRAbZRN4M7aeV-daihDYrKqglAUX0o75SxWyTgM-oy0,2162
|
|
@@ -968,6 +971,15 @@ windmill_api/models/delete_script_by_hash_response_200_kind.py,sha256=FxRCYJtKyO
|
|
|
968
971
|
windmill_api/models/delete_script_by_hash_response_200_language.py,sha256=fn3KLoJ6KNw4hNoV9yJ47uqzi_e85zmpnbZVhQbXrRc,596
|
|
969
972
|
windmill_api/models/delete_script_by_hash_response_200_schema.py,sha256=1Y38poP8WtFfdoMgQ9ICdrcm5g2bIVPCMmZUrMKgGjc,1345
|
|
970
973
|
windmill_api/models/delivery_type.py,sha256=NlmPp1pbhy9urtS9Rql89i5SI6HXnQsEBbBOkJj8U3c,153
|
|
974
|
+
windmill_api/models/download_openapi_spec_json_body.py,sha256=y33x4l1tAFtTEfl8ZJaVBRIGVN7KvT-6llY4gd14YZk,6185
|
|
975
|
+
windmill_api/models/download_openapi_spec_json_body_http_route_filters_item.py,sha256=HUpRPr_iIGYi-rW5zqTXn0HZ2XU130Wx0zwCCDy4268,2162
|
|
976
|
+
windmill_api/models/download_openapi_spec_json_body_info.py,sha256=vUGdC0SMTfNjL3CwdCS1m0r7WbME7-KfKEza5FVpMCg,4260
|
|
977
|
+
windmill_api/models/download_openapi_spec_json_body_info_contact.py,sha256=6gwAySo4q_67rrhSxfFQGj5p70JVlKhsTMEoEWd_WRo,2100
|
|
978
|
+
windmill_api/models/download_openapi_spec_json_body_info_license.py,sha256=Sxp4oXa3cAKTtemDS1340sxBQ8ZU_UQDPq_B3OfS--c,2109
|
|
979
|
+
windmill_api/models/download_openapi_spec_json_body_openapi_spec_format.py,sha256=LrehYvBW8ULHKXrwkiJXPIfHlla5FBrYSIden_4gTlM,185
|
|
980
|
+
windmill_api/models/download_openapi_spec_json_body_webhook_filters_item.py,sha256=9SLK4Ep9B-tuXqcIH1yQ3mg7oAL-LQGJPsqCVde_IaE,3208
|
|
981
|
+
windmill_api/models/download_openapi_spec_json_body_webhook_filters_item_runnable_kind.py,sha256=T2JzfjKeabHN6OIeqPomj0JCs5rRoWABPud-0JGOu5s,202
|
|
982
|
+
windmill_api/models/download_openapi_spec_json_body_webhook_filters_item_user_or_folder_regex.py,sha256=0CZzD97vRksTOg0nn0aJ0uAwaeSW4G-FUkaq9Bjhr6s,209
|
|
971
983
|
windmill_api/models/duckdb_connection_settings_json_body.py,sha256=VKhOpCQrjN1b9YVZrbXFvs3Q-KPCJ0Bmq8uPVlsqxvU,2435
|
|
972
984
|
windmill_api/models/duckdb_connection_settings_json_body_s3_resource.py,sha256=2lLQO26B8mFpx-fhoefqmFt13xME94VMKRqongyBNqw,2948
|
|
973
985
|
windmill_api/models/duckdb_connection_settings_response_200.py,sha256=08YV2mUekjcl5W_4I6r49Fg1gAhjUVZ4WNMUma4OOTM,1842
|
|
@@ -985,7 +997,7 @@ windmill_api/models/edit_default_scripts_json_body.py,sha256=ZStD18RpNC3spa5hcVc
|
|
|
985
997
|
windmill_api/models/edit_deploy_to_json_body.py,sha256=sLAkpLZdvhIu671Sz-AycSlpKfo1rSh4UM2JiZ_q9mA,1613
|
|
986
998
|
windmill_api/models/edit_error_handler_json_body.py,sha256=01ZCafsbWj458_zacBteZJBuiAt3bio2G5FEYvF--jA,3552
|
|
987
999
|
windmill_api/models/edit_error_handler_json_body_error_handler_extra_args.py,sha256=B7ouUC3nLUEshF7duEgrT3Yank6PfolQqqzmZ2G50Qk,1401
|
|
988
|
-
windmill_api/models/edit_http_trigger.py,sha256=
|
|
1000
|
+
windmill_api/models/edit_http_trigger.py,sha256=XR03OjMnejd91M1_ojBzu7IZyvXfuFcGAqSNsSlYyGE,6572
|
|
989
1001
|
windmill_api/models/edit_http_trigger_authentication_method.py,sha256=b_x86fwhQ-QEXNYQ5DX0nWPIcv_x7I9GrsxVSN8svVo,302
|
|
990
1002
|
windmill_api/models/edit_http_trigger_http_method.py,sha256=0ap4m_mxJpb5Fmr1DwT09OVC0nqwGcNvYgh0aoTRbq0,222
|
|
991
1003
|
windmill_api/models/edit_http_trigger_static_asset_config.py,sha256=ug13LgqJdVbpl2T-8nURo5vYpuIK9pL2AxlyVQD315U,2078
|
|
@@ -1503,6 +1515,24 @@ windmill_api/models/gcp_trigger_delivery_config.py,sha256=mUfnbb5NHhbGQlVVQO1SSw
|
|
|
1503
1515
|
windmill_api/models/gcp_trigger_delivery_type.py,sha256=tSHOpk6OFR5CAmNW-emFxQEn0qgtQJngLroT4YWVVpQ,163
|
|
1504
1516
|
windmill_api/models/gcp_trigger_extra_perms.py,sha256=5NgWR8Qx0xgo4ECvoxW6BMNy2u7oGlzJQ45QtVEvmyk,1264
|
|
1505
1517
|
windmill_api/models/gcp_trigger_subscription_mode.py,sha256=c7D0nVfR5fNdXUWl9pag6pqTweHm620MKQoJonXII9Y,193
|
|
1518
|
+
windmill_api/models/generate_openapi_spec.py,sha256=rZhy5mqPz9RxXC-LViyfqVCsZt6phSSR6KSNOKcVv6M,5787
|
|
1519
|
+
windmill_api/models/generate_openapi_spec_http_route_filters_item.py,sha256=yoxNUwctw65R4xsDKvsdz5Yx-tPUZ_4uuUT4PupJETE,2116
|
|
1520
|
+
windmill_api/models/generate_openapi_spec_info.py,sha256=7OciMjmNF6BL6ivAqHpdN0pZCor3G3qnjm7ZdddE-FQ,4078
|
|
1521
|
+
windmill_api/models/generate_openapi_spec_info_contact.py,sha256=fWzkNP3tWmOM63JvDAG_rVD855j2x0e3PrD2CgF_3HU,2054
|
|
1522
|
+
windmill_api/models/generate_openapi_spec_info_license.py,sha256=Jt8ipNO80l66UnaHSfLsSqAxUXQZPX_UPBn1xUIe8M8,2063
|
|
1523
|
+
windmill_api/models/generate_openapi_spec_json_body.py,sha256=t-UW_Eb0pWtXkxx4zn6sf9TOckZF-gatou190AvCWNs,6185
|
|
1524
|
+
windmill_api/models/generate_openapi_spec_json_body_http_route_filters_item.py,sha256=bV1rP2TXlKvYk2O6fGCqp7i0roBqDqr5OVsX0OnINW4,2162
|
|
1525
|
+
windmill_api/models/generate_openapi_spec_json_body_info.py,sha256=OXgJscnCUEf-Xzbf8cbm0yTT-EYbW8MRYA0zRx9UM_w,4260
|
|
1526
|
+
windmill_api/models/generate_openapi_spec_json_body_info_contact.py,sha256=B0Xh8K5f2df2OkVptcQgRihdCf_6RDkgtFSEn-32niw,2100
|
|
1527
|
+
windmill_api/models/generate_openapi_spec_json_body_info_license.py,sha256=-R_RXwZimIMQ4IMwwPeRhyAXRZr6ZeRoDv1B7E3Y6SU,2109
|
|
1528
|
+
windmill_api/models/generate_openapi_spec_json_body_openapi_spec_format.py,sha256=JbhMrawFv4ujvonmNbsfRfW2kVf7d3zwpZbAfnW6Rb4,185
|
|
1529
|
+
windmill_api/models/generate_openapi_spec_json_body_webhook_filters_item.py,sha256=z23iKFJBu1ChTcSlkcyS0zD7VzQ7PlCsqJefYsECmr8,3208
|
|
1530
|
+
windmill_api/models/generate_openapi_spec_json_body_webhook_filters_item_runnable_kind.py,sha256=3OTKsbQNgyxx6exK3PWbCUZuwy3gykKEoQ5JZqs87Dw,202
|
|
1531
|
+
windmill_api/models/generate_openapi_spec_json_body_webhook_filters_item_user_or_folder_regex.py,sha256=3MxliBW7GnCCZLFcyA9l9khBjm-IQaYxIz4ihoLrD8o,209
|
|
1532
|
+
windmill_api/models/generate_openapi_spec_openapi_spec_format.py,sha256=de5tKNfzhwyUhpdAVzOhjVYgTy_18XN5ZbmUP35gBVI,177
|
|
1533
|
+
windmill_api/models/generate_openapi_spec_webhook_filters_item.py,sha256=9gzyZj-HQ71N7avopnn2y8uQdVtAQ-A6s2b8Y44qYEI,3056
|
|
1534
|
+
windmill_api/models/generate_openapi_spec_webhook_filters_item_runnable_kind.py,sha256=r9Qc5GaAicvEWuPy92xxiupWBuaiehabS1QUpyvD3PA,194
|
|
1535
|
+
windmill_api/models/generate_openapi_spec_webhook_filters_item_user_or_folder_regex.py,sha256=kOrRFhECIItSadcwMSlj4FFgk9O-fGMfNK_UBz2TC54,201
|
|
1506
1536
|
windmill_api/models/get_all_topic_subscription.py,sha256=4-o68lo_rs5K6b_bKeRTYGHbh1Xq8v0FGxV7p-50LN0,1523
|
|
1507
1537
|
windmill_api/models/get_app_by_path_response_200.py,sha256=vlaRqzj_Li_je7PbqNTO3u6YEe3Tr9XgxoByYUpzjLw,4988
|
|
1508
1538
|
windmill_api/models/get_app_by_path_response_200_execution_mode.py,sha256=cOCfMpLkbM7xZmKRVYK-7ZaI3g0W8U8MyeW1qbQwwCc,219
|
|
@@ -1867,7 +1897,7 @@ windmill_api/models/get_granular_acls_kind.py,sha256=P4uyL5gNUJt_HcKeboV1gyBca9a
|
|
|
1867
1897
|
windmill_api/models/get_granular_acls_response_200.py,sha256=GBNLqaaap42IbGX8jniniFTUrtOFgiCLb5n5-2NKRIY,1297
|
|
1868
1898
|
windmill_api/models/get_group_response_200.py,sha256=FKhClOF65VqXmEIW49y4W8zyMai0Sq_QjMuUG7wIoYY,3087
|
|
1869
1899
|
windmill_api/models/get_group_response_200_extra_perms.py,sha256=q1U2BWdOWRzK3eHiZlTOS8o9ag5cFvBQFqVBHpDitBc,1315
|
|
1870
|
-
windmill_api/models/get_http_trigger_response_200.py,sha256=
|
|
1900
|
+
windmill_api/models/get_http_trigger_response_200.py,sha256=AJ9QukoVe5PZrioXSH657iM-PQMZ-i2MqyyVylP4j58,7896
|
|
1871
1901
|
windmill_api/models/get_http_trigger_response_200_authentication_method.py,sha256=27OTx0-AgIYmKrBsOZpCKKPmnT8OnFKruUcmmR7eSRw,312
|
|
1872
1902
|
windmill_api/models/get_http_trigger_response_200_extra_perms.py,sha256=5UVrOgBBmWOUDmXGFKJqcUJ2Zb6Cv2cOKNBTDoMHfe4,1348
|
|
1873
1903
|
windmill_api/models/get_http_trigger_response_200_http_method.py,sha256=SiFfXYbLQeIe2eshsdUkkiQbdmBRvE2msJwsKRc-prY,232
|
|
@@ -2448,7 +2478,7 @@ windmill_api/models/global_whoami_response_200_login_type.py,sha256=grlKtkJE27qx
|
|
|
2448
2478
|
windmill_api/models/group.py,sha256=yEfHcI9FEtk1tV6RS9B3r_vAPK0rqNCCLgIJoLAUZ8M,2890
|
|
2449
2479
|
windmill_api/models/group_extra_perms.py,sha256=hn0wzgNVtx0HO3XwPsVOie8BJpV6-FypTN5u_851dvg,1236
|
|
2450
2480
|
windmill_api/models/http_method.py,sha256=JQ01zN1w-a5wLW9fcb522rWrmwwJwAY0V5gnWDN_TjU,207
|
|
2451
|
-
windmill_api/models/http_trigger.py,sha256=
|
|
2481
|
+
windmill_api/models/http_trigger.py,sha256=vDBhOPjEIvnpdQOPpg0yZk8NpgEDvKAZo2RHaUhqKfE,7424
|
|
2452
2482
|
windmill_api/models/http_trigger_authentication_method.py,sha256=wFUsd7a-HE98BoadQk7kVOhZu4dev1JmMuLu21IqyZU,298
|
|
2453
2483
|
windmill_api/models/http_trigger_extra_perms.py,sha256=zoXtrNWbIaURFZKJ2TJlzI3oScR9gJMuhvZdWxRqoGE,1269
|
|
2454
2484
|
windmill_api/models/http_trigger_http_method.py,sha256=XqInjulsyRD4_aj3Qnao8L8iyoyQkmcciKvHDOW5xjU,218
|
|
@@ -2905,7 +2935,7 @@ windmill_api/models/list_global_settings_response_200_item.py,sha256=U8fLOxv7Tr1
|
|
|
2905
2935
|
windmill_api/models/list_global_settings_response_200_item_value.py,sha256=BwZxPwY1kY_fl9sB6cg8dWtMPGLgKYUpx3ya1qDLcHc,1360
|
|
2906
2936
|
windmill_api/models/list_groups_response_200_item.py,sha256=xtTEjbZ6Y6EDyMOfSJ0C-xnsZFFHpeDxt85OC-Dl5sw,3170
|
|
2907
2937
|
windmill_api/models/list_groups_response_200_item_extra_perms.py,sha256=XQmY08M-IhwS1TigMZI7hEcnBJu2Gu13lsTg87xIeXk,1348
|
|
2908
|
-
windmill_api/models/list_http_triggers_response_200_item.py,sha256=
|
|
2938
|
+
windmill_api/models/list_http_triggers_response_200_item.py,sha256=qCmX8iy5Ggsp6vYnEI-xFRLzXwJEweM8cNLngYFyghA,8111
|
|
2909
2939
|
windmill_api/models/list_http_triggers_response_200_item_authentication_method.py,sha256=bTDFY2R5_XrnIinH8z7pqmRmOYPtQdIJGMdihl_f17w,318
|
|
2910
2940
|
windmill_api/models/list_http_triggers_response_200_item_extra_perms.py,sha256=ZHjuezxB-TZOyqS74P_s--E9uC0jiHR-SFnTg2InGiQ,1381
|
|
2911
2941
|
windmill_api/models/list_http_triggers_response_200_item_http_method.py,sha256=SQJQdl7yA0_V-lObcmCHc-_crescQPx9XNq4dY4x3is,238
|
|
@@ -3306,7 +3336,7 @@ windmill_api/models/mqtt_v3_config.py,sha256=3j8pQH0HuWvP-xIycrQr54OwEkwXz3bmmAt
|
|
|
3306
3336
|
windmill_api/models/mqtt_v5_config.py,sha256=YYb3xNFywK6WuR8X12RyZTGb4jswLxkYSWOLU4wW2LM,2331
|
|
3307
3337
|
windmill_api/models/nats_trigger.py,sha256=vTQapTH6zDLcUHlnx-26S2KfSJ6YL_nx2KSyNR7CUHc,5953
|
|
3308
3338
|
windmill_api/models/nats_trigger_extra_perms.py,sha256=6YD7NVvfKfJS3uP0okA3GXfIfIhzi8D1GJhGr7Bkuto,1269
|
|
3309
|
-
windmill_api/models/new_http_trigger.py,sha256=
|
|
3339
|
+
windmill_api/models/new_http_trigger.py,sha256=rWTl8idSSlz4euIFvSa0xxrxIHZU7rzjsJ68NR--Gh4,6462
|
|
3310
3340
|
windmill_api/models/new_http_trigger_authentication_method.py,sha256=hEWgnSRV92738oCrJKzMYx-xe4y5G4kjc-bq6ud24Mo,301
|
|
3311
3341
|
windmill_api/models/new_http_trigger_http_method.py,sha256=QlXmwmePd0Cd-Y571W4w5fj9o1Wxu6C3V5yBOrwHx7g,221
|
|
3312
3342
|
windmill_api/models/new_http_trigger_static_asset_config.py,sha256=5gdylsbIDInlQhTvrZ4nYnVGV6eHSmP6pb0So1S7Gi8,2073
|
|
@@ -3476,6 +3506,11 @@ windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_user_grou
|
|
|
3476
3506
|
windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_user_groups_required_type_1_type.py,sha256=RkD1QVgKg-kw-SB1uMH75mqar56qaO3U3va2GMRbBxQ,205
|
|
3477
3507
|
windmill_api/models/openai_sync_flow_by_path_json_body.py,sha256=tleP3PuyE3Hji02ZesT6mz7hE_aOzSY2ISXx266n73w,1310
|
|
3478
3508
|
windmill_api/models/openai_sync_script_by_path_json_body.py,sha256=otE-lUgaTQdAjgVhtgaS3AhaFlbmNa3dXtC1B3JAwgU,1320
|
|
3509
|
+
windmill_api/models/openapi_http_route_filters.py,sha256=r9KWgCGDu2rzhkOJTwe58kvTvqRFbeF_P-yijI7ViN8,2027
|
|
3510
|
+
windmill_api/models/openapi_spec_format.py,sha256=FIMI3-_1Ew4Ss35VWSryrSX4xT6iUl_V2_TY7unsARI,158
|
|
3511
|
+
windmill_api/models/openapi_v3_info.py,sha256=pVfZkFBuh5ShYzQ79P-eAavV5NT72wJsx0Dvi1L-DFk,3861
|
|
3512
|
+
windmill_api/models/openapi_v3_info_contact.py,sha256=Y073_rkGI2FtGIshaP3COKwr7ozvBTMpElVF1dMHFKQ,2001
|
|
3513
|
+
windmill_api/models/openapi_v3_info_license.py,sha256=AS4045TxMvvi01jl4Sn4U2w4_5H_O75-HqUPHx5Qmbk,2010
|
|
3479
3514
|
windmill_api/models/operator_settings.py,sha256=bNvDttS8ExLYeJoPNtZ3S1IaTb1vtlphK5pFdnKRGJE,3262
|
|
3480
3515
|
windmill_api/models/overwrite_instance_groups_json_body_item.py,sha256=wzZIgEEdLLWYGFSx28kqe75BAGrGC8HF8EjIqaYKFZU,3093
|
|
3481
3516
|
windmill_api/models/path_flow.py,sha256=aXVE4j005SuxXLX8nSDkCfrBow1HNWfF2DMGdTD12HI,2174
|
|
@@ -3717,6 +3752,7 @@ windmill_api/models/run_slack_message_test_job_json_body.py,sha256=hmvKK14zw6NLQ
|
|
|
3717
3752
|
windmill_api/models/run_teams_message_test_job_json_body.py,sha256=vl2ShSZHll-qmY56_rDDgfwey3-5Ly-tdr75HrDvvZA,2258
|
|
3718
3753
|
windmill_api/models/run_wait_result_flow_by_path_json_body.py,sha256=9Xd5a3NOw7dW3N1nYnYGZTwLce4OsQ2zFgNohkYPpPY,1328
|
|
3719
3754
|
windmill_api/models/run_wait_result_script_by_path_json_body.py,sha256=A9DYR4LtlpOptE5x0XQ34vL49CAPTMookm5MBwIcA3g,1338
|
|
3755
|
+
windmill_api/models/runnable_kind.py,sha256=Xt8LGQNupnt-GdNcX-q1bDPYelKu7stBq1eZaia7vX8,157
|
|
3720
3756
|
windmill_api/models/runnable_type.py,sha256=O3xF0yUygkzkIB2z1wJD431xu1EyV4CQ9fOBciFbixk,203
|
|
3721
3757
|
windmill_api/models/s3_object.py,sha256=bvlEIWefxoWjqga7AbboBQUO3hzOUBY4gf65OCF3Uos,2224
|
|
3722
3758
|
windmill_api/models/s3_resource.py,sha256=PDJs2EFbE07SbKJ7P36y3kG2uGjldHoYyHK_omOyyfo,2773
|
|
@@ -3864,7 +3900,7 @@ windmill_api/models/update_gcp_trigger_json_body_delivery_config.py,sha256=10kea
|
|
|
3864
3900
|
windmill_api/models/update_gcp_trigger_json_body_delivery_type.py,sha256=ojJb6Nsuj8gYu7pmFVfb4VO2WJC9PXhZ3MGGKu9_Oc8,177
|
|
3865
3901
|
windmill_api/models/update_gcp_trigger_json_body_subscription_mode.py,sha256=L97Z6hp19i5tbkkoUbdhQfoucqYKoHcg-iMVGVxViVw,207
|
|
3866
3902
|
windmill_api/models/update_group_json_body.py,sha256=6HoxgdpSBftto-CgPVzh8beTX6oWROAaBf-tZQn5evI,1583
|
|
3867
|
-
windmill_api/models/update_http_trigger_json_body.py,sha256=
|
|
3903
|
+
windmill_api/models/update_http_trigger_json_body.py,sha256=CHwcCTM1v8Z_MNnDFE-AxVS591SzfavaZYnUJPisEzA,6841
|
|
3868
3904
|
windmill_api/models/update_http_trigger_json_body_authentication_method.py,sha256=6pcKaox-FV_HvPxrwNI6kCUPdm4m5hOwwmMG2fDAPl4,312
|
|
3869
3905
|
windmill_api/models/update_http_trigger_json_body_http_method.py,sha256=3VNz40Qjv2E3_r5cgVYUpNy2Y--0GWFOnVHeWP7LeZI,232
|
|
3870
3906
|
windmill_api/models/update_http_trigger_json_body_static_asset_config.py,sha256=pn_iTJUz1o09IdUMCuK-KCr-GnkwaZbrYVMnlCIq2NA,2134
|
|
@@ -3919,6 +3955,9 @@ windmill_api/models/user_usage.py,sha256=3ePY0rntlxIaDIe7iKA7U-taV3OIsR90QWH71zO
|
|
|
3919
3955
|
windmill_api/models/user_workspace_list.py,sha256=5xDEkP2JoQEzVmY444NGT-wIeColo4aespbGBFZYGnQ,2325
|
|
3920
3956
|
windmill_api/models/user_workspace_list_workspaces_item.py,sha256=Y-Aq1H1xtQFBNq0z8bNg-xVkYptAmlYkWToTRG_OhpQ,3391
|
|
3921
3957
|
windmill_api/models/user_workspace_list_workspaces_item_operator_settings.py,sha256=TwAfSI-1t8zJhhGlgFW6_LHwxk5u8epGkImNPmydLiI,3432
|
|
3958
|
+
windmill_api/models/webhook_filters.py,sha256=VyJ6SBtlFltHm50FfT9EFM-Lg-PopqN1biHY91teJf0,2673
|
|
3959
|
+
windmill_api/models/webhook_filters_runnable_kind.py,sha256=Mr6lwWDXKNB-k3F98xHQc1TrL23I11jgBGCMAe93KvI,171
|
|
3960
|
+
windmill_api/models/webhook_filters_user_or_folder_regex.py,sha256=QaCUKHcYP9WtYtCwQ7mKe3gGJgxq7NzaWJRku_P0nMU,178
|
|
3922
3961
|
windmill_api/models/websocket_trigger.py,sha256=TehdcRtoJG4mckmjeHcdhKwF19y_1aFSjTWVdO_j0-c,9589
|
|
3923
3962
|
windmill_api/models/websocket_trigger_extra_perms.py,sha256=qKA9RR-E4lwQTM6Iu07Z6wvI_lMuoc6iWnqBEPGTbPU,1294
|
|
3924
3963
|
windmill_api/models/websocket_trigger_filters_item.py,sha256=Taenpp5uO6de_H3edj0-Bd9yb7zBKRnnihjK14AsqNs,1645
|
|
@@ -3977,7 +4016,7 @@ windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1li
|
|
|
3977
4016
|
windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
|
|
3978
4017
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
3979
4018
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
3980
|
-
windmill_api-1.
|
|
3981
|
-
windmill_api-1.
|
|
3982
|
-
windmill_api-1.
|
|
3983
|
-
windmill_api-1.
|
|
4019
|
+
windmill_api-1.498.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
4020
|
+
windmill_api-1.498.0.dist-info/METADATA,sha256=Fsj5AUMFsJh14IV44sp3SO6aJ83c8RgMH79fC4x0XRY,5023
|
|
4021
|
+
windmill_api-1.498.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
4022
|
+
windmill_api-1.498.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|