33import typing
44from ..core .client_wrapper import SyncClientWrapper
55from .exports .client import ExportsClient
6+ from .members .client import MembersClient
67from .stats .client import StatsClient
78from .assignments .client import AssignmentsClient
89from .pauses .client import PausesClient
3536from ..types .project_label_config import ProjectLabelConfig
3637from ..core .client_wrapper import AsyncClientWrapper
3738from .exports .client import AsyncExportsClient
39+ from .members .client import AsyncMembersClient
3840from .stats .client import AsyncStatsClient
3941from .assignments .client import AsyncAssignmentsClient
4042from .pauses .client import AsyncPausesClient
@@ -48,6 +50,7 @@ class ProjectsClient:
4850 def __init__ (self , * , client_wrapper : SyncClientWrapper ):
4951 self ._client_wrapper = client_wrapper
5052 self .exports = ExportsClient (client_wrapper = self ._client_wrapper )
53+ self .members = MembersClient (client_wrapper = self ._client_wrapper )
5154 self .stats = StatsClient (client_wrapper = self ._client_wrapper )
5255 self .assignments = AssignmentsClient (client_wrapper = self ._client_wrapper )
5356 self .pauses = PausesClient (client_wrapper = self ._client_wrapper )
@@ -976,6 +979,7 @@ class AsyncProjectsClient:
976979 def __init__ (self , * , client_wrapper : AsyncClientWrapper ):
977980 self ._client_wrapper = client_wrapper
978981 self .exports = AsyncExportsClient (client_wrapper = self ._client_wrapper )
982+ self .members = AsyncMembersClient (client_wrapper = self ._client_wrapper )
979983 self .stats = AsyncStatsClient (client_wrapper = self ._client_wrapper )
980984 self .assignments = AsyncAssignmentsClient (client_wrapper = self ._client_wrapper )
981985 self .pauses = AsyncPausesClient (client_wrapper = self ._client_wrapper )
0 commit comments