@@ -60,7 +60,6 @@ def dry_run(
6060 self ,
6161 * ,
6262 event_type : str ,
63- device_id : str | Omit = omit ,
6463 payload : Dict [str , Optional [object ]] | Omit = omit ,
6564 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
6665 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -88,7 +87,6 @@ def dry_run(
8887 body = maybe_transform (
8988 {
9089 "event_type" : event_type ,
91- "device_id" : device_id ,
9290 "payload" : payload ,
9391 },
9492 event_dry_run_params .EventDryRunParams ,
@@ -103,7 +101,6 @@ def ingest(
103101 self ,
104102 * ,
105103 event_type : str ,
106- device_id : str | Omit = omit ,
107104 payload : Dict [str , Optional [object ]] | Omit = omit ,
108105 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
109106 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -130,7 +127,6 @@ def ingest(
130127 body = maybe_transform (
131128 {
132129 "event_type" : event_type ,
133- "device_id" : device_id ,
134130 "payload" : payload ,
135131 },
136132 event_ingest_params .EventIngestParams ,
@@ -170,7 +166,6 @@ async def dry_run(
170166 self ,
171167 * ,
172168 event_type : str ,
173- device_id : str | Omit = omit ,
174169 payload : Dict [str , Optional [object ]] | Omit = omit ,
175170 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
176171 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -198,7 +193,6 @@ async def dry_run(
198193 body = await async_maybe_transform (
199194 {
200195 "event_type" : event_type ,
201- "device_id" : device_id ,
202196 "payload" : payload ,
203197 },
204198 event_dry_run_params .EventDryRunParams ,
@@ -213,7 +207,6 @@ async def ingest(
213207 self ,
214208 * ,
215209 event_type : str ,
216- device_id : str | Omit = omit ,
217210 payload : Dict [str , Optional [object ]] | Omit = omit ,
218211 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
219212 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -240,7 +233,6 @@ async def ingest(
240233 body = await async_maybe_transform (
241234 {
242235 "event_type" : event_type ,
243- "device_id" : device_id ,
244236 "payload" : payload ,
245237 },
246238 event_ingest_params .EventIngestParams ,
0 commit comments