windmill-api 1.505.4__py3-none-any.whl → 1.507.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/oauth/connect_client_credentials.py +170 -0
- windmill_api/models/connect_callback_response_200.py +9 -0
- windmill_api/models/connect_client_credentials_json_body.py +77 -0
- windmill_api/models/connect_client_credentials_response_200.py +95 -0
- windmill_api/models/create_account_json_body.py +25 -0
- windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings.py +1 -35
- windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item.py +35 -1
- windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item_exclude_types_override_item.py +2 -0
- windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item_settings.py +112 -0
- windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item_settings_include_type_item.py +21 -0
- windmill_api/models/get_o_auth_connect_response_200.py +11 -0
- windmill_api/models/get_settings_response_200_git_sync.py +1 -33
- windmill_api/models/get_settings_response_200_git_sync_repositories_item.py +35 -1
- windmill_api/models/get_settings_response_200_git_sync_repositories_item_exclude_types_override_item.py +2 -0
- windmill_api/models/get_settings_response_200_git_sync_repositories_item_settings.py +107 -0
- windmill_api/models/{workspace_git_sync_settings_include_type_item.py → get_settings_response_200_git_sync_repositories_item_settings_include_type_item.py} +3 -1
- windmill_api/models/git_repository_settings.py +31 -1
- windmill_api/models/git_repository_settings_exclude_types_override_item.py +2 -0
- windmill_api/models/git_repository_settings_settings.py +103 -0
- windmill_api/models/{edit_workspace_git_sync_config_json_body_git_sync_settings_include_type_item.py → git_repository_settings_settings_include_type_item.py} +3 -1
- windmill_api/models/token_response.py +9 -0
- windmill_api/models/workspace_git_sync_settings.py +1 -33
- windmill_api/models/workspace_git_sync_settings_repositories_item.py +35 -1
- windmill_api/models/workspace_git_sync_settings_repositories_item_exclude_types_override_item.py +2 -0
- windmill_api/models/workspace_git_sync_settings_repositories_item_settings.py +105 -0
- windmill_api/models/{get_settings_response_200_git_sync_include_type_item.py → workspace_git_sync_settings_repositories_item_settings_include_type_item.py} +3 -1
- {windmill_api-1.505.4.dist-info → windmill_api-1.507.0.dist-info}/METADATA +1 -1
- {windmill_api-1.505.4.dist-info → windmill_api-1.507.0.dist-info}/RECORD +30 -22
- {windmill_api-1.505.4.dist-info → windmill_api-1.507.0.dist-info}/LICENSE +0 -0
- {windmill_api-1.505.4.dist-info → windmill_api-1.507.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar, Union, cast
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
from ..models.git_repository_settings_settings_include_type_item import GitRepositorySettingsSettingsIncludeTypeItem
|
|
7
|
+
from ..types import UNSET, Unset
|
|
8
|
+
|
|
9
|
+
T = TypeVar("T", bound="GitRepositorySettingsSettings")
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@_attrs_define
|
|
13
|
+
class GitRepositorySettingsSettings:
|
|
14
|
+
"""
|
|
15
|
+
Attributes:
|
|
16
|
+
include_path (Union[Unset, List[str]]):
|
|
17
|
+
include_type (Union[Unset, List[GitRepositorySettingsSettingsIncludeTypeItem]]):
|
|
18
|
+
exclude_path (Union[Unset, List[str]]):
|
|
19
|
+
extra_include_path (Union[Unset, List[str]]):
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
include_path: Union[Unset, List[str]] = UNSET
|
|
23
|
+
include_type: Union[Unset, List[GitRepositorySettingsSettingsIncludeTypeItem]] = UNSET
|
|
24
|
+
exclude_path: Union[Unset, List[str]] = UNSET
|
|
25
|
+
extra_include_path: Union[Unset, List[str]] = UNSET
|
|
26
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
27
|
+
|
|
28
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
29
|
+
include_path: Union[Unset, List[str]] = UNSET
|
|
30
|
+
if not isinstance(self.include_path, Unset):
|
|
31
|
+
include_path = self.include_path
|
|
32
|
+
|
|
33
|
+
include_type: Union[Unset, List[str]] = UNSET
|
|
34
|
+
if not isinstance(self.include_type, Unset):
|
|
35
|
+
include_type = []
|
|
36
|
+
for include_type_item_data in self.include_type:
|
|
37
|
+
include_type_item = include_type_item_data.value
|
|
38
|
+
|
|
39
|
+
include_type.append(include_type_item)
|
|
40
|
+
|
|
41
|
+
exclude_path: Union[Unset, List[str]] = UNSET
|
|
42
|
+
if not isinstance(self.exclude_path, Unset):
|
|
43
|
+
exclude_path = self.exclude_path
|
|
44
|
+
|
|
45
|
+
extra_include_path: Union[Unset, List[str]] = UNSET
|
|
46
|
+
if not isinstance(self.extra_include_path, Unset):
|
|
47
|
+
extra_include_path = self.extra_include_path
|
|
48
|
+
|
|
49
|
+
field_dict: Dict[str, Any] = {}
|
|
50
|
+
field_dict.update(self.additional_properties)
|
|
51
|
+
field_dict.update({})
|
|
52
|
+
if include_path is not UNSET:
|
|
53
|
+
field_dict["include_path"] = include_path
|
|
54
|
+
if include_type is not UNSET:
|
|
55
|
+
field_dict["include_type"] = include_type
|
|
56
|
+
if exclude_path is not UNSET:
|
|
57
|
+
field_dict["exclude_path"] = exclude_path
|
|
58
|
+
if extra_include_path is not UNSET:
|
|
59
|
+
field_dict["extra_include_path"] = extra_include_path
|
|
60
|
+
|
|
61
|
+
return field_dict
|
|
62
|
+
|
|
63
|
+
@classmethod
|
|
64
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
65
|
+
d = src_dict.copy()
|
|
66
|
+
include_path = cast(List[str], d.pop("include_path", UNSET))
|
|
67
|
+
|
|
68
|
+
include_type = []
|
|
69
|
+
_include_type = d.pop("include_type", UNSET)
|
|
70
|
+
for include_type_item_data in _include_type or []:
|
|
71
|
+
include_type_item = GitRepositorySettingsSettingsIncludeTypeItem(include_type_item_data)
|
|
72
|
+
|
|
73
|
+
include_type.append(include_type_item)
|
|
74
|
+
|
|
75
|
+
exclude_path = cast(List[str], d.pop("exclude_path", UNSET))
|
|
76
|
+
|
|
77
|
+
extra_include_path = cast(List[str], d.pop("extra_include_path", UNSET))
|
|
78
|
+
|
|
79
|
+
git_repository_settings_settings = cls(
|
|
80
|
+
include_path=include_path,
|
|
81
|
+
include_type=include_type,
|
|
82
|
+
exclude_path=exclude_path,
|
|
83
|
+
extra_include_path=extra_include_path,
|
|
84
|
+
)
|
|
85
|
+
|
|
86
|
+
git_repository_settings_settings.additional_properties = d
|
|
87
|
+
return git_repository_settings_settings
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
def additional_keys(self) -> List[str]:
|
|
91
|
+
return list(self.additional_properties.keys())
|
|
92
|
+
|
|
93
|
+
def __getitem__(self, key: str) -> Any:
|
|
94
|
+
return self.additional_properties[key]
|
|
95
|
+
|
|
96
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
97
|
+
self.additional_properties[key] = value
|
|
98
|
+
|
|
99
|
+
def __delitem__(self, key: str) -> None:
|
|
100
|
+
del self.additional_properties[key]
|
|
101
|
+
|
|
102
|
+
def __contains__(self, key: str) -> bool:
|
|
103
|
+
return key in self.additional_properties
|
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
from enum import Enum
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
class
|
|
4
|
+
class GitRepositorySettingsSettingsIncludeTypeItem(str, Enum):
|
|
5
5
|
APP = "app"
|
|
6
6
|
FLOW = "flow"
|
|
7
7
|
FOLDER = "folder"
|
|
8
8
|
GROUP = "group"
|
|
9
|
+
KEY = "key"
|
|
9
10
|
RESOURCE = "resource"
|
|
10
11
|
RESOURCETYPE = "resourcetype"
|
|
11
12
|
SCHEDULE = "schedule"
|
|
12
13
|
SCRIPT = "script"
|
|
13
14
|
SECRET = "secret"
|
|
15
|
+
SETTINGS = "settings"
|
|
14
16
|
TRIGGER = "trigger"
|
|
15
17
|
USER = "user"
|
|
16
18
|
VARIABLE = "variable"
|
|
@@ -16,12 +16,14 @@ class TokenResponse:
|
|
|
16
16
|
expires_in (Union[Unset, int]):
|
|
17
17
|
refresh_token (Union[Unset, str]):
|
|
18
18
|
scope (Union[Unset, List[str]]):
|
|
19
|
+
grant_type (Union[Unset, str]):
|
|
19
20
|
"""
|
|
20
21
|
|
|
21
22
|
access_token: str
|
|
22
23
|
expires_in: Union[Unset, int] = UNSET
|
|
23
24
|
refresh_token: Union[Unset, str] = UNSET
|
|
24
25
|
scope: Union[Unset, List[str]] = UNSET
|
|
26
|
+
grant_type: Union[Unset, str] = UNSET
|
|
25
27
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
26
28
|
|
|
27
29
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -32,6 +34,8 @@ class TokenResponse:
|
|
|
32
34
|
if not isinstance(self.scope, Unset):
|
|
33
35
|
scope = self.scope
|
|
34
36
|
|
|
37
|
+
grant_type = self.grant_type
|
|
38
|
+
|
|
35
39
|
field_dict: Dict[str, Any] = {}
|
|
36
40
|
field_dict.update(self.additional_properties)
|
|
37
41
|
field_dict.update(
|
|
@@ -45,6 +49,8 @@ class TokenResponse:
|
|
|
45
49
|
field_dict["refresh_token"] = refresh_token
|
|
46
50
|
if scope is not UNSET:
|
|
47
51
|
field_dict["scope"] = scope
|
|
52
|
+
if grant_type is not UNSET:
|
|
53
|
+
field_dict["grant_type"] = grant_type
|
|
48
54
|
|
|
49
55
|
return field_dict
|
|
50
56
|
|
|
@@ -59,11 +65,14 @@ class TokenResponse:
|
|
|
59
65
|
|
|
60
66
|
scope = cast(List[str], d.pop("scope", UNSET))
|
|
61
67
|
|
|
68
|
+
grant_type = d.pop("grant_type", UNSET)
|
|
69
|
+
|
|
62
70
|
token_response = cls(
|
|
63
71
|
access_token=access_token,
|
|
64
72
|
expires_in=expires_in,
|
|
65
73
|
refresh_token=refresh_token,
|
|
66
74
|
scope=scope,
|
|
75
|
+
grant_type=grant_type,
|
|
67
76
|
)
|
|
68
77
|
|
|
69
78
|
token_response.additional_properties = d
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar, Union
|
|
1
|
+
from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar, Union
|
|
2
2
|
|
|
3
3
|
from attrs import define as _attrs_define
|
|
4
4
|
from attrs import field as _attrs_field
|
|
5
5
|
|
|
6
|
-
from ..models.workspace_git_sync_settings_include_type_item import WorkspaceGitSyncSettingsIncludeTypeItem
|
|
7
6
|
from ..types import UNSET, Unset
|
|
8
7
|
|
|
9
8
|
if TYPE_CHECKING:
|
|
@@ -17,29 +16,13 @@ T = TypeVar("T", bound="WorkspaceGitSyncSettings")
|
|
|
17
16
|
class WorkspaceGitSyncSettings:
|
|
18
17
|
"""
|
|
19
18
|
Attributes:
|
|
20
|
-
include_path (Union[Unset, List[str]]):
|
|
21
|
-
include_type (Union[Unset, List[WorkspaceGitSyncSettingsIncludeTypeItem]]):
|
|
22
19
|
repositories (Union[Unset, List['WorkspaceGitSyncSettingsRepositoriesItem']]):
|
|
23
20
|
"""
|
|
24
21
|
|
|
25
|
-
include_path: Union[Unset, List[str]] = UNSET
|
|
26
|
-
include_type: Union[Unset, List[WorkspaceGitSyncSettingsIncludeTypeItem]] = UNSET
|
|
27
22
|
repositories: Union[Unset, List["WorkspaceGitSyncSettingsRepositoriesItem"]] = UNSET
|
|
28
23
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
29
24
|
|
|
30
25
|
def to_dict(self) -> Dict[str, Any]:
|
|
31
|
-
include_path: Union[Unset, List[str]] = UNSET
|
|
32
|
-
if not isinstance(self.include_path, Unset):
|
|
33
|
-
include_path = self.include_path
|
|
34
|
-
|
|
35
|
-
include_type: Union[Unset, List[str]] = UNSET
|
|
36
|
-
if not isinstance(self.include_type, Unset):
|
|
37
|
-
include_type = []
|
|
38
|
-
for include_type_item_data in self.include_type:
|
|
39
|
-
include_type_item = include_type_item_data.value
|
|
40
|
-
|
|
41
|
-
include_type.append(include_type_item)
|
|
42
|
-
|
|
43
26
|
repositories: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
44
27
|
if not isinstance(self.repositories, Unset):
|
|
45
28
|
repositories = []
|
|
@@ -51,10 +34,6 @@ class WorkspaceGitSyncSettings:
|
|
|
51
34
|
field_dict: Dict[str, Any] = {}
|
|
52
35
|
field_dict.update(self.additional_properties)
|
|
53
36
|
field_dict.update({})
|
|
54
|
-
if include_path is not UNSET:
|
|
55
|
-
field_dict["include_path"] = include_path
|
|
56
|
-
if include_type is not UNSET:
|
|
57
|
-
field_dict["include_type"] = include_type
|
|
58
37
|
if repositories is not UNSET:
|
|
59
38
|
field_dict["repositories"] = repositories
|
|
60
39
|
|
|
@@ -65,15 +44,6 @@ class WorkspaceGitSyncSettings:
|
|
|
65
44
|
from ..models.workspace_git_sync_settings_repositories_item import WorkspaceGitSyncSettingsRepositoriesItem
|
|
66
45
|
|
|
67
46
|
d = src_dict.copy()
|
|
68
|
-
include_path = cast(List[str], d.pop("include_path", UNSET))
|
|
69
|
-
|
|
70
|
-
include_type = []
|
|
71
|
-
_include_type = d.pop("include_type", UNSET)
|
|
72
|
-
for include_type_item_data in _include_type or []:
|
|
73
|
-
include_type_item = WorkspaceGitSyncSettingsIncludeTypeItem(include_type_item_data)
|
|
74
|
-
|
|
75
|
-
include_type.append(include_type_item)
|
|
76
|
-
|
|
77
47
|
repositories = []
|
|
78
48
|
_repositories = d.pop("repositories", UNSET)
|
|
79
49
|
for repositories_item_data in _repositories or []:
|
|
@@ -82,8 +52,6 @@ class WorkspaceGitSyncSettings:
|
|
|
82
52
|
repositories.append(repositories_item)
|
|
83
53
|
|
|
84
54
|
workspace_git_sync_settings = cls(
|
|
85
|
-
include_path=include_path,
|
|
86
|
-
include_type=include_type,
|
|
87
55
|
repositories=repositories,
|
|
88
56
|
)
|
|
89
57
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from typing import Any, Dict, List, Type, TypeVar, Union
|
|
1
|
+
from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar, Union
|
|
2
2
|
|
|
3
3
|
from attrs import define as _attrs_define
|
|
4
4
|
from attrs import field as _attrs_field
|
|
@@ -8,6 +8,12 @@ from ..models.workspace_git_sync_settings_repositories_item_exclude_types_overri
|
|
|
8
8
|
)
|
|
9
9
|
from ..types import UNSET, Unset
|
|
10
10
|
|
|
11
|
+
if TYPE_CHECKING:
|
|
12
|
+
from ..models.workspace_git_sync_settings_repositories_item_settings import (
|
|
13
|
+
WorkspaceGitSyncSettingsRepositoriesItemSettings,
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
|
|
11
17
|
T = TypeVar("T", bound="WorkspaceGitSyncSettingsRepositoriesItem")
|
|
12
18
|
|
|
13
19
|
|
|
@@ -19,6 +25,8 @@ class WorkspaceGitSyncSettingsRepositoriesItem:
|
|
|
19
25
|
git_repo_resource_path (str):
|
|
20
26
|
use_individual_branch (Union[Unset, bool]):
|
|
21
27
|
group_by_folder (Union[Unset, bool]):
|
|
28
|
+
collapsed (Union[Unset, bool]):
|
|
29
|
+
settings (Union[Unset, WorkspaceGitSyncSettingsRepositoriesItemSettings]):
|
|
22
30
|
exclude_types_override (Union[Unset, List[WorkspaceGitSyncSettingsRepositoriesItemExcludeTypesOverrideItem]]):
|
|
23
31
|
"""
|
|
24
32
|
|
|
@@ -26,6 +34,8 @@ class WorkspaceGitSyncSettingsRepositoriesItem:
|
|
|
26
34
|
git_repo_resource_path: str
|
|
27
35
|
use_individual_branch: Union[Unset, bool] = UNSET
|
|
28
36
|
group_by_folder: Union[Unset, bool] = UNSET
|
|
37
|
+
collapsed: Union[Unset, bool] = UNSET
|
|
38
|
+
settings: Union[Unset, "WorkspaceGitSyncSettingsRepositoriesItemSettings"] = UNSET
|
|
29
39
|
exclude_types_override: Union[Unset, List[WorkspaceGitSyncSettingsRepositoriesItemExcludeTypesOverrideItem]] = UNSET
|
|
30
40
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
31
41
|
|
|
@@ -34,6 +44,11 @@ class WorkspaceGitSyncSettingsRepositoriesItem:
|
|
|
34
44
|
git_repo_resource_path = self.git_repo_resource_path
|
|
35
45
|
use_individual_branch = self.use_individual_branch
|
|
36
46
|
group_by_folder = self.group_by_folder
|
|
47
|
+
collapsed = self.collapsed
|
|
48
|
+
settings: Union[Unset, Dict[str, Any]] = UNSET
|
|
49
|
+
if not isinstance(self.settings, Unset):
|
|
50
|
+
settings = self.settings.to_dict()
|
|
51
|
+
|
|
37
52
|
exclude_types_override: Union[Unset, List[str]] = UNSET
|
|
38
53
|
if not isinstance(self.exclude_types_override, Unset):
|
|
39
54
|
exclude_types_override = []
|
|
@@ -54,6 +69,10 @@ class WorkspaceGitSyncSettingsRepositoriesItem:
|
|
|
54
69
|
field_dict["use_individual_branch"] = use_individual_branch
|
|
55
70
|
if group_by_folder is not UNSET:
|
|
56
71
|
field_dict["group_by_folder"] = group_by_folder
|
|
72
|
+
if collapsed is not UNSET:
|
|
73
|
+
field_dict["collapsed"] = collapsed
|
|
74
|
+
if settings is not UNSET:
|
|
75
|
+
field_dict["settings"] = settings
|
|
57
76
|
if exclude_types_override is not UNSET:
|
|
58
77
|
field_dict["exclude_types_override"] = exclude_types_override
|
|
59
78
|
|
|
@@ -61,6 +80,10 @@ class WorkspaceGitSyncSettingsRepositoriesItem:
|
|
|
61
80
|
|
|
62
81
|
@classmethod
|
|
63
82
|
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
83
|
+
from ..models.workspace_git_sync_settings_repositories_item_settings import (
|
|
84
|
+
WorkspaceGitSyncSettingsRepositoriesItemSettings,
|
|
85
|
+
)
|
|
86
|
+
|
|
64
87
|
d = src_dict.copy()
|
|
65
88
|
script_path = d.pop("script_path")
|
|
66
89
|
|
|
@@ -70,6 +93,15 @@ class WorkspaceGitSyncSettingsRepositoriesItem:
|
|
|
70
93
|
|
|
71
94
|
group_by_folder = d.pop("group_by_folder", UNSET)
|
|
72
95
|
|
|
96
|
+
collapsed = d.pop("collapsed", UNSET)
|
|
97
|
+
|
|
98
|
+
_settings = d.pop("settings", UNSET)
|
|
99
|
+
settings: Union[Unset, WorkspaceGitSyncSettingsRepositoriesItemSettings]
|
|
100
|
+
if isinstance(_settings, Unset):
|
|
101
|
+
settings = UNSET
|
|
102
|
+
else:
|
|
103
|
+
settings = WorkspaceGitSyncSettingsRepositoriesItemSettings.from_dict(_settings)
|
|
104
|
+
|
|
73
105
|
exclude_types_override = []
|
|
74
106
|
_exclude_types_override = d.pop("exclude_types_override", UNSET)
|
|
75
107
|
for exclude_types_override_item_data in _exclude_types_override or []:
|
|
@@ -84,6 +116,8 @@ class WorkspaceGitSyncSettingsRepositoriesItem:
|
|
|
84
116
|
git_repo_resource_path=git_repo_resource_path,
|
|
85
117
|
use_individual_branch=use_individual_branch,
|
|
86
118
|
group_by_folder=group_by_folder,
|
|
119
|
+
collapsed=collapsed,
|
|
120
|
+
settings=settings,
|
|
87
121
|
exclude_types_override=exclude_types_override,
|
|
88
122
|
)
|
|
89
123
|
|
windmill_api/models/workspace_git_sync_settings_repositories_item_exclude_types_override_item.py
CHANGED
|
@@ -6,11 +6,13 @@ class WorkspaceGitSyncSettingsRepositoriesItemExcludeTypesOverrideItem(str, Enum
|
|
|
6
6
|
FLOW = "flow"
|
|
7
7
|
FOLDER = "folder"
|
|
8
8
|
GROUP = "group"
|
|
9
|
+
KEY = "key"
|
|
9
10
|
RESOURCE = "resource"
|
|
10
11
|
RESOURCETYPE = "resourcetype"
|
|
11
12
|
SCHEDULE = "schedule"
|
|
12
13
|
SCRIPT = "script"
|
|
13
14
|
SECRET = "secret"
|
|
15
|
+
SETTINGS = "settings"
|
|
14
16
|
TRIGGER = "trigger"
|
|
15
17
|
USER = "user"
|
|
16
18
|
VARIABLE = "variable"
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar, Union, cast
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
from ..models.workspace_git_sync_settings_repositories_item_settings_include_type_item import (
|
|
7
|
+
WorkspaceGitSyncSettingsRepositoriesItemSettingsIncludeTypeItem,
|
|
8
|
+
)
|
|
9
|
+
from ..types import UNSET, Unset
|
|
10
|
+
|
|
11
|
+
T = TypeVar("T", bound="WorkspaceGitSyncSettingsRepositoriesItemSettings")
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
@_attrs_define
|
|
15
|
+
class WorkspaceGitSyncSettingsRepositoriesItemSettings:
|
|
16
|
+
"""
|
|
17
|
+
Attributes:
|
|
18
|
+
include_path (Union[Unset, List[str]]):
|
|
19
|
+
include_type (Union[Unset, List[WorkspaceGitSyncSettingsRepositoriesItemSettingsIncludeTypeItem]]):
|
|
20
|
+
exclude_path (Union[Unset, List[str]]):
|
|
21
|
+
extra_include_path (Union[Unset, List[str]]):
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
include_path: Union[Unset, List[str]] = UNSET
|
|
25
|
+
include_type: Union[Unset, List[WorkspaceGitSyncSettingsRepositoriesItemSettingsIncludeTypeItem]] = UNSET
|
|
26
|
+
exclude_path: Union[Unset, List[str]] = UNSET
|
|
27
|
+
extra_include_path: Union[Unset, List[str]] = UNSET
|
|
28
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
29
|
+
|
|
30
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
31
|
+
include_path: Union[Unset, List[str]] = UNSET
|
|
32
|
+
if not isinstance(self.include_path, Unset):
|
|
33
|
+
include_path = self.include_path
|
|
34
|
+
|
|
35
|
+
include_type: Union[Unset, List[str]] = UNSET
|
|
36
|
+
if not isinstance(self.include_type, Unset):
|
|
37
|
+
include_type = []
|
|
38
|
+
for include_type_item_data in self.include_type:
|
|
39
|
+
include_type_item = include_type_item_data.value
|
|
40
|
+
|
|
41
|
+
include_type.append(include_type_item)
|
|
42
|
+
|
|
43
|
+
exclude_path: Union[Unset, List[str]] = UNSET
|
|
44
|
+
if not isinstance(self.exclude_path, Unset):
|
|
45
|
+
exclude_path = self.exclude_path
|
|
46
|
+
|
|
47
|
+
extra_include_path: Union[Unset, List[str]] = UNSET
|
|
48
|
+
if not isinstance(self.extra_include_path, Unset):
|
|
49
|
+
extra_include_path = self.extra_include_path
|
|
50
|
+
|
|
51
|
+
field_dict: Dict[str, Any] = {}
|
|
52
|
+
field_dict.update(self.additional_properties)
|
|
53
|
+
field_dict.update({})
|
|
54
|
+
if include_path is not UNSET:
|
|
55
|
+
field_dict["include_path"] = include_path
|
|
56
|
+
if include_type is not UNSET:
|
|
57
|
+
field_dict["include_type"] = include_type
|
|
58
|
+
if exclude_path is not UNSET:
|
|
59
|
+
field_dict["exclude_path"] = exclude_path
|
|
60
|
+
if extra_include_path is not UNSET:
|
|
61
|
+
field_dict["extra_include_path"] = extra_include_path
|
|
62
|
+
|
|
63
|
+
return field_dict
|
|
64
|
+
|
|
65
|
+
@classmethod
|
|
66
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
67
|
+
d = src_dict.copy()
|
|
68
|
+
include_path = cast(List[str], d.pop("include_path", UNSET))
|
|
69
|
+
|
|
70
|
+
include_type = []
|
|
71
|
+
_include_type = d.pop("include_type", UNSET)
|
|
72
|
+
for include_type_item_data in _include_type or []:
|
|
73
|
+
include_type_item = WorkspaceGitSyncSettingsRepositoriesItemSettingsIncludeTypeItem(include_type_item_data)
|
|
74
|
+
|
|
75
|
+
include_type.append(include_type_item)
|
|
76
|
+
|
|
77
|
+
exclude_path = cast(List[str], d.pop("exclude_path", UNSET))
|
|
78
|
+
|
|
79
|
+
extra_include_path = cast(List[str], d.pop("extra_include_path", UNSET))
|
|
80
|
+
|
|
81
|
+
workspace_git_sync_settings_repositories_item_settings = cls(
|
|
82
|
+
include_path=include_path,
|
|
83
|
+
include_type=include_type,
|
|
84
|
+
exclude_path=exclude_path,
|
|
85
|
+
extra_include_path=extra_include_path,
|
|
86
|
+
)
|
|
87
|
+
|
|
88
|
+
workspace_git_sync_settings_repositories_item_settings.additional_properties = d
|
|
89
|
+
return workspace_git_sync_settings_repositories_item_settings
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
def additional_keys(self) -> List[str]:
|
|
93
|
+
return list(self.additional_properties.keys())
|
|
94
|
+
|
|
95
|
+
def __getitem__(self, key: str) -> Any:
|
|
96
|
+
return self.additional_properties[key]
|
|
97
|
+
|
|
98
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
99
|
+
self.additional_properties[key] = value
|
|
100
|
+
|
|
101
|
+
def __delitem__(self, key: str) -> None:
|
|
102
|
+
del self.additional_properties[key]
|
|
103
|
+
|
|
104
|
+
def __contains__(self, key: str) -> bool:
|
|
105
|
+
return key in self.additional_properties
|
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
from enum import Enum
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
class
|
|
4
|
+
class WorkspaceGitSyncSettingsRepositoriesItemSettingsIncludeTypeItem(str, Enum):
|
|
5
5
|
APP = "app"
|
|
6
6
|
FLOW = "flow"
|
|
7
7
|
FOLDER = "folder"
|
|
8
8
|
GROUP = "group"
|
|
9
|
+
KEY = "key"
|
|
9
10
|
RESOURCE = "resource"
|
|
10
11
|
RESOURCETYPE = "resourcetype"
|
|
11
12
|
SCHEDULE = "schedule"
|
|
12
13
|
SCRIPT = "script"
|
|
13
14
|
SECRET = "secret"
|
|
15
|
+
SETTINGS = "settings"
|
|
14
16
|
TRIGGER = "trigger"
|
|
15
17
|
USER = "user"
|
|
16
18
|
VARIABLE = "variable"
|
|
@@ -267,6 +267,7 @@ windmill_api/api/nats_trigger/test_nats_connection.py,sha256=L_N5q72OrhKSpFyP7po
|
|
|
267
267
|
windmill_api/api/nats_trigger/update_nats_trigger.py,sha256=3y710Dv5wgqntaug9CaqmGPdnVVYswGfdEXd31TplTA,2891
|
|
268
268
|
windmill_api/api/oauth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
269
269
|
windmill_api/api/oauth/connect_callback.py,sha256=12cfwUWge6lMnTuVv9sxmk9oYpal4INyn-uN8EAURm4,4542
|
|
270
|
+
windmill_api/api/oauth/connect_client_credentials.py,sha256=yK5fTo70Xy6cXHbpNiX5zLNfcyWNWMp4KmYQsVv_6yk,4848
|
|
270
271
|
windmill_api/api/oauth/connect_slack_callback.py,sha256=7yr6_qXTGVSkRD3ZSdmdbkTLz3MEZrMBSpbCKmvGk4Q,2773
|
|
271
272
|
windmill_api/api/oauth/connect_slack_callback_instance.py,sha256=3Sk1OuX9HJZsHKoQVnFcUi3tnOPG5LshUFVNiU0eHLY,2615
|
|
272
273
|
windmill_api/api/oauth/create_account.py,sha256=6wN43bsHrXTmuHvm8VcJocutAsDpwXmFxRcyeYnu5tM,2711
|
|
@@ -780,7 +781,9 @@ windmill_api/models/config_config.py,sha256=0-Z932i9VEzxsgMxZHFfA02X1AHxax-I3p9A
|
|
|
780
781
|
windmill_api/models/configs.py,sha256=H0RyiDBAi3mO_QO6yyTCPVGbzjQ4GHtpr3otnS7s20k,2144
|
|
781
782
|
windmill_api/models/configs_alerts_item.py,sha256=QP5fW2ACdDVqIMeOBZHRBi96n-SArjPzVKZ1J1ef4Ds,2724
|
|
782
783
|
windmill_api/models/connect_callback_json_body.py,sha256=85RFBg7JqD8NbZOOmq-NlCsf26pLopNJ6Vy7IOUXTr8,1635
|
|
783
|
-
windmill_api/models/connect_callback_response_200.py,sha256=
|
|
784
|
+
windmill_api/models/connect_callback_response_200.py,sha256=LeZKaHz3csY_3ffdyHTeSu0r9j9RMhQzyxfLT5HCOqA,2886
|
|
785
|
+
windmill_api/models/connect_client_credentials_json_body.py,sha256=GLfcFgOsqzHL64vA2W3vaCqfVXPrMtQUBoXJ4Ux_1-Q,2397
|
|
786
|
+
windmill_api/models/connect_client_credentials_response_200.py,sha256=FrAB_NO1Xr3kmquvz9FXolihG8Tf4H04OdnMcjF8yPI,2934
|
|
784
787
|
windmill_api/models/connect_slack_callback_instance_json_body.py,sha256=c0Rnk7V8qF2Dr471eWnWZe41d5SXnhZEKpbJH1WkpYM,1706
|
|
785
788
|
windmill_api/models/connect_slack_callback_json_body.py,sha256=AopjAfEL44s4fFJeZFrhYznF-9k_Fo61T7yF4F6KeJw,1663
|
|
786
789
|
windmill_api/models/connect_teams_json_body.py,sha256=JC__SFOD0PCtt3hQwvxM5JQSo7nLjdVcoXAdz34nmoc,1866
|
|
@@ -788,7 +791,7 @@ windmill_api/models/contextual_variable.py,sha256=CYU0_ENlCZN9aD2hztezo1o0kkVCH-
|
|
|
788
791
|
windmill_api/models/count_jobs_by_tag_response_200_item.py,sha256=AMJAY5SIA4BypdkB7EOpA45aYBjd95-Ae2v6GiTbjo4,1664
|
|
789
792
|
windmill_api/models/count_search_logs_index_response_200.py,sha256=xZiHIVCwj4EcSXv657YMqN9yJy8gpwrTLNRe602vgcU,3190
|
|
790
793
|
windmill_api/models/count_search_logs_index_response_200_count_per_host.py,sha256=HwuTlvhuCIVeOTg3zDRc1tTZyjKfgsvenuHW8Svl9pg,1444
|
|
791
|
-
windmill_api/models/create_account_json_body.py,sha256=
|
|
794
|
+
windmill_api/models/create_account_json_body.py,sha256=deQHdmTUBXojx22rJIuyYje6IqV5qZ0RxjqAxFR0LG0,3232
|
|
792
795
|
windmill_api/models/create_agent_token_json_body.py,sha256=iaVHXGg6w8M166sVxHE8w-qWtFJaTh_u_mVljJ6sZg4,1881
|
|
793
796
|
windmill_api/models/create_app_json_body.py,sha256=5Vs_CDiGOeRvKWwjKGbH8s_uhHumNQuW7F_tf4Ca270,3230
|
|
794
797
|
windmill_api/models/create_app_json_body_policy.py,sha256=qzfGEbDbCcIj-_6odJi13hGONAE9lWXO9krokOhCmSw,7258
|
|
@@ -1126,10 +1129,11 @@ windmill_api/models/edit_workspace_deploy_ui_settings_json_body.py,sha256=2RMLsw
|
|
|
1126
1129
|
windmill_api/models/edit_workspace_deploy_ui_settings_json_body_deploy_ui_settings.py,sha256=yLSmZ1940K1JBfoTQr16Sc1go-y3pGDg236hZmnvGeY,3177
|
|
1127
1130
|
windmill_api/models/edit_workspace_deploy_ui_settings_json_body_deploy_ui_settings_include_type_item.py,sha256=u01JaEW5ing3I6Ey8xxTYxzAbbxRr-Y1yuxSi0XkE5k,327
|
|
1128
1131
|
windmill_api/models/edit_workspace_git_sync_config_json_body.py,sha256=F2NtYaGpgWMw8mH6fZFMikW7Y1A2V2jSQN1RaKb_y3U,2663
|
|
1129
|
-
windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings.py,sha256=
|
|
1130
|
-
windmill_api/models/
|
|
1131
|
-
windmill_api/models/
|
|
1132
|
-
windmill_api/models/
|
|
1132
|
+
windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings.py,sha256=tRgcb_urChFCIoOF_S7cikJqeq6hLIpUT3bhQEle6yg,2957
|
|
1133
|
+
windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item.py,sha256=LJTJEOb8fXz7V87WrkfmbQjjDiHpSg-ajC5njUNItl0,6105
|
|
1134
|
+
windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item_exclude_types_override_item.py,sha256=jjvIwRsCVSuM083fHBvrX7t2z1F8FhYA44mB1gNdz4s,510
|
|
1135
|
+
windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item_settings.py,sha256=SjgIZ3TYpcL98I0oj7QhONOjMIodRu1qWPA7AeYAdMA,4437
|
|
1136
|
+
windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item_settings_include_type_item.py,sha256=ly-HeQDKCj1fBKDAYkPpR7IEqt1mIdl-tkMHpAY-l9k,509
|
|
1133
1137
|
windmill_api/models/edit_workspace_user.py,sha256=zjcNtVcXPR8ekOWERQBAaEhkgSxqI9O6NXjysUk48is,2121
|
|
1134
1138
|
windmill_api/models/execute_component_json_body.py,sha256=6EVpxhIQr5uVzk8MvkufSSNClK5ABHHoOE7CFU3n3Oo,6800
|
|
1135
1139
|
windmill_api/models/execute_component_json_body_force_viewer_one_of_fields.py,sha256=JXxJ5OKE-NAakLvdewfcKE1F0-12c4h2gVSemd08vMY,1406
|
|
@@ -2277,7 +2281,7 @@ windmill_api/models/get_nats_trigger_response_200_extra_perms.py,sha256=TArRnWj8
|
|
|
2277
2281
|
windmill_api/models/get_nats_trigger_response_200_retry.py,sha256=EaTn89d5KHiOeidSpaWZEidjyZx-hkpfu0FdL25iVR8,3339
|
|
2278
2282
|
windmill_api/models/get_nats_trigger_response_200_retry_constant.py,sha256=WjnDqryWx7EOaTXlE6Hxo4AK8GrLDMY7OBfDaAacbZI,1954
|
|
2279
2283
|
windmill_api/models/get_nats_trigger_response_200_retry_exponential.py,sha256=jhJSdI3YmuZ9mgO5L312IfKRkHIKIK7O3awYwIisnEw,2580
|
|
2280
|
-
windmill_api/models/get_o_auth_connect_response_200.py,sha256=
|
|
2284
|
+
windmill_api/models/get_o_auth_connect_response_200.py,sha256=ky0hkQUyX8_jcDhVB8PLE9cCfUKMOsTTTxilB5H1o1s,3207
|
|
2281
2285
|
windmill_api/models/get_o_auth_connect_response_200_extra_params.py,sha256=yFFbR2vUCdjsGVPA8bRoiSw0EDebOuBB6yTrCd1wJe8,1358
|
|
2282
2286
|
windmill_api/models/get_postgres_publication_response_200.py,sha256=BUuaiKGsSmMX8stXGegNeh1tqUxrWifTVFfVdNiEYok,3137
|
|
2283
2287
|
windmill_api/models/get_postgres_publication_response_200_table_to_track_item.py,sha256=_TAXCh5Bza_cuRd9AcXFkImV1b9nN8jA4P9d25TDFZk,2977
|
|
@@ -2369,10 +2373,11 @@ windmill_api/models/get_settings_response_200_default_scripts.py,sha256=Jj7LAapG
|
|
|
2369
2373
|
windmill_api/models/get_settings_response_200_deploy_ui.py,sha256=ObNS_KBx9zQipqeKubJiNlzjBsVmNvpC0TZflBUkO2w,2892
|
|
2370
2374
|
windmill_api/models/get_settings_response_200_deploy_ui_include_type_item.py,sha256=jRqTf0Ssep-SpNPa9tJDD2W9-FTr-mC4qVPXV_2LN_Q,304
|
|
2371
2375
|
windmill_api/models/get_settings_response_200_error_handler_extra_args.py,sha256=uUuDIJzSay50l4_UmGDqp2egUY5a7ke2lOSPQXr0MOc,1388
|
|
2372
|
-
windmill_api/models/get_settings_response_200_git_sync.py,sha256=
|
|
2373
|
-
windmill_api/models/
|
|
2374
|
-
windmill_api/models/
|
|
2375
|
-
windmill_api/models/
|
|
2376
|
+
windmill_api/models/get_settings_response_200_git_sync.py,sha256=GtXLBGjf98Mfhb2Fw1jasklJF_xSQEMwcNfwaa6SCH8,2667
|
|
2377
|
+
windmill_api/models/get_settings_response_200_git_sync_repositories_item.py,sha256=A_S8sZgFMWqCG6aGcgD06r4m_rHQEolYSzP7IiLf3RQ,5681
|
|
2378
|
+
windmill_api/models/get_settings_response_200_git_sync_repositories_item_exclude_types_override_item.py,sha256=kCpv1ZDMMHGHTWiGECd7JlLQf_6krz7qGFOyB3yOw-Y,490
|
|
2379
|
+
windmill_api/models/get_settings_response_200_git_sync_repositories_item_settings.py,sha256=kxYr9z2gGWwwdWzFA_r8NqT7oHlQXfA86WYh3YrC-pk,4155
|
|
2380
|
+
windmill_api/models/get_settings_response_200_git_sync_repositories_item_settings_include_type_item.py,sha256=hIPyYfhpafI0ti6shsqLLUjG58K1tqE-2UOYLuCB6iM,489
|
|
2376
2381
|
windmill_api/models/get_settings_response_200_large_file_storage.py,sha256=T5ER8EPkkC_oXVHBqG-1OWx_qzFjeVJMUEh6aHTVjeo,4959
|
|
2377
2382
|
windmill_api/models/get_settings_response_200_large_file_storage_secondary_storage.py,sha256=NA9KIXrWM1jPhWw2FlYU3-ev1ksJ0f-RpMDA_YDDrnY,2539
|
|
2378
2383
|
windmill_api/models/get_settings_response_200_large_file_storage_secondary_storage_additional_property.py,sha256=s_xITfXABageos63DfneMBN79vJRt02Mg0O5MIqvPrQ,4068
|
|
@@ -2587,8 +2592,10 @@ windmill_api/models/get_websocket_trigger_response_200_retry_exponential.py,sha2
|
|
|
2587
2592
|
windmill_api/models/get_websocket_trigger_response_200_url_runnable_args.py,sha256=P0Egqqfsc4SvXyRNPjiRZEYr-nxd9a29lNHrucRhqsc,1398
|
|
2588
2593
|
windmill_api/models/get_workspace_default_app_response_200.py,sha256=FKINlHD6u4qyUDJgJjDuDIyIsWAuvRdPKYQA9s_Y00g,1758
|
|
2589
2594
|
windmill_api/models/get_workspace_encryption_key_response_200.py,sha256=Fvs0c2FiaRvYp_qRzJ4xj-gQ-2mF58Ae5dOol6Onuow,1544
|
|
2590
|
-
windmill_api/models/git_repository_settings.py,sha256=
|
|
2591
|
-
windmill_api/models/git_repository_settings_exclude_types_override_item.py,sha256=
|
|
2595
|
+
windmill_api/models/git_repository_settings.py,sha256=UMuFUfq9jZIv7tMNkHl7mrkNHJ1fIByMfIIXI_mow38,5142
|
|
2596
|
+
windmill_api/models/git_repository_settings_exclude_types_override_item.py,sha256=UgHD6OCUPd7AZ4J9DEH14ZZZg010hizcPzlHb8g0d6A,466
|
|
2597
|
+
windmill_api/models/git_repository_settings_settings.py,sha256=J5A0J2GUmiXWAPS-jt8JWZcdgxRht_XBJz8PP8DxcCE,3856
|
|
2598
|
+
windmill_api/models/git_repository_settings_settings_include_type_item.py,sha256=5I72KGK9v7h3uQX3a-aJarho1a5MlU5Z20h4ze4EBao,465
|
|
2592
2599
|
windmill_api/models/github_installations_item.py,sha256=eQZySpUmGB8XibjaE1F7Iu11KtFr_Z7x_2XIM-RPsGU,3114
|
|
2593
2600
|
windmill_api/models/github_installations_item_repositories_item.py,sha256=ui-qQICI5iywFMczl6pDy3Ppaw1KsEkgex1HrNlkoaE,1698
|
|
2594
2601
|
windmill_api/models/global_setting.py,sha256=NZxAwAz5Rh8LMvpHqRAaVZhF0-cXR9897d1lyNrXeTU,1821
|
|
@@ -4102,7 +4109,7 @@ windmill_api/models/timeseries_metric.py,sha256=lEh6phLe8osZpD0gnfZ6esqbCZQ8DG1q
|
|
|
4102
4109
|
windmill_api/models/timeseries_metric_values_item.py,sha256=eyL1fDGwrnzV4XRrxtoeZTYHSnWUZrLJxLh_qysG9cE,1808
|
|
4103
4110
|
windmill_api/models/toggle_workspace_error_handler_for_flow_json_body.py,sha256=1vXElVe0Pg_HD3os014JuQk9m1Z-pXFcqZ34YmPN1zA,1690
|
|
4104
4111
|
windmill_api/models/toggle_workspace_error_handler_for_script_json_body.py,sha256=reKnangwhUzDqz1voRyRFyxNITOvdUmcQW3Fu_5P7Is,1700
|
|
4105
|
-
windmill_api/models/token_response.py,sha256=
|
|
4112
|
+
windmill_api/models/token_response.py,sha256=TUr1Em8HnN93d3fVwajWRJd0YvAeDBp5TgrLdQxo178,2815
|
|
4106
4113
|
windmill_api/models/trigger_extra_property.py,sha256=hrQpW-TV3ljaxbfXxiK9NTBlluxf5-dtTlMtyhRrOKY,3256
|
|
4107
4114
|
windmill_api/models/trigger_extra_property_extra_perms.py,sha256=SU8vawDp5zteMLr7ed0nMWiThQeUmREK-aeca1kF0vk,1317
|
|
4108
4115
|
windmill_api/models/triggers_count.py,sha256=ylQGFjunYtgvfCWPKOtzyIzsOuNjFBcoNziiaWJTzsw,5780
|
|
@@ -4281,16 +4288,17 @@ windmill_api/models/workspace_deploy_ui_settings.py,sha256=TGzzRl609jiVEVW4VwqeB
|
|
|
4281
4288
|
windmill_api/models/workspace_deploy_ui_settings_include_type_item.py,sha256=BI5FN-N-GYaJ5RIzUM1OOF-YwHj3oqhPQIihCxBIHJ0,299
|
|
4282
4289
|
windmill_api/models/workspace_get_critical_alerts_response_200.py,sha256=1Io4I9aWkg7GGDJYwQWSBNTW_vFAW4-MhTLKf5pmnmM,3275
|
|
4283
4290
|
windmill_api/models/workspace_get_critical_alerts_response_200_alerts_item.py,sha256=pjAKMe8U_VlNECSoGlYxiNAIevL-B6hjLfZn39v6RNw,3823
|
|
4284
|
-
windmill_api/models/workspace_git_sync_settings.py,sha256=
|
|
4285
|
-
windmill_api/models/
|
|
4286
|
-
windmill_api/models/
|
|
4287
|
-
windmill_api/models/
|
|
4291
|
+
windmill_api/models/workspace_git_sync_settings.py,sha256=2f0o0KBsKj3EGS5SHsxxUbY_vzTnv3P6k9nLL7-1jQg,2555
|
|
4292
|
+
windmill_api/models/workspace_git_sync_settings_repositories_item.py,sha256=vxT1Rzw6sJDJoZ1dzaDRDR777uHie7yigmtUPriwLuE,5553
|
|
4293
|
+
windmill_api/models/workspace_git_sync_settings_repositories_item_exclude_types_override_item.py,sha256=9qeJaehjFRPtBHrHy6ULCpGkX120Za_L175TZ9D9_Vw,485
|
|
4294
|
+
windmill_api/models/workspace_git_sync_settings_repositories_item_settings.py,sha256=wOsoHCklrMDX3koMbMFHHleN1PaTO1eUrqbw4mcArQY,4067
|
|
4295
|
+
windmill_api/models/workspace_git_sync_settings_repositories_item_settings_include_type_item.py,sha256=lubjjNkSHXEP28MEkyM8LYf2TEz4bhdsO7Kya3v8Etc,484
|
|
4288
4296
|
windmill_api/models/workspace_github_installation.py,sha256=Vqwewx9pTGHUp_NzRIKQw9zhOiTWojR8qG9LHGycG90,1816
|
|
4289
4297
|
windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1lixwUUXG6CXs,2037
|
|
4290
4298
|
windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
|
|
4291
4299
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
4292
4300
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
4293
|
-
windmill_api-1.
|
|
4294
|
-
windmill_api-1.
|
|
4295
|
-
windmill_api-1.
|
|
4296
|
-
windmill_api-1.
|
|
4301
|
+
windmill_api-1.507.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
4302
|
+
windmill_api-1.507.0.dist-info/METADATA,sha256=gTcc3LFqKzq5yUDMmzxPiAn3uumJLbyXRFv0GDybsK0,5023
|
|
4303
|
+
windmill_api-1.507.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
4304
|
+
windmill_api-1.507.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|