1515def _get_kwargs (
1616 graph_id : str ,
1717 * ,
18- company_id : Union [None , Unset , str ] = UNSET ,
18+ entity_id : Union [None , Unset , str ] = UNSET ,
1919 provider : Union [ListConnectionsProviderType0 , None , Unset ] = UNSET ,
2020 authorization : Union [None , Unset , str ] = UNSET ,
2121 auth_token : Union [None , Unset , str ] = UNSET ,
@@ -30,12 +30,12 @@ def _get_kwargs(
3030
3131 params : dict [str , Any ] = {}
3232
33- json_company_id : Union [None , Unset , str ]
34- if isinstance (company_id , Unset ):
35- json_company_id = UNSET
33+ json_entity_id : Union [None , Unset , str ]
34+ if isinstance (entity_id , Unset ):
35+ json_entity_id = UNSET
3636 else :
37- json_company_id = company_id
38- params ["company_id " ] = json_company_id
37+ json_entity_id = entity_id
38+ params ["entity_id " ] = json_entity_id
3939
4040 json_provider : Union [None , Unset , str ]
4141 if isinstance (provider , Unset ):
@@ -104,7 +104,7 @@ def sync_detailed(
104104 graph_id : str ,
105105 * ,
106106 client : AuthenticatedClient ,
107- company_id : Union [None , Unset , str ] = UNSET ,
107+ entity_id : Union [None , Unset , str ] = UNSET ,
108108 provider : Union [ListConnectionsProviderType0 , None , Unset ] = UNSET ,
109109 authorization : Union [None , Unset , str ] = UNSET ,
110110 auth_token : Union [None , Unset , str ] = UNSET ,
@@ -115,7 +115,7 @@ def sync_detailed(
115115
116116 Returns active and inactive connections with their current status.
117117 Connections can be filtered by:
118- - **Company **: Show connections for a specific company
118+ - **Entity **: Show connections for a specific entity
119119 - **Provider**: Filter by connection type (sec, quickbooks, plaid)
120120
121121 Each connection shows:
@@ -128,7 +128,7 @@ def sync_detailed(
128128
129129 Args:
130130 graph_id (str): Graph database identifier
131- company_id (Union[None, Unset, str]): Filter by company ID
131+ entity_id (Union[None, Unset, str]): Filter by entity ID
132132 provider (Union[ListConnectionsProviderType0, None, Unset]): Filter by provider type
133133 authorization (Union[None, Unset, str]):
134134 auth_token (Union[None, Unset, str]):
@@ -143,7 +143,7 @@ def sync_detailed(
143143
144144 kwargs = _get_kwargs (
145145 graph_id = graph_id ,
146- company_id = company_id ,
146+ entity_id = entity_id ,
147147 provider = provider ,
148148 authorization = authorization ,
149149 auth_token = auth_token ,
@@ -160,7 +160,7 @@ def sync(
160160 graph_id : str ,
161161 * ,
162162 client : AuthenticatedClient ,
163- company_id : Union [None , Unset , str ] = UNSET ,
163+ entity_id : Union [None , Unset , str ] = UNSET ,
164164 provider : Union [ListConnectionsProviderType0 , None , Unset ] = UNSET ,
165165 authorization : Union [None , Unset , str ] = UNSET ,
166166 auth_token : Union [None , Unset , str ] = UNSET ,
@@ -171,7 +171,7 @@ def sync(
171171
172172 Returns active and inactive connections with their current status.
173173 Connections can be filtered by:
174- - **Company **: Show connections for a specific company
174+ - **Entity **: Show connections for a specific entity
175175 - **Provider**: Filter by connection type (sec, quickbooks, plaid)
176176
177177 Each connection shows:
@@ -184,7 +184,7 @@ def sync(
184184
185185 Args:
186186 graph_id (str): Graph database identifier
187- company_id (Union[None, Unset, str]): Filter by company ID
187+ entity_id (Union[None, Unset, str]): Filter by entity ID
188188 provider (Union[ListConnectionsProviderType0, None, Unset]): Filter by provider type
189189 authorization (Union[None, Unset, str]):
190190 auth_token (Union[None, Unset, str]):
@@ -200,7 +200,7 @@ def sync(
200200 return sync_detailed (
201201 graph_id = graph_id ,
202202 client = client ,
203- company_id = company_id ,
203+ entity_id = entity_id ,
204204 provider = provider ,
205205 authorization = authorization ,
206206 auth_token = auth_token ,
@@ -211,7 +211,7 @@ async def asyncio_detailed(
211211 graph_id : str ,
212212 * ,
213213 client : AuthenticatedClient ,
214- company_id : Union [None , Unset , str ] = UNSET ,
214+ entity_id : Union [None , Unset , str ] = UNSET ,
215215 provider : Union [ListConnectionsProviderType0 , None , Unset ] = UNSET ,
216216 authorization : Union [None , Unset , str ] = UNSET ,
217217 auth_token : Union [None , Unset , str ] = UNSET ,
@@ -222,7 +222,7 @@ async def asyncio_detailed(
222222
223223 Returns active and inactive connections with their current status.
224224 Connections can be filtered by:
225- - **Company **: Show connections for a specific company
225+ - **Entity **: Show connections for a specific entity
226226 - **Provider**: Filter by connection type (sec, quickbooks, plaid)
227227
228228 Each connection shows:
@@ -235,7 +235,7 @@ async def asyncio_detailed(
235235
236236 Args:
237237 graph_id (str): Graph database identifier
238- company_id (Union[None, Unset, str]): Filter by company ID
238+ entity_id (Union[None, Unset, str]): Filter by entity ID
239239 provider (Union[ListConnectionsProviderType0, None, Unset]): Filter by provider type
240240 authorization (Union[None, Unset, str]):
241241 auth_token (Union[None, Unset, str]):
@@ -250,7 +250,7 @@ async def asyncio_detailed(
250250
251251 kwargs = _get_kwargs (
252252 graph_id = graph_id ,
253- company_id = company_id ,
253+ entity_id = entity_id ,
254254 provider = provider ,
255255 authorization = authorization ,
256256 auth_token = auth_token ,
@@ -265,7 +265,7 @@ async def asyncio(
265265 graph_id : str ,
266266 * ,
267267 client : AuthenticatedClient ,
268- company_id : Union [None , Unset , str ] = UNSET ,
268+ entity_id : Union [None , Unset , str ] = UNSET ,
269269 provider : Union [ListConnectionsProviderType0 , None , Unset ] = UNSET ,
270270 authorization : Union [None , Unset , str ] = UNSET ,
271271 auth_token : Union [None , Unset , str ] = UNSET ,
@@ -276,7 +276,7 @@ async def asyncio(
276276
277277 Returns active and inactive connections with their current status.
278278 Connections can be filtered by:
279- - **Company **: Show connections for a specific company
279+ - **Entity **: Show connections for a specific entity
280280 - **Provider**: Filter by connection type (sec, quickbooks, plaid)
281281
282282 Each connection shows:
@@ -289,7 +289,7 @@ async def asyncio(
289289
290290 Args:
291291 graph_id (str): Graph database identifier
292- company_id (Union[None, Unset, str]): Filter by company ID
292+ entity_id (Union[None, Unset, str]): Filter by entity ID
293293 provider (Union[ListConnectionsProviderType0, None, Unset]): Filter by provider type
294294 authorization (Union[None, Unset, str]):
295295 auth_token (Union[None, Unset, str]):
@@ -306,7 +306,7 @@ async def asyncio(
306306 await asyncio_detailed (
307307 graph_id = graph_id ,
308308 client = client ,
309- company_id = company_id ,
309+ entity_id = entity_id ,
310310 provider = provider ,
311311 authorization = authorization ,
312312 auth_token = auth_token ,
0 commit comments