
    >|h}                     .   d dl Z ddlmZ ddlmZ ddlmZ ddlmZ ddl	m
Z
 ddlmZ d d	lmZ dd
lmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ  e j@                  e jB                  d      Z" G d d      Z# G d d      Z$y)    N   )SyncClientWrapper)RequestOptions)!WorkspaceGroupByNameResponseModel)construct_type)UnprocessableEntityError)HttpValidationError)JSONDecodeError)ApiError)'DeleteWorkspaceGroupMemberResponseModel)jsonable_encoder)$AddWorkspaceGroupMemberResponseModel)AddWorkspaceInviteResponseModel)"DeleteWorkspaceInviteResponseModel   )3BodyUpdateMemberV1WorkspaceMembersPostWorkspaceRole)"UpdateWorkspaceMemberResponseModel)AsyncClientWrapper.c                   t   e Zd ZdefdZdddedej                  e   dej                  e
   fdZddd	ed
edej                  e   defdZddd	ed
edej                  e   defdZeddd
edej                  ej"                  e      dej                  e   defdZedddej"                  e   dej                  ej"                  e      dej                  e   defdZddd
edej                  e   defdZeeddd
edej                  e   dej                  e   dej                  e   def
dZy)WorkspaceClientclient_wrapperc                    || _         y N_client_wrapperselfr   s     Z/var/www/html/test/engine/venv/lib/python3.12/site-packages/elevenlabs/workspace/client.py__init__zWorkspaceClient.__init__   
    -    Nrequest_optionsnamer#   returnc          
         | j                   j                  j                  ddd|i|      }	 d|j                  cxk  rdk  r\n nYt	        j
                  t        j                  t           t        t        j                  t           |j                                     S |j                  dk(  r@t        t	        j
                  t        t        t        |j                                           |j                         }t        |j                  |	      # t        $ r" t        |j                  |j                  	      w xY w)
a  
        Searches for user groups in the workspace. Multiple or no groups may be returned.

        Parameters
        ----------
        name : str
            Name of the group to find.

        request_options : typing.Optional[RequestOptions]
            Request-specific configuration.

        Returns
        -------
        typing.List[WorkspaceGroupByNameResponseModel]
            Successful Response

        Examples
        --------
        from elevenlabs import ElevenLabs

        client = ElevenLabs(
            api_key="YOUR_API_KEY",
        )
        client.workspace.search_user_groups(
            name="name",
        )
        v1/workspace/groups/searchGETr$   methodparamsr#      ,  type_object_  status_codebodyr   httpx_clientrequestr3   typingcastListr   r   jsonr   r	   r
   r   textr   r$   r#   	_response_response_jsons        r   search_user_groupsz"WorkspaceClient.search_user_groups   s   < ((55==( , > 
		Si++1c1{{KK AB"$kk*KL ) 0  $$+.KK+&"5$-NN$4  '^^-N 9#8#8~NN  	Sy'<'<9>>RR	Ss   A0D AD +D?group_idemailc          
      j   | j                   j                  j                  dt        |       ddd|iddi|t              }	 d|j
                  cxk  rd	k  r:n n7t        j                  t        t        t        |j                         
            S |j
                  dk(  r@t        t        j                  t        t        t        |j                         
                  |j                         }t        |j
                  |      # t        $ r" t        |j
                  |j                        w xY w)a  
        Removes a member from the specified group. This endpoint may only be called by workspace administrators.

        Parameters
        ----------
        group_id : str
            The ID of the target group.

        email : str
            The email of the target workspace member.

        request_options : typing.Optional[RequestOptions]
            Request-specific configuration.

        Returns
        -------
        DeleteWorkspaceGroupMemberResponseModel
            Successful Response

        Examples
        --------
        from elevenlabs import ElevenLabs

        client = ElevenLabs(
            api_key="YOUR_API_KEY",
        )
        client.workspace.delete_member_from_user_group(
            group_id="group_id",
            email="email",
        )
        v1/workspace/groups//members/removePOSTrB   content-typeapplication/jsonr*   r;   headersr#   omitr,   r-   r.   r1   r2   r   r6   r7   r   OMITr3   r8   r9   r   r   r;   r   r	   r
   r   r<   r   rA   rB   r#   r>   r?   s         r   delete_member_from_user_groupz-WorkspaceClient.delete_member_from_user_group]   s+   D ((55=="#3H#=">oN  2 , > 
		Si++1c1{{;"E ) 0  $$+.KK+&"5$-NN$4  '^^-N 9#8#8~NN  	Sy'<'<9>>RR	S   AD AD +D2c          
      j   | j                   j                  j                  dt        |       ddd|iddi|t              }	 d|j
                  cxk  rd	k  r:n n7t        j                  t        t        t        |j                         
            S |j
                  dk(  r@t        t        j                  t        t        t        |j                         
                  |j                         }t        |j
                  |      # t        $ r" t        |j
                  |j                        w xY w)a  
        Adds a member of your workspace to the specified group. This endpoint may only be called by workspace administrators.

        Parameters
        ----------
        group_id : str
            The ID of the target group.

        email : str
            The email of the target workspace member.

        request_options : typing.Optional[RequestOptions]
            Request-specific configuration.

        Returns
        -------
        AddWorkspaceGroupMemberResponseModel
            Successful Response

        Examples
        --------
        from elevenlabs import ElevenLabs

        client = ElevenLabs(
            api_key="YOUR_API_KEY",
        )
        client.workspace.add_member_to_user_group(
            group_id="group_id",
            email="email",
        )
        rD   /membersrF   rB   rG   rH   rI   r,   r-   r.   r1   r2   r   r6   r7   r   rM   r3   r8   r9   r   r   r;   r   r	   r
   r   r<   rN   s         r   add_member_to_user_groupz(WorkspaceClient.add_member_to_user_group   s+   D ((55=="#3H#=">hG  2 , > 
		Si++1c1{{8"B ) 0  $$+.KK+&"5$-NN$4  '^^-N 9#8#8~NN  	Sy'<'<9>>RR	SrP   	group_idsr#   rV   c          
      R   | j                   j                  j                  dd||dddi|t              }	 d|j                  cxk  rdk  r:n n7t        j                  t        t        t        |j                         	            S |j                  d
k(  r@t        t        j                  t        t        t        |j                         	                  |j                         }t        |j                  |      # t        $ r" t        |j                  |j                        w xY w)a*  
        Sends an email invitation to join your workspace to the provided email. If the user doesn't have an account they will be prompted to create one. If the user accepts this invite they will be added as a user to your workspace and your subscription using one of your seats. This endpoint may only be called by workspace administrators. If the user is already in the workspace a 400 error will be returned.

        Parameters
        ----------
        email : str
            The email of the customer

        group_ids : typing.Optional[typing.Sequence[str]]
            The group ids of the user

        request_options : typing.Optional[RequestOptions]
            Request-specific configuration.

        Returns
        -------
        AddWorkspaceInviteResponseModel
            Successful Response

        Examples
        --------
        from elevenlabs import ElevenLabs

        client = ElevenLabs(
            api_key="YOUR_API_KEY",
        )
        client.workspace.invite_user(
            email="john.doe@testmail.com",
        )
        v1/workspace/invites/addrF   rB   rV   rG   rH   rI   r,   r-   r.   r1   r2   r   r6   r7   rM   r3   r8   r9   r   r   r;   r   r	   r
   r   r<   r   rB   rV   r#   r>   r?   s         r   invite_userzWorkspaceClient.invite_user   s   J ((55==&&
  2 , > 
		Si++1c1{{3"= ) 0  $$+.KK+&"5$-NN$4  '^^-N 9#8#8~NN  	Sy'<'<9>>RR	S   AC; AC; ;+D&emailsc          
      R   | j                   j                  j                  dd||dddi|t              }	 d|j                  cxk  rdk  r:n n7t        j                  t        t        t        |j                         	            S |j                  d
k(  r@t        t        j                  t        t        t        |j                         	                  |j                         }t        |j                  |      # t        $ r" t        |j                  |j                        w xY w)a1  
        Sends email invitations to join your workspace to the provided emails. Requires all email addresses to be part of a verified domain. If the users don't have an account they will be prompted to create one. If the users accept these invites they will be added as users to your workspace and your subscription using one of your seats. This endpoint may only be called by workspace administrators.

        Parameters
        ----------
        emails : typing.Sequence[str]
            The email of the customer

        group_ids : typing.Optional[typing.Sequence[str]]
            The group ids of the user

        request_options : typing.Optional[RequestOptions]
            Request-specific configuration.

        Returns
        -------
        AddWorkspaceInviteResponseModel
            Successful Response

        Examples
        --------
        from elevenlabs import ElevenLabs

        client = ElevenLabs(
            api_key="YOUR_API_KEY",
        )
        client.workspace.invite_multiple_users(
            emails=["emails"],
        )
        v1/workspace/invites/add-bulkrF   r^   rV   rG   rH   rI   r,   r-   r.   r1   r2   rZ   r   r^   rV   r#   r>   r?   s         r   invite_multiple_usersz%WorkspaceClient.invite_multiple_users3  s   J ((55==+ &
  2 , > 
		Si++1c1{{3"= ) 0  $$+.KK+&"5$-NN$4  '^^-N 9#8#8~NN  	Sy'<'<9>>RR	Sr]   c          
      P   | j                   j                  j                  ddd|iddi|t              }	 d|j                  cxk  rdk  r:n n7t        j                  t        t        t        |j                         	            S |j                  d
k(  r@t        t        j                  t        t        t        |j                         	                  |j                         }t        |j                  |      # t        $ r" t        |j                  |j                        w xY w)a-  
        Invalidates an existing email invitation. The invitation will still show up in the inbox it has been delivered to, but activating it to join the workspace won't work. This endpoint may only be called by workspace administrators.

        Parameters
        ----------
        email : str
            The email of the customer

        request_options : typing.Optional[RequestOptions]
            Request-specific configuration.

        Returns
        -------
        DeleteWorkspaceInviteResponseModel
            Successful Response

        Examples
        --------
        from elevenlabs import ElevenLabs

        client = ElevenLabs(
            api_key="YOUR_API_KEY",
        )
        client.workspace.delete_existing_invitation(
            email="john.doe@testmail.com",
        )
        v1/workspace/invitesDELETErB   rG   rH   rI   r,   r-   r.   r1   r2   r   r6   r7   rM   r3   r8   r9   r   r   r;   r   r	   r
   r   r<   r   rB   r#   r>   r?   s        r   delete_existing_invitationz*WorkspaceClient.delete_existing_invitation}  s   < ((55=="  2 , > 
		Si++1c1{{6"@ ) 0  $$+.KK+&"5$-NN$4  '^^-N 9#8#8~NN  	Sy'<'<9>>RR	Ss   AC: AC: :+D%	is_lockedworkspace_roler#   rk   rl   c          
      T   | j                   j                  j                  dd|||dddi|t              }	 d|j                  cxk  rdk  r:n n7t        j                  t        t        t        |j                         	            S |j                  d
k(  r@t        t        j                  t        t        t        |j                         	                  |j                         }t        |j                  |      # t        $ r" t        |j                  |j                        w xY w)a  
        Updates attributes of a workspace member. Apart from the email identifier, all parameters will remain unchanged unless specified. This endpoint may only be called by workspace administrators.

        Parameters
        ----------
        email : str
            Email of the target user.

        is_locked : typing.Optional[bool]
            Whether to lock or unlock the user account.

        workspace_role : typing.Optional[BodyUpdateMemberV1WorkspaceMembersPostWorkspaceRole]
            Role dictating permissions in the workspace.

        request_options : typing.Optional[RequestOptions]
            Request-specific configuration.

        Returns
        -------
        UpdateWorkspaceMemberResponseModel
            Successful Response

        Examples
        --------
        from elevenlabs import ElevenLabs

        client = ElevenLabs(
            api_key="YOUR_API_KEY",
        )
        client.workspace.update_member(
            email="email",
        )
        v1/workspace/membersrF   rB   rk   rl   rG   rH   rI   r,   r-   r.   r1   r2   r   r6   r7   rM   r3   r8   r9   r   r   r;   r   r	   r
   r   r<   r   rB   rk   rl   r#   r>   r?   s          r   update_memberzWorkspaceClient.update_member  s   R ((55=="&"0  2 , > 
		Si++1c1{{6"@ ) 0  $$+.KK+&"5$-NN$4  '^^-N 9#8#8~NN  	Sy'<'<9>>RR	Ss   AC< AC< <+D')__name__
__module____qualname__r   r   strr8   Optionalr   r:   r   r@   r   rO   r   rT   rM   Sequencer   r\   rc   r   ri   boolr   r   rr    r!   r   r   r      s,   .*; . PT<O<O-3__^-L<O	6	7<O~ `dDODO'*DO=C__^=\DO	0DON `dDODO'*DO=C__^=\DO	-DOT <@;?HO HO ??6??3#78	HO
  8HO 
)HO\ <@;?HO $HO ??6??3#78	HO
  8HO 
)HOV QU@O@O.4oon.M@O	+@OL ,0_c;?MO MO ??4(	MO
 ([\MO  8MO 
,MOr!   r   c                   t   e Zd ZdefdZdddedej                  e   dej                  e
   fdZddd	ed
edej                  e   defdZddd	ed
edej                  e   defdZeddd
edej                  ej"                  e      dej                  e   defdZedddej"                  e   dej                  ej"                  e      dej                  e   defdZddd
edej                  e   defdZeeddd
edej                  e   dej                  e   dej                  e   def
dZy)AsyncWorkspaceClientr   c                    || _         y r   r   r   s     r   r   zAsyncWorkspaceClient.__init__  r    r!   Nr"   r$   r#   r%   c          
        K   | j                   j                  j                  ddd|i|       d{   }	 d|j                  cxk  rdk  r\n nYt	        j
                  t        j                  t           t        t        j                  t           |j                                     S |j                  d	k(  r@t        t	        j
                  t        t        t        |j                                           |j                         }t        |j                  |
      7 # t        $ r" t        |j                  |j                  
      w xY ww)a  
        Searches for user groups in the workspace. Multiple or no groups may be returned.

        Parameters
        ----------
        name : str
            Name of the group to find.

        request_options : typing.Optional[RequestOptions]
            Request-specific configuration.

        Returns
        -------
        typing.List[WorkspaceGroupByNameResponseModel]
            Successful Response

        Examples
        --------
        import asyncio

        from elevenlabs import AsyncElevenLabs

        client = AsyncElevenLabs(
            api_key="YOUR_API_KEY",
        )


        async def main() -> None:
            await client.workspace.search_user_groups(
                name="name",
            )


        asyncio.run(main())
        r'   r(   r$   r)   Nr,   r-   r.   r1   r2   r5   r=   s        r   r@   z'AsyncWorkspaceClient.search_user_groups  s-    L ..;;CC( , D 
 
		Si++1c1{{KK AB"$kk*KL ) 0  $$+.KK+&"5$-NN$4  '^^-N 9#8#8~NN=
8  	Sy'<'<9>>RR	Ss4   /EDEA0D  'E(AD  E +EErA   rB   c          
        K   | j                   j                  j                  dt        |       ddd|iddi|t               d{   }	 d	|j
                  cxk  rd
k  r:n n7t        j                  t        t        t        |j                                     S |j
                  dk(  r@t        t        j                  t        t        t        |j                                           |j                         }t        |j
                  |      7 # t        $ r" t        |j
                  |j                        w xY ww)a  
        Removes a member from the specified group. This endpoint may only be called by workspace administrators.

        Parameters
        ----------
        group_id : str
            The ID of the target group.

        email : str
            The email of the target workspace member.

        request_options : typing.Optional[RequestOptions]
            Request-specific configuration.

        Returns
        -------
        DeleteWorkspaceGroupMemberResponseModel
            Successful Response

        Examples
        --------
        import asyncio

        from elevenlabs import AsyncElevenLabs

        client = AsyncElevenLabs(
            api_key="YOUR_API_KEY",
        )


        async def main() -> None:
            await client.workspace.delete_member_from_user_group(
                group_id="group_id",
                email="email",
            )


        asyncio.run(main())
        rD   rE   rF   rB   rG   rH   rI   Nr,   r-   r.   r1   r2   rL   rN   s         r   rO   z2AsyncWorkspaceClient.delete_member_from_user_groupY  s;    T ..;;CC"#3H#=">oN  2 , D 
 
		Si++1c1{{;"E ) 0  $$+.KK+&"5$-NN$4  '^^-N 9#8#8~NNE
@  	Sy'<'<9>>RR	S8   AEDEAD EAD :E+D>>Ec          
        K   | j                   j                  j                  dt        |       ddd|iddi|t               d{   }	 d	|j
                  cxk  rd
k  r:n n7t        j                  t        t        t        |j                                     S |j
                  dk(  r@t        t        j                  t        t        t        |j                                           |j                         }t        |j
                  |      7 # t        $ r" t        |j
                  |j                        w xY ww)a  
        Adds a member of your workspace to the specified group. This endpoint may only be called by workspace administrators.

        Parameters
        ----------
        group_id : str
            The ID of the target group.

        email : str
            The email of the target workspace member.

        request_options : typing.Optional[RequestOptions]
            Request-specific configuration.

        Returns
        -------
        AddWorkspaceGroupMemberResponseModel
            Successful Response

        Examples
        --------
        import asyncio

        from elevenlabs import AsyncElevenLabs

        client = AsyncElevenLabs(
            api_key="YOUR_API_KEY",
        )


        async def main() -> None:
            await client.workspace.add_member_to_user_group(
                group_id="group_id",
                email="email",
            )


        asyncio.run(main())
        rD   rR   rF   rB   rG   rH   rI   Nr,   r-   r.   r1   r2   rS   rN   s         r   rT   z-AsyncWorkspaceClient.add_member_to_user_group  s;    T ..;;CC"#3H#=">hG  2 , D 
 
		Si++1c1{{8"B ) 0  $$+.KK+&"5$-NN$4  '^^-N 9#8#8~NNE
@  	Sy'<'<9>>RR	Sr   rU   rV   c          
      n  K   | j                   j                  j                  dd||dddi|t               d{   }	 d|j                  cxk  rd	k  r:n n7t        j                  t        t        t        |j                         
            S |j                  dk(  r@t        t        j                  t        t        t        |j                         
                  |j                         }t        |j                  |      7 # t        $ r" t        |j                  |j                        w xY ww)a  
        Sends an email invitation to join your workspace to the provided email. If the user doesn't have an account they will be prompted to create one. If the user accepts this invite they will be added as a user to your workspace and your subscription using one of your seats. This endpoint may only be called by workspace administrators. If the user is already in the workspace a 400 error will be returned.

        Parameters
        ----------
        email : str
            The email of the customer

        group_ids : typing.Optional[typing.Sequence[str]]
            The group ids of the user

        request_options : typing.Optional[RequestOptions]
            Request-specific configuration.

        Returns
        -------
        AddWorkspaceInviteResponseModel
            Successful Response

        Examples
        --------
        import asyncio

        from elevenlabs import AsyncElevenLabs

        client = AsyncElevenLabs(
            api_key="YOUR_API_KEY",
        )


        async def main() -> None:
            await client.workspace.invite_user(
                email="john.doe@testmail.com",
            )


        asyncio.run(main())
        rX   rF   rY   rG   rH   rI   Nr,   r-   r.   r1   r2   rZ   r[   s         r   r\   z AsyncWorkspaceClient.invite_user  s,    Z ..;;CC&&
  2 , D 
 
		Si++1c1{{3"= ) 0  $$+.KK+&"5$-NN$4  '^^-N 9#8#8~NNG
B  	Sy'<'<9>>RR	S5   8D5DD5 AD D5AD .D5+D22D5r^   c          
      n  K   | j                   j                  j                  dd||dddi|t               d{   }	 d|j                  cxk  rd	k  r:n n7t        j                  t        t        t        |j                         
            S |j                  dk(  r@t        t        j                  t        t        t        |j                         
                  |j                         }t        |j                  |      7 # t        $ r" t        |j                  |j                        w xY ww)a  
        Sends email invitations to join your workspace to the provided emails. Requires all email addresses to be part of a verified domain. If the users don't have an account they will be prompted to create one. If the users accept these invites they will be added as users to your workspace and your subscription using one of your seats. This endpoint may only be called by workspace administrators.

        Parameters
        ----------
        emails : typing.Sequence[str]
            The email of the customer

        group_ids : typing.Optional[typing.Sequence[str]]
            The group ids of the user

        request_options : typing.Optional[RequestOptions]
            Request-specific configuration.

        Returns
        -------
        AddWorkspaceInviteResponseModel
            Successful Response

        Examples
        --------
        import asyncio

        from elevenlabs import AsyncElevenLabs

        client = AsyncElevenLabs(
            api_key="YOUR_API_KEY",
        )


        async def main() -> None:
            await client.workspace.invite_multiple_users(
                emails=["emails"],
            )


        asyncio.run(main())
        r`   rF   ra   rG   rH   rI   Nr,   r-   r.   r1   r2   rZ   rb   s         r   rc   z*AsyncWorkspaceClient.invite_multiple_usersG  s,    Z ..;;CC+ &
  2 , D 
 
		Si++1c1{{3"= ) 0  $$+.KK+&"5$-NN$4  '^^-N 9#8#8~NNG
B  	Sy'<'<9>>RR	Sr   c          
      l  K   | j                   j                  j                  ddd|iddi|t               d{   }	 d|j                  cxk  rd	k  r:n n7t        j                  t        t        t        |j                         
            S |j                  dk(  r@t        t        j                  t        t        t        |j                         
                  |j                         }t        |j                  |      7 # t        $ r" t        |j                  |j                        w xY ww)a  
        Invalidates an existing email invitation. The invitation will still show up in the inbox it has been delivered to, but activating it to join the workspace won't work. This endpoint may only be called by workspace administrators.

        Parameters
        ----------
        email : str
            The email of the customer

        request_options : typing.Optional[RequestOptions]
            Request-specific configuration.

        Returns
        -------
        DeleteWorkspaceInviteResponseModel
            Successful Response

        Examples
        --------
        import asyncio

        from elevenlabs import AsyncElevenLabs

        client = AsyncElevenLabs(
            api_key="YOUR_API_KEY",
        )


        async def main() -> None:
            await client.workspace.delete_existing_invitation(
                email="john.doe@testmail.com",
            )


        asyncio.run(main())
        re   rf   rB   rG   rH   rI   Nr,   r-   r.   r1   r2   rg   rh   s        r   ri   z/AsyncWorkspaceClient.delete_existing_invitation  s+    L ..;;CC"  2 , D 
 
		Si++1c1{{6"@ ) 0  $$+.KK+&"5$-NN$4  '^^-N 9#8#8~NNE
@  	Sy'<'<9>>RR	Ss4   7D4DD4AD D4AD -D4+D11D4rj   rk   rl   c          
      p  K   | j                   j                  j                  dd|||dddi|t               d{   }	 d|j                  cxk  rd	k  r:n n7t        j                  t        t        t        |j                         
            S |j                  dk(  r@t        t        j                  t        t        t        |j                         
                  |j                         }t        |j                  |      7 # t        $ r" t        |j                  |j                        w xY ww)a\  
        Updates attributes of a workspace member. Apart from the email identifier, all parameters will remain unchanged unless specified. This endpoint may only be called by workspace administrators.

        Parameters
        ----------
        email : str
            Email of the target user.

        is_locked : typing.Optional[bool]
            Whether to lock or unlock the user account.

        workspace_role : typing.Optional[BodyUpdateMemberV1WorkspaceMembersPostWorkspaceRole]
            Role dictating permissions in the workspace.

        request_options : typing.Optional[RequestOptions]
            Request-specific configuration.

        Returns
        -------
        UpdateWorkspaceMemberResponseModel
            Successful Response

        Examples
        --------
        import asyncio

        from elevenlabs import AsyncElevenLabs

        client = AsyncElevenLabs(
            api_key="YOUR_API_KEY",
        )


        async def main() -> None:
            await client.workspace.update_member(
                email="email",
            )


        asyncio.run(main())
        rn   rF   ro   rG   rH   rI   Nr,   r-   r.   r1   r2   rp   rq   s          r   rr   z"AsyncWorkspaceClient.update_member  s/    b ..;;CC"&"0  2 , D 
 
		Si++1c1{{6"@ ) 0  $$+.KK+&"5$-NN$4  '^^-N 9#8#8~NNI
D  	Sy'<'<9>>RR	Ss5   9D6DD6AD D6AD /D6+D33D6)rs   rt   ru   r   r   rv   r8   rw   r   r:   r   r@   r   rO   r   rT   rM   rx   r   r\   rc   r   ri   ry   r   r   rr   rz   r!   r   r|   r|     s0   .*< . PTDODO-3__^-LDO	6	7DON `dLOLO'*LO=C__^=\LO	0LO^ `dLOLO'*LO=C__^=\LO	-LOd <@;?PO PO ??6??3#78	PO
  8PO 
)POl <@;?PO $PO ??6??3#78	PO
  8PO 
)POf QUHOHO.4oon.MHO	+HO\ ,0_c;?UO UO ??4(	UO
 ([\UO  8UO 
,UOr!   r|   )%r8   core.client_wrapperr   core.request_optionsr   ,types.workspace_group_by_name_response_modelr   core.unchecked_base_modelr   !errors.unprocessable_entity_errorr   types.http_validation_errorr	   json.decoderr
   core.api_errorr   2types.delete_workspace_group_member_response_modelr   core.jsonable_encoderr   /types.add_workspace_group_member_response_modelr   )types.add_workspace_invite_response_modelr   ,types.delete_workspace_invite_response_modelr   Btypes.body_update_member_v_1_workspace_members_post_workspace_roler   ,types.update_workspace_member_response_modelr   r   r9   AnyrM   r   r|   rz   r!   r   <module>r      st     3 1 \ 6 H = ( % h 4 b W ] ^ 4 v{{6::s#qO qOhiO iOr!   