windmill-api 1.436.0__py3-none-any.whl → 1.437.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.

@@ -23,6 +23,7 @@ class GetUserResponse200:
23
23
  disabled (bool):
24
24
  folders (List[str]):
25
25
  folders_owners (List[str]):
26
+ name (Union[Unset, str]):
26
27
  groups (Union[Unset, List[str]]):
27
28
  """
28
29
 
@@ -35,6 +36,7 @@ class GetUserResponse200:
35
36
  disabled: bool
36
37
  folders: List[str]
37
38
  folders_owners: List[str]
39
+ name: Union[Unset, str] = UNSET
38
40
  groups: Union[Unset, List[str]] = UNSET
39
41
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
40
42
 
@@ -51,6 +53,7 @@ class GetUserResponse200:
51
53
 
52
54
  folders_owners = self.folders_owners
53
55
 
56
+ name = self.name
54
57
  groups: Union[Unset, List[str]] = UNSET
55
58
  if not isinstance(self.groups, Unset):
56
59
  groups = self.groups
@@ -70,6 +73,8 @@ class GetUserResponse200:
70
73
  "folders_owners": folders_owners,
71
74
  }
72
75
  )
76
+ if name is not UNSET:
77
+ field_dict["name"] = name
73
78
  if groups is not UNSET:
74
79
  field_dict["groups"] = groups
75
80
 
@@ -96,6 +101,8 @@ class GetUserResponse200:
96
101
 
97
102
  folders_owners = cast(List[str], d.pop("folders_owners"))
98
103
 
104
+ name = d.pop("name", UNSET)
105
+
99
106
  groups = cast(List[str], d.pop("groups", UNSET))
100
107
 
101
108
  get_user_response_200 = cls(
@@ -108,6 +115,7 @@ class GetUserResponse200:
108
115
  disabled=disabled,
109
116
  folders=folders,
110
117
  folders_owners=folders_owners,
118
+ name=name,
111
119
  groups=groups,
112
120
  )
113
121
 
@@ -23,6 +23,7 @@ class ListUsersResponse200Item:
23
23
  disabled (bool):
24
24
  folders (List[str]):
25
25
  folders_owners (List[str]):
26
+ name (Union[Unset, str]):
26
27
  groups (Union[Unset, List[str]]):
27
28
  """
28
29
 
@@ -35,6 +36,7 @@ class ListUsersResponse200Item:
35
36
  disabled: bool
36
37
  folders: List[str]
37
38
  folders_owners: List[str]
39
+ name: Union[Unset, str] = UNSET
38
40
  groups: Union[Unset, List[str]] = UNSET
39
41
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
40
42
 
@@ -51,6 +53,7 @@ class ListUsersResponse200Item:
51
53
 
52
54
  folders_owners = self.folders_owners
53
55
 
56
+ name = self.name
54
57
  groups: Union[Unset, List[str]] = UNSET
55
58
  if not isinstance(self.groups, Unset):
56
59
  groups = self.groups
@@ -70,6 +73,8 @@ class ListUsersResponse200Item:
70
73
  "folders_owners": folders_owners,
71
74
  }
72
75
  )
76
+ if name is not UNSET:
77
+ field_dict["name"] = name
73
78
  if groups is not UNSET:
74
79
  field_dict["groups"] = groups
75
80
 
@@ -96,6 +101,8 @@ class ListUsersResponse200Item:
96
101
 
97
102
  folders_owners = cast(List[str], d.pop("folders_owners"))
98
103
 
104
+ name = d.pop("name", UNSET)
105
+
99
106
  groups = cast(List[str], d.pop("groups", UNSET))
100
107
 
101
108
  list_users_response_200_item = cls(
@@ -108,6 +115,7 @@ class ListUsersResponse200Item:
108
115
  disabled=disabled,
109
116
  folders=folders,
110
117
  folders_owners=folders_owners,
118
+ name=name,
111
119
  groups=groups,
112
120
  )
113
121
 
@@ -23,6 +23,7 @@ class User:
23
23
  disabled (bool):
24
24
  folders (List[str]):
25
25
  folders_owners (List[str]):
26
+ name (Union[Unset, str]):
26
27
  groups (Union[Unset, List[str]]):
27
28
  """
28
29
 
@@ -35,6 +36,7 @@ class User:
35
36
  disabled: bool
36
37
  folders: List[str]
37
38
  folders_owners: List[str]
39
+ name: Union[Unset, str] = UNSET
38
40
  groups: Union[Unset, List[str]] = UNSET
39
41
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
40
42
 
@@ -51,6 +53,7 @@ class User:
51
53
 
52
54
  folders_owners = self.folders_owners
53
55
 
56
+ name = self.name
54
57
  groups: Union[Unset, List[str]] = UNSET
55
58
  if not isinstance(self.groups, Unset):
56
59
  groups = self.groups
@@ -70,6 +73,8 @@ class User:
70
73
  "folders_owners": folders_owners,
71
74
  }
72
75
  )
76
+ if name is not UNSET:
77
+ field_dict["name"] = name
73
78
  if groups is not UNSET:
74
79
  field_dict["groups"] = groups
75
80
 
@@ -96,6 +101,8 @@ class User:
96
101
 
97
102
  folders_owners = cast(List[str], d.pop("folders_owners"))
98
103
 
104
+ name = d.pop("name", UNSET)
105
+
99
106
  groups = cast(List[str], d.pop("groups", UNSET))
100
107
 
101
108
  user = cls(
@@ -108,6 +115,7 @@ class User:
108
115
  disabled=disabled,
109
116
  folders=folders,
110
117
  folders_owners=folders_owners,
118
+ name=name,
111
119
  groups=groups,
112
120
  )
113
121
 
@@ -23,6 +23,7 @@ class WhoamiResponse200:
23
23
  disabled (bool):
24
24
  folders (List[str]):
25
25
  folders_owners (List[str]):
26
+ name (Union[Unset, str]):
26
27
  groups (Union[Unset, List[str]]):
27
28
  """
28
29
 
@@ -35,6 +36,7 @@ class WhoamiResponse200:
35
36
  disabled: bool
36
37
  folders: List[str]
37
38
  folders_owners: List[str]
39
+ name: Union[Unset, str] = UNSET
38
40
  groups: Union[Unset, List[str]] = UNSET
39
41
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
40
42
 
@@ -51,6 +53,7 @@ class WhoamiResponse200:
51
53
 
52
54
  folders_owners = self.folders_owners
53
55
 
56
+ name = self.name
54
57
  groups: Union[Unset, List[str]] = UNSET
55
58
  if not isinstance(self.groups, Unset):
56
59
  groups = self.groups
@@ -70,6 +73,8 @@ class WhoamiResponse200:
70
73
  "folders_owners": folders_owners,
71
74
  }
72
75
  )
76
+ if name is not UNSET:
77
+ field_dict["name"] = name
73
78
  if groups is not UNSET:
74
79
  field_dict["groups"] = groups
75
80
 
@@ -96,6 +101,8 @@ class WhoamiResponse200:
96
101
 
97
102
  folders_owners = cast(List[str], d.pop("folders_owners"))
98
103
 
104
+ name = d.pop("name", UNSET)
105
+
99
106
  groups = cast(List[str], d.pop("groups", UNSET))
100
107
 
101
108
  whoami_response_200 = cls(
@@ -108,6 +115,7 @@ class WhoamiResponse200:
108
115
  disabled=disabled,
109
116
  folders=folders,
110
117
  folders_owners=folders_owners,
118
+ name=name,
111
119
  groups=groups,
112
120
  )
113
121
 
@@ -23,6 +23,7 @@ class WhoisResponse200:
23
23
  disabled (bool):
24
24
  folders (List[str]):
25
25
  folders_owners (List[str]):
26
+ name (Union[Unset, str]):
26
27
  groups (Union[Unset, List[str]]):
27
28
  """
28
29
 
@@ -35,6 +36,7 @@ class WhoisResponse200:
35
36
  disabled: bool
36
37
  folders: List[str]
37
38
  folders_owners: List[str]
39
+ name: Union[Unset, str] = UNSET
38
40
  groups: Union[Unset, List[str]] = UNSET
39
41
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
40
42
 
@@ -51,6 +53,7 @@ class WhoisResponse200:
51
53
 
52
54
  folders_owners = self.folders_owners
53
55
 
56
+ name = self.name
54
57
  groups: Union[Unset, List[str]] = UNSET
55
58
  if not isinstance(self.groups, Unset):
56
59
  groups = self.groups
@@ -70,6 +73,8 @@ class WhoisResponse200:
70
73
  "folders_owners": folders_owners,
71
74
  }
72
75
  )
76
+ if name is not UNSET:
77
+ field_dict["name"] = name
73
78
  if groups is not UNSET:
74
79
  field_dict["groups"] = groups
75
80
 
@@ -96,6 +101,8 @@ class WhoisResponse200:
96
101
 
97
102
  folders_owners = cast(List[str], d.pop("folders_owners"))
98
103
 
104
+ name = d.pop("name", UNSET)
105
+
99
106
  groups = cast(List[str], d.pop("groups", UNSET))
100
107
 
101
108
  whois_response_200 = cls(
@@ -108,6 +115,7 @@ class WhoisResponse200:
108
115
  disabled=disabled,
109
116
  folders=folders,
110
117
  folders_owners=folders_owners,
118
+ name=name,
111
119
  groups=groups,
112
120
  )
113
121
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: windmill-api
3
- Version: 1.436.0
3
+ Version: 1.437.1
4
4
  Summary: A client library for accessing Windmill API
5
5
  License: Apache-2.0
6
6
  Author: Ruben Fiszel
@@ -2139,7 +2139,7 @@ windmill_api/models/get_triggers_count_of_script_response_200.py,sha256=Kvz0ariB
2139
2139
  windmill_api/models/get_triggers_count_of_script_response_200_primary_schedule.py,sha256=pf1m2mjKwEN7_8ugaE4cE-jVXFyXngryOctpXY9qX9w,1764
2140
2140
  windmill_api/models/get_tutorial_progress_response_200.py,sha256=b4BtXIK5s1-7alHtT8j67cPqg39qh_u9mkK0LXE2YhA,1652
2141
2141
  windmill_api/models/get_used_triggers_response_200.py,sha256=jrnBdwhOtzRzlfFw6uF6pL-AE4aPJMDzgdchkBRNTMw,2071
2142
- windmill_api/models/get_user_response_200.py,sha256=1EIw1zAOf66Max-mO0gq6YE9QyN83U2paS5iT3GQT9k,3646
2142
+ windmill_api/models/get_user_response_200.py,sha256=dOaKRO-S3czJbqByMTJsiIY635mMBhlzBr258Sc5G5k,3869
2143
2143
  windmill_api/models/get_variable_response_200.py,sha256=3WK2IMm6-Jr7tvy-jfOFrt1eMIUXVQyLzTcogJZQZlw,5430
2144
2144
  windmill_api/models/get_variable_response_200_extra_perms.py,sha256=NkIQGAWfX954BcR6UBrYbATENEmbWT7-8639NOeTtdE,1330
2145
2145
  windmill_api/models/get_websocket_trigger_response_200.py,sha256=6bQ8kFNzBjUu54AWoclebssIV8tVUV-dOZU5BjiMmNQ,9553
@@ -2924,7 +2924,7 @@ windmill_api/models/list_user_workspaces_response_200.py,sha256=BAnO9piWEGR53SaM
2924
2924
  windmill_api/models/list_user_workspaces_response_200_workspaces_item.py,sha256=h6S-3uZrb534lOUeubG-Zn-jUTeUwbWdwyo2p4dqCkg,1896
2925
2925
  windmill_api/models/list_users_as_super_admin_response_200_item.py,sha256=4u3fB3qr3kMpGeCOhLNq0VwkEkMFZu-yMaenZCNRXWU,3797
2926
2926
  windmill_api/models/list_users_as_super_admin_response_200_item_login_type.py,sha256=GqFojYh0I3SpWAhKpt5iup-ck8kMDmSapmBLjZ0XX8U,198
2927
- windmill_api/models/list_users_response_200_item.py,sha256=J7_wItdtNe1D2WiA4XrcnSC4RC1vNy2i8Oy1vlWPt1U,3679
2927
+ windmill_api/models/list_users_response_200_item.py,sha256=mpvg4zd9SQAUldbqUSN0V6Py5npFc8loGI0O1VqEPxA,3902
2928
2928
  windmill_api/models/list_users_usage_response_200_item.py,sha256=0ZKMktaSC_LTPolx1JXEEwINvWmf03Tl4OKSakKf6JU,1910
2929
2929
  windmill_api/models/list_variable_response_200_item.py,sha256=nrPTcHabE71NPFFws-4Zl-7I8u1JOZacAabbiVdLjfk,5495
2930
2930
  windmill_api/models/list_variable_response_200_item_extra_perms.py,sha256=Tx5hXdRHxg4SBN__jLzKf5cT09WbuLSmuOgDDkaKBlU,1358
@@ -3471,7 +3471,7 @@ windmill_api/models/update_websocket_trigger_json_body_initial_messages_item_typ
3471
3471
  windmill_api/models/update_websocket_trigger_json_body_initial_messages_item_type_1_runnable_result_args.py,sha256=EJLVIg8amn79vaPc37z7rug8FH1MkpZom_twdQL8Ues,1548
3472
3472
  windmill_api/models/update_websocket_trigger_json_body_url_runnable_args.py,sha256=8ZKejEynzpnEaOWjfXzpTBzCneSQtgoKL5a2gl2N4CA,1398
3473
3473
  windmill_api/models/upload_file_part.py,sha256=WcPclcP3eFnArJDLZo5hXuOQ8f2nEWJHpeOtaWNH2P0,1637
3474
- windmill_api/models/user.py,sha256=XE320ZRk7Kcv2PSsvMwT14KPKzf1pSHfZrCtLlNJyyQ,3567
3474
+ windmill_api/models/user.py,sha256=C7u6NFUw6Y6Ojss_BeCHCf7TNUwtscliAhgZvJBqiNQ,3790
3475
3475
  windmill_api/models/user_usage.py,sha256=3ePY0rntlxIaDIe7iKA7U-taV3OIsR90QWH71zOW6FY,1798
3476
3476
  windmill_api/models/user_workspace_list.py,sha256=5xDEkP2JoQEzVmY444NGT-wIeColo4aespbGBFZYGnQ,2325
3477
3477
  windmill_api/models/user_workspace_list_workspaces_item.py,sha256=UMxS0Axgdreu2ILRK6v-v1szMQCWhR0y4wIRE5x0r9M,1830
@@ -3506,8 +3506,8 @@ windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_typ
3506
3506
  windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_type_1.py,sha256=0-5z26aT7cb08WINFgsMG7k0aCDmZ2g9RDepwe5vHj4,2133
3507
3507
  windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_type_1_type.py,sha256=CXoTPgyza9vFeEdl48x6_l58d7-vQ8iCWLA6xUH-WJQ,193
3508
3508
  windmill_api/models/whileloop_flow_type.py,sha256=xBsQlX3qXXC1LRFBubv9Lfl5sF-NcEKeEWsHTZDHmRQ,154
3509
- windmill_api/models/whoami_response_200.py,sha256=SBXh12b5qV1BSmxe_kbBxHD031AeRz5Bj_Y1buxRd48,3638
3510
- windmill_api/models/whois_response_200.py,sha256=NkfBb7HBsB3XbNpx6M0ElAbpFzw_jOYpryONos3NhE4,3633
3509
+ windmill_api/models/whoami_response_200.py,sha256=CPtuqOXxEfrg0nx7an51lCRbMPAUYcEdrpsd9Ftm8oI,3861
3510
+ windmill_api/models/whois_response_200.py,sha256=QwGS9s0NpjxzNWgMq3TOrllNPnxH3n6ovixZCQbDcfQ,3856
3511
3511
  windmill_api/models/windmill_file_metadata.py,sha256=HVl3TD56e7IFrmrAvSgO0Xz9JHFNsOijULLt1-hB9U4,3509
3512
3512
  windmill_api/models/windmill_file_preview.py,sha256=SD0Ii7DxWzVo5Kn7LMl_rf8BF9FFlcJSC0gdCg1TuaQ,2229
3513
3513
  windmill_api/models/windmill_file_preview_content_type.py,sha256=6RSZIG646TFP6hNFzZ0bsFSCYLQKy-v9F3FBdYbAaZM,223
@@ -3532,7 +3532,7 @@ windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1li
3532
3532
  windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
3533
3533
  windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
3534
3534
  windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
3535
- windmill_api-1.436.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
3536
- windmill_api-1.436.0.dist-info/METADATA,sha256=EpY0wOD2Hx4Vu5Pnwob7mutt8LsImsR9yMK0QoWscns,5023
3537
- windmill_api-1.436.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
3538
- windmill_api-1.436.0.dist-info/RECORD,,
3535
+ windmill_api-1.437.1.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
3536
+ windmill_api-1.437.1.dist-info/METADATA,sha256=BeUrlksOEPui_pHqvmyItrPfZlp7VfGJBoMupXxC0lA,5023
3537
+ windmill_api-1.437.1.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
3538
+ windmill_api-1.437.1.dist-info/RECORD,,