@@ -126,11 +126,10 @@ def configure_prop(
126
126
id : str ,
127
127
external_user_id : str ,
128
128
prop_name : str ,
129
- async_handle : typing .Optional [str ] = None ,
130
129
blocking : typing .Optional [bool ] = OMIT ,
131
130
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
132
131
dynamic_props_id : typing .Optional [str ] = OMIT ,
133
- configure_prop_opts_async_handle : typing .Optional [str ] = OMIT ,
132
+ async_handle : typing .Optional [str ] = OMIT ,
134
133
page : typing .Optional [float ] = OMIT ,
135
134
prev_context : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
136
135
query : typing .Optional [str ] = OMIT ,
@@ -148,8 +147,6 @@ def configure_prop(
148
147
prop_name : str
149
148
The name of the prop to configure
150
149
151
- async_handle : typing.Optional[str]
152
-
153
150
blocking : typing.Optional[bool]
154
151
Whether this operation should block until completion
155
152
@@ -159,7 +156,7 @@ def configure_prop(
159
156
dynamic_props_id : typing.Optional[str]
160
157
The ID for dynamic props
161
158
162
- configure_prop_opts_async_handle : typing.Optional[str]
159
+ async_handle : typing.Optional[str]
163
160
Handle for async operations
164
161
165
162
page : typing.Optional[float]
@@ -199,11 +196,10 @@ def configure_prop(
199
196
id = id ,
200
197
external_user_id = external_user_id ,
201
198
prop_name = prop_name ,
202
- async_handle = async_handle ,
203
199
blocking = blocking ,
204
200
configured_props = configured_props ,
205
201
dynamic_props_id = dynamic_props_id ,
206
- configure_prop_opts_async_handle = configure_prop_opts_async_handle ,
202
+ async_handle = async_handle ,
207
203
page = page ,
208
204
prev_context = prev_context ,
209
205
query = query ,
@@ -216,11 +212,10 @@ def reload_props(
216
212
* ,
217
213
id : str ,
218
214
external_user_id : str ,
219
- async_handle : typing .Optional [str ] = None ,
220
215
blocking : typing .Optional [bool ] = OMIT ,
221
216
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
222
217
dynamic_props_id : typing .Optional [str ] = OMIT ,
223
- reload_props_opts_async_handle : typing .Optional [str ] = OMIT ,
218
+ async_handle : typing .Optional [str ] = OMIT ,
224
219
request_options : typing .Optional [RequestOptions ] = None ,
225
220
) -> ReloadPropsResponse :
226
221
"""
@@ -232,8 +227,6 @@ def reload_props(
232
227
external_user_id : str
233
228
The external user ID
234
229
235
- async_handle : typing.Optional[str]
236
-
237
230
blocking : typing.Optional[bool]
238
231
Whether this operation should block until completion
239
232
@@ -243,7 +236,7 @@ def reload_props(
243
236
dynamic_props_id : typing.Optional[str]
244
237
The ID for dynamic props
245
238
246
- reload_props_opts_async_handle : typing.Optional[str]
239
+ async_handle : typing.Optional[str]
247
240
Handle for async operations
248
241
249
242
request_options : typing.Optional[RequestOptions]
@@ -272,11 +265,10 @@ def reload_props(
272
265
_response = self ._raw_client .reload_props (
273
266
id = id ,
274
267
external_user_id = external_user_id ,
275
- async_handle = async_handle ,
276
268
blocking = blocking ,
277
269
configured_props = configured_props ,
278
270
dynamic_props_id = dynamic_props_id ,
279
- reload_props_opts_async_handle = reload_props_opts_async_handle ,
271
+ async_handle = async_handle ,
280
272
request_options = request_options ,
281
273
)
282
274
return _response .data
@@ -286,7 +278,6 @@ def run(
286
278
* ,
287
279
id : str ,
288
280
external_user_id : str ,
289
- async_handle : typing .Optional [str ] = None ,
290
281
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
291
282
dynamic_props_id : typing .Optional [str ] = OMIT ,
292
283
stash_id : typing .Optional [RunActionOptsStashId ] = OMIT ,
@@ -301,8 +292,6 @@ def run(
301
292
external_user_id : str
302
293
The external user ID
303
294
304
- async_handle : typing.Optional[str]
305
-
306
295
configured_props : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
307
296
The configured properties for the action
308
297
@@ -337,7 +326,6 @@ def run(
337
326
_response = self ._raw_client .run (
338
327
id = id ,
339
328
external_user_id = external_user_id ,
340
- async_handle = async_handle ,
341
329
configured_props = configured_props ,
342
330
dynamic_props_id = dynamic_props_id ,
343
331
stash_id = stash_id ,
@@ -475,11 +463,10 @@ async def configure_prop(
475
463
id : str ,
476
464
external_user_id : str ,
477
465
prop_name : str ,
478
- async_handle : typing .Optional [str ] = None ,
479
466
blocking : typing .Optional [bool ] = OMIT ,
480
467
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
481
468
dynamic_props_id : typing .Optional [str ] = OMIT ,
482
- configure_prop_opts_async_handle : typing .Optional [str ] = OMIT ,
469
+ async_handle : typing .Optional [str ] = OMIT ,
483
470
page : typing .Optional [float ] = OMIT ,
484
471
prev_context : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
485
472
query : typing .Optional [str ] = OMIT ,
@@ -497,8 +484,6 @@ async def configure_prop(
497
484
prop_name : str
498
485
The name of the prop to configure
499
486
500
- async_handle : typing.Optional[str]
501
-
502
487
blocking : typing.Optional[bool]
503
488
Whether this operation should block until completion
504
489
@@ -508,7 +493,7 @@ async def configure_prop(
508
493
dynamic_props_id : typing.Optional[str]
509
494
The ID for dynamic props
510
495
511
- configure_prop_opts_async_handle : typing.Optional[str]
496
+ async_handle : typing.Optional[str]
512
497
Handle for async operations
513
498
514
499
page : typing.Optional[float]
@@ -556,11 +541,10 @@ async def main() -> None:
556
541
id = id ,
557
542
external_user_id = external_user_id ,
558
543
prop_name = prop_name ,
559
- async_handle = async_handle ,
560
544
blocking = blocking ,
561
545
configured_props = configured_props ,
562
546
dynamic_props_id = dynamic_props_id ,
563
- configure_prop_opts_async_handle = configure_prop_opts_async_handle ,
547
+ async_handle = async_handle ,
564
548
page = page ,
565
549
prev_context = prev_context ,
566
550
query = query ,
@@ -573,11 +557,10 @@ async def reload_props(
573
557
* ,
574
558
id : str ,
575
559
external_user_id : str ,
576
- async_handle : typing .Optional [str ] = None ,
577
560
blocking : typing .Optional [bool ] = OMIT ,
578
561
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
579
562
dynamic_props_id : typing .Optional [str ] = OMIT ,
580
- reload_props_opts_async_handle : typing .Optional [str ] = OMIT ,
563
+ async_handle : typing .Optional [str ] = OMIT ,
581
564
request_options : typing .Optional [RequestOptions ] = None ,
582
565
) -> ReloadPropsResponse :
583
566
"""
@@ -589,8 +572,6 @@ async def reload_props(
589
572
external_user_id : str
590
573
The external user ID
591
574
592
- async_handle : typing.Optional[str]
593
-
594
575
blocking : typing.Optional[bool]
595
576
Whether this operation should block until completion
596
577
@@ -600,7 +581,7 @@ async def reload_props(
600
581
dynamic_props_id : typing.Optional[str]
601
582
The ID for dynamic props
602
583
603
- reload_props_opts_async_handle : typing.Optional[str]
584
+ async_handle : typing.Optional[str]
604
585
Handle for async operations
605
586
606
587
request_options : typing.Optional[RequestOptions]
@@ -637,11 +618,10 @@ async def main() -> None:
637
618
_response = await self ._raw_client .reload_props (
638
619
id = id ,
639
620
external_user_id = external_user_id ,
640
- async_handle = async_handle ,
641
621
blocking = blocking ,
642
622
configured_props = configured_props ,
643
623
dynamic_props_id = dynamic_props_id ,
644
- reload_props_opts_async_handle = reload_props_opts_async_handle ,
624
+ async_handle = async_handle ,
645
625
request_options = request_options ,
646
626
)
647
627
return _response .data
@@ -651,7 +631,6 @@ async def run(
651
631
* ,
652
632
id : str ,
653
633
external_user_id : str ,
654
- async_handle : typing .Optional [str ] = None ,
655
634
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
656
635
dynamic_props_id : typing .Optional [str ] = OMIT ,
657
636
stash_id : typing .Optional [RunActionOptsStashId ] = OMIT ,
@@ -666,8 +645,6 @@ async def run(
666
645
external_user_id : str
667
646
The external user ID
668
647
669
- async_handle : typing.Optional[str]
670
-
671
648
configured_props : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
672
649
The configured properties for the action
673
650
@@ -710,7 +687,6 @@ async def main() -> None:
710
687
_response = await self ._raw_client .run (
711
688
id = id ,
712
689
external_user_id = external_user_id ,
713
- async_handle = async_handle ,
714
690
configured_props = configured_props ,
715
691
dynamic_props_id = dynamic_props_id ,
716
692
stash_id = stash_id ,
0 commit comments