55from ..core .client_wrapper import AsyncClientWrapper , SyncClientWrapper
66from ..core .request_options import RequestOptions
77from ..events .types .event_types import EventTypes
8+ from ..events .types .inbox_ids import InboxIds
9+ from ..events .types .pod_ids import PodIds
810from ..types .limit import Limit
911from ..types .page_token import PageToken
1012from .raw_client import AsyncRawWebhooksClient , RawWebhooksClient
1113from .types .client_id import ClientId
12- from .types .inbox_ids import InboxIds
1314from .types .list_webhooks_response import ListWebhooksResponse
1415from .types .url import Url
1516from .types .webhook import Webhook
@@ -99,6 +100,7 @@ def create(
99100 * ,
100101 url : Url ,
101102 event_types : EventTypes ,
103+ pod_ids : typing .Optional [PodIds ] = OMIT ,
102104 inbox_ids : typing .Optional [InboxIds ] = OMIT ,
103105 client_id : typing .Optional [ClientId ] = OMIT ,
104106 request_options : typing .Optional [RequestOptions ] = None ,
@@ -110,6 +112,8 @@ def create(
110112
111113 event_types : EventTypes
112114
115+ pod_ids : typing.Optional[PodIds]
116+
113117 inbox_ids : typing.Optional[InboxIds]
114118
115119 client_id : typing.Optional[ClientId]
@@ -134,7 +138,12 @@ def create(
134138 )
135139 """
136140 _response = self ._raw_client .create (
137- url = url , event_types = event_types , inbox_ids = inbox_ids , client_id = client_id , request_options = request_options
141+ url = url ,
142+ event_types = event_types ,
143+ pod_ids = pod_ids ,
144+ inbox_ids = inbox_ids ,
145+ client_id = client_id ,
146+ request_options = request_options ,
138147 )
139148 return _response .data
140149
@@ -262,6 +271,7 @@ async def create(
262271 * ,
263272 url : Url ,
264273 event_types : EventTypes ,
274+ pod_ids : typing .Optional [PodIds ] = OMIT ,
265275 inbox_ids : typing .Optional [InboxIds ] = OMIT ,
266276 client_id : typing .Optional [ClientId ] = OMIT ,
267277 request_options : typing .Optional [RequestOptions ] = None ,
@@ -273,6 +283,8 @@ async def create(
273283
274284 event_types : EventTypes
275285
286+ pod_ids : typing.Optional[PodIds]
287+
276288 inbox_ids : typing.Optional[InboxIds]
277289
278290 client_id : typing.Optional[ClientId]
@@ -305,7 +317,12 @@ async def main() -> None:
305317 asyncio.run(main())
306318 """
307319 _response = await self ._raw_client .create (
308- url = url , event_types = event_types , inbox_ids = inbox_ids , client_id = client_id , request_options = request_options
320+ url = url ,
321+ event_types = event_types ,
322+ pod_ids = pod_ids ,
323+ inbox_ids = inbox_ids ,
324+ client_id = client_id ,
325+ request_options = request_options ,
309326 )
310327 return _response .data
311328
0 commit comments