windmill-api 1.358.1__py3-none-any.whl → 1.359.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.
@@ -5,21 +5,32 @@ import httpx
5
5
 
6
6
  from ... import errors
7
7
  from ...client import AuthenticatedClient, Client
8
- from ...types import Response
8
+ from ...types import UNSET, Response, Unset
9
9
 
10
10
 
11
11
  def _get_kwargs(
12
12
  workspace: str,
13
13
  job_or_input_id: str,
14
+ *,
15
+ input_: Union[Unset, None, bool] = UNSET,
16
+ allow_large: Union[Unset, None, bool] = UNSET,
14
17
  ) -> Dict[str, Any]:
15
18
  pass
16
19
 
20
+ params: Dict[str, Any] = {}
21
+ params["input"] = input_
22
+
23
+ params["allow_large"] = allow_large
24
+
25
+ params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
26
+
17
27
  return {
18
28
  "method": "get",
19
29
  "url": "/w/{workspace}/inputs/{jobOrInputId}/args".format(
20
30
  workspace=workspace,
21
31
  jobOrInputId=job_or_input_id,
22
32
  ),
33
+ "params": params,
23
34
  }
24
35
 
25
36
 
@@ -46,12 +57,16 @@ def sync_detailed(
46
57
  job_or_input_id: str,
47
58
  *,
48
59
  client: Union[AuthenticatedClient, Client],
60
+ input_: Union[Unset, None, bool] = UNSET,
61
+ allow_large: Union[Unset, None, bool] = UNSET,
49
62
  ) -> Response[Any]:
50
63
  """Get args from history or saved input
51
64
 
52
65
  Args:
53
66
  workspace (str):
54
67
  job_or_input_id (str):
68
+ input_ (Union[Unset, None, bool]):
69
+ allow_large (Union[Unset, None, bool]):
55
70
 
56
71
  Raises:
57
72
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -64,6 +79,8 @@ def sync_detailed(
64
79
  kwargs = _get_kwargs(
65
80
  workspace=workspace,
66
81
  job_or_input_id=job_or_input_id,
82
+ input_=input_,
83
+ allow_large=allow_large,
67
84
  )
68
85
 
69
86
  response = client.get_httpx_client().request(
@@ -78,12 +95,16 @@ async def asyncio_detailed(
78
95
  job_or_input_id: str,
79
96
  *,
80
97
  client: Union[AuthenticatedClient, Client],
98
+ input_: Union[Unset, None, bool] = UNSET,
99
+ allow_large: Union[Unset, None, bool] = UNSET,
81
100
  ) -> Response[Any]:
82
101
  """Get args from history or saved input
83
102
 
84
103
  Args:
85
104
  workspace (str):
86
105
  job_or_input_id (str):
106
+ input_ (Union[Unset, None, bool]):
107
+ allow_large (Union[Unset, None, bool]):
87
108
 
88
109
  Raises:
89
110
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -96,6 +117,8 @@ async def asyncio_detailed(
96
117
  kwargs = _get_kwargs(
97
118
  workspace=workspace,
98
119
  job_or_input_id=job_or_input_id,
120
+ input_=input_,
121
+ allow_large=allow_large,
99
122
  )
100
123
 
101
124
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -1,5 +1,5 @@
1
1
  import datetime
2
- from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar, Union
2
+ from typing import Any, Dict, List, Type, TypeVar, Union
3
3
 
4
4
  from attrs import define as _attrs_define
5
5
  from attrs import field as _attrs_field
@@ -7,12 +7,6 @@ from dateutil.parser import isoparse
7
7
 
8
8
  from ..types import UNSET, Unset
9
9
 
10
- if TYPE_CHECKING:
11
- from ..models.get_flow_input_history_by_path_response_200_item_args import (
12
- GetFlowInputHistoryByPathResponse200ItemArgs,
13
- )
14
-
15
-
16
10
  T = TypeVar("T", bound="GetFlowInputHistoryByPathResponse200Item")
17
11
 
18
12
 
@@ -22,7 +16,6 @@ class GetFlowInputHistoryByPathResponse200Item:
22
16
  Attributes:
23
17
  id (str):
24
18
  name (str):
25
- args (GetFlowInputHistoryByPathResponse200ItemArgs):
26
19
  created_by (str):
27
20
  created_at (datetime.datetime):
28
21
  is_public (bool):
@@ -31,7 +24,6 @@ class GetFlowInputHistoryByPathResponse200Item:
31
24
 
32
25
  id: str
33
26
  name: str
34
- args: "GetFlowInputHistoryByPathResponse200ItemArgs"
35
27
  created_by: str
36
28
  created_at: datetime.datetime
37
29
  is_public: bool
@@ -41,8 +33,6 @@ class GetFlowInputHistoryByPathResponse200Item:
41
33
  def to_dict(self) -> Dict[str, Any]:
42
34
  id = self.id
43
35
  name = self.name
44
- args = self.args.to_dict()
45
-
46
36
  created_by = self.created_by
47
37
  created_at = self.created_at.isoformat()
48
38
 
@@ -55,7 +45,6 @@ class GetFlowInputHistoryByPathResponse200Item:
55
45
  {
56
46
  "id": id,
57
47
  "name": name,
58
- "args": args,
59
48
  "created_by": created_by,
60
49
  "created_at": created_at,
61
50
  "is_public": is_public,
@@ -68,17 +57,11 @@ class GetFlowInputHistoryByPathResponse200Item:
68
57
 
69
58
  @classmethod
70
59
  def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
71
- from ..models.get_flow_input_history_by_path_response_200_item_args import (
72
- GetFlowInputHistoryByPathResponse200ItemArgs,
73
- )
74
-
75
60
  d = src_dict.copy()
76
61
  id = d.pop("id")
77
62
 
78
63
  name = d.pop("name")
79
64
 
80
- args = GetFlowInputHistoryByPathResponse200ItemArgs.from_dict(d.pop("args"))
81
-
82
65
  created_by = d.pop("created_by")
83
66
 
84
67
  created_at = isoparse(d.pop("created_at"))
@@ -90,7 +73,6 @@ class GetFlowInputHistoryByPathResponse200Item:
90
73
  get_flow_input_history_by_path_response_200_item = cls(
91
74
  id=id,
92
75
  name=name,
93
- args=args,
94
76
  created_by=created_by,
95
77
  created_at=created_at,
96
78
  is_public=is_public,
@@ -1,5 +1,5 @@
1
1
  import datetime
2
- from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar, Union
2
+ from typing import Any, Dict, List, Type, TypeVar, Union
3
3
 
4
4
  from attrs import define as _attrs_define
5
5
  from attrs import field as _attrs_field
@@ -7,10 +7,6 @@ from dateutil.parser import isoparse
7
7
 
8
8
  from ..types import UNSET, Unset
9
9
 
10
- if TYPE_CHECKING:
11
- from ..models.get_input_history_response_200_item_args import GetInputHistoryResponse200ItemArgs
12
-
13
-
14
10
  T = TypeVar("T", bound="GetInputHistoryResponse200Item")
15
11
 
16
12
 
@@ -20,7 +16,6 @@ class GetInputHistoryResponse200Item:
20
16
  Attributes:
21
17
  id (str):
22
18
  name (str):
23
- args (GetInputHistoryResponse200ItemArgs):
24
19
  created_by (str):
25
20
  created_at (datetime.datetime):
26
21
  is_public (bool):
@@ -29,7 +24,6 @@ class GetInputHistoryResponse200Item:
29
24
 
30
25
  id: str
31
26
  name: str
32
- args: "GetInputHistoryResponse200ItemArgs"
33
27
  created_by: str
34
28
  created_at: datetime.datetime
35
29
  is_public: bool
@@ -39,8 +33,6 @@ class GetInputHistoryResponse200Item:
39
33
  def to_dict(self) -> Dict[str, Any]:
40
34
  id = self.id
41
35
  name = self.name
42
- args = self.args.to_dict()
43
-
44
36
  created_by = self.created_by
45
37
  created_at = self.created_at.isoformat()
46
38
 
@@ -53,7 +45,6 @@ class GetInputHistoryResponse200Item:
53
45
  {
54
46
  "id": id,
55
47
  "name": name,
56
- "args": args,
57
48
  "created_by": created_by,
58
49
  "created_at": created_at,
59
50
  "is_public": is_public,
@@ -66,15 +57,11 @@ class GetInputHistoryResponse200Item:
66
57
 
67
58
  @classmethod
68
59
  def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
69
- from ..models.get_input_history_response_200_item_args import GetInputHistoryResponse200ItemArgs
70
-
71
60
  d = src_dict.copy()
72
61
  id = d.pop("id")
73
62
 
74
63
  name = d.pop("name")
75
64
 
76
- args = GetInputHistoryResponse200ItemArgs.from_dict(d.pop("args"))
77
-
78
65
  created_by = d.pop("created_by")
79
66
 
80
67
  created_at = isoparse(d.pop("created_at"))
@@ -86,7 +73,6 @@ class GetInputHistoryResponse200Item:
86
73
  get_input_history_response_200_item = cls(
87
74
  id=id,
88
75
  name=name,
89
- args=args,
90
76
  created_by=created_by,
91
77
  created_at=created_at,
92
78
  is_public=is_public,
@@ -1,5 +1,5 @@
1
1
  import datetime
2
- from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar, Union
2
+ from typing import Any, Dict, List, Type, TypeVar, Union
3
3
 
4
4
  from attrs import define as _attrs_define
5
5
  from attrs import field as _attrs_field
@@ -7,10 +7,6 @@ from dateutil.parser import isoparse
7
7
 
8
8
  from ..types import UNSET, Unset
9
9
 
10
- if TYPE_CHECKING:
11
- from ..models.input_args import InputArgs
12
-
13
-
14
10
  T = TypeVar("T", bound="Input")
15
11
 
16
12
 
@@ -20,7 +16,6 @@ class Input:
20
16
  Attributes:
21
17
  id (str):
22
18
  name (str):
23
- args (InputArgs):
24
19
  created_by (str):
25
20
  created_at (datetime.datetime):
26
21
  is_public (bool):
@@ -29,7 +24,6 @@ class Input:
29
24
 
30
25
  id: str
31
26
  name: str
32
- args: "InputArgs"
33
27
  created_by: str
34
28
  created_at: datetime.datetime
35
29
  is_public: bool
@@ -39,8 +33,6 @@ class Input:
39
33
  def to_dict(self) -> Dict[str, Any]:
40
34
  id = self.id
41
35
  name = self.name
42
- args = self.args.to_dict()
43
-
44
36
  created_by = self.created_by
45
37
  created_at = self.created_at.isoformat()
46
38
 
@@ -53,7 +45,6 @@ class Input:
53
45
  {
54
46
  "id": id,
55
47
  "name": name,
56
- "args": args,
57
48
  "created_by": created_by,
58
49
  "created_at": created_at,
59
50
  "is_public": is_public,
@@ -66,15 +57,11 @@ class Input:
66
57
 
67
58
  @classmethod
68
59
  def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
69
- from ..models.input_args import InputArgs
70
-
71
60
  d = src_dict.copy()
72
61
  id = d.pop("id")
73
62
 
74
63
  name = d.pop("name")
75
64
 
76
- args = InputArgs.from_dict(d.pop("args"))
77
-
78
65
  created_by = d.pop("created_by")
79
66
 
80
67
  created_at = isoparse(d.pop("created_at"))
@@ -86,7 +73,6 @@ class Input:
86
73
  input_ = cls(
87
74
  id=id,
88
75
  name=name,
89
- args=args,
90
76
  created_by=created_by,
91
77
  created_at=created_at,
92
78
  is_public=is_public,
@@ -1,5 +1,5 @@
1
1
  import datetime
2
- from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar, Union
2
+ from typing import Any, Dict, List, Type, TypeVar, Union
3
3
 
4
4
  from attrs import define as _attrs_define
5
5
  from attrs import field as _attrs_field
@@ -7,10 +7,6 @@ from dateutil.parser import isoparse
7
7
 
8
8
  from ..types import UNSET, Unset
9
9
 
10
- if TYPE_CHECKING:
11
- from ..models.list_inputs_response_200_item_args import ListInputsResponse200ItemArgs
12
-
13
-
14
10
  T = TypeVar("T", bound="ListInputsResponse200Item")
15
11
 
16
12
 
@@ -20,7 +16,6 @@ class ListInputsResponse200Item:
20
16
  Attributes:
21
17
  id (str):
22
18
  name (str):
23
- args (ListInputsResponse200ItemArgs):
24
19
  created_by (str):
25
20
  created_at (datetime.datetime):
26
21
  is_public (bool):
@@ -29,7 +24,6 @@ class ListInputsResponse200Item:
29
24
 
30
25
  id: str
31
26
  name: str
32
- args: "ListInputsResponse200ItemArgs"
33
27
  created_by: str
34
28
  created_at: datetime.datetime
35
29
  is_public: bool
@@ -39,8 +33,6 @@ class ListInputsResponse200Item:
39
33
  def to_dict(self) -> Dict[str, Any]:
40
34
  id = self.id
41
35
  name = self.name
42
- args = self.args.to_dict()
43
-
44
36
  created_by = self.created_by
45
37
  created_at = self.created_at.isoformat()
46
38
 
@@ -53,7 +45,6 @@ class ListInputsResponse200Item:
53
45
  {
54
46
  "id": id,
55
47
  "name": name,
56
- "args": args,
57
48
  "created_by": created_by,
58
49
  "created_at": created_at,
59
50
  "is_public": is_public,
@@ -66,15 +57,11 @@ class ListInputsResponse200Item:
66
57
 
67
58
  @classmethod
68
59
  def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
69
- from ..models.list_inputs_response_200_item_args import ListInputsResponse200ItemArgs
70
-
71
60
  d = src_dict.copy()
72
61
  id = d.pop("id")
73
62
 
74
63
  name = d.pop("name")
75
64
 
76
- args = ListInputsResponse200ItemArgs.from_dict(d.pop("args"))
77
-
78
65
  created_by = d.pop("created_by")
79
66
 
80
67
  created_at = isoparse(d.pop("created_at"))
@@ -86,7 +73,6 @@ class ListInputsResponse200Item:
86
73
  list_inputs_response_200_item = cls(
87
74
  id=id,
88
75
  name=name,
89
- args=args,
90
76
  created_by=created_by,
91
77
  created_at=created_at,
92
78
  is_public=is_public,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: windmill-api
3
- Version: 1.358.1
3
+ Version: 1.359.0
4
4
  Summary: A client library for accessing Windmill API
5
5
  License: Apache-2.0
6
6
  Author: Ruben Fiszel
@@ -109,7 +109,7 @@ windmill_api/api/helpers/s_3_resource_info.py,sha256=QLQKtqSrqEHDpssiCK5smNbmi0V
109
109
  windmill_api/api/input_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
110
110
  windmill_api/api/input_/create_input.py,sha256=ld4CGfTUtmxuyjWuoR-MwvK_lA9xtPnr9H-rVZn3YhQ,3986
111
111
  windmill_api/api/input_/delete_input.py,sha256=FpZ2UYnKXWbNuu7q-e7WUdtca5GabWmmXlXoOqGakPw,2471
112
- windmill_api/api/input_/get_args_from_history_or_saved_input.py,sha256=trfEVKwd5lBKEoG4ii3W5jRV39zl4rMk_3S8SfU_3ac,2670
112
+ windmill_api/api/input_/get_args_from_history_or_saved_input.py,sha256=sst4dk3dy8kXLNwP2SbGOq8rFQcbHMk96rSlE_jbpvk,3489
113
113
  windmill_api/api/input_/get_input_history.py,sha256=wXNSekVeK9k38Ry6Gl9_lwflEn1jcxf8LWSzAXuKIx8,7236
114
114
  windmill_api/api/input_/list_inputs.py,sha256=J94FD_VvaWjAMkcOnxzPZeDuyMVJMReF3ULbMpAZ-uI,7059
115
115
  windmill_api/api/input_/update_input.py,sha256=1JYU51YQ5tsWnStyGK2xpZV7GYtdtL3fBZ3URQSEr7I,2680
@@ -1164,8 +1164,7 @@ windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules
1164
1164
  windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_user_groups_required_type_1.py,sha256=lwqzFiUvdKd6nRvhc7Jbcpq6V0s39X5FOT0wJBr3UX4,2489
1165
1165
  windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_user_groups_required_type_1_type.py,sha256=1mGJ85xPXVWtF1Zt-43PuaxZhhmcz-09NE3mc4y8-TI,223
1166
1166
  windmill_api/models/get_flow_history_response_200_item.py,sha256=yPZ2y8yQzTK_MUsnR9pAx_2OmA7zk-pcM_zu0wl2558,2179
1167
- windmill_api/models/get_flow_input_history_by_path_response_200_item.py,sha256=yynQjwX2XVcmdOFtC14mDjTGwItn_9fJkK20hXA8exw,3329
1168
- windmill_api/models/get_flow_input_history_by_path_response_200_item_args.py,sha256=RLoIzMgwVL4vgD-P-RvC2HBtJY5l8E1u3pGDyQ9PkAw,1399
1167
+ windmill_api/models/get_flow_input_history_by_path_response_200_item.py,sha256=HiaHDuNn1tqz1YKYxJwWJVBtLUCLunu9MPDYaDlUXQE,2706
1169
1168
  windmill_api/models/get_flow_version_response_200.py,sha256=t49IQcSpldReXllANU_IBALsvPMNNRlTkBSkAq-4xY0,7339
1170
1169
  windmill_api/models/get_flow_version_response_200_extra_perms.py,sha256=WuW6SS3WsUSbespoJo86LTTlMRWDCxZFzMEzjf4mQks,1348
1171
1170
  windmill_api/models/get_flow_version_response_200_schema.py,sha256=6Aw7uzu9fmJt3Xz6nTatjGoXztUoRderwYrb0-w1ILc,1322
@@ -1252,8 +1251,7 @@ windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_susp
1252
1251
  windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_user_groups_required_type_1.py,sha256=pnjDwFFX6_JUH8a_oVKC1Tfz68bzCi_w9RmGkSxUkX8,2395
1253
1252
  windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_user_groups_required_type_1_type.py,sha256=r5WHLINe1gTvkvEaq-25Yi5UCQ16TbiACWj_O_KDNfY,214
1254
1253
  windmill_api/models/get_hub_script_by_path_response_200.py,sha256=cO4iQiuu7U13wCVWzRUwqbJ45P9uazDdB5l2tn1oDd0,2543
1255
- windmill_api/models/get_input_history_response_200_item.py,sha256=-ol3ul0EBblt-7pRUuXHar7MK_VpJoXt0L9iTRX_ZS0,3152
1256
- windmill_api/models/get_input_history_response_200_item_args.py,sha256=3Frx4dbMflA5uK1IwAt4AqgkbLccVZYhRJV-wfLzR1k,1340
1254
+ windmill_api/models/get_input_history_response_200_item.py,sha256=GbDu2VMBZYNgZk1W8NP6HZFfqkz7WfY-3p8gKK7DjrQ,2647
1257
1255
  windmill_api/models/get_input_history_runnable_type.py,sha256=E6z4FF1P5t_-HoT5o-it5IVZfp6Kw4OO-kVLCN_aiS8,218
1258
1256
  windmill_api/models/get_instance_group_response_200.py,sha256=8WyjKx195vbzik4kEkj5ojyK-tlwCCrxIUGITctecss,2182
1259
1257
  windmill_api/models/get_job_metrics_json_body.py,sha256=42Psn4rWZvIO5AFvtzzaZkB_c2T6ScKWIfPiczG3G7M,3192
@@ -1580,8 +1578,7 @@ windmill_api/models/group.py,sha256=yEfHcI9FEtk1tV6RS9B3r_vAPK0rqNCCLgIJoLAUZ8M,
1580
1578
  windmill_api/models/group_extra_perms.py,sha256=hn0wzgNVtx0HO3XwPsVOie8BJpV6-FypTN5u_851dvg,1236
1581
1579
  windmill_api/models/identity.py,sha256=GWOTbVe-D4S0vWFKG0t2XL33rb3jm8U3e9IjPPaYLUE,1752
1582
1580
  windmill_api/models/identity_type.py,sha256=bysTfdV4jxgFlIt5RoNL_QiYhIrb5KXsKtGZ25MAEaw,143
1583
- windmill_api/models/input_.py,sha256=VSTtTRvLcat3AKyQQnRvRJ2Ri0whp25gHSx_iWo-0ME,2830
1584
- windmill_api/models/input_args.py,sha256=ydTCdwHC3PutpcskEB4d5DNp2JhP8F-w6HvZRg-CEv0,1200
1581
+ windmill_api/models/input_.py,sha256=UF9OiuuN96J_FDdlawvD0WQ6Ml2zIDOKGhvUgTk_Stk,2510
1585
1582
  windmill_api/models/input_transform_type_0.py,sha256=6Alk1yBdSsPMhB4akKrLHeeF4_wd1wsSgcWsYgiu48I,1883
1586
1583
  windmill_api/models/input_transform_type_0_type.py,sha256=33K9RpEtyyJMdHKY9xveIyITzRRITAC5-91T-SqORFQ,158
1587
1584
  windmill_api/models/input_transform_type_1.py,sha256=jBitmEKLXfAK-lQ4JOvtCwdhaZsY4aeXvuWD3c3AqiQ,1750
@@ -1870,8 +1867,7 @@ windmill_api/models/list_hub_apps_response_200_apps_item.py,sha256=XSqHImSq5gtL_
1870
1867
  windmill_api/models/list_hub_flows_response_200.py,sha256=Xb1JC2h0Kmsysnry3dP_Z1MYQyDM2fqYQ53Z_CiFXfQ,2324
1871
1868
  windmill_api/models/list_hub_flows_response_200_flows_item.py,sha256=88S9cOQWfcNq3fwocrFM6FnaBHMoJvMxeVxAZ4xyRno,2387
1872
1869
  windmill_api/models/list_hub_integrations_response_200_item.py,sha256=dxxuRc8u1cttIabjA43HHuc_L_E0DLIoF9xDWxLcEsU,1544
1873
- windmill_api/models/list_inputs_response_200_item.py,sha256=WrO-yXAXBd6CCWpvUhSigrYZwUH1JYzWD4u8tRsdBHA,3087
1874
- windmill_api/models/list_inputs_response_200_item_args.py,sha256=KLK6OuUkdO3zmJYORwY5XEAUhli1o6u152bhBmJFPcg,1312
1870
+ windmill_api/models/list_inputs_response_200_item.py,sha256=hUKug_eYRZylMkidYmOmsxjfyrJj3dZoam7Cjju7qj4,2619
1875
1871
  windmill_api/models/list_inputs_runnable_type.py,sha256=RTfe5eGBgPlnk7vgyuH1IANskPrrCg-U-oxLt1UDEqg,213
1876
1872
  windmill_api/models/list_instance_groups_response_200_item.py,sha256=7jdabz6lWOdm8o4lHBAsnLLz6Mi_BbWM2cPD1Hz9des,2215
1877
1873
  windmill_api/models/list_jobs_response_200_item_type_0.py,sha256=ygPZ4kvHsK7Phjz-mJ1RJvEG0T5fxTGuvYs5ny-Pvxs,13644
@@ -2522,7 +2518,7 @@ windmill_api/models/workspace_git_sync_settings_repositories_item_exclude_types_
2522
2518
  windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1lixwUUXG6CXs,2037
2523
2519
  windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
2524
2520
  windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
2525
- windmill_api-1.358.1.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
2526
- windmill_api-1.358.1.dist-info/METADATA,sha256=BT_ur_LHwad9NUYR5h-HZ46Ob6qkPtiokVZg7X4mXDM,5023
2527
- windmill_api-1.358.1.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
2528
- windmill_api-1.358.1.dist-info/RECORD,,
2521
+ windmill_api-1.359.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
2522
+ windmill_api-1.359.0.dist-info/METADATA,sha256=H0JLJbQ6ZxXK43ZKbMfXH6quxC15b8ix-zjQpBQuEAs,5023
2523
+ windmill_api-1.359.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
2524
+ windmill_api-1.359.0.dist-info/RECORD,,
@@ -1,44 +0,0 @@
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="GetFlowInputHistoryByPathResponse200ItemArgs")
7
-
8
-
9
- @_attrs_define
10
- class GetFlowInputHistoryByPathResponse200ItemArgs:
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_flow_input_history_by_path_response_200_item_args = cls()
26
-
27
- get_flow_input_history_by_path_response_200_item_args.additional_properties = d
28
- return get_flow_input_history_by_path_response_200_item_args
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
@@ -1,44 +0,0 @@
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="GetInputHistoryResponse200ItemArgs")
7
-
8
-
9
- @_attrs_define
10
- class GetInputHistoryResponse200ItemArgs:
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_input_history_response_200_item_args = cls()
26
-
27
- get_input_history_response_200_item_args.additional_properties = d
28
- return get_input_history_response_200_item_args
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
@@ -1,44 +0,0 @@
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="InputArgs")
7
-
8
-
9
- @_attrs_define
10
- class InputArgs:
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
- input_args = cls()
26
-
27
- input_args.additional_properties = d
28
- return input_args
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
@@ -1,44 +0,0 @@
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="ListInputsResponse200ItemArgs")
7
-
8
-
9
- @_attrs_define
10
- class ListInputsResponse200ItemArgs:
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
- list_inputs_response_200_item_args = cls()
26
-
27
- list_inputs_response_200_item_args.additional_properties = d
28
- return list_inputs_response_200_item_args
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