windmill-api 1.476.0__py3-none-any.whl → 1.477.1__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.

@@ -17,6 +17,7 @@ def _get_kwargs(
17
17
  runnable_type: Union[Unset, None, GetInputHistoryRunnableType] = UNSET,
18
18
  page: Union[Unset, None, int] = UNSET,
19
19
  per_page: Union[Unset, None, int] = UNSET,
20
+ args: Union[Unset, None, str] = UNSET,
20
21
  include_preview: Union[Unset, None, bool] = UNSET,
21
22
  ) -> Dict[str, Any]:
22
23
  pass
@@ -34,6 +35,8 @@ def _get_kwargs(
34
35
 
35
36
  params["per_page"] = per_page
36
37
 
38
+ params["args"] = args
39
+
37
40
  params["include_preview"] = include_preview
38
41
 
39
42
  params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
@@ -84,6 +87,7 @@ def sync_detailed(
84
87
  runnable_type: Union[Unset, None, GetInputHistoryRunnableType] = UNSET,
85
88
  page: Union[Unset, None, int] = UNSET,
86
89
  per_page: Union[Unset, None, int] = UNSET,
90
+ args: Union[Unset, None, str] = UNSET,
87
91
  include_preview: Union[Unset, None, bool] = UNSET,
88
92
  ) -> Response[List["GetInputHistoryResponse200Item"]]:
89
93
  """List Inputs used in previously completed jobs
@@ -94,6 +98,7 @@ def sync_detailed(
94
98
  runnable_type (Union[Unset, None, GetInputHistoryRunnableType]):
95
99
  page (Union[Unset, None, int]):
96
100
  per_page (Union[Unset, None, int]):
101
+ args (Union[Unset, None, str]):
97
102
  include_preview (Union[Unset, None, bool]):
98
103
 
99
104
  Raises:
@@ -110,6 +115,7 @@ def sync_detailed(
110
115
  runnable_type=runnable_type,
111
116
  page=page,
112
117
  per_page=per_page,
118
+ args=args,
113
119
  include_preview=include_preview,
114
120
  )
115
121
 
@@ -128,6 +134,7 @@ def sync(
128
134
  runnable_type: Union[Unset, None, GetInputHistoryRunnableType] = UNSET,
129
135
  page: Union[Unset, None, int] = UNSET,
130
136
  per_page: Union[Unset, None, int] = UNSET,
137
+ args: Union[Unset, None, str] = UNSET,
131
138
  include_preview: Union[Unset, None, bool] = UNSET,
132
139
  ) -> Optional[List["GetInputHistoryResponse200Item"]]:
133
140
  """List Inputs used in previously completed jobs
@@ -138,6 +145,7 @@ def sync(
138
145
  runnable_type (Union[Unset, None, GetInputHistoryRunnableType]):
139
146
  page (Union[Unset, None, int]):
140
147
  per_page (Union[Unset, None, int]):
148
+ args (Union[Unset, None, str]):
141
149
  include_preview (Union[Unset, None, bool]):
142
150
 
143
151
  Raises:
@@ -155,6 +163,7 @@ def sync(
155
163
  runnable_type=runnable_type,
156
164
  page=page,
157
165
  per_page=per_page,
166
+ args=args,
158
167
  include_preview=include_preview,
159
168
  ).parsed
160
169
 
@@ -167,6 +176,7 @@ async def asyncio_detailed(
167
176
  runnable_type: Union[Unset, None, GetInputHistoryRunnableType] = UNSET,
168
177
  page: Union[Unset, None, int] = UNSET,
169
178
  per_page: Union[Unset, None, int] = UNSET,
179
+ args: Union[Unset, None, str] = UNSET,
170
180
  include_preview: Union[Unset, None, bool] = UNSET,
171
181
  ) -> Response[List["GetInputHistoryResponse200Item"]]:
172
182
  """List Inputs used in previously completed jobs
@@ -177,6 +187,7 @@ async def asyncio_detailed(
177
187
  runnable_type (Union[Unset, None, GetInputHistoryRunnableType]):
178
188
  page (Union[Unset, None, int]):
179
189
  per_page (Union[Unset, None, int]):
190
+ args (Union[Unset, None, str]):
180
191
  include_preview (Union[Unset, None, bool]):
181
192
 
182
193
  Raises:
@@ -193,6 +204,7 @@ async def asyncio_detailed(
193
204
  runnable_type=runnable_type,
194
205
  page=page,
195
206
  per_page=per_page,
207
+ args=args,
196
208
  include_preview=include_preview,
197
209
  )
198
210
 
@@ -209,6 +221,7 @@ async def asyncio(
209
221
  runnable_type: Union[Unset, None, GetInputHistoryRunnableType] = UNSET,
210
222
  page: Union[Unset, None, int] = UNSET,
211
223
  per_page: Union[Unset, None, int] = UNSET,
224
+ args: Union[Unset, None, str] = UNSET,
212
225
  include_preview: Union[Unset, None, bool] = UNSET,
213
226
  ) -> Optional[List["GetInputHistoryResponse200Item"]]:
214
227
  """List Inputs used in previously completed jobs
@@ -219,6 +232,7 @@ async def asyncio(
219
232
  runnable_type (Union[Unset, None, GetInputHistoryRunnableType]):
220
233
  page (Union[Unset, None, int]):
221
234
  per_page (Union[Unset, None, int]):
235
+ args (Union[Unset, None, str]):
222
236
  include_preview (Union[Unset, None, bool]):
223
237
 
224
238
  Raises:
@@ -237,6 +251,7 @@ async def asyncio(
237
251
  runnable_type=runnable_type,
238
252
  page=page,
239
253
  per_page=per_page,
254
+ args=args,
240
255
  include_preview=include_preview,
241
256
  )
242
257
  ).parsed
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: windmill-api
3
- Version: 1.476.0
3
+ Version: 1.477.1
4
4
  Summary: A client library for accessing Windmill API
5
5
  License: Apache-2.0
6
6
  Author: Ruben Fiszel
@@ -142,7 +142,7 @@ windmill_api/api/input_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
142
142
  windmill_api/api/input_/create_input.py,sha256=ld4CGfTUtmxuyjWuoR-MwvK_lA9xtPnr9H-rVZn3YhQ,3986
143
143
  windmill_api/api/input_/delete_input.py,sha256=FpZ2UYnKXWbNuu7q-e7WUdtca5GabWmmXlXoOqGakPw,2471
144
144
  windmill_api/api/input_/get_args_from_history_or_saved_input.py,sha256=sst4dk3dy8kXLNwP2SbGOq8rFQcbHMk96rSlE_jbpvk,3489
145
- windmill_api/api/input_/get_input_history.py,sha256=oWcwFfozeRvIU4OvisLtcxdjg6aAxMcT5hPOL4X0YOU,7936
145
+ windmill_api/api/input_/get_input_history.py,sha256=D59Qj2rKTHMIG5FiCG7ZHVzo7d_pdTQq2nTKigXYceI,8418
146
146
  windmill_api/api/input_/list_inputs.py,sha256=J94FD_VvaWjAMkcOnxzPZeDuyMVJMReF3ULbMpAZ-uI,7059
147
147
  windmill_api/api/input_/update_input.py,sha256=1JYU51YQ5tsWnStyGK2xpZV7GYtdtL3fBZ3URQSEr7I,2680
148
148
  windmill_api/api/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -3799,7 +3799,7 @@ windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1li
3799
3799
  windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
3800
3800
  windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
3801
3801
  windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
3802
- windmill_api-1.476.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
3803
- windmill_api-1.476.0.dist-info/METADATA,sha256=6WGBYcB_eCXk7btuWxiW15eUAwOzGvJ_Cev2er1qDuU,5023
3804
- windmill_api-1.476.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
3805
- windmill_api-1.476.0.dist-info/RECORD,,
3802
+ windmill_api-1.477.1.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
3803
+ windmill_api-1.477.1.dist-info/METADATA,sha256=gLtlCxo2Zw-6xUPaKLABCZ78riabFNJomg4KxsbQias,5023
3804
+ windmill_api-1.477.1.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
3805
+ windmill_api-1.477.1.dist-info/RECORD,,