windmill-api 1.423.2__py3-none-any.whl → 1.425.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/job/count_completed_jobs.py +211 -0
- windmill_api/api/setting/workspace_acknowledge_all_critical_alerts.py +146 -0
- windmill_api/api/setting/workspace_acknowledge_critical_alert.py +160 -0
- windmill_api/api/setting/workspace_get_critical_alerts.py +219 -0
- windmill_api/api/setting/workspace_mute_critical_alerts_ui.py +164 -0
- windmill_api/api/user/set_login_type_for_user.py +105 -0
- windmill_api/api/user/set_password_for_user.py +105 -0
- windmill_api/api/worker/get_counts_of_jobs_waiting_per_tag.py +126 -0
- windmill_api/models/ai_resource.py +65 -0
- windmill_api/models/audit_log_operation.py +1 -1
- windmill_api/models/critical_alert.py +8 -0
- windmill_api/models/edit_copilot_config_json_body.py +21 -8
- windmill_api/models/edit_copilot_config_json_body_ai_resource.py +65 -0
- windmill_api/models/get_audit_log_response_200_operation.py +1 -1
- windmill_api/models/get_counts_of_jobs_waiting_per_tag_response_200.py +44 -0
- windmill_api/models/get_critical_alerts_response_200_item.py +8 -0
- windmill_api/models/get_settings_response_200.py +26 -7
- windmill_api/models/get_settings_response_200_ai_resource.py +65 -0
- windmill_api/models/list_audit_logs_response_200_item_operation.py +1 -1
- windmill_api/models/set_login_type_for_user_json_body.py +58 -0
- windmill_api/models/set_password_for_user_json_body.py +58 -0
- windmill_api/models/workspace_get_critical_alerts_response_200_item.py +109 -0
- windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py +58 -0
- {windmill_api-1.423.2.dist-info → windmill_api-1.425.0.dist-info}/METADATA +1 -1
- {windmill_api-1.423.2.dist-info → windmill_api-1.425.0.dist-info}/RECORD +27 -11
- {windmill_api-1.423.2.dist-info → windmill_api-1.425.0.dist-info}/LICENSE +0 -0
- {windmill_api-1.423.2.dist-info → windmill_api-1.425.0.dist-info}/WHEEL +0 -0
|
@@ -3,6 +3,7 @@ from enum import Enum
|
|
|
3
3
|
|
|
4
4
|
class ListAuditLogsResponse200ItemOperation(str, Enum):
|
|
5
5
|
ACCOUNT_DELETE = "account.delete"
|
|
6
|
+
AI_REQUEST = "ai.request"
|
|
6
7
|
APPS_CREATE = "apps.create"
|
|
7
8
|
APPS_DELETE = "apps.delete"
|
|
8
9
|
APPS_UPDATE = "apps.update"
|
|
@@ -42,7 +43,6 @@ class ListAuditLogsResponse200ItemOperation(str, Enum):
|
|
|
42
43
|
OAUTH_LOGIN = "oauth.login"
|
|
43
44
|
OAUTH_LOGIN_FAILURE = "oauth.login_failure"
|
|
44
45
|
OAUTH_SIGNUP = "oauth.signup"
|
|
45
|
-
OPENAI_REQUEST = "openai.request"
|
|
46
46
|
RESOURCES_CREATE = "resources.create"
|
|
47
47
|
RESOURCES_DELETE = "resources.delete"
|
|
48
48
|
RESOURCES_UPDATE = "resources.update"
|
|
@@ -0,0 +1,58 @@
|
|
|
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
|
+
T = TypeVar("T", bound="SetLoginTypeForUserJsonBody")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class SetLoginTypeForUserJsonBody:
|
|
11
|
+
"""
|
|
12
|
+
Attributes:
|
|
13
|
+
login_type (str):
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
login_type: str
|
|
17
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
18
|
+
|
|
19
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
20
|
+
login_type = self.login_type
|
|
21
|
+
|
|
22
|
+
field_dict: Dict[str, Any] = {}
|
|
23
|
+
field_dict.update(self.additional_properties)
|
|
24
|
+
field_dict.update(
|
|
25
|
+
{
|
|
26
|
+
"login_type": login_type,
|
|
27
|
+
}
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
return field_dict
|
|
31
|
+
|
|
32
|
+
@classmethod
|
|
33
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
34
|
+
d = src_dict.copy()
|
|
35
|
+
login_type = d.pop("login_type")
|
|
36
|
+
|
|
37
|
+
set_login_type_for_user_json_body = cls(
|
|
38
|
+
login_type=login_type,
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
set_login_type_for_user_json_body.additional_properties = d
|
|
42
|
+
return set_login_type_for_user_json_body
|
|
43
|
+
|
|
44
|
+
@property
|
|
45
|
+
def additional_keys(self) -> List[str]:
|
|
46
|
+
return list(self.additional_properties.keys())
|
|
47
|
+
|
|
48
|
+
def __getitem__(self, key: str) -> Any:
|
|
49
|
+
return self.additional_properties[key]
|
|
50
|
+
|
|
51
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
52
|
+
self.additional_properties[key] = value
|
|
53
|
+
|
|
54
|
+
def __delitem__(self, key: str) -> None:
|
|
55
|
+
del self.additional_properties[key]
|
|
56
|
+
|
|
57
|
+
def __contains__(self, key: str) -> bool:
|
|
58
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,58 @@
|
|
|
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
|
+
T = TypeVar("T", bound="SetPasswordForUserJsonBody")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class SetPasswordForUserJsonBody:
|
|
11
|
+
"""
|
|
12
|
+
Attributes:
|
|
13
|
+
password (str):
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
password: str
|
|
17
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
18
|
+
|
|
19
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
20
|
+
password = self.password
|
|
21
|
+
|
|
22
|
+
field_dict: Dict[str, Any] = {}
|
|
23
|
+
field_dict.update(self.additional_properties)
|
|
24
|
+
field_dict.update(
|
|
25
|
+
{
|
|
26
|
+
"password": password,
|
|
27
|
+
}
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
return field_dict
|
|
31
|
+
|
|
32
|
+
@classmethod
|
|
33
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
34
|
+
d = src_dict.copy()
|
|
35
|
+
password = d.pop("password")
|
|
36
|
+
|
|
37
|
+
set_password_for_user_json_body = cls(
|
|
38
|
+
password=password,
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
set_password_for_user_json_body.additional_properties = d
|
|
42
|
+
return set_password_for_user_json_body
|
|
43
|
+
|
|
44
|
+
@property
|
|
45
|
+
def additional_keys(self) -> List[str]:
|
|
46
|
+
return list(self.additional_properties.keys())
|
|
47
|
+
|
|
48
|
+
def __getitem__(self, key: str) -> Any:
|
|
49
|
+
return self.additional_properties[key]
|
|
50
|
+
|
|
51
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
52
|
+
self.additional_properties[key] = value
|
|
53
|
+
|
|
54
|
+
def __delitem__(self, key: str) -> None:
|
|
55
|
+
del self.additional_properties[key]
|
|
56
|
+
|
|
57
|
+
def __contains__(self, key: str) -> bool:
|
|
58
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,109 @@
|
|
|
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 ..types import UNSET, Unset
|
|
9
|
+
|
|
10
|
+
T = TypeVar("T", bound="WorkspaceGetCriticalAlertsResponse200Item")
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
@_attrs_define
|
|
14
|
+
class WorkspaceGetCriticalAlertsResponse200Item:
|
|
15
|
+
"""
|
|
16
|
+
Attributes:
|
|
17
|
+
id (Union[Unset, int]): Unique identifier for the alert
|
|
18
|
+
alert_type (Union[Unset, str]): Type of alert (e.g., critical_error)
|
|
19
|
+
message (Union[Unset, str]): The message content of the alert
|
|
20
|
+
created_at (Union[Unset, datetime.datetime]): Time when the alert was created
|
|
21
|
+
acknowledged (Union[Unset, None, bool]): Acknowledgment status of the alert, can be true, false, or null if not
|
|
22
|
+
set
|
|
23
|
+
workspace_id (Union[Unset, None, str]): Workspace id if the alert is in the scope of a workspace
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
id: Union[Unset, int] = UNSET
|
|
27
|
+
alert_type: Union[Unset, str] = UNSET
|
|
28
|
+
message: Union[Unset, str] = UNSET
|
|
29
|
+
created_at: Union[Unset, datetime.datetime] = UNSET
|
|
30
|
+
acknowledged: Union[Unset, None, bool] = UNSET
|
|
31
|
+
workspace_id: Union[Unset, None, str] = UNSET
|
|
32
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
33
|
+
|
|
34
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
35
|
+
id = self.id
|
|
36
|
+
alert_type = self.alert_type
|
|
37
|
+
message = self.message
|
|
38
|
+
created_at: Union[Unset, str] = UNSET
|
|
39
|
+
if not isinstance(self.created_at, Unset):
|
|
40
|
+
created_at = self.created_at.isoformat()
|
|
41
|
+
|
|
42
|
+
acknowledged = self.acknowledged
|
|
43
|
+
workspace_id = self.workspace_id
|
|
44
|
+
|
|
45
|
+
field_dict: Dict[str, Any] = {}
|
|
46
|
+
field_dict.update(self.additional_properties)
|
|
47
|
+
field_dict.update({})
|
|
48
|
+
if id is not UNSET:
|
|
49
|
+
field_dict["id"] = id
|
|
50
|
+
if alert_type is not UNSET:
|
|
51
|
+
field_dict["alert_type"] = alert_type
|
|
52
|
+
if message is not UNSET:
|
|
53
|
+
field_dict["message"] = message
|
|
54
|
+
if created_at is not UNSET:
|
|
55
|
+
field_dict["created_at"] = created_at
|
|
56
|
+
if acknowledged is not UNSET:
|
|
57
|
+
field_dict["acknowledged"] = acknowledged
|
|
58
|
+
if workspace_id is not UNSET:
|
|
59
|
+
field_dict["workspace_id"] = workspace_id
|
|
60
|
+
|
|
61
|
+
return field_dict
|
|
62
|
+
|
|
63
|
+
@classmethod
|
|
64
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
65
|
+
d = src_dict.copy()
|
|
66
|
+
id = d.pop("id", UNSET)
|
|
67
|
+
|
|
68
|
+
alert_type = d.pop("alert_type", UNSET)
|
|
69
|
+
|
|
70
|
+
message = d.pop("message", UNSET)
|
|
71
|
+
|
|
72
|
+
_created_at = d.pop("created_at", UNSET)
|
|
73
|
+
created_at: Union[Unset, datetime.datetime]
|
|
74
|
+
if isinstance(_created_at, Unset):
|
|
75
|
+
created_at = UNSET
|
|
76
|
+
else:
|
|
77
|
+
created_at = isoparse(_created_at)
|
|
78
|
+
|
|
79
|
+
acknowledged = d.pop("acknowledged", UNSET)
|
|
80
|
+
|
|
81
|
+
workspace_id = d.pop("workspace_id", UNSET)
|
|
82
|
+
|
|
83
|
+
workspace_get_critical_alerts_response_200_item = cls(
|
|
84
|
+
id=id,
|
|
85
|
+
alert_type=alert_type,
|
|
86
|
+
message=message,
|
|
87
|
+
created_at=created_at,
|
|
88
|
+
acknowledged=acknowledged,
|
|
89
|
+
workspace_id=workspace_id,
|
|
90
|
+
)
|
|
91
|
+
|
|
92
|
+
workspace_get_critical_alerts_response_200_item.additional_properties = d
|
|
93
|
+
return workspace_get_critical_alerts_response_200_item
|
|
94
|
+
|
|
95
|
+
@property
|
|
96
|
+
def additional_keys(self) -> List[str]:
|
|
97
|
+
return list(self.additional_properties.keys())
|
|
98
|
+
|
|
99
|
+
def __getitem__(self, key: str) -> Any:
|
|
100
|
+
return self.additional_properties[key]
|
|
101
|
+
|
|
102
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
103
|
+
self.additional_properties[key] = value
|
|
104
|
+
|
|
105
|
+
def __delitem__(self, key: str) -> None:
|
|
106
|
+
del self.additional_properties[key]
|
|
107
|
+
|
|
108
|
+
def __contains__(self, key: str) -> bool:
|
|
109
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar, Union
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
from ..types import UNSET, Unset
|
|
7
|
+
|
|
8
|
+
T = TypeVar("T", bound="WorkspaceMuteCriticalAlertsUIJsonBody")
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@_attrs_define
|
|
12
|
+
class WorkspaceMuteCriticalAlertsUIJsonBody:
|
|
13
|
+
"""
|
|
14
|
+
Attributes:
|
|
15
|
+
mute_critical_alerts (Union[Unset, bool]): Whether critical alerts should be muted. Example: True.
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
mute_critical_alerts: Union[Unset, bool] = UNSET
|
|
19
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
20
|
+
|
|
21
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
22
|
+
mute_critical_alerts = self.mute_critical_alerts
|
|
23
|
+
|
|
24
|
+
field_dict: Dict[str, Any] = {}
|
|
25
|
+
field_dict.update(self.additional_properties)
|
|
26
|
+
field_dict.update({})
|
|
27
|
+
if mute_critical_alerts is not UNSET:
|
|
28
|
+
field_dict["mute_critical_alerts"] = mute_critical_alerts
|
|
29
|
+
|
|
30
|
+
return field_dict
|
|
31
|
+
|
|
32
|
+
@classmethod
|
|
33
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
34
|
+
d = src_dict.copy()
|
|
35
|
+
mute_critical_alerts = d.pop("mute_critical_alerts", UNSET)
|
|
36
|
+
|
|
37
|
+
workspace_mute_critical_alerts_ui_json_body = cls(
|
|
38
|
+
mute_critical_alerts=mute_critical_alerts,
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
workspace_mute_critical_alerts_ui_json_body.additional_properties = d
|
|
42
|
+
return workspace_mute_critical_alerts_ui_json_body
|
|
43
|
+
|
|
44
|
+
@property
|
|
45
|
+
def additional_keys(self) -> List[str]:
|
|
46
|
+
return list(self.additional_properties.keys())
|
|
47
|
+
|
|
48
|
+
def __getitem__(self, key: str) -> Any:
|
|
49
|
+
return self.additional_properties[key]
|
|
50
|
+
|
|
51
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
52
|
+
self.additional_properties[key] = value
|
|
53
|
+
|
|
54
|
+
def __delitem__(self, key: str) -> None:
|
|
55
|
+
del self.additional_properties[key]
|
|
56
|
+
|
|
57
|
+
def __contains__(self, key: str) -> bool:
|
|
58
|
+
return key in self.additional_properties
|
|
@@ -141,6 +141,7 @@ windmill_api/api/job/cancel_queued_job.py,sha256=Kp_NOqCQhkxgw96ObmkCQq5dNsJL58W
|
|
|
141
141
|
windmill_api/api/job/cancel_selection.py,sha256=4PDSj4_UAjhdIWKQELAllLZnuiUWqCxHe3-btNzuAuI,4110
|
|
142
142
|
windmill_api/api/job/cancel_suspended_job_get.py,sha256=JGZmXW4tcQsTUsYO6nwF0Prw54KzgwyJ0ZdnNLTxdeQ,3357
|
|
143
143
|
windmill_api/api/job/cancel_suspended_job_post.py,sha256=ztNkGEIPP6Hpo5s6qdS77z2r3d7LpFEA0uzH-44-tmU,3824
|
|
144
|
+
windmill_api/api/job/count_completed_jobs.py,sha256=RZJjhX6aM3LsuPOoZWOUDQStKlTai_H_5ZEXsADOENM,6292
|
|
144
145
|
windmill_api/api/job/count_jobs_by_tag.py,sha256=wi-3OUWC8zqJsn2zuUrAH9i4zl0rbgw_z0QqU1QtNPY,5219
|
|
145
146
|
windmill_api/api/job/create_job_signature.py,sha256=gZTRawMMP0ax7uFZjULhTs-7cnV9ZFRc0yKMRDoBvew,3193
|
|
146
147
|
windmill_api/api/job/delete_completed_job.py,sha256=oHCZcuHd7AsHB5ouCMzYgK7O6vlDDsexOHogrpTAVPM,4258
|
|
@@ -286,6 +287,10 @@ windmill_api/api/setting/test_license_key.py,sha256=p07Z9-7WhuP-sqnNK6ek22luluio
|
|
|
286
287
|
windmill_api/api/setting/test_metadata.py,sha256=HfTrcXW3izX864BmoSJLU5INIKRCxG1YLI7v0gn_MQc,2293
|
|
287
288
|
windmill_api/api/setting/test_object_storage_config.py,sha256=w94n0M1zm3I71m5rNFHFbP1p2198d_7JZ3Dva_q_Zlk,2577
|
|
288
289
|
windmill_api/api/setting/test_smtp.py,sha256=gkocvsILYflJ_FVjF6GrKStPQJJnr5egYMDIkJAlkQY,2419
|
|
290
|
+
windmill_api/api/setting/workspace_acknowledge_all_critical_alerts.py,sha256=3BUvYc-RmD-Ig7B4NBSAn5s3bcVQNDU1b6A1uLnMGxA,3723
|
|
291
|
+
windmill_api/api/setting/workspace_acknowledge_critical_alert.py,sha256=sPAkFHvX4T6kCgrrcthb_khzVduPpwoGsx0l7_kaHTk,3872
|
|
292
|
+
windmill_api/api/setting/workspace_get_critical_alerts.py,sha256=xxlO3JcSx85g2ZlhXP3Y3V9HvMKkRVDuq0L5G8asH3Q,7294
|
|
293
|
+
windmill_api/api/setting/workspace_mute_critical_alerts_ui.py,sha256=sOCPqan01QuzQWMbCB1wU3CuJwzWWGrZ9C2chChyxBA,4427
|
|
289
294
|
windmill_api/api/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
290
295
|
windmill_api/api/settings/backend_uptodate.py,sha256=kFh74vbPPw5-fyy6jXZKdt46_iaL_Cku-X15SUUZr9c,2026
|
|
291
296
|
windmill_api/api/settings/backend_version.py,sha256=wzB3F0zVJA0-7RWsM_slMCRoAhC-iaTi3SDgkOJoEtU,2021
|
|
@@ -324,7 +329,9 @@ windmill_api/api/user/login.py,sha256=vxrh69CgmIMyLqdREbMZrrNH3TCRb5EHhj3c78oPqY
|
|
|
324
329
|
windmill_api/api/user/login_with_oauth.py,sha256=nWt_bm8O0lqEehUzGAt7LNuU58EqB8Du0QdC_u7b7Eg,2771
|
|
325
330
|
windmill_api/api/user/logout.py,sha256=PRFiLX2Iie9w26XbF0g7emWSbtTCYC7NXpHyDg9E_jI,2000
|
|
326
331
|
windmill_api/api/user/refresh_user_token.py,sha256=QhdRaBqAfAM-mEebRB-gZaJIgGET7JCndmDWIJgM9xs,2045
|
|
332
|
+
windmill_api/api/user/set_login_type_for_user.py,sha256=YYnAdE28yTzA2GPlPw8ZUGuClbMr-tkUosEdBfMiqRg,2766
|
|
327
333
|
windmill_api/api/user/set_password.py,sha256=WOdYlech3ywrL3qj0wJ9TBHkB2YkNcs7K5dB7XP6cD0,2445
|
|
334
|
+
windmill_api/api/user/set_password_for_user.py,sha256=bXhg23BiMZmn5tVycvMMHhZoD9P9Qc6dAD4onQ60CL8,2755
|
|
328
335
|
windmill_api/api/user/update_tutorial_progress.py,sha256=2oD5-k1NyQ7sG7sSx81h5NP25di9r88pcmzMORBgCrc,2553
|
|
329
336
|
windmill_api/api/user/update_user.py,sha256=pyneZS5dXGD7FchhnHtR96Ob3kANYnpod2vDAbThQoM,2917
|
|
330
337
|
windmill_api/api/user/username_to_email.py,sha256=ytYMLD7uK89B9C1wGMb86_7LGCT7kq-3umRPIAdHanw,2512
|
|
@@ -351,6 +358,7 @@ windmill_api/api/websocket_trigger/update_websocket_trigger.py,sha256=2X0Ht_HiKg
|
|
|
351
358
|
windmill_api/api/worker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
352
359
|
windmill_api/api/worker/exists_worker_with_tag.py,sha256=sh0LvJMp8V_dYG5b4Ok26j-_yl2MlAiHOQH1YkLhqfs,3563
|
|
353
360
|
windmill_api/api/worker/ge_default_tags.py,sha256=vzfZnDN3NWs2-FzpgMnIkuVVL5jzaS4V90g37mKR4wM,3193
|
|
361
|
+
windmill_api/api/worker/get_counts_of_jobs_waiting_per_tag.py,sha256=Ny3bXeZFWzY7HE9AAyP3ehMbugPAXgEYnNOfCpSFLaU,3717
|
|
354
362
|
windmill_api/api/worker/get_custom_tags.py,sha256=5hJFle26APsV6LycaiYQBGzv0nNheoe9fZIkvwzH1Vs,3424
|
|
355
363
|
windmill_api/api/worker/get_queue_metrics.py,sha256=pTH_dMhgOsTMnPw8brDlgtoT353jtR4SWY-liHrXfvs,3739
|
|
356
364
|
windmill_api/api/worker/is_default_tags_per_workspace.py,sha256=WtwYW4uGzb7UefVWb5ZmKyRVCFzZ61yoNMiYOtYQg_0,3144
|
|
@@ -410,6 +418,7 @@ windmill_api/models/add_owner_to_folder_json_body.py,sha256=x6l4UjRcnCFhiIGWeWZA
|
|
|
410
418
|
windmill_api/models/add_user_json_body.py,sha256=kz8N_62Ll9o0TpJIVGshzhrVrupE83ADg4n54e2Ev6g,2129
|
|
411
419
|
windmill_api/models/add_user_to_group_json_body.py,sha256=SFC52GuyKnAuVNmTxkntgLR8-juA7EFufaQQxRhHbbI,1615
|
|
412
420
|
windmill_api/models/add_user_to_instance_group_json_body.py,sha256=V69z1wJycENQ_bzm7gyl2LkC-Mc4SIJHYpHiXzjo8AU,1537
|
|
421
|
+
windmill_api/models/ai_resource.py,sha256=IPu4iv6mfrKTTRbpMQN11ZqYcA7id9F-Jl0MV0OsWH0,1594
|
|
413
422
|
windmill_api/models/app_history.py,sha256=Zi_The8LlMR_uMAAFW5S9kDuxRIYOy5xNda7gHamDfQ,1816
|
|
414
423
|
windmill_api/models/app_with_last_version.py,sha256=TmtgFDuI0kWzXsWrYSkl_1TbHen2DHVd4NuFZa-vtjg,4472
|
|
415
424
|
windmill_api/models/app_with_last_version_execution_mode.py,sha256=qIImxSIPQynbsACGBqIJhB-8bi-8xi4hMg_YyBAtb38,214
|
|
@@ -441,7 +450,7 @@ windmill_api/models/archive_script_by_hash_response_200_language.py,sha256=hEssU
|
|
|
441
450
|
windmill_api/models/archive_script_by_hash_response_200_schema.py,sha256=FbLGIuF9u_TlsUjZE6t5o4EC98CHK61RYVwCfcw7ucM,1350
|
|
442
451
|
windmill_api/models/audit_log.py,sha256=ITxGdJ2nBJoXj7LvgNb_5dF-Y5fW_UPZ6hucDMP1SKs,3626
|
|
443
452
|
windmill_api/models/audit_log_action_kind.py,sha256=T0fGVIol3ppuHzImKXcLRMzjFDIcPTOcwa9geVcouBk,217
|
|
444
|
-
windmill_api/models/audit_log_operation.py,sha256=
|
|
453
|
+
windmill_api/models/audit_log_operation.py,sha256=Be0y5HK1MOjj0Bjx2kld8UKVI_PXqtwMFt2qZyV0IQE,3720
|
|
445
454
|
windmill_api/models/audit_log_parameters.py,sha256=942p2zW1l989YhRoD-tzZkzm9L9WCqPVFEytAipdc1E,1248
|
|
446
455
|
windmill_api/models/autoscaling_event.py,sha256=0WFnvn6WTe_bJ6YGwZrhkEHUfSGR0v-4ZN8WAVAUTqE,3367
|
|
447
456
|
windmill_api/models/branch_all.py,sha256=rJO_UgIwKgLwndTozpK_l2czSMI8ynmSzHIj3stwlqk,2560
|
|
@@ -661,7 +670,7 @@ windmill_api/models/create_websocket_trigger_json_body_initial_messages_item_typ
|
|
|
661
670
|
windmill_api/models/create_websocket_trigger_json_body_url_runnable_args.py,sha256=OAFtivMu4oZtifEkw15s2mFnpaXTxFOVO5BYEKXXk00,1398
|
|
662
671
|
windmill_api/models/create_workspace.py,sha256=WO8QwIF11s_Lxgode8eC59QmBsPiepnfes6vIMcJihs,1867
|
|
663
672
|
windmill_api/models/create_workspace_json_body.py,sha256=EH0XdQbDncCaLa7qWY5peYzj3cZeUGSwmwyLa_09IDg,1913
|
|
664
|
-
windmill_api/models/critical_alert.py,sha256=
|
|
673
|
+
windmill_api/models/critical_alert.py,sha256=hOEwvjlC0C_rl3CRrei8BFFZQFvR_iTQ9eBfE8tCUyo,3635
|
|
665
674
|
windmill_api/models/decline_invite_json_body.py,sha256=APY6WrYS2XvpWr0TefDZUSgNN-1gICXnmDHmit9MI88,1553
|
|
666
675
|
windmill_api/models/delete_completed_job_response_200.py,sha256=_tYQvnyE_osYdjztCUN31_6DXWVjlo4Gx1XTTI3ryLg,12995
|
|
667
676
|
windmill_api/models/delete_completed_job_response_200_args.py,sha256=hVhS2-tklk9gIRyCrY3-3wA0_Sq80Jpr2WmOJH91x5Q,1332
|
|
@@ -762,7 +771,8 @@ windmill_api/models/duckdb_connection_settings_response_200.py,sha256=08YV2mUekj
|
|
|
762
771
|
windmill_api/models/duckdb_connection_settings_v2_json_body.py,sha256=PXHb4NxCEnvJwyUqUqnYEhz_O_3Qfnty0qkkLogTjk8,1763
|
|
763
772
|
windmill_api/models/duckdb_connection_settings_v2_response_200.py,sha256=6y4BukqSCVpeouqy30nrcj49_74TrkZ4s42GdfOvPmE,1749
|
|
764
773
|
windmill_api/models/edit_auto_invite_json_body.py,sha256=j6RkvSzCakhMfuZrKLHw6KWr961KJwYdSAmuaakqKrI,2174
|
|
765
|
-
windmill_api/models/edit_copilot_config_json_body.py,sha256=
|
|
774
|
+
windmill_api/models/edit_copilot_config_json_body.py,sha256=3U2L0Tn4ekz-lCrtlLhQbjMetjCcr95U-BHRWRzOQU0,2713
|
|
775
|
+
windmill_api/models/edit_copilot_config_json_body_ai_resource.py,sha256=UmhYYrMGgYTfLA46tPUtVOlGEUeHZQsfBB7VrJZP3-8,1734
|
|
766
776
|
windmill_api/models/edit_default_scripts_json_body.py,sha256=ZStD18RpNC3spa5hcVcIc_Fv0tsFlBnZ9sw85OOPGQk,2527
|
|
767
777
|
windmill_api/models/edit_deploy_to_json_body.py,sha256=sLAkpLZdvhIu671Sz-AycSlpKfo1rSh4UM2JiZ_q9mA,1613
|
|
768
778
|
windmill_api/models/edit_error_handler_json_body.py,sha256=01ZCafsbWj458_zacBteZJBuiAt3bio2G5FEYvF--jA,3552
|
|
@@ -1296,7 +1306,7 @@ windmill_api/models/get_app_history_by_path_response_200_item.py,sha256=6geih72I
|
|
|
1296
1306
|
windmill_api/models/get_app_latest_version_response_200.py,sha256=0P07KKSfuS1kyydSlHfdWlUB6MvzImCj9qr4MSF588M,1928
|
|
1297
1307
|
windmill_api/models/get_audit_log_response_200.py,sha256=AhWhdZqlUHBUWvfR8nsv-rgzP5Dka4SIr7c0pwgFHSg,3969
|
|
1298
1308
|
windmill_api/models/get_audit_log_response_200_action_kind.py,sha256=vE6D2hckbbBcss79wNlEUUvWoFGTh-d-jSiGSJZWA5I,231
|
|
1299
|
-
windmill_api/models/get_audit_log_response_200_operation.py,sha256=
|
|
1309
|
+
windmill_api/models/get_audit_log_response_200_operation.py,sha256=isQ_SuC2e1vG7PWJOb5wLIUyewxJXtnxIs3P6IJt3mg,3734
|
|
1300
1310
|
windmill_api/models/get_audit_log_response_200_parameters.py,sha256=0DpzZiiQe-WPK1f_uOg0m1bktbs1O9iJRn3WgGtIEEg,1327
|
|
1301
1311
|
windmill_api/models/get_completed_count_response_200.py,sha256=cudwRJHt5jvqGetkTemW-1aOSR5ni5znOGrkvpSR9jE,1621
|
|
1302
1312
|
windmill_api/models/get_completed_job_response_200.py,sha256=WU9M3CKuwAImLhWwvMrRW1x0vHyOpSqJ_PfkjzMM5dA,12875
|
|
@@ -1385,7 +1395,8 @@ windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_
|
|
|
1385
1395
|
windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py,sha256=uX0SlnpjRQnc4k3eyBkfc_2zzj_vuMWrydXVV3WZOjQ,2447
|
|
1386
1396
|
windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py,sha256=u-YheCK0vWC6q48xofM368suCbrdf0cLeJ4nbNc1yoU,220
|
|
1387
1397
|
windmill_api/models/get_completed_job_result_maybe_response_200.py,sha256=no4BzZB_3zRVawLJh9ZsjH5ntuZ8Zj90QGYQd7mFmaI,2333
|
|
1388
|
-
windmill_api/models/
|
|
1398
|
+
windmill_api/models/get_counts_of_jobs_waiting_per_tag_response_200.py,sha256=_e3A1jqpV0IWOk2SR8y17jnbFBZZlRNZWp3UbgiQYtA,1371
|
|
1399
|
+
windmill_api/models/get_critical_alerts_response_200_item.py,sha256=NA0q_5NYETZ0IXwSEfzThhMe-u1XggG2sV5csENxfKk,3742
|
|
1389
1400
|
windmill_api/models/get_default_scripts_response_200.py,sha256=ekfscpG1XtNxHvpokDZ7pI0W6DAdITytKNg09XwSgtc,2537
|
|
1390
1401
|
windmill_api/models/get_deploy_to_response_200.py,sha256=xZHLxF4DVyJtjVYFRWhSC4gCu1nC1wIAHlvwB-dV8EU,1623
|
|
1391
1402
|
windmill_api/models/get_flow_by_path_response_200.py,sha256=v8FxxokWZhVdKXEfqA8mdmZIzEMI_gCiNjfilZNAC5k,7321
|
|
@@ -1891,7 +1902,8 @@ windmill_api/models/get_script_by_path_with_draft_response_200_schema.py,sha256=
|
|
|
1891
1902
|
windmill_api/models/get_script_deployment_status_response_200.py,sha256=xmVrdonWouCGM_3MdoVNSuaAWN8Qt7erpLpfhfauU5c,1985
|
|
1892
1903
|
windmill_api/models/get_script_history_by_path_response_200_item.py,sha256=vc0iaH2j8BKXxXtjtEg7-lollyA5OxPLYoJsjSUiqc8,2009
|
|
1893
1904
|
windmill_api/models/get_script_latest_version_response_200.py,sha256=tQENYMrpuFKHrllSdlpHe-P_EnWq74-07mDWIfDEres,1983
|
|
1894
|
-
windmill_api/models/get_settings_response_200.py,sha256=
|
|
1905
|
+
windmill_api/models/get_settings_response_200.py,sha256=JsOBz1rb4huGOSjewH7Z2_mGmc53PcwIqe4JWgAmrGU,12902
|
|
1906
|
+
windmill_api/models/get_settings_response_200_ai_resource.py,sha256=nSn_PFUzUDWNJANgUl75by_lM2x_YbaFUZycC0SzZts,1716
|
|
1895
1907
|
windmill_api/models/get_settings_response_200_default_scripts.py,sha256=Jj7LAapGLNObPcReGeCxbFSgHJ-0V8FJc8hPKVyrhME,2580
|
|
1896
1908
|
windmill_api/models/get_settings_response_200_deploy_ui.py,sha256=ObNS_KBx9zQipqeKubJiNlzjBsVmNvpC0TZflBUkO2w,2892
|
|
1897
1909
|
windmill_api/models/get_settings_response_200_deploy_ui_include_type_item.py,sha256=iHsKsTEN-KL9dB_F9uzx7UUsYoIPZy5aEQ_ZviWQSBo,280
|
|
@@ -2279,7 +2291,7 @@ windmill_api/models/list_apps_response_200_item_extra_perms.py,sha256=bjc_b_rJa0
|
|
|
2279
2291
|
windmill_api/models/list_audit_logs_action_kind.py,sha256=HdR96iA6Tm6xhFS1X4fQz3IXdWvIp7dcoO-Hvy9PBW8,218
|
|
2280
2292
|
windmill_api/models/list_audit_logs_response_200_item.py,sha256=WB2fJgwgQaq1kzQGfGhN-J1KBXHl6QT_Vwvzhpxijt0,4114
|
|
2281
2293
|
windmill_api/models/list_audit_logs_response_200_item_action_kind.py,sha256=GxDy-KWMQnH2soLbfBzvuXIvtlkxM2xT2Sd5d5WkKq4,237
|
|
2282
|
-
windmill_api/models/list_audit_logs_response_200_item_operation.py,sha256=
|
|
2294
|
+
windmill_api/models/list_audit_logs_response_200_item_operation.py,sha256=FNjCW4DkLiB1LkLeO_CQyLQ1JPfxq3bIFPRmv8sGb6c,3740
|
|
2283
2295
|
windmill_api/models/list_audit_logs_response_200_item_parameters.py,sha256=q4xUQeAhgxiNi7k5T6HGkd3peGLpXr5E3-9d4JJr6nI,1360
|
|
2284
2296
|
windmill_api/models/list_autoscaling_events_response_200_item.py,sha256=cpgO8peKyXAJ7TVYMTKk7pJyw3RaUQBAIhMcP95edsw,3479
|
|
2285
2297
|
windmill_api/models/list_completed_jobs_response_200_item.py,sha256=mh1ybxxV414jtZfamB7ZZss-qofsK3NWzEF8ZLG3gsI,13151
|
|
@@ -3342,6 +3354,8 @@ windmill_api/models/set_default_error_or_recovery_handler_json_body_handler_type
|
|
|
3342
3354
|
windmill_api/models/set_environment_variable_json_body.py,sha256=V92Ay6bGHqR29swlX0-6VG4zt_jG6WnQKseaBbtekg4,1796
|
|
3343
3355
|
windmill_api/models/set_global_json_body.py,sha256=ui5MT-ZKL2r_B6Fq89gRrckzJ9r3tdT2BUm6n-0Cayk,1551
|
|
3344
3356
|
windmill_api/models/set_job_progress_json_body.py,sha256=Le3TfJmvk8OvbY7iJWhq7CRMbOlHZZ1WZ8ph4Y5CFnk,1901
|
|
3357
|
+
windmill_api/models/set_login_type_for_user_json_body.py,sha256=B9KSfpk_bU1tYGKFK68p3S89PNI-F4riH8nxRtuCh1o,1572
|
|
3358
|
+
windmill_api/models/set_password_for_user_json_body.py,sha256=5NIXryeSJWSBl2Q61_UwZrSHpJkTxX1IiLJ2qMK7R1k,1544
|
|
3345
3359
|
windmill_api/models/set_password_json_body.py,sha256=sw5-4v9a29sshOdlEDM-yIYk0oRS-lw8jC_CqanfznI,1503
|
|
3346
3360
|
windmill_api/models/set_schedule_enabled_json_body.py,sha256=g8JijrjCKNVOddrX70Dp3LvworWzDBkNTzNXHU80HvE,1533
|
|
3347
3361
|
windmill_api/models/set_websocket_trigger_enabled_json_body.py,sha256=7vo3qLPYnFxmZWMlZdJhxyVtG6Qf9Edi6hTGXuKCxgo,1576
|
|
@@ -3461,14 +3475,16 @@ windmill_api/models/workspace.py,sha256=yEkqUzztAeNjs2Aght0YTz51GrhTNuNYp2GtdWwV
|
|
|
3461
3475
|
windmill_api/models/workspace_default_scripts.py,sha256=TAOqlGzBp4x1g8fOcTThWpqpjxTDcJZ1yE0s-_yOsnc,2506
|
|
3462
3476
|
windmill_api/models/workspace_deploy_ui_settings.py,sha256=TGzzRl609jiVEVW4VwqeB98R8s-IyyEelRXGh7M3io4,2834
|
|
3463
3477
|
windmill_api/models/workspace_deploy_ui_settings_include_type_item.py,sha256=FG69aH7ZgQPLdSoHVJt6OMLkDehGp77XchvDiuOU1ec,275
|
|
3478
|
+
windmill_api/models/workspace_get_critical_alerts_response_200_item.py,sha256=HQd8yumoDpHZlWg_E1yF9ckjGU855bGruNYgiuLC1z0,3790
|
|
3464
3479
|
windmill_api/models/workspace_git_sync_settings.py,sha256=0OOwDEra0pYwFhCs3X2a38R3m8UY5Asxx9m-dTq13Io,4028
|
|
3465
3480
|
windmill_api/models/workspace_git_sync_settings_include_type_item.py,sha256=tAAP2BqURMwG8XQiTQVkS1TaCIcGT2gzHzJ4J6NPPo0,394
|
|
3466
3481
|
windmill_api/models/workspace_git_sync_settings_repositories_item.py,sha256=ZJFc1PVy25Ifv69k7zHMRD55fhVzfpmZDBy7w8lXa0A,4196
|
|
3467
3482
|
windmill_api/models/workspace_git_sync_settings_repositories_item_exclude_types_override_item.py,sha256=2v33qfdGJHHMPgdPvSgw6FTrYqStaZbobxI8ZISqk7c,419
|
|
3468
3483
|
windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1lixwUUXG6CXs,2037
|
|
3484
|
+
windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
|
|
3469
3485
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
3470
3486
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
3471
|
-
windmill_api-1.
|
|
3472
|
-
windmill_api-1.
|
|
3473
|
-
windmill_api-1.
|
|
3474
|
-
windmill_api-1.
|
|
3487
|
+
windmill_api-1.425.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
3488
|
+
windmill_api-1.425.0.dist-info/METADATA,sha256=bd1ek6o-LZd8WEBQ52b_uXpFUq-GV9tHEC90SuD1CZo,5023
|
|
3489
|
+
windmill_api-1.425.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
3490
|
+
windmill_api-1.425.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|