windmill-api 1.566.0__py3-none-any.whl → 1.566.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.
- windmill_api/models/archive_script_by_hash_response_200.py +16 -0
- windmill_api/models/delete_script_by_hash_response_200.py +16 -0
- windmill_api/models/get_script_by_hash_response_200.py +16 -0
- windmill_api/models/get_script_by_path_response_200.py +16 -0
- windmill_api/models/list_scripts_response_200_item.py +16 -0
- windmill_api/models/script.py +16 -0
- {windmill_api-1.566.0.dist-info → windmill_api-1.566.1.dist-info}/METADATA +1 -1
- {windmill_api-1.566.0.dist-info → windmill_api-1.566.1.dist-info}/RECORD +10 -10
- {windmill_api-1.566.0.dist-info → windmill_api-1.566.1.dist-info}/LICENSE +0 -0
- {windmill_api-1.566.0.dist-info → windmill_api-1.566.1.dist-info}/WHEEL +0 -0
|
@@ -50,6 +50,8 @@ class ArchiveScriptByHashResponse200:
|
|
|
50
50
|
concurrent_limit (Union[Unset, int]):
|
|
51
51
|
concurrency_time_window_s (Union[Unset, int]):
|
|
52
52
|
concurrency_key (Union[Unset, str]):
|
|
53
|
+
debounce_key (Union[Unset, str]):
|
|
54
|
+
debounce_delay_s (Union[Unset, int]):
|
|
53
55
|
cache_ttl (Union[Unset, float]):
|
|
54
56
|
dedicated_worker (Union[Unset, bool]):
|
|
55
57
|
ws_error_handler_muted (Union[Unset, bool]):
|
|
@@ -90,6 +92,8 @@ class ArchiveScriptByHashResponse200:
|
|
|
90
92
|
concurrent_limit: Union[Unset, int] = UNSET
|
|
91
93
|
concurrency_time_window_s: Union[Unset, int] = UNSET
|
|
92
94
|
concurrency_key: Union[Unset, str] = UNSET
|
|
95
|
+
debounce_key: Union[Unset, str] = UNSET
|
|
96
|
+
debounce_delay_s: Union[Unset, int] = UNSET
|
|
93
97
|
cache_ttl: Union[Unset, float] = UNSET
|
|
94
98
|
dedicated_worker: Union[Unset, bool] = UNSET
|
|
95
99
|
ws_error_handler_muted: Union[Unset, bool] = UNSET
|
|
@@ -144,6 +148,8 @@ class ArchiveScriptByHashResponse200:
|
|
|
144
148
|
concurrent_limit = self.concurrent_limit
|
|
145
149
|
concurrency_time_window_s = self.concurrency_time_window_s
|
|
146
150
|
concurrency_key = self.concurrency_key
|
|
151
|
+
debounce_key = self.debounce_key
|
|
152
|
+
debounce_delay_s = self.debounce_delay_s
|
|
147
153
|
cache_ttl = self.cache_ttl
|
|
148
154
|
dedicated_worker = self.dedicated_worker
|
|
149
155
|
ws_error_handler_muted = self.ws_error_handler_muted
|
|
@@ -201,6 +207,10 @@ class ArchiveScriptByHashResponse200:
|
|
|
201
207
|
field_dict["concurrency_time_window_s"] = concurrency_time_window_s
|
|
202
208
|
if concurrency_key is not UNSET:
|
|
203
209
|
field_dict["concurrency_key"] = concurrency_key
|
|
210
|
+
if debounce_key is not UNSET:
|
|
211
|
+
field_dict["debounce_key"] = debounce_key
|
|
212
|
+
if debounce_delay_s is not UNSET:
|
|
213
|
+
field_dict["debounce_delay_s"] = debounce_delay_s
|
|
204
214
|
if cache_ttl is not UNSET:
|
|
205
215
|
field_dict["cache_ttl"] = cache_ttl
|
|
206
216
|
if dedicated_worker is not UNSET:
|
|
@@ -291,6 +301,10 @@ class ArchiveScriptByHashResponse200:
|
|
|
291
301
|
|
|
292
302
|
concurrency_key = d.pop("concurrency_key", UNSET)
|
|
293
303
|
|
|
304
|
+
debounce_key = d.pop("debounce_key", UNSET)
|
|
305
|
+
|
|
306
|
+
debounce_delay_s = d.pop("debounce_delay_s", UNSET)
|
|
307
|
+
|
|
294
308
|
cache_ttl = d.pop("cache_ttl", UNSET)
|
|
295
309
|
|
|
296
310
|
dedicated_worker = d.pop("dedicated_worker", UNSET)
|
|
@@ -340,6 +354,8 @@ class ArchiveScriptByHashResponse200:
|
|
|
340
354
|
concurrent_limit=concurrent_limit,
|
|
341
355
|
concurrency_time_window_s=concurrency_time_window_s,
|
|
342
356
|
concurrency_key=concurrency_key,
|
|
357
|
+
debounce_key=debounce_key,
|
|
358
|
+
debounce_delay_s=debounce_delay_s,
|
|
343
359
|
cache_ttl=cache_ttl,
|
|
344
360
|
dedicated_worker=dedicated_worker,
|
|
345
361
|
ws_error_handler_muted=ws_error_handler_muted,
|
|
@@ -50,6 +50,8 @@ class DeleteScriptByHashResponse200:
|
|
|
50
50
|
concurrent_limit (Union[Unset, int]):
|
|
51
51
|
concurrency_time_window_s (Union[Unset, int]):
|
|
52
52
|
concurrency_key (Union[Unset, str]):
|
|
53
|
+
debounce_key (Union[Unset, str]):
|
|
54
|
+
debounce_delay_s (Union[Unset, int]):
|
|
53
55
|
cache_ttl (Union[Unset, float]):
|
|
54
56
|
dedicated_worker (Union[Unset, bool]):
|
|
55
57
|
ws_error_handler_muted (Union[Unset, bool]):
|
|
@@ -90,6 +92,8 @@ class DeleteScriptByHashResponse200:
|
|
|
90
92
|
concurrent_limit: Union[Unset, int] = UNSET
|
|
91
93
|
concurrency_time_window_s: Union[Unset, int] = UNSET
|
|
92
94
|
concurrency_key: Union[Unset, str] = UNSET
|
|
95
|
+
debounce_key: Union[Unset, str] = UNSET
|
|
96
|
+
debounce_delay_s: Union[Unset, int] = UNSET
|
|
93
97
|
cache_ttl: Union[Unset, float] = UNSET
|
|
94
98
|
dedicated_worker: Union[Unset, bool] = UNSET
|
|
95
99
|
ws_error_handler_muted: Union[Unset, bool] = UNSET
|
|
@@ -144,6 +148,8 @@ class DeleteScriptByHashResponse200:
|
|
|
144
148
|
concurrent_limit = self.concurrent_limit
|
|
145
149
|
concurrency_time_window_s = self.concurrency_time_window_s
|
|
146
150
|
concurrency_key = self.concurrency_key
|
|
151
|
+
debounce_key = self.debounce_key
|
|
152
|
+
debounce_delay_s = self.debounce_delay_s
|
|
147
153
|
cache_ttl = self.cache_ttl
|
|
148
154
|
dedicated_worker = self.dedicated_worker
|
|
149
155
|
ws_error_handler_muted = self.ws_error_handler_muted
|
|
@@ -201,6 +207,10 @@ class DeleteScriptByHashResponse200:
|
|
|
201
207
|
field_dict["concurrency_time_window_s"] = concurrency_time_window_s
|
|
202
208
|
if concurrency_key is not UNSET:
|
|
203
209
|
field_dict["concurrency_key"] = concurrency_key
|
|
210
|
+
if debounce_key is not UNSET:
|
|
211
|
+
field_dict["debounce_key"] = debounce_key
|
|
212
|
+
if debounce_delay_s is not UNSET:
|
|
213
|
+
field_dict["debounce_delay_s"] = debounce_delay_s
|
|
204
214
|
if cache_ttl is not UNSET:
|
|
205
215
|
field_dict["cache_ttl"] = cache_ttl
|
|
206
216
|
if dedicated_worker is not UNSET:
|
|
@@ -291,6 +301,10 @@ class DeleteScriptByHashResponse200:
|
|
|
291
301
|
|
|
292
302
|
concurrency_key = d.pop("concurrency_key", UNSET)
|
|
293
303
|
|
|
304
|
+
debounce_key = d.pop("debounce_key", UNSET)
|
|
305
|
+
|
|
306
|
+
debounce_delay_s = d.pop("debounce_delay_s", UNSET)
|
|
307
|
+
|
|
294
308
|
cache_ttl = d.pop("cache_ttl", UNSET)
|
|
295
309
|
|
|
296
310
|
dedicated_worker = d.pop("dedicated_worker", UNSET)
|
|
@@ -340,6 +354,8 @@ class DeleteScriptByHashResponse200:
|
|
|
340
354
|
concurrent_limit=concurrent_limit,
|
|
341
355
|
concurrency_time_window_s=concurrency_time_window_s,
|
|
342
356
|
concurrency_key=concurrency_key,
|
|
357
|
+
debounce_key=debounce_key,
|
|
358
|
+
debounce_delay_s=debounce_delay_s,
|
|
343
359
|
cache_ttl=cache_ttl,
|
|
344
360
|
dedicated_worker=dedicated_worker,
|
|
345
361
|
ws_error_handler_muted=ws_error_handler_muted,
|
|
@@ -50,6 +50,8 @@ class GetScriptByHashResponse200:
|
|
|
50
50
|
concurrent_limit (Union[Unset, int]):
|
|
51
51
|
concurrency_time_window_s (Union[Unset, int]):
|
|
52
52
|
concurrency_key (Union[Unset, str]):
|
|
53
|
+
debounce_key (Union[Unset, str]):
|
|
54
|
+
debounce_delay_s (Union[Unset, int]):
|
|
53
55
|
cache_ttl (Union[Unset, float]):
|
|
54
56
|
dedicated_worker (Union[Unset, bool]):
|
|
55
57
|
ws_error_handler_muted (Union[Unset, bool]):
|
|
@@ -90,6 +92,8 @@ class GetScriptByHashResponse200:
|
|
|
90
92
|
concurrent_limit: Union[Unset, int] = UNSET
|
|
91
93
|
concurrency_time_window_s: Union[Unset, int] = UNSET
|
|
92
94
|
concurrency_key: Union[Unset, str] = UNSET
|
|
95
|
+
debounce_key: Union[Unset, str] = UNSET
|
|
96
|
+
debounce_delay_s: Union[Unset, int] = UNSET
|
|
93
97
|
cache_ttl: Union[Unset, float] = UNSET
|
|
94
98
|
dedicated_worker: Union[Unset, bool] = UNSET
|
|
95
99
|
ws_error_handler_muted: Union[Unset, bool] = UNSET
|
|
@@ -144,6 +148,8 @@ class GetScriptByHashResponse200:
|
|
|
144
148
|
concurrent_limit = self.concurrent_limit
|
|
145
149
|
concurrency_time_window_s = self.concurrency_time_window_s
|
|
146
150
|
concurrency_key = self.concurrency_key
|
|
151
|
+
debounce_key = self.debounce_key
|
|
152
|
+
debounce_delay_s = self.debounce_delay_s
|
|
147
153
|
cache_ttl = self.cache_ttl
|
|
148
154
|
dedicated_worker = self.dedicated_worker
|
|
149
155
|
ws_error_handler_muted = self.ws_error_handler_muted
|
|
@@ -201,6 +207,10 @@ class GetScriptByHashResponse200:
|
|
|
201
207
|
field_dict["concurrency_time_window_s"] = concurrency_time_window_s
|
|
202
208
|
if concurrency_key is not UNSET:
|
|
203
209
|
field_dict["concurrency_key"] = concurrency_key
|
|
210
|
+
if debounce_key is not UNSET:
|
|
211
|
+
field_dict["debounce_key"] = debounce_key
|
|
212
|
+
if debounce_delay_s is not UNSET:
|
|
213
|
+
field_dict["debounce_delay_s"] = debounce_delay_s
|
|
204
214
|
if cache_ttl is not UNSET:
|
|
205
215
|
field_dict["cache_ttl"] = cache_ttl
|
|
206
216
|
if dedicated_worker is not UNSET:
|
|
@@ -291,6 +301,10 @@ class GetScriptByHashResponse200:
|
|
|
291
301
|
|
|
292
302
|
concurrency_key = d.pop("concurrency_key", UNSET)
|
|
293
303
|
|
|
304
|
+
debounce_key = d.pop("debounce_key", UNSET)
|
|
305
|
+
|
|
306
|
+
debounce_delay_s = d.pop("debounce_delay_s", UNSET)
|
|
307
|
+
|
|
294
308
|
cache_ttl = d.pop("cache_ttl", UNSET)
|
|
295
309
|
|
|
296
310
|
dedicated_worker = d.pop("dedicated_worker", UNSET)
|
|
@@ -340,6 +354,8 @@ class GetScriptByHashResponse200:
|
|
|
340
354
|
concurrent_limit=concurrent_limit,
|
|
341
355
|
concurrency_time_window_s=concurrency_time_window_s,
|
|
342
356
|
concurrency_key=concurrency_key,
|
|
357
|
+
debounce_key=debounce_key,
|
|
358
|
+
debounce_delay_s=debounce_delay_s,
|
|
343
359
|
cache_ttl=cache_ttl,
|
|
344
360
|
dedicated_worker=dedicated_worker,
|
|
345
361
|
ws_error_handler_muted=ws_error_handler_muted,
|
|
@@ -50,6 +50,8 @@ class GetScriptByPathResponse200:
|
|
|
50
50
|
concurrent_limit (Union[Unset, int]):
|
|
51
51
|
concurrency_time_window_s (Union[Unset, int]):
|
|
52
52
|
concurrency_key (Union[Unset, str]):
|
|
53
|
+
debounce_key (Union[Unset, str]):
|
|
54
|
+
debounce_delay_s (Union[Unset, int]):
|
|
53
55
|
cache_ttl (Union[Unset, float]):
|
|
54
56
|
dedicated_worker (Union[Unset, bool]):
|
|
55
57
|
ws_error_handler_muted (Union[Unset, bool]):
|
|
@@ -90,6 +92,8 @@ class GetScriptByPathResponse200:
|
|
|
90
92
|
concurrent_limit: Union[Unset, int] = UNSET
|
|
91
93
|
concurrency_time_window_s: Union[Unset, int] = UNSET
|
|
92
94
|
concurrency_key: Union[Unset, str] = UNSET
|
|
95
|
+
debounce_key: Union[Unset, str] = UNSET
|
|
96
|
+
debounce_delay_s: Union[Unset, int] = UNSET
|
|
93
97
|
cache_ttl: Union[Unset, float] = UNSET
|
|
94
98
|
dedicated_worker: Union[Unset, bool] = UNSET
|
|
95
99
|
ws_error_handler_muted: Union[Unset, bool] = UNSET
|
|
@@ -144,6 +148,8 @@ class GetScriptByPathResponse200:
|
|
|
144
148
|
concurrent_limit = self.concurrent_limit
|
|
145
149
|
concurrency_time_window_s = self.concurrency_time_window_s
|
|
146
150
|
concurrency_key = self.concurrency_key
|
|
151
|
+
debounce_key = self.debounce_key
|
|
152
|
+
debounce_delay_s = self.debounce_delay_s
|
|
147
153
|
cache_ttl = self.cache_ttl
|
|
148
154
|
dedicated_worker = self.dedicated_worker
|
|
149
155
|
ws_error_handler_muted = self.ws_error_handler_muted
|
|
@@ -201,6 +207,10 @@ class GetScriptByPathResponse200:
|
|
|
201
207
|
field_dict["concurrency_time_window_s"] = concurrency_time_window_s
|
|
202
208
|
if concurrency_key is not UNSET:
|
|
203
209
|
field_dict["concurrency_key"] = concurrency_key
|
|
210
|
+
if debounce_key is not UNSET:
|
|
211
|
+
field_dict["debounce_key"] = debounce_key
|
|
212
|
+
if debounce_delay_s is not UNSET:
|
|
213
|
+
field_dict["debounce_delay_s"] = debounce_delay_s
|
|
204
214
|
if cache_ttl is not UNSET:
|
|
205
215
|
field_dict["cache_ttl"] = cache_ttl
|
|
206
216
|
if dedicated_worker is not UNSET:
|
|
@@ -291,6 +301,10 @@ class GetScriptByPathResponse200:
|
|
|
291
301
|
|
|
292
302
|
concurrency_key = d.pop("concurrency_key", UNSET)
|
|
293
303
|
|
|
304
|
+
debounce_key = d.pop("debounce_key", UNSET)
|
|
305
|
+
|
|
306
|
+
debounce_delay_s = d.pop("debounce_delay_s", UNSET)
|
|
307
|
+
|
|
294
308
|
cache_ttl = d.pop("cache_ttl", UNSET)
|
|
295
309
|
|
|
296
310
|
dedicated_worker = d.pop("dedicated_worker", UNSET)
|
|
@@ -340,6 +354,8 @@ class GetScriptByPathResponse200:
|
|
|
340
354
|
concurrent_limit=concurrent_limit,
|
|
341
355
|
concurrency_time_window_s=concurrency_time_window_s,
|
|
342
356
|
concurrency_key=concurrency_key,
|
|
357
|
+
debounce_key=debounce_key,
|
|
358
|
+
debounce_delay_s=debounce_delay_s,
|
|
343
359
|
cache_ttl=cache_ttl,
|
|
344
360
|
dedicated_worker=dedicated_worker,
|
|
345
361
|
ws_error_handler_muted=ws_error_handler_muted,
|
|
@@ -50,6 +50,8 @@ class ListScriptsResponse200Item:
|
|
|
50
50
|
concurrent_limit (Union[Unset, int]):
|
|
51
51
|
concurrency_time_window_s (Union[Unset, int]):
|
|
52
52
|
concurrency_key (Union[Unset, str]):
|
|
53
|
+
debounce_key (Union[Unset, str]):
|
|
54
|
+
debounce_delay_s (Union[Unset, int]):
|
|
53
55
|
cache_ttl (Union[Unset, float]):
|
|
54
56
|
dedicated_worker (Union[Unset, bool]):
|
|
55
57
|
ws_error_handler_muted (Union[Unset, bool]):
|
|
@@ -90,6 +92,8 @@ class ListScriptsResponse200Item:
|
|
|
90
92
|
concurrent_limit: Union[Unset, int] = UNSET
|
|
91
93
|
concurrency_time_window_s: Union[Unset, int] = UNSET
|
|
92
94
|
concurrency_key: Union[Unset, str] = UNSET
|
|
95
|
+
debounce_key: Union[Unset, str] = UNSET
|
|
96
|
+
debounce_delay_s: Union[Unset, int] = UNSET
|
|
93
97
|
cache_ttl: Union[Unset, float] = UNSET
|
|
94
98
|
dedicated_worker: Union[Unset, bool] = UNSET
|
|
95
99
|
ws_error_handler_muted: Union[Unset, bool] = UNSET
|
|
@@ -144,6 +148,8 @@ class ListScriptsResponse200Item:
|
|
|
144
148
|
concurrent_limit = self.concurrent_limit
|
|
145
149
|
concurrency_time_window_s = self.concurrency_time_window_s
|
|
146
150
|
concurrency_key = self.concurrency_key
|
|
151
|
+
debounce_key = self.debounce_key
|
|
152
|
+
debounce_delay_s = self.debounce_delay_s
|
|
147
153
|
cache_ttl = self.cache_ttl
|
|
148
154
|
dedicated_worker = self.dedicated_worker
|
|
149
155
|
ws_error_handler_muted = self.ws_error_handler_muted
|
|
@@ -201,6 +207,10 @@ class ListScriptsResponse200Item:
|
|
|
201
207
|
field_dict["concurrency_time_window_s"] = concurrency_time_window_s
|
|
202
208
|
if concurrency_key is not UNSET:
|
|
203
209
|
field_dict["concurrency_key"] = concurrency_key
|
|
210
|
+
if debounce_key is not UNSET:
|
|
211
|
+
field_dict["debounce_key"] = debounce_key
|
|
212
|
+
if debounce_delay_s is not UNSET:
|
|
213
|
+
field_dict["debounce_delay_s"] = debounce_delay_s
|
|
204
214
|
if cache_ttl is not UNSET:
|
|
205
215
|
field_dict["cache_ttl"] = cache_ttl
|
|
206
216
|
if dedicated_worker is not UNSET:
|
|
@@ -291,6 +301,10 @@ class ListScriptsResponse200Item:
|
|
|
291
301
|
|
|
292
302
|
concurrency_key = d.pop("concurrency_key", UNSET)
|
|
293
303
|
|
|
304
|
+
debounce_key = d.pop("debounce_key", UNSET)
|
|
305
|
+
|
|
306
|
+
debounce_delay_s = d.pop("debounce_delay_s", UNSET)
|
|
307
|
+
|
|
294
308
|
cache_ttl = d.pop("cache_ttl", UNSET)
|
|
295
309
|
|
|
296
310
|
dedicated_worker = d.pop("dedicated_worker", UNSET)
|
|
@@ -340,6 +354,8 @@ class ListScriptsResponse200Item:
|
|
|
340
354
|
concurrent_limit=concurrent_limit,
|
|
341
355
|
concurrency_time_window_s=concurrency_time_window_s,
|
|
342
356
|
concurrency_key=concurrency_key,
|
|
357
|
+
debounce_key=debounce_key,
|
|
358
|
+
debounce_delay_s=debounce_delay_s,
|
|
343
359
|
cache_ttl=cache_ttl,
|
|
344
360
|
dedicated_worker=dedicated_worker,
|
|
345
361
|
ws_error_handler_muted=ws_error_handler_muted,
|
windmill_api/models/script.py
CHANGED
|
@@ -50,6 +50,8 @@ class Script:
|
|
|
50
50
|
concurrent_limit (Union[Unset, int]):
|
|
51
51
|
concurrency_time_window_s (Union[Unset, int]):
|
|
52
52
|
concurrency_key (Union[Unset, str]):
|
|
53
|
+
debounce_key (Union[Unset, str]):
|
|
54
|
+
debounce_delay_s (Union[Unset, int]):
|
|
53
55
|
cache_ttl (Union[Unset, float]):
|
|
54
56
|
dedicated_worker (Union[Unset, bool]):
|
|
55
57
|
ws_error_handler_muted (Union[Unset, bool]):
|
|
@@ -90,6 +92,8 @@ class Script:
|
|
|
90
92
|
concurrent_limit: Union[Unset, int] = UNSET
|
|
91
93
|
concurrency_time_window_s: Union[Unset, int] = UNSET
|
|
92
94
|
concurrency_key: Union[Unset, str] = UNSET
|
|
95
|
+
debounce_key: Union[Unset, str] = UNSET
|
|
96
|
+
debounce_delay_s: Union[Unset, int] = UNSET
|
|
93
97
|
cache_ttl: Union[Unset, float] = UNSET
|
|
94
98
|
dedicated_worker: Union[Unset, bool] = UNSET
|
|
95
99
|
ws_error_handler_muted: Union[Unset, bool] = UNSET
|
|
@@ -144,6 +148,8 @@ class Script:
|
|
|
144
148
|
concurrent_limit = self.concurrent_limit
|
|
145
149
|
concurrency_time_window_s = self.concurrency_time_window_s
|
|
146
150
|
concurrency_key = self.concurrency_key
|
|
151
|
+
debounce_key = self.debounce_key
|
|
152
|
+
debounce_delay_s = self.debounce_delay_s
|
|
147
153
|
cache_ttl = self.cache_ttl
|
|
148
154
|
dedicated_worker = self.dedicated_worker
|
|
149
155
|
ws_error_handler_muted = self.ws_error_handler_muted
|
|
@@ -201,6 +207,10 @@ class Script:
|
|
|
201
207
|
field_dict["concurrency_time_window_s"] = concurrency_time_window_s
|
|
202
208
|
if concurrency_key is not UNSET:
|
|
203
209
|
field_dict["concurrency_key"] = concurrency_key
|
|
210
|
+
if debounce_key is not UNSET:
|
|
211
|
+
field_dict["debounce_key"] = debounce_key
|
|
212
|
+
if debounce_delay_s is not UNSET:
|
|
213
|
+
field_dict["debounce_delay_s"] = debounce_delay_s
|
|
204
214
|
if cache_ttl is not UNSET:
|
|
205
215
|
field_dict["cache_ttl"] = cache_ttl
|
|
206
216
|
if dedicated_worker is not UNSET:
|
|
@@ -291,6 +301,10 @@ class Script:
|
|
|
291
301
|
|
|
292
302
|
concurrency_key = d.pop("concurrency_key", UNSET)
|
|
293
303
|
|
|
304
|
+
debounce_key = d.pop("debounce_key", UNSET)
|
|
305
|
+
|
|
306
|
+
debounce_delay_s = d.pop("debounce_delay_s", UNSET)
|
|
307
|
+
|
|
294
308
|
cache_ttl = d.pop("cache_ttl", UNSET)
|
|
295
309
|
|
|
296
310
|
dedicated_worker = d.pop("dedicated_worker", UNSET)
|
|
@@ -340,6 +354,8 @@ class Script:
|
|
|
340
354
|
concurrent_limit=concurrent_limit,
|
|
341
355
|
concurrency_time_window_s=concurrency_time_window_s,
|
|
342
356
|
concurrency_key=concurrency_key,
|
|
357
|
+
debounce_key=debounce_key,
|
|
358
|
+
debounce_delay_s=debounce_delay_s,
|
|
343
359
|
cache_ttl=cache_ttl,
|
|
344
360
|
dedicated_worker=dedicated_worker,
|
|
345
361
|
ws_error_handler_muted=ws_error_handler_muted,
|
|
@@ -654,7 +654,7 @@ windmill_api/models/app_with_last_version_w_draft_policy_triggerables_v2.py,sha2
|
|
|
654
654
|
windmill_api/models/app_with_last_version_w_draft_policy_triggerables_v2_additional_property.py,sha256=5hJy1gstdU-2D2T_q30uRbg7M1jRMXt4PIVLbOZc23I,1492
|
|
655
655
|
windmill_api/models/app_with_last_version_w_draft_value.py,sha256=vojZEXP8_lwvWKXe5cYMyu_gUDKif5q1Dam7ctd0h9o,1315
|
|
656
656
|
windmill_api/models/archive_flow_by_path_json_body.py,sha256=pU7NsDstXdEvA4KXkXl_FA4LM1GwJtLE671j6Alwxtg,1632
|
|
657
|
-
windmill_api/models/archive_script_by_hash_response_200.py,sha256=
|
|
657
|
+
windmill_api/models/archive_script_by_hash_response_200.py,sha256=WINNM0h6sPHdS5cYYCs49FwEdgDYWeSBJo4jbdTescA,14109
|
|
658
658
|
windmill_api/models/archive_script_by_hash_response_200_extra_perms.py,sha256=sIEzFnTG7C7cBp5Q_5PhuvEMonBc4efet2KgafRyFrA,1376
|
|
659
659
|
windmill_api/models/archive_script_by_hash_response_200_kind.py,sha256=QxcY4eSLArs3LmAqDTa71QMkWJF_sAjg0LeC0uQ7yyE,293
|
|
660
660
|
windmill_api/models/archive_script_by_hash_response_200_language.py,sha256=-EXTc6gqagqakBAqJ0SEDDu1dhflonjxMN5dxDfymt8,615
|
|
@@ -1209,7 +1209,7 @@ windmill_api/models/delete_git_sync_repository_json_body.py,sha256=BaFjShy3ZMy47
|
|
|
1209
1209
|
windmill_api/models/delete_invite_json_body.py,sha256=9Rws1BK_ai-18GzqcNQPNzg7me0lsC2qjOjqwVX7zV0,1846
|
|
1210
1210
|
windmill_api/models/delete_postgres_replication_slot_json_body.py,sha256=EYbc9ZhYbEGyqz3S4EWhuPtI5Dq5ZOqzWkrBYmU6II0,1646
|
|
1211
1211
|
windmill_api/models/delete_resources_bulk_json_body.py,sha256=SEhI7WbXKNAYPLZwKDOUhuCKPjQ4lC5i9OPFdGpqfrM,1551
|
|
1212
|
-
windmill_api/models/delete_script_by_hash_response_200.py,sha256=
|
|
1212
|
+
windmill_api/models/delete_script_by_hash_response_200.py,sha256=T-d4sOLcHwxhpli8bGrQiIbmGlvRjqYwcrSgRsfaLO8,14079
|
|
1213
1213
|
windmill_api/models/delete_script_by_hash_response_200_extra_perms.py,sha256=u-2IpQfSK7gc8ayrA7wN9OS8ZT_sh-ZTOgJWq2fcDys,1371
|
|
1214
1214
|
windmill_api/models/delete_script_by_hash_response_200_kind.py,sha256=FxRCYJtKyOyo13JOCGGjWvGc5J-rktHP0IZ0iW2xBuw,292
|
|
1215
1215
|
windmill_api/models/delete_script_by_hash_response_200_language.py,sha256=9uQGQPYjOSwmSj_3ffQJ9zRAvkY7mpHV164H4cRVi2s,614
|
|
@@ -3055,12 +3055,12 @@ windmill_api/models/get_schedule_response_200_retry.py,sha256=Vh6OXQLrlCjUagVpmr
|
|
|
3055
3055
|
windmill_api/models/get_schedule_response_200_retry_constant.py,sha256=YADDtMRN2TnEc-U5QkU9We47ePpiiTQisX4OJ9-_fIc,1936
|
|
3056
3056
|
windmill_api/models/get_schedule_response_200_retry_exponential.py,sha256=D0g7jWm3Q6_LLLIbiTks-HnD2-Re4AoWgrFd2guzKtY,2562
|
|
3057
3057
|
windmill_api/models/get_schedule_response_200_retry_retry_if.py,sha256=gGpeH4rbogYN-wu9xtNVEpdr39hNL_rGwm1V6JOrptM,1547
|
|
3058
|
-
windmill_api/models/get_script_by_hash_response_200.py,sha256=
|
|
3058
|
+
windmill_api/models/get_script_by_hash_response_200.py,sha256=Yc9RjwhOHF2xbiZ1NB24hquklQhC9SBGqOhu4Ntzs6k,13989
|
|
3059
3059
|
windmill_api/models/get_script_by_hash_response_200_extra_perms.py,sha256=dIA5M3p_44-Ari72k0dRHPJVYnKz8FewUAFWp22maHw,1356
|
|
3060
3060
|
windmill_api/models/get_script_by_hash_response_200_kind.py,sha256=LVZ9vnBww7shAhepE95CBjE9Q632g_C1gbOl05RZvGc,289
|
|
3061
3061
|
windmill_api/models/get_script_by_hash_response_200_language.py,sha256=pkTlCUW2Zgp9pUUJA_EkhMzcML9UdSnf17WOwc1Ahb0,611
|
|
3062
3062
|
windmill_api/models/get_script_by_hash_response_200_schema.py,sha256=7SjP19dqLKXIi3KuNA3Ydk8FDhqrpgEstNOxBk6tPBM,1330
|
|
3063
|
-
windmill_api/models/get_script_by_path_response_200.py,sha256=
|
|
3063
|
+
windmill_api/models/get_script_by_path_response_200.py,sha256=zoC-PdOuwjes7vTPMGKvH96LEDtlnJTC2OPjUKD4RVs,13989
|
|
3064
3064
|
windmill_api/models/get_script_by_path_response_200_extra_perms.py,sha256=pb_MLL5dY8lvm8NgDzsBEEAlcCUJFyELxMKnTthAyH8,1356
|
|
3065
3065
|
windmill_api/models/get_script_by_path_response_200_kind.py,sha256=zKImQ28z5joOtx5nzzau0NPONpUpIjhBshXY1xFeMn4,289
|
|
3066
3066
|
windmill_api/models/get_script_by_path_response_200_language.py,sha256=JGiWLGrK-Hlm5LislB5HCyDJ_OZHg9pXYZ7bn7xw4x0,611
|
|
@@ -4597,7 +4597,7 @@ windmill_api/models/list_schedules_with_jobs_response_200_item_retry.py,sha256=H
|
|
|
4597
4597
|
windmill_api/models/list_schedules_with_jobs_response_200_item_retry_constant.py,sha256=hnRvAeEJ7TKh_mPGpRqrhS0pzeOZcy6TCGdu9UvSu-8,2015
|
|
4598
4598
|
windmill_api/models/list_schedules_with_jobs_response_200_item_retry_exponential.py,sha256=aQHCSk20hDQCUtsILv8pz1NgxOfjXTPHtbk7enZ4NPs,2641
|
|
4599
4599
|
windmill_api/models/list_schedules_with_jobs_response_200_item_retry_retry_if.py,sha256=g6qU7cKiWgGKL1FKyJV7qrCcH1Iprg3rtUOJXP2t9VQ,1626
|
|
4600
|
-
windmill_api/models/list_scripts_response_200_item.py,sha256=
|
|
4600
|
+
windmill_api/models/list_scripts_response_200_item.py,sha256=IjlKZfLQA8uxSlRMV8hEHNdqIrnCJ5IeO-GKVifw5Jw,13980
|
|
4601
4601
|
windmill_api/models/list_scripts_response_200_item_extra_perms.py,sha256=UEuQQZOU_6_fwE5lDsPe41ViX_y-VVvk62t--srufDM,1353
|
|
4602
4602
|
windmill_api/models/list_scripts_response_200_item_kind.py,sha256=Dp7qhzK3tDlY2xSt1pxyfAkQneavaU7x1Tig5VIYkkU,289
|
|
4603
4603
|
windmill_api/models/list_scripts_response_200_item_language.py,sha256=ZutuIaPllJYr-qBVAUmium8YN_1ptaDEgLl4C6pjXVY,611
|
|
@@ -5403,7 +5403,7 @@ windmill_api/models/schedule_w_jobs_retry_retry_if.py,sha256=f-cfFoJAr1RF_UU9t5A
|
|
|
5403
5403
|
windmill_api/models/scope_definition.py,sha256=dp_zmbOAdQcVUG2EzojMq-qXUPNJnEWKKZQisWSwQpk,2276
|
|
5404
5404
|
windmill_api/models/scope_domain.py,sha256=GBOJMxg9lmRVfSYG2fyg70GNjt1ivsO3YeuZbOtp9kw,2476
|
|
5405
5405
|
windmill_api/models/scope_domain_scopes_item.py,sha256=9QggX40rjSt0nxJ4zC5J01JztMagusDHvtYeQdlpvks,2312
|
|
5406
|
-
windmill_api/models/script.py,sha256=
|
|
5406
|
+
windmill_api/models/script.py,sha256=zPt4Zr6mFXxnq-yIALXSzEZbkSoAJUT5m_nQMU2ESpc,13344
|
|
5407
5407
|
windmill_api/models/script_args.py,sha256=O4GmKJwmayOWIaAOc4YIoYJCr_GXBxcghvFG2fQTcmg,1247
|
|
5408
5408
|
windmill_api/models/script_extra_perms.py,sha256=AnAU7gjdEpP1-O3Jbvf1UFWCX1r0Pg9sJ2UwZfgB4pw,1241
|
|
5409
5409
|
windmill_api/models/script_history.py,sha256=k9dRgluGUKR4DSFRS-ozSFD7DsfTQfy4p8juf_ZSbyc,1871
|
|
@@ -5727,7 +5727,7 @@ windmill_api/models/workspace_invite.py,sha256=wp-J-VJLkXsfQzw1PdNPGQhETsFCFXh1e
|
|
|
5727
5727
|
windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
|
|
5728
5728
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
5729
5729
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
5730
|
-
windmill_api-1.566.
|
|
5731
|
-
windmill_api-1.566.
|
|
5732
|
-
windmill_api-1.566.
|
|
5733
|
-
windmill_api-1.566.
|
|
5730
|
+
windmill_api-1.566.1.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
5731
|
+
windmill_api-1.566.1.dist-info/METADATA,sha256=oumYZTDBXfFeKmmkgoSxObC8AmFHWjgv1D9HeKkp1vc,5023
|
|
5732
|
+
windmill_api-1.566.1.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
5733
|
+
windmill_api-1.566.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|