1616 FetchJob ,
1717 FetchPerson ,
1818 FetchPost ,
19+ ManageConversation ,
1920 NvFetchCompany ,
2021 NvFetchPerson ,
22+ NvManageConversation ,
2123 NvSearchCompanies ,
2224 NvSearchPeople ,
2325 NvSendMessage ,
@@ -62,6 +64,7 @@ def __init__(self, config: LinkedApiConfig | HttpClient[Any]) -> None:
6264 self .send_message = SendMessage (self .http_client )
6365 self .sync_conversation = SyncConversation (self .http_client )
6466 self .sync_inbox = SyncInbox (self .http_client )
67+ self .manage_conversation = ManageConversation (self .http_client )
6568 self .check_connection_status = CheckConnectionStatus (self .http_client )
6669 self .send_connection_request = SendConnectionRequest (self .http_client )
6770 self .withdraw_connection_request = WithdrawConnectionRequest (self .http_client )
@@ -83,6 +86,7 @@ def __init__(self, config: LinkedApiConfig | HttpClient[Any]) -> None:
8386 self .nv_send_message = NvSendMessage (self .http_client )
8487 self .nv_sync_conversation = NvSyncConversation (self .http_client )
8588 self .nv_sync_inbox = NvSyncInbox (self .http_client )
89+ self .nv_manage_conversation = NvManageConversation (self .http_client )
8690 self .nv_search_companies = NvSearchCompanies (self .http_client )
8791 self .nv_search_people = NvSearchPeople (self .http_client )
8892 self .nv_fetch_company = NvFetchCompany (self .http_client )
@@ -93,6 +97,7 @@ def __init__(self, config: LinkedApiConfig | HttpClient[Any]) -> None:
9397 self .send_message ,
9498 self .sync_conversation ,
9599 self .sync_inbox ,
100+ self .manage_conversation ,
96101 self .check_connection_status ,
97102 self .send_connection_request ,
98103 self .withdraw_connection_request ,
@@ -114,6 +119,7 @@ def __init__(self, config: LinkedApiConfig | HttpClient[Any]) -> None:
114119 self .nv_send_message ,
115120 self .nv_sync_conversation ,
116121 self .nv_sync_inbox ,
122+ self .nv_manage_conversation ,
117123 self .nv_search_companies ,
118124 self .nv_search_people ,
119125 self .nv_fetch_company ,
0 commit comments