windmill-api 1.434.2__py3-none-any.whl → 1.435.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.

Files changed (27) hide show
  1. windmill_api/api/app/custom_path_exists.py +160 -0
  2. windmill_api/api/app/get_public_app_by_custom_path.py +152 -0
  3. windmill_api/api/setting/get_critical_alerts.py +13 -18
  4. windmill_api/api/setting/workspace_get_critical_alerts.py +13 -18
  5. windmill_api/models/app_with_last_version_w_draft.py +8 -0
  6. windmill_api/models/create_app_json_body.py +8 -0
  7. windmill_api/models/get_app_by_path_with_draft_response_200.py +8 -0
  8. windmill_api/models/get_critical_alerts_response_200.py +92 -0
  9. windmill_api/models/{get_critical_alerts_response_200_item.py → get_critical_alerts_response_200_alerts_item.py} +5 -5
  10. windmill_api/models/get_public_app_by_custom_path_response_200.py +153 -0
  11. windmill_api/models/get_public_app_by_custom_path_response_200_execution_mode.py +10 -0
  12. windmill_api/models/get_public_app_by_custom_path_response_200_extra_perms.py +44 -0
  13. windmill_api/models/get_public_app_by_custom_path_response_200_policy.py +159 -0
  14. windmill_api/models/get_public_app_by_custom_path_response_200_policy_execution_mode.py +10 -0
  15. windmill_api/models/get_public_app_by_custom_path_response_200_policy_s3_inputs_item.py +44 -0
  16. windmill_api/models/get_public_app_by_custom_path_response_200_policy_triggerables.py +70 -0
  17. windmill_api/models/get_public_app_by_custom_path_response_200_policy_triggerables_additional_property.py +44 -0
  18. windmill_api/models/get_public_app_by_custom_path_response_200_policy_triggerables_v2.py +70 -0
  19. windmill_api/models/get_public_app_by_custom_path_response_200_policy_triggerables_v2_additional_property.py +44 -0
  20. windmill_api/models/get_public_app_by_custom_path_response_200_value.py +44 -0
  21. windmill_api/models/update_app_json_body.py +8 -0
  22. windmill_api/models/workspace_get_critical_alerts_response_200.py +96 -0
  23. windmill_api/models/{workspace_get_critical_alerts_response_200_item.py → workspace_get_critical_alerts_response_200_alerts_item.py} +5 -5
  24. {windmill_api-1.434.2.dist-info → windmill_api-1.435.0.dist-info}/METADATA +1 -1
  25. {windmill_api-1.434.2.dist-info → windmill_api-1.435.0.dist-info}/RECORD +27 -12
  26. {windmill_api-1.434.2.dist-info → windmill_api-1.435.0.dist-info}/LICENSE +0 -0
  27. {windmill_api-1.434.2.dist-info → windmill_api-1.435.0.dist-info}/WHEEL +0 -0
@@ -0,0 +1,70 @@
1
+ from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar
2
+
3
+ from attrs import define as _attrs_define
4
+ from attrs import field as _attrs_field
5
+
6
+ if TYPE_CHECKING:
7
+ from ..models.get_public_app_by_custom_path_response_200_policy_triggerables_v2_additional_property import (
8
+ GetPublicAppByCustomPathResponse200PolicyTriggerablesV2AdditionalProperty,
9
+ )
10
+
11
+
12
+ T = TypeVar("T", bound="GetPublicAppByCustomPathResponse200PolicyTriggerablesV2")
13
+
14
+
15
+ @_attrs_define
16
+ class GetPublicAppByCustomPathResponse200PolicyTriggerablesV2:
17
+ """ """
18
+
19
+ additional_properties: Dict[
20
+ str, "GetPublicAppByCustomPathResponse200PolicyTriggerablesV2AdditionalProperty"
21
+ ] = _attrs_field(init=False, factory=dict)
22
+
23
+ def to_dict(self) -> Dict[str, Any]:
24
+ pass
25
+
26
+ field_dict: Dict[str, Any] = {}
27
+ for prop_name, prop in self.additional_properties.items():
28
+ field_dict[prop_name] = prop.to_dict()
29
+
30
+ field_dict.update({})
31
+
32
+ return field_dict
33
+
34
+ @classmethod
35
+ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
36
+ from ..models.get_public_app_by_custom_path_response_200_policy_triggerables_v2_additional_property import (
37
+ GetPublicAppByCustomPathResponse200PolicyTriggerablesV2AdditionalProperty,
38
+ )
39
+
40
+ d = src_dict.copy()
41
+ get_public_app_by_custom_path_response_200_policy_triggerables_v2 = cls()
42
+
43
+ additional_properties = {}
44
+ for prop_name, prop_dict in d.items():
45
+ additional_property = GetPublicAppByCustomPathResponse200PolicyTriggerablesV2AdditionalProperty.from_dict(
46
+ prop_dict
47
+ )
48
+
49
+ additional_properties[prop_name] = additional_property
50
+
51
+ get_public_app_by_custom_path_response_200_policy_triggerables_v2.additional_properties = additional_properties
52
+ return get_public_app_by_custom_path_response_200_policy_triggerables_v2
53
+
54
+ @property
55
+ def additional_keys(self) -> List[str]:
56
+ return list(self.additional_properties.keys())
57
+
58
+ def __getitem__(self, key: str) -> "GetPublicAppByCustomPathResponse200PolicyTriggerablesV2AdditionalProperty":
59
+ return self.additional_properties[key]
60
+
61
+ def __setitem__(
62
+ self, key: str, value: "GetPublicAppByCustomPathResponse200PolicyTriggerablesV2AdditionalProperty"
63
+ ) -> None:
64
+ self.additional_properties[key] = value
65
+
66
+ def __delitem__(self, key: str) -> None:
67
+ del self.additional_properties[key]
68
+
69
+ def __contains__(self, key: str) -> bool:
70
+ return key in self.additional_properties
@@ -0,0 +1,44 @@
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="GetPublicAppByCustomPathResponse200PolicyTriggerablesV2AdditionalProperty")
7
+
8
+
9
+ @_attrs_define
10
+ class GetPublicAppByCustomPathResponse200PolicyTriggerablesV2AdditionalProperty:
11
+ """ """
12
+
13
+ additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
+
15
+ def to_dict(self) -> Dict[str, Any]:
16
+ field_dict: Dict[str, Any] = {}
17
+ field_dict.update(self.additional_properties)
18
+ field_dict.update({})
19
+
20
+ return field_dict
21
+
22
+ @classmethod
23
+ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
24
+ d = src_dict.copy()
25
+ get_public_app_by_custom_path_response_200_policy_triggerables_v2_additional_property = cls()
26
+
27
+ get_public_app_by_custom_path_response_200_policy_triggerables_v2_additional_property.additional_properties = d
28
+ return get_public_app_by_custom_path_response_200_policy_triggerables_v2_additional_property
29
+
30
+ @property
31
+ def additional_keys(self) -> List[str]:
32
+ return list(self.additional_properties.keys())
33
+
34
+ def __getitem__(self, key: str) -> Any:
35
+ return self.additional_properties[key]
36
+
37
+ def __setitem__(self, key: str, value: Any) -> None:
38
+ self.additional_properties[key] = value
39
+
40
+ def __delitem__(self, key: str) -> None:
41
+ del self.additional_properties[key]
42
+
43
+ def __contains__(self, key: str) -> bool:
44
+ return key in self.additional_properties
@@ -0,0 +1,44 @@
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="GetPublicAppByCustomPathResponse200Value")
7
+
8
+
9
+ @_attrs_define
10
+ class GetPublicAppByCustomPathResponse200Value:
11
+ """ """
12
+
13
+ additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
+
15
+ def to_dict(self) -> Dict[str, Any]:
16
+ field_dict: Dict[str, Any] = {}
17
+ field_dict.update(self.additional_properties)
18
+ field_dict.update({})
19
+
20
+ return field_dict
21
+
22
+ @classmethod
23
+ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
24
+ d = src_dict.copy()
25
+ get_public_app_by_custom_path_response_200_value = cls()
26
+
27
+ get_public_app_by_custom_path_response_200_value.additional_properties = d
28
+ return get_public_app_by_custom_path_response_200_value
29
+
30
+ @property
31
+ def additional_keys(self) -> List[str]:
32
+ return list(self.additional_properties.keys())
33
+
34
+ def __getitem__(self, key: str) -> Any:
35
+ return self.additional_properties[key]
36
+
37
+ def __setitem__(self, key: str, value: Any) -> None:
38
+ self.additional_properties[key] = value
39
+
40
+ def __delitem__(self, key: str) -> None:
41
+ del self.additional_properties[key]
42
+
43
+ def __contains__(self, key: str) -> bool:
44
+ return key in self.additional_properties
@@ -21,6 +21,7 @@ class UpdateAppJsonBody:
21
21
  value (Union[Unset, Any]):
22
22
  policy (Union[Unset, UpdateAppJsonBodyPolicy]):
23
23
  deployment_message (Union[Unset, str]):
24
+ custom_path (Union[Unset, str]):
24
25
  """
25
26
 
26
27
  path: Union[Unset, str] = UNSET
@@ -28,6 +29,7 @@ class UpdateAppJsonBody:
28
29
  value: Union[Unset, Any] = UNSET
29
30
  policy: Union[Unset, "UpdateAppJsonBodyPolicy"] = UNSET
30
31
  deployment_message: Union[Unset, str] = UNSET
32
+ custom_path: Union[Unset, str] = UNSET
31
33
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
32
34
 
33
35
  def to_dict(self) -> Dict[str, Any]:
@@ -39,6 +41,7 @@ class UpdateAppJsonBody:
39
41
  policy = self.policy.to_dict()
40
42
 
41
43
  deployment_message = self.deployment_message
44
+ custom_path = self.custom_path
42
45
 
43
46
  field_dict: Dict[str, Any] = {}
44
47
  field_dict.update(self.additional_properties)
@@ -53,6 +56,8 @@ class UpdateAppJsonBody:
53
56
  field_dict["policy"] = policy
54
57
  if deployment_message is not UNSET:
55
58
  field_dict["deployment_message"] = deployment_message
59
+ if custom_path is not UNSET:
60
+ field_dict["custom_path"] = custom_path
56
61
 
57
62
  return field_dict
58
63
 
@@ -76,12 +81,15 @@ class UpdateAppJsonBody:
76
81
 
77
82
  deployment_message = d.pop("deployment_message", UNSET)
78
83
 
84
+ custom_path = d.pop("custom_path", UNSET)
85
+
79
86
  update_app_json_body = cls(
80
87
  path=path,
81
88
  summary=summary,
82
89
  value=value,
83
90
  policy=policy,
84
91
  deployment_message=deployment_message,
92
+ custom_path=custom_path,
85
93
  )
86
94
 
87
95
  update_app_json_body.additional_properties = d
@@ -0,0 +1,96 @@
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.workspace_get_critical_alerts_response_200_alerts_item import (
10
+ WorkspaceGetCriticalAlertsResponse200AlertsItem,
11
+ )
12
+
13
+
14
+ T = TypeVar("T", bound="WorkspaceGetCriticalAlertsResponse200")
15
+
16
+
17
+ @_attrs_define
18
+ class WorkspaceGetCriticalAlertsResponse200:
19
+ """
20
+ Attributes:
21
+ alerts (Union[Unset, List['WorkspaceGetCriticalAlertsResponse200AlertsItem']]):
22
+ total_rows (Union[Unset, int]): Total number of rows matching the query. Example: 100.
23
+ total_pages (Union[Unset, int]): Total number of pages based on the page size. Example: 10.
24
+ """
25
+
26
+ alerts: Union[Unset, List["WorkspaceGetCriticalAlertsResponse200AlertsItem"]] = UNSET
27
+ total_rows: Union[Unset, int] = UNSET
28
+ total_pages: Union[Unset, int] = UNSET
29
+ additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
30
+
31
+ def to_dict(self) -> Dict[str, Any]:
32
+ alerts: Union[Unset, List[Dict[str, Any]]] = UNSET
33
+ if not isinstance(self.alerts, Unset):
34
+ alerts = []
35
+ for alerts_item_data in self.alerts:
36
+ alerts_item = alerts_item_data.to_dict()
37
+
38
+ alerts.append(alerts_item)
39
+
40
+ total_rows = self.total_rows
41
+ total_pages = self.total_pages
42
+
43
+ field_dict: Dict[str, Any] = {}
44
+ field_dict.update(self.additional_properties)
45
+ field_dict.update({})
46
+ if alerts is not UNSET:
47
+ field_dict["alerts"] = alerts
48
+ if total_rows is not UNSET:
49
+ field_dict["total_rows"] = total_rows
50
+ if total_pages is not UNSET:
51
+ field_dict["total_pages"] = total_pages
52
+
53
+ return field_dict
54
+
55
+ @classmethod
56
+ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
57
+ from ..models.workspace_get_critical_alerts_response_200_alerts_item import (
58
+ WorkspaceGetCriticalAlertsResponse200AlertsItem,
59
+ )
60
+
61
+ d = src_dict.copy()
62
+ alerts = []
63
+ _alerts = d.pop("alerts", UNSET)
64
+ for alerts_item_data in _alerts or []:
65
+ alerts_item = WorkspaceGetCriticalAlertsResponse200AlertsItem.from_dict(alerts_item_data)
66
+
67
+ alerts.append(alerts_item)
68
+
69
+ total_rows = d.pop("total_rows", UNSET)
70
+
71
+ total_pages = d.pop("total_pages", UNSET)
72
+
73
+ workspace_get_critical_alerts_response_200 = cls(
74
+ alerts=alerts,
75
+ total_rows=total_rows,
76
+ total_pages=total_pages,
77
+ )
78
+
79
+ workspace_get_critical_alerts_response_200.additional_properties = d
80
+ return workspace_get_critical_alerts_response_200
81
+
82
+ @property
83
+ def additional_keys(self) -> List[str]:
84
+ return list(self.additional_properties.keys())
85
+
86
+ def __getitem__(self, key: str) -> Any:
87
+ return self.additional_properties[key]
88
+
89
+ def __setitem__(self, key: str, value: Any) -> None:
90
+ self.additional_properties[key] = value
91
+
92
+ def __delitem__(self, key: str) -> None:
93
+ del self.additional_properties[key]
94
+
95
+ def __contains__(self, key: str) -> bool:
96
+ return key in self.additional_properties
@@ -7,11 +7,11 @@ from dateutil.parser import isoparse
7
7
 
8
8
  from ..types import UNSET, Unset
9
9
 
10
- T = TypeVar("T", bound="WorkspaceGetCriticalAlertsResponse200Item")
10
+ T = TypeVar("T", bound="WorkspaceGetCriticalAlertsResponse200AlertsItem")
11
11
 
12
12
 
13
13
  @_attrs_define
14
- class WorkspaceGetCriticalAlertsResponse200Item:
14
+ class WorkspaceGetCriticalAlertsResponse200AlertsItem:
15
15
  """
16
16
  Attributes:
17
17
  id (Union[Unset, int]): Unique identifier for the alert
@@ -80,7 +80,7 @@ class WorkspaceGetCriticalAlertsResponse200Item:
80
80
 
81
81
  workspace_id = d.pop("workspace_id", UNSET)
82
82
 
83
- workspace_get_critical_alerts_response_200_item = cls(
83
+ workspace_get_critical_alerts_response_200_alerts_item = cls(
84
84
  id=id,
85
85
  alert_type=alert_type,
86
86
  message=message,
@@ -89,8 +89,8 @@ class WorkspaceGetCriticalAlertsResponse200Item:
89
89
  workspace_id=workspace_id,
90
90
  )
91
91
 
92
- workspace_get_critical_alerts_response_200_item.additional_properties = d
93
- return workspace_get_critical_alerts_response_200_item
92
+ workspace_get_critical_alerts_response_200_alerts_item.additional_properties = d
93
+ return workspace_get_critical_alerts_response_200_alerts_item
94
94
 
95
95
  @property
96
96
  def additional_keys(self) -> List[str]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: windmill-api
3
- Version: 1.434.2
3
+ Version: 1.435.0
4
4
  Summary: A client library for accessing Windmill API
5
5
  License: Apache-2.0
6
6
  Author: Ruben Fiszel
@@ -2,6 +2,7 @@ windmill_api/__init__.py,sha256=1_CwZsNkwbmPKbrWsi-4_Ny5L_s_ajNQTWELN739vKQ,156
2
2
  windmill_api/api/__init__.py,sha256=87ApBzKyGb5zsgTMOkQXDqsLZCmaSFoJMwbGzCDQZMw,47
3
3
  windmill_api/api/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  windmill_api/api/app/create_app.py,sha256=oy93qpykDNZq5UkaaQDv1GRBxgqglXx103oYEMJwhnk,2654
5
+ windmill_api/api/app/custom_path_exists.py,sha256=erBOecrGav0z1S3KWcuD1x71lRhjFiPjjgNKB-0HpwU,3967
5
6
  windmill_api/api/app/delete_app.py,sha256=O3s49o79D7gAxftHnVXY1FTF2BYm_TelXfD5g4Tsp_I,2429
6
7
  windmill_api/api/app/execute_component.py,sha256=tolIAPC8iFjn4PkpPiQfzIFubjJ9TcmxE9emx32eu9E,2881
7
8
  windmill_api/api/app/exists_app.py,sha256=I6rqA8nCEwkHcqmKEI3x-jRUjoOC3Q3yL_KAz-wHWSo,3811
@@ -11,6 +12,7 @@ windmill_api/api/app/get_app_by_version.py,sha256=TpzB151hhL3TrKNLUcHHFqUtK8Ei2-
11
12
  windmill_api/api/app/get_app_history_by_path.py,sha256=GAHSMcng9JX-s9iAQGtHdfj0_d36IJV_HIRSShX_Tyo,4515
12
13
  windmill_api/api/app/get_app_latest_version.py,sha256=qYV_gXvNKnvd5HqbcOzodeaO4y1jkCqPvChW-O8iXSI,4205
13
14
  windmill_api/api/app/get_hub_app_by_id.py,sha256=5LuXgXCjZaTJA6owWZm12Q2vuHRUe3yjau-eiorfh0c,3678
15
+ windmill_api/api/app/get_public_app_by_custom_path.py,sha256=O4M7J19k7Cj538Y6_s8UkAmh3Ot5bDShAsHwRlil3VQ,4070
14
16
  windmill_api/api/app/get_public_app_by_secret.py,sha256=Y5PSpXWjeHxQsTGbTyftdZOmZKMf8CqXpVTW_v_CZk0,4209
15
17
  windmill_api/api/app/get_public_resource.py,sha256=_eN-m8mrpImr1Klz6d0m9EcHtoImN0NFbq-oKNvaUII,2521
16
18
  windmill_api/api/app/get_public_secret_of_app.py,sha256=H_ZZaYQ_nz4RCHNjoHSgOohCiGEVF-Sl1LJYR72El8o,2457
@@ -283,7 +285,7 @@ windmill_api/api/setting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
283
285
  windmill_api/api/setting/acknowledge_all_critical_alerts.py,sha256=K6Zr9UEdjg9rzN3XAQ1AcD0Y-puATfBaUiiKsHiH6F8,3205
284
286
  windmill_api/api/setting/acknowledge_critical_alert.py,sha256=ADXBa_SZj3crnxo3w2odchssMEnETlmtKjOSeV0lpCA,3427
285
287
  windmill_api/api/setting/create_customer_portal_session.py,sha256=rUOT27UsoKKImfwdgIXF57u2fMWe-DtEaeFflD314mY,2608
286
- windmill_api/api/setting/get_critical_alerts.py,sha256=rvtYBd_zML4clQSmExEtknadAesiKI6JL6XvpfhjnHo,6713
288
+ windmill_api/api/setting/get_critical_alerts.py,sha256=kMvtUR6ZBD3PJH4LbNya3RbtFmSZKMYCVRwf9WTXjLs,6387
287
289
  windmill_api/api/setting/get_global.py,sha256=fROXxArQM5x7HHue_VWX9Y2i-Dm_byRs9Y1yIsYDogI,2287
288
290
  windmill_api/api/setting/get_latest_key_renewal_attempt.py,sha256=MJtImlDMxdeizItTpsMIbBlWcJLc0pjwVTkeOIinAKE,3916
289
291
  windmill_api/api/setting/get_local.py,sha256=zSx_gnsuRuDjUb0GA5tS5eiZk_8OVTM54j_d06Wxf2M,2092
@@ -298,7 +300,7 @@ windmill_api/api/setting/test_object_storage_config.py,sha256=w94n0M1zm3I71m5rNF
298
300
  windmill_api/api/setting/test_smtp.py,sha256=gkocvsILYflJ_FVjF6GrKStPQJJnr5egYMDIkJAlkQY,2419
299
301
  windmill_api/api/setting/workspace_acknowledge_all_critical_alerts.py,sha256=3BUvYc-RmD-Ig7B4NBSAn5s3bcVQNDU1b6A1uLnMGxA,3723
300
302
  windmill_api/api/setting/workspace_acknowledge_critical_alert.py,sha256=sPAkFHvX4T6kCgrrcthb_khzVduPpwoGsx0l7_kaHTk,3872
301
- windmill_api/api/setting/workspace_get_critical_alerts.py,sha256=xxlO3JcSx85g2ZlhXP3Y3V9HvMKkRVDuq0L5G8asH3Q,7294
303
+ windmill_api/api/setting/workspace_get_critical_alerts.py,sha256=3Os7xMKUacaPTkQs0gCv6927BKkYWzt74DiBFfZruLc,6968
302
304
  windmill_api/api/setting/workspace_mute_critical_alerts_ui.py,sha256=sOCPqan01QuzQWMbCB1wU3CuJwzWWGrZ9C2chChyxBA,4427
303
305
  windmill_api/api/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
304
306
  windmill_api/api/settings/backend_uptodate.py,sha256=kFh74vbPPw5-fyy6jXZKdt46_iaL_Cku-X15SUUZr9c,2026
@@ -440,7 +442,7 @@ windmill_api/models/app_with_last_version_policy_triggerables_additional_propert
440
442
  windmill_api/models/app_with_last_version_policy_triggerables_v2.py,sha256=jvhUvwwRycCoeI2cDymIqBLMciI-9EM1-rp0P_f5kwM,2277
441
443
  windmill_api/models/app_with_last_version_policy_triggerables_v2_additional_property.py,sha256=zo4qZFLbt_LPmCSRHwITJDF_Zh1XTmSMpFJNj2cvmTw,1456
442
444
  windmill_api/models/app_with_last_version_value.py,sha256=brPNmAx6NCr5HKbe5wKFtbYhbSBw1QvdxcHK8XxjJok,1279
443
- windmill_api/models/app_with_last_version_w_draft.py,sha256=PeqYAmU6ZPxAqTtjHkVHxy6x8bHcuLrzU2HmB54FfRA,5244
445
+ windmill_api/models/app_with_last_version_w_draft.py,sha256=g-426KSEbieXir-KLjuxnESbSa17RgAuB_hfmLhW0JQ,5544
444
446
  windmill_api/models/app_with_last_version_w_draft_execution_mode.py,sha256=0hN9l3skVkjvWlxO4ZJwGBaigojUYX9gx7lojJQM-hc,220
445
447
  windmill_api/models/app_with_last_version_w_draft_extra_perms.py,sha256=C3R5uHuHaDZ6SFxwwfwNC8YZVPHap43Y3vBgiv4EBzA,1346
446
448
  windmill_api/models/app_with_last_version_w_draft_policy.py,sha256=Uru-Q6_71ev4xX5ZE1rSUCh9jUMClSrwAM8lv67c3hg,6359
@@ -628,7 +630,7 @@ windmill_api/models/count_jobs_by_tag_response_200_item.py,sha256=AMJAY5SIA4Bypd
628
630
  windmill_api/models/count_search_logs_index_response_200.py,sha256=xZiHIVCwj4EcSXv657YMqN9yJy8gpwrTLNRe602vgcU,3190
629
631
  windmill_api/models/count_search_logs_index_response_200_count_per_host.py,sha256=HwuTlvhuCIVeOTg3zDRc1tTZyjKfgsvenuHW8Svl9pg,1444
630
632
  windmill_api/models/create_account_json_body.py,sha256=42H2HXa-7_1IcT72OXaiF8feh3R60_NYoGet8735Di8,2058
631
- windmill_api/models/create_app_json_body.py,sha256=tv4Fqsk6qE6HyfybPlWBZr1kKvvDDDovQiMxMazmuEE,2930
633
+ windmill_api/models/create_app_json_body.py,sha256=5Vs_CDiGOeRvKWwjKGbH8s_uhHumNQuW7F_tf4Ca270,3230
632
634
  windmill_api/models/create_app_json_body_policy.py,sha256=OrT1IJPaRGS0VS1T23PnPux1zIMZmoT_ZoBS_-BztEw,6009
633
635
  windmill_api/models/create_app_json_body_policy_execution_mode.py,sha256=RkXVQ4__WOhBPzjy3GGGDqhzmDs--wMcKxI4f10CzVE,219
634
636
  windmill_api/models/create_app_json_body_policy_s3_inputs_item.py,sha256=_bzFR09b1B7QDsgwuCW4Q0ZxlNCWmcghPjtt3l32fAQ,1348
@@ -1292,7 +1294,7 @@ windmill_api/models/get_app_by_path_response_200_policy_triggerables_additional_
1292
1294
  windmill_api/models/get_app_by_path_response_200_policy_triggerables_v2.py,sha256=300ALJevnLDh69ABv8IKLZn_O4mFmOTyXpouit6antw,2352
1293
1295
  windmill_api/models/get_app_by_path_response_200_policy_triggerables_v2_additional_property.py,sha256=YwJRYIJAx87mgWzKD9JXNOvstw6M_0-KKv5JXCdUvhE,1487
1294
1296
  windmill_api/models/get_app_by_path_response_200_value.py,sha256=qp4kOqpKgKt2TYNuDhu9_Baotdm7-gD6doxuHICdq8U,1310
1295
- windmill_api/models/get_app_by_path_with_draft_response_200.py,sha256=z2NADInOQw-UX4XYz8RHuzZ-PmEtkCSU7xPCFI40k3Y,5546
1297
+ windmill_api/models/get_app_by_path_with_draft_response_200.py,sha256=bdlrExGkssPZs-3-pvBJLxHDG_QkwSbhgoi0pX2AvxQ,5846
1296
1298
  windmill_api/models/get_app_by_path_with_draft_response_200_execution_mode.py,sha256=_vDUPGb5EnAVZBEA3fkS1OOPXDl_MkcqVlglzRem7cs,228
1297
1299
  windmill_api/models/get_app_by_path_with_draft_response_200_extra_perms.py,sha256=QfB5S4u1JKZ2ACgesGRMRVWdELsGOyfxqxbO2ep8VAg,1392
1298
1300
  windmill_api/models/get_app_by_path_with_draft_response_200_policy.py,sha256=I2bAubd6GVPBdlMiZnLKDxqfba4xvHzaVmdruNQ9u0I,6694
@@ -1408,7 +1410,8 @@ windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_
1408
1410
  windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py,sha256=u-YheCK0vWC6q48xofM368suCbrdf0cLeJ4nbNc1yoU,220
1409
1411
  windmill_api/models/get_completed_job_result_maybe_response_200.py,sha256=no4BzZB_3zRVawLJh9ZsjH5ntuZ8Zj90QGYQd7mFmaI,2333
1410
1412
  windmill_api/models/get_counts_of_jobs_waiting_per_tag_response_200.py,sha256=_e3A1jqpV0IWOk2SR8y17jnbFBZZlRNZWp3UbgiQYtA,1371
1411
- windmill_api/models/get_critical_alerts_response_200_item.py,sha256=NA0q_5NYETZ0IXwSEfzThhMe-u1XggG2sV5csENxfKk,3742
1413
+ windmill_api/models/get_critical_alerts_response_200.py,sha256=kg2Vs9aXLIrenI2u848ooi-nnkrGRO9UfrthkWgW3rI,3120
1414
+ windmill_api/models/get_critical_alerts_response_200_alerts_item.py,sha256=nQsqYz_Kua-QYkq8JFD55cBI-L8TPyNc6ZBvVUutH78,3775
1412
1415
  windmill_api/models/get_default_scripts_response_200.py,sha256=ekfscpG1XtNxHvpokDZ7pI0W6DAdITytKNg09XwSgtc,2537
1413
1416
  windmill_api/models/get_deploy_to_response_200.py,sha256=xZHLxF4DVyJtjVYFRWhSC4gCu1nC1wIAHlvwB-dV8EU,1623
1414
1417
  windmill_api/models/get_flow_by_path_response_200.py,sha256=v8FxxokWZhVdKXEfqA8mdmZIzEMI_gCiNjfilZNAC5k,7321
@@ -1867,6 +1870,17 @@ windmill_api/models/get_latest_key_renewal_attempt_response_200.py,sha256=l8711H
1867
1870
  windmill_api/models/get_o_auth_connect_response_200.py,sha256=kPor_CV02chDvyq0u2FA3rOywIsFlZe4mCcVnyElZEg,2768
1868
1871
  windmill_api/models/get_o_auth_connect_response_200_extra_params.py,sha256=yFFbR2vUCdjsGVPA8bRoiSw0EDebOuBB6yTrCd1wJe8,1358
1869
1872
  windmill_api/models/get_premium_info_response_200.py,sha256=QCdlflGMNdMMO9bFO1wyHMhwmCwwVPkJ0I1QeyYi7nE,2319
1873
+ windmill_api/models/get_public_app_by_custom_path_response_200.py,sha256=PoT1Loq8gNcQEw9uUz1oZGnLnngnPWfMsCvkY0Fcr9k,5090
1874
+ windmill_api/models/get_public_app_by_custom_path_response_200_execution_mode.py,sha256=8AHFEIQwy7IFT40PlEtKijJWDHWPl9rpgSBY92mHtq0,231
1875
+ windmill_api/models/get_public_app_by_custom_path_response_200_extra_perms.py,sha256=mjuwiaaSPsKsj35V3hMz4UC9EPmt5o0vbtwCxtmWr2w,1407
1876
+ windmill_api/models/get_public_app_by_custom_path_response_200_policy.py,sha256=Hiyo5h0iAIALrJvo2Je0oIEkxdsAryFAqQQem2mfnmM,6796
1877
+ windmill_api/models/get_public_app_by_custom_path_response_200_policy_execution_mode.py,sha256=M1iuZFiLvVWMIDnkjx9yxQlFvnWaHdHdbU7wnhMkEa0,237
1878
+ windmill_api/models/get_public_app_by_custom_path_response_200_policy_s3_inputs_item.py,sha256=O0K3SvBRLh3UDwwOvHFw69zUEsdsLM1c8G8yToGmUnU,1450
1879
+ windmill_api/models/get_public_app_by_custom_path_response_200_policy_triggerables.py,sha256=wWhLTB90kP1J9K_4YMNSk_G0A2wJW4ktnyYRzQQjPlE,2531
1880
+ windmill_api/models/get_public_app_by_custom_path_response_200_policy_triggerables_additional_property.py,sha256=pBJBXtvoHxzf6yHK0y-pVr0_BGyAV-H3JlxCMGne9OU,1540
1881
+ windmill_api/models/get_public_app_by_custom_path_response_200_policy_triggerables_v2.py,sha256=tnUcSekz-UEXmWYKC2X_XKOO0mhdcY4kWFy13wGug_4,2562
1882
+ windmill_api/models/get_public_app_by_custom_path_response_200_policy_triggerables_v2_additional_property.py,sha256=nilt1brib3zuXCL8SG6uMvw5JI2FoXHJKzo4Wlq_8vA,1553
1883
+ windmill_api/models/get_public_app_by_custom_path_response_200_value.py,sha256=dMEnW2fNROWQEFI5Na8ZqCnCz9X0L1hTHC3DwC27T30,1376
1870
1884
  windmill_api/models/get_public_app_by_secret_response_200.py,sha256=eI9vsEtbPNuBAQW5Qo__7pG77FtG3j5hdPE2JGQ-LZw,4905
1871
1885
  windmill_api/models/get_public_app_by_secret_response_200_execution_mode.py,sha256=uKlx8CC4ggzNDvBNWHRxlX9xIVpZlbZxjrVICVfJgx0,227
1872
1886
  windmill_api/models/get_public_app_by_secret_response_200_extra_perms.py,sha256=hzIbMaY9y6GHEZj2ccvO6r3Wc93M-DEw5KH4FI9-Wxs,1384
@@ -3402,7 +3416,7 @@ windmill_api/models/truncated_token.py,sha256=yKj2okVKTLYVp7oUHoYlhwillZqqXwiP4q
3402
3416
  windmill_api/models/unstar_json_body.py,sha256=D9nJC1BCQu4v1AANAqhA_afp8XoV1O4m5Wpo3YiLNOE,2312
3403
3417
  windmill_api/models/unstar_json_body_favorite_kind.py,sha256=5XdeZQOEspYnnc1qkjwfb01mHKPZA5wZbzptlU4W5tc,211
3404
3418
  windmill_api/models/update_app_history_json_body.py,sha256=lvV37A0wrVCQOnXv0Uf4cak11ZnlsgXIzJLAQ6OXzJE,1688
3405
- windmill_api/models/update_app_json_body.py,sha256=Z4Vh3LRHBJA-A8jO5z7SbAdtauplxa7jgmdS7Z98rJg,3202
3419
+ windmill_api/models/update_app_json_body.py,sha256=8nIrKeap8Pws_HvYLdxlGtGC_J5_gM5mitVl1x0Btn4,3502
3406
3420
  windmill_api/models/update_app_json_body_policy.py,sha256=Er9AdCxgmKv2DQTPUsgRMu-D_6iO7eNFFOmPKVqsyZA,6009
3407
3421
  windmill_api/models/update_app_json_body_policy_execution_mode.py,sha256=OrdIV15-YRXsz64soG5tzJl9_goWJWi1uBIU98KIU0Q,219
3408
3422
  windmill_api/models/update_app_json_body_policy_s3_inputs_item.py,sha256=yog3Bytyo6ysNcRoCzwOkBwEtlR00QV9usZn9WqmJtQ,1348
@@ -3496,7 +3510,8 @@ windmill_api/models/workspace.py,sha256=yEkqUzztAeNjs2Aght0YTz51GrhTNuNYp2GtdWwV
3496
3510
  windmill_api/models/workspace_default_scripts.py,sha256=TAOqlGzBp4x1g8fOcTThWpqpjxTDcJZ1yE0s-_yOsnc,2506
3497
3511
  windmill_api/models/workspace_deploy_ui_settings.py,sha256=TGzzRl609jiVEVW4VwqeB98R8s-IyyEelRXGh7M3io4,2834
3498
3512
  windmill_api/models/workspace_deploy_ui_settings_include_type_item.py,sha256=FG69aH7ZgQPLdSoHVJt6OMLkDehGp77XchvDiuOU1ec,275
3499
- windmill_api/models/workspace_get_critical_alerts_response_200_item.py,sha256=HQd8yumoDpHZlWg_E1yF9ckjGU855bGruNYgiuLC1z0,3790
3513
+ windmill_api/models/workspace_get_critical_alerts_response_200.py,sha256=1Io4I9aWkg7GGDJYwQWSBNTW_vFAW4-MhTLKf5pmnmM,3275
3514
+ windmill_api/models/workspace_get_critical_alerts_response_200_alerts_item.py,sha256=pjAKMe8U_VlNECSoGlYxiNAIevL-B6hjLfZn39v6RNw,3823
3500
3515
  windmill_api/models/workspace_git_sync_settings.py,sha256=0OOwDEra0pYwFhCs3X2a38R3m8UY5Asxx9m-dTq13Io,4028
3501
3516
  windmill_api/models/workspace_git_sync_settings_include_type_item.py,sha256=tAAP2BqURMwG8XQiTQVkS1TaCIcGT2gzHzJ4J6NPPo0,394
3502
3517
  windmill_api/models/workspace_git_sync_settings_repositories_item.py,sha256=ZJFc1PVy25Ifv69k7zHMRD55fhVzfpmZDBy7w8lXa0A,4196
@@ -3505,7 +3520,7 @@ windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1li
3505
3520
  windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
3506
3521
  windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
3507
3522
  windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
3508
- windmill_api-1.434.2.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
3509
- windmill_api-1.434.2.dist-info/METADATA,sha256=tQavm2MZX3SJQ8ejSptKg_9vEp21gBQ4pXjQ6zbe4HU,5023
3510
- windmill_api-1.434.2.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
3511
- windmill_api-1.434.2.dist-info/RECORD,,
3523
+ windmill_api-1.435.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
3524
+ windmill_api-1.435.0.dist-info/METADATA,sha256=uVt-SNLnm0VRAprzG2788ejRxNV-_praVvW2FtNf7Ao,5023
3525
+ windmill_api-1.435.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
3526
+ windmill_api-1.435.0.dist-info/RECORD,,