windmill-api 1.493.3__py3-none-any.whl → 1.495.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/postgres_trigger/get_postgres_version.py +160 -0
- windmill_api/api/script/list_scripts.py +15 -0
- windmill_api/models/get_top_hub_scripts_response_200_asks_item.py +7 -4
- windmill_api/models/get_top_hub_scripts_response_200_asks_item_kind.py +11 -0
- windmill_api/models/hub_script_kind.py +11 -0
- windmill_api/models/query_hub_scripts_response_200_item.py +7 -4
- windmill_api/models/query_hub_scripts_response_200_item_kind.py +11 -0
- {windmill_api-1.493.3.dist-info → windmill_api-1.495.0.dist-info}/METADATA +1 -1
- {windmill_api-1.493.3.dist-info → windmill_api-1.495.0.dist-info}/RECORD +11 -7
- {windmill_api-1.493.3.dist-info → windmill_api-1.495.0.dist-info}/LICENSE +0 -0
- {windmill_api-1.493.3.dist-info → windmill_api-1.495.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
from http import HTTPStatus
|
|
2
|
+
from typing import Any, Dict, Optional, Union, cast
|
|
3
|
+
|
|
4
|
+
import httpx
|
|
5
|
+
|
|
6
|
+
from ... import errors
|
|
7
|
+
from ...client import AuthenticatedClient, Client
|
|
8
|
+
from ...types import Response
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def _get_kwargs(
|
|
12
|
+
workspace: str,
|
|
13
|
+
path: str,
|
|
14
|
+
) -> Dict[str, Any]:
|
|
15
|
+
pass
|
|
16
|
+
|
|
17
|
+
return {
|
|
18
|
+
"method": "get",
|
|
19
|
+
"url": "/w/{workspace}/postgres_triggers/postgres/version/{path}".format(
|
|
20
|
+
workspace=workspace,
|
|
21
|
+
path=path,
|
|
22
|
+
),
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
def _parse_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Optional[str]:
|
|
27
|
+
if response.status_code == HTTPStatus.OK:
|
|
28
|
+
response_200 = cast(str, response.json())
|
|
29
|
+
return response_200
|
|
30
|
+
if client.raise_on_unexpected_status:
|
|
31
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
|
32
|
+
else:
|
|
33
|
+
return None
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[str]:
|
|
37
|
+
return Response(
|
|
38
|
+
status_code=HTTPStatus(response.status_code),
|
|
39
|
+
content=response.content,
|
|
40
|
+
headers=response.headers,
|
|
41
|
+
parsed=_parse_response(client=client, response=response),
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
def sync_detailed(
|
|
46
|
+
workspace: str,
|
|
47
|
+
path: str,
|
|
48
|
+
*,
|
|
49
|
+
client: Union[AuthenticatedClient, Client],
|
|
50
|
+
) -> Response[str]:
|
|
51
|
+
"""get postgres version
|
|
52
|
+
|
|
53
|
+
Args:
|
|
54
|
+
workspace (str):
|
|
55
|
+
path (str):
|
|
56
|
+
|
|
57
|
+
Raises:
|
|
58
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
59
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
60
|
+
|
|
61
|
+
Returns:
|
|
62
|
+
Response[str]
|
|
63
|
+
"""
|
|
64
|
+
|
|
65
|
+
kwargs = _get_kwargs(
|
|
66
|
+
workspace=workspace,
|
|
67
|
+
path=path,
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
response = client.get_httpx_client().request(
|
|
71
|
+
**kwargs,
|
|
72
|
+
)
|
|
73
|
+
|
|
74
|
+
return _build_response(client=client, response=response)
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
def sync(
|
|
78
|
+
workspace: str,
|
|
79
|
+
path: str,
|
|
80
|
+
*,
|
|
81
|
+
client: Union[AuthenticatedClient, Client],
|
|
82
|
+
) -> Optional[str]:
|
|
83
|
+
"""get postgres version
|
|
84
|
+
|
|
85
|
+
Args:
|
|
86
|
+
workspace (str):
|
|
87
|
+
path (str):
|
|
88
|
+
|
|
89
|
+
Raises:
|
|
90
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
91
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
92
|
+
|
|
93
|
+
Returns:
|
|
94
|
+
str
|
|
95
|
+
"""
|
|
96
|
+
|
|
97
|
+
return sync_detailed(
|
|
98
|
+
workspace=workspace,
|
|
99
|
+
path=path,
|
|
100
|
+
client=client,
|
|
101
|
+
).parsed
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
async def asyncio_detailed(
|
|
105
|
+
workspace: str,
|
|
106
|
+
path: str,
|
|
107
|
+
*,
|
|
108
|
+
client: Union[AuthenticatedClient, Client],
|
|
109
|
+
) -> Response[str]:
|
|
110
|
+
"""get postgres version
|
|
111
|
+
|
|
112
|
+
Args:
|
|
113
|
+
workspace (str):
|
|
114
|
+
path (str):
|
|
115
|
+
|
|
116
|
+
Raises:
|
|
117
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
118
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
119
|
+
|
|
120
|
+
Returns:
|
|
121
|
+
Response[str]
|
|
122
|
+
"""
|
|
123
|
+
|
|
124
|
+
kwargs = _get_kwargs(
|
|
125
|
+
workspace=workspace,
|
|
126
|
+
path=path,
|
|
127
|
+
)
|
|
128
|
+
|
|
129
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
|
130
|
+
|
|
131
|
+
return _build_response(client=client, response=response)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
async def asyncio(
|
|
135
|
+
workspace: str,
|
|
136
|
+
path: str,
|
|
137
|
+
*,
|
|
138
|
+
client: Union[AuthenticatedClient, Client],
|
|
139
|
+
) -> Optional[str]:
|
|
140
|
+
"""get postgres version
|
|
141
|
+
|
|
142
|
+
Args:
|
|
143
|
+
workspace (str):
|
|
144
|
+
path (str):
|
|
145
|
+
|
|
146
|
+
Raises:
|
|
147
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
148
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
149
|
+
|
|
150
|
+
Returns:
|
|
151
|
+
str
|
|
152
|
+
"""
|
|
153
|
+
|
|
154
|
+
return (
|
|
155
|
+
await asyncio_detailed(
|
|
156
|
+
workspace=workspace,
|
|
157
|
+
path=path,
|
|
158
|
+
client=client,
|
|
159
|
+
)
|
|
160
|
+
).parsed
|
|
@@ -28,6 +28,7 @@ def _get_kwargs(
|
|
|
28
28
|
kinds: Union[Unset, None, str] = UNSET,
|
|
29
29
|
starred_only: Union[Unset, None, bool] = UNSET,
|
|
30
30
|
with_deployment_msg: Union[Unset, None, bool] = UNSET,
|
|
31
|
+
languages: Union[Unset, None, str] = UNSET,
|
|
31
32
|
) -> Dict[str, Any]:
|
|
32
33
|
pass
|
|
33
34
|
|
|
@@ -64,6 +65,8 @@ def _get_kwargs(
|
|
|
64
65
|
|
|
65
66
|
params["with_deployment_msg"] = with_deployment_msg
|
|
66
67
|
|
|
68
|
+
params["languages"] = languages
|
|
69
|
+
|
|
67
70
|
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
68
71
|
|
|
69
72
|
return {
|
|
@@ -124,6 +127,7 @@ def sync_detailed(
|
|
|
124
127
|
kinds: Union[Unset, None, str] = UNSET,
|
|
125
128
|
starred_only: Union[Unset, None, bool] = UNSET,
|
|
126
129
|
with_deployment_msg: Union[Unset, None, bool] = UNSET,
|
|
130
|
+
languages: Union[Unset, None, str] = UNSET,
|
|
127
131
|
) -> Response[List["ListScriptsResponse200Item"]]:
|
|
128
132
|
"""list all scripts
|
|
129
133
|
|
|
@@ -145,6 +149,7 @@ def sync_detailed(
|
|
|
145
149
|
kinds (Union[Unset, None, str]):
|
|
146
150
|
starred_only (Union[Unset, None, bool]):
|
|
147
151
|
with_deployment_msg (Union[Unset, None, bool]):
|
|
152
|
+
languages (Union[Unset, None, str]):
|
|
148
153
|
|
|
149
154
|
Raises:
|
|
150
155
|
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
@@ -172,6 +177,7 @@ def sync_detailed(
|
|
|
172
177
|
kinds=kinds,
|
|
173
178
|
starred_only=starred_only,
|
|
174
179
|
with_deployment_msg=with_deployment_msg,
|
|
180
|
+
languages=languages,
|
|
175
181
|
)
|
|
176
182
|
|
|
177
183
|
response = client.get_httpx_client().request(
|
|
@@ -201,6 +207,7 @@ def sync(
|
|
|
201
207
|
kinds: Union[Unset, None, str] = UNSET,
|
|
202
208
|
starred_only: Union[Unset, None, bool] = UNSET,
|
|
203
209
|
with_deployment_msg: Union[Unset, None, bool] = UNSET,
|
|
210
|
+
languages: Union[Unset, None, str] = UNSET,
|
|
204
211
|
) -> Optional[List["ListScriptsResponse200Item"]]:
|
|
205
212
|
"""list all scripts
|
|
206
213
|
|
|
@@ -222,6 +229,7 @@ def sync(
|
|
|
222
229
|
kinds (Union[Unset, None, str]):
|
|
223
230
|
starred_only (Union[Unset, None, bool]):
|
|
224
231
|
with_deployment_msg (Union[Unset, None, bool]):
|
|
232
|
+
languages (Union[Unset, None, str]):
|
|
225
233
|
|
|
226
234
|
Raises:
|
|
227
235
|
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
@@ -250,6 +258,7 @@ def sync(
|
|
|
250
258
|
kinds=kinds,
|
|
251
259
|
starred_only=starred_only,
|
|
252
260
|
with_deployment_msg=with_deployment_msg,
|
|
261
|
+
languages=languages,
|
|
253
262
|
).parsed
|
|
254
263
|
|
|
255
264
|
|
|
@@ -273,6 +282,7 @@ async def asyncio_detailed(
|
|
|
273
282
|
kinds: Union[Unset, None, str] = UNSET,
|
|
274
283
|
starred_only: Union[Unset, None, bool] = UNSET,
|
|
275
284
|
with_deployment_msg: Union[Unset, None, bool] = UNSET,
|
|
285
|
+
languages: Union[Unset, None, str] = UNSET,
|
|
276
286
|
) -> Response[List["ListScriptsResponse200Item"]]:
|
|
277
287
|
"""list all scripts
|
|
278
288
|
|
|
@@ -294,6 +304,7 @@ async def asyncio_detailed(
|
|
|
294
304
|
kinds (Union[Unset, None, str]):
|
|
295
305
|
starred_only (Union[Unset, None, bool]):
|
|
296
306
|
with_deployment_msg (Union[Unset, None, bool]):
|
|
307
|
+
languages (Union[Unset, None, str]):
|
|
297
308
|
|
|
298
309
|
Raises:
|
|
299
310
|
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
@@ -321,6 +332,7 @@ async def asyncio_detailed(
|
|
|
321
332
|
kinds=kinds,
|
|
322
333
|
starred_only=starred_only,
|
|
323
334
|
with_deployment_msg=with_deployment_msg,
|
|
335
|
+
languages=languages,
|
|
324
336
|
)
|
|
325
337
|
|
|
326
338
|
response = await client.get_async_httpx_client().request(**kwargs)
|
|
@@ -348,6 +360,7 @@ async def asyncio(
|
|
|
348
360
|
kinds: Union[Unset, None, str] = UNSET,
|
|
349
361
|
starred_only: Union[Unset, None, bool] = UNSET,
|
|
350
362
|
with_deployment_msg: Union[Unset, None, bool] = UNSET,
|
|
363
|
+
languages: Union[Unset, None, str] = UNSET,
|
|
351
364
|
) -> Optional[List["ListScriptsResponse200Item"]]:
|
|
352
365
|
"""list all scripts
|
|
353
366
|
|
|
@@ -369,6 +382,7 @@ async def asyncio(
|
|
|
369
382
|
kinds (Union[Unset, None, str]):
|
|
370
383
|
starred_only (Union[Unset, None, bool]):
|
|
371
384
|
with_deployment_msg (Union[Unset, None, bool]):
|
|
385
|
+
languages (Union[Unset, None, str]):
|
|
372
386
|
|
|
373
387
|
Raises:
|
|
374
388
|
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
@@ -398,5 +412,6 @@ async def asyncio(
|
|
|
398
412
|
kinds=kinds,
|
|
399
413
|
starred_only=starred_only,
|
|
400
414
|
with_deployment_msg=with_deployment_msg,
|
|
415
|
+
languages=languages,
|
|
401
416
|
)
|
|
402
417
|
).parsed
|
|
@@ -3,6 +3,8 @@ from typing import Any, Dict, List, Type, TypeVar
|
|
|
3
3
|
from attrs import define as _attrs_define
|
|
4
4
|
from attrs import field as _attrs_field
|
|
5
5
|
|
|
6
|
+
from ..models.get_top_hub_scripts_response_200_asks_item_kind import GetTopHubScriptsResponse200AsksItemKind
|
|
7
|
+
|
|
6
8
|
T = TypeVar("T", bound="GetTopHubScriptsResponse200AsksItem")
|
|
7
9
|
|
|
8
10
|
|
|
@@ -15,7 +17,7 @@ class GetTopHubScriptsResponse200AsksItem:
|
|
|
15
17
|
summary (str):
|
|
16
18
|
app (str):
|
|
17
19
|
version_id (float):
|
|
18
|
-
kind (
|
|
20
|
+
kind (GetTopHubScriptsResponse200AsksItemKind):
|
|
19
21
|
votes (float):
|
|
20
22
|
views (float):
|
|
21
23
|
"""
|
|
@@ -25,7 +27,7 @@ class GetTopHubScriptsResponse200AsksItem:
|
|
|
25
27
|
summary: str
|
|
26
28
|
app: str
|
|
27
29
|
version_id: float
|
|
28
|
-
kind:
|
|
30
|
+
kind: GetTopHubScriptsResponse200AsksItemKind
|
|
29
31
|
votes: float
|
|
30
32
|
views: float
|
|
31
33
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
@@ -36,7 +38,8 @@ class GetTopHubScriptsResponse200AsksItem:
|
|
|
36
38
|
summary = self.summary
|
|
37
39
|
app = self.app
|
|
38
40
|
version_id = self.version_id
|
|
39
|
-
kind = self.kind
|
|
41
|
+
kind = self.kind.value
|
|
42
|
+
|
|
40
43
|
votes = self.votes
|
|
41
44
|
views = self.views
|
|
42
45
|
|
|
@@ -70,7 +73,7 @@ class GetTopHubScriptsResponse200AsksItem:
|
|
|
70
73
|
|
|
71
74
|
version_id = d.pop("version_id")
|
|
72
75
|
|
|
73
|
-
kind = d.pop("kind")
|
|
76
|
+
kind = GetTopHubScriptsResponse200AsksItemKind(d.pop("kind"))
|
|
74
77
|
|
|
75
78
|
votes = d.pop("votes")
|
|
76
79
|
|
|
@@ -3,6 +3,8 @@ from typing import Any, Dict, List, Type, TypeVar
|
|
|
3
3
|
from attrs import define as _attrs_define
|
|
4
4
|
from attrs import field as _attrs_field
|
|
5
5
|
|
|
6
|
+
from ..models.query_hub_scripts_response_200_item_kind import QueryHubScriptsResponse200ItemKind
|
|
7
|
+
|
|
6
8
|
T = TypeVar("T", bound="QueryHubScriptsResponse200Item")
|
|
7
9
|
|
|
8
10
|
|
|
@@ -15,7 +17,7 @@ class QueryHubScriptsResponse200Item:
|
|
|
15
17
|
version_id (float):
|
|
16
18
|
summary (str):
|
|
17
19
|
app (str):
|
|
18
|
-
kind (
|
|
20
|
+
kind (QueryHubScriptsResponse200ItemKind):
|
|
19
21
|
score (float):
|
|
20
22
|
"""
|
|
21
23
|
|
|
@@ -24,7 +26,7 @@ class QueryHubScriptsResponse200Item:
|
|
|
24
26
|
version_id: float
|
|
25
27
|
summary: str
|
|
26
28
|
app: str
|
|
27
|
-
kind:
|
|
29
|
+
kind: QueryHubScriptsResponse200ItemKind
|
|
28
30
|
score: float
|
|
29
31
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
30
32
|
|
|
@@ -34,7 +36,8 @@ class QueryHubScriptsResponse200Item:
|
|
|
34
36
|
version_id = self.version_id
|
|
35
37
|
summary = self.summary
|
|
36
38
|
app = self.app
|
|
37
|
-
kind = self.kind
|
|
39
|
+
kind = self.kind.value
|
|
40
|
+
|
|
38
41
|
score = self.score
|
|
39
42
|
|
|
40
43
|
field_dict: Dict[str, Any] = {}
|
|
@@ -66,7 +69,7 @@ class QueryHubScriptsResponse200Item:
|
|
|
66
69
|
|
|
67
70
|
app = d.pop("app")
|
|
68
71
|
|
|
69
|
-
kind = d.pop("kind")
|
|
72
|
+
kind = QueryHubScriptsResponse200ItemKind(d.pop("kind"))
|
|
70
73
|
|
|
71
74
|
score = d.pop("score")
|
|
72
75
|
|
|
@@ -283,6 +283,7 @@ windmill_api/api/postgres_trigger/delete_postgres_trigger.py,sha256=ME2ojbXIJ_Op
|
|
|
283
283
|
windmill_api/api/postgres_trigger/exists_postgres_trigger.py,sha256=7GH-Nln9HaMv1gYb13bM1okH1tr1e1u_bqlg1BqRw-o,3832
|
|
284
284
|
windmill_api/api/postgres_trigger/get_postgres_publication.py,sha256=G9PKJ8JV4l7iWwGHtqcT2_eF0buYamg3fu3xqboI3_o,4654
|
|
285
285
|
windmill_api/api/postgres_trigger/get_postgres_trigger.py,sha256=3MwOGXWmoguTY2ZU0kw46iwlZXO0wRSsPUrxCIsn2vg,4169
|
|
286
|
+
windmill_api/api/postgres_trigger/get_postgres_version.py,sha256=o520RYVftILjpGc3xqFoAihtw6fFcVuPTw6aFzWwVQ4,3799
|
|
286
287
|
windmill_api/api/postgres_trigger/get_template_script.py,sha256=A1higr5hVVAQyzC5rl9waJ0nqMfPMUBULDDwrS0j4uc,2446
|
|
287
288
|
windmill_api/api/postgres_trigger/is_valid_postgres_configuration.py,sha256=cqF5_claIwzgl15RQR12Xn5PJl2rSMHJ6SscsDYag1k,3941
|
|
288
289
|
windmill_api/api/postgres_trigger/list_postgres_publication.py,sha256=GEyx3iFXf_E4K7oOZwbZ5z4fjAt2iv12ogs9A_M3LFE,3892
|
|
@@ -350,7 +351,7 @@ windmill_api/api/script/get_top_hub_scripts.py,sha256=LqPNLI54T_v0LDdDsIaaQq76Ao
|
|
|
350
351
|
windmill_api/api/script/get_triggers_count_of_script.py,sha256=aLNY9Ito4_Y7Ot_9wk7s-Ynt4Q02ato3Q4ZASHeWgts,4286
|
|
351
352
|
windmill_api/api/script/list_script_paths.py,sha256=LcCRe2Q-qxdnX3HAHRg-MjV7KOE1rMF4qr52JVxHWsk,2304
|
|
352
353
|
windmill_api/api/script/list_script_paths_from_workspace_runnable.py,sha256=aK2icEc2kHutpZ3Qz8Bn8TSo-NH857uwzE-Jf27NPLE,4040
|
|
353
|
-
windmill_api/api/script/list_scripts.py,sha256=
|
|
354
|
+
windmill_api/api/script/list_scripts.py,sha256=NWBJozN0glxNuFWoCuVU_quPwj2T8lr1gEWy9ojfAbw,15098
|
|
354
355
|
windmill_api/api/script/list_search_script.py,sha256=wzHOfe0ZwCs6jj26dvrDsJENJsYePQ0gU_m4ly3-APs,4214
|
|
355
356
|
windmill_api/api/script/list_tokens_of_script.py,sha256=EaeMTnjZ9JJ7I0O4BfiE5JlGk2-MJCGkgZEd2yMBs2c,4526
|
|
356
357
|
windmill_api/api/script/query_hub_scripts.py,sha256=e94cPrAMVgvYHWLzvpYHO8OP1uu14CXQW0X0oxu-Ym0,5746
|
|
@@ -2402,7 +2403,8 @@ windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_prep
|
|
|
2402
2403
|
windmill_api/models/get_suspended_job_flow_response_200_job_type_1_type.py,sha256=C8N3eSO8W-2BkIfS2BPT-KgWPhOie5-C_7RGwlGYn3I,175
|
|
2403
2404
|
windmill_api/models/get_threshold_alert_response_200.py,sha256=VPuvmfI_3YJMUxW6XqLGyYMNnMy5GtzNKWf0z91haJs,2561
|
|
2404
2405
|
windmill_api/models/get_top_hub_scripts_response_200.py,sha256=kqbTv8x-kJH3_FmTkZagVOcc16q4BUGqIlmG3WWFWRI,2345
|
|
2405
|
-
windmill_api/models/get_top_hub_scripts_response_200_asks_item.py,sha256=
|
|
2406
|
+
windmill_api/models/get_top_hub_scripts_response_200_asks_item.py,sha256=qs8PjkJMm16rsx04lPA6phzdaz6mC5mUgtbtRDF9N5k,2899
|
|
2407
|
+
windmill_api/models/get_top_hub_scripts_response_200_asks_item_kind.py,sha256=sJBbL9PaYGqjU4X2zIJLDa5oHXOn3B0T2Lxvt1V7yrs,240
|
|
2406
2408
|
windmill_api/models/get_triggers_count_of_flow_response_200.py,sha256=vMm_gLrenDwjma_P1dNsyL9fFvvhTkDdFi7P0ubcbuY,6107
|
|
2407
2409
|
windmill_api/models/get_triggers_count_of_flow_response_200_primary_schedule.py,sha256=64hEeXUFhuPMAiIolPbfnTqYnKhn_AhacslXHjABZ84,1754
|
|
2408
2410
|
windmill_api/models/get_triggers_count_of_script_response_200.py,sha256=PNAAR_FIW_XwEvlhKEKOlSOK_ZX4zUpEij4MaTicSZk,6133
|
|
@@ -2445,6 +2447,7 @@ windmill_api/models/http_trigger_authentication_method.py,sha256=wFUsd7a-HE98Boa
|
|
|
2445
2447
|
windmill_api/models/http_trigger_extra_perms.py,sha256=zoXtrNWbIaURFZKJ2TJlzI3oScR9gJMuhvZdWxRqoGE,1269
|
|
2446
2448
|
windmill_api/models/http_trigger_http_method.py,sha256=XqInjulsyRD4_aj3Qnao8L8iyoyQkmcciKvHDOW5xjU,218
|
|
2447
2449
|
windmill_api/models/http_trigger_static_asset_config.py,sha256=PhPZgj9R-KfC-vajljIemoSKeDe0SMRh76m5K2-oaEA,2055
|
|
2450
|
+
windmill_api/models/hub_script_kind.py,sha256=QMLbtMl6kItsf_r6BaDLb_xgde1cHgvtsyUoadUWBpo,214
|
|
2448
2451
|
windmill_api/models/identity.py,sha256=GWOTbVe-D4S0vWFKG0t2XL33rb3jm8U3e9IjPPaYLUE,1752
|
|
2449
2452
|
windmill_api/models/identity_type.py,sha256=bysTfdV4jxgFlIt5RoNL_QiYhIrb5KXsKtGZ25MAEaw,143
|
|
2450
2453
|
windmill_api/models/import_installation_json_body.py,sha256=Ww8G-SLKFXp8iovILx7c4H_e2GiAUWpu64xiMykdNHc,1548
|
|
@@ -3514,7 +3517,8 @@ windmill_api/models/publication_data.py,sha256=MHa2c-zSN_rsabr_K3yt9oqIHOAzTgbYZ
|
|
|
3514
3517
|
windmill_api/models/publication_data_table_to_track_item.py,sha256=Zik_JlfAT7XPsbyjhl7X7YuyQRk5AtEApoGWofd8mYs,2716
|
|
3515
3518
|
windmill_api/models/publication_data_table_to_track_item_table_to_track_item.py,sha256=NChRCWkF-B80wpkoUUw02z6Nw_yvOpu071rm5iU6OQs,2491
|
|
3516
3519
|
windmill_api/models/push_config.py,sha256=xCOTOdScwCyEzQ00Z3K0Q_Cj2rHoW-f78KWvJNcGXvk,1802
|
|
3517
|
-
windmill_api/models/query_hub_scripts_response_200_item.py,sha256=
|
|
3520
|
+
windmill_api/models/query_hub_scripts_response_200_item.py,sha256=sHwxcLaHGznfdUM9nYWCTswjf1WGGkYk0_hEO2Ndwo0,2685
|
|
3521
|
+
windmill_api/models/query_hub_scripts_response_200_item_kind.py,sha256=SecUB8bQpfLm8K5Jy4aCrU4iKhRT2i94dPQsxAd7gKs,235
|
|
3518
3522
|
windmill_api/models/query_resource_types_response_200_item.py,sha256=GDX4NRg2tPEQJRjy_-9lpQRUoH9YlSFPYkfgqfP0GQk,1981
|
|
3519
3523
|
windmill_api/models/queued_job.py,sha256=9fX1VXyOjoM3CIjSnSA3Qs01YdztZYhxzAqmjUYYHHc,13774
|
|
3520
3524
|
windmill_api/models/queued_job_args.py,sha256=7GaFNJyGRAIvHTsMHJlD2MlOTj2cZT7OqEZS7HTaqHc,1223
|
|
@@ -3967,7 +3971,7 @@ windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1li
|
|
|
3967
3971
|
windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
|
|
3968
3972
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
3969
3973
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
3970
|
-
windmill_api-1.
|
|
3971
|
-
windmill_api-1.
|
|
3972
|
-
windmill_api-1.
|
|
3973
|
-
windmill_api-1.
|
|
3974
|
+
windmill_api-1.495.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
3975
|
+
windmill_api-1.495.0.dist-info/METADATA,sha256=tyCmM2u-OW9rC8nCfifzSIOpA94uAbC0oamXEAWwBCM,5023
|
|
3976
|
+
windmill_api-1.495.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
3977
|
+
windmill_api-1.495.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|