8
8
from ..types .component import Component
9
9
from ..types .configure_prop_response import ConfigurePropResponse
10
10
from ..types .reload_props_response import ReloadPropsResponse
11
- from ..types .run_action_opts_stash_id import RunActionOptsStashId
12
11
from ..types .run_action_response import RunActionResponse
13
12
from .raw_client import AsyncRawActionsClient , RawActionsClient
14
13
@@ -126,10 +125,11 @@ def configure_prop(
126
125
id : str ,
127
126
external_user_id : str ,
128
127
prop_name : str ,
128
+ async_handle : typing .Optional [str ] = None ,
129
129
blocking : typing .Optional [bool ] = OMIT ,
130
130
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
131
131
dynamic_props_id : typing .Optional [str ] = OMIT ,
132
- async_handle : typing .Optional [str ] = OMIT ,
132
+ configure_prop_opts_async_handle : typing .Optional [str ] = OMIT ,
133
133
page : typing .Optional [float ] = OMIT ,
134
134
prev_context : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
135
135
query : typing .Optional [str ] = OMIT ,
@@ -147,6 +147,8 @@ def configure_prop(
147
147
prop_name : str
148
148
The name of the prop to configure
149
149
150
+ async_handle : typing.Optional[str]
151
+
150
152
blocking : typing.Optional[bool]
151
153
Whether this operation should block until completion
152
154
@@ -156,7 +158,7 @@ def configure_prop(
156
158
dynamic_props_id : typing.Optional[str]
157
159
The ID for dynamic props
158
160
159
- async_handle : typing.Optional[str]
161
+ configure_prop_opts_async_handle : typing.Optional[str]
160
162
Handle for async operations
161
163
162
164
page : typing.Optional[float]
@@ -196,10 +198,11 @@ def configure_prop(
196
198
id = id ,
197
199
external_user_id = external_user_id ,
198
200
prop_name = prop_name ,
201
+ async_handle = async_handle ,
199
202
blocking = blocking ,
200
203
configured_props = configured_props ,
201
204
dynamic_props_id = dynamic_props_id ,
202
- async_handle = async_handle ,
205
+ configure_prop_opts_async_handle = configure_prop_opts_async_handle ,
203
206
page = page ,
204
207
prev_context = prev_context ,
205
208
query = query ,
@@ -212,10 +215,11 @@ def reload_props(
212
215
* ,
213
216
id : str ,
214
217
external_user_id : str ,
218
+ async_handle : typing .Optional [str ] = None ,
215
219
blocking : typing .Optional [bool ] = OMIT ,
216
220
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
217
221
dynamic_props_id : typing .Optional [str ] = OMIT ,
218
- async_handle : typing .Optional [str ] = OMIT ,
222
+ reload_props_opts_async_handle : typing .Optional [str ] = OMIT ,
219
223
request_options : typing .Optional [RequestOptions ] = None ,
220
224
) -> ReloadPropsResponse :
221
225
"""
@@ -227,6 +231,8 @@ def reload_props(
227
231
external_user_id : str
228
232
The external user ID
229
233
234
+ async_handle : typing.Optional[str]
235
+
230
236
blocking : typing.Optional[bool]
231
237
Whether this operation should block until completion
232
238
@@ -236,7 +242,7 @@ def reload_props(
236
242
dynamic_props_id : typing.Optional[str]
237
243
The ID for dynamic props
238
244
239
- async_handle : typing.Optional[str]
245
+ reload_props_opts_async_handle : typing.Optional[str]
240
246
Handle for async operations
241
247
242
248
request_options : typing.Optional[RequestOptions]
@@ -265,10 +271,11 @@ def reload_props(
265
271
_response = self ._raw_client .reload_props (
266
272
id = id ,
267
273
external_user_id = external_user_id ,
274
+ async_handle = async_handle ,
268
275
blocking = blocking ,
269
276
configured_props = configured_props ,
270
277
dynamic_props_id = dynamic_props_id ,
271
- async_handle = async_handle ,
278
+ reload_props_opts_async_handle = reload_props_opts_async_handle ,
272
279
request_options = request_options ,
273
280
)
274
281
return _response .data
@@ -278,9 +285,9 @@ def run(
278
285
* ,
279
286
id : str ,
280
287
external_user_id : str ,
288
+ async_handle : typing .Optional [str ] = None ,
281
289
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
282
290
dynamic_props_id : typing .Optional [str ] = OMIT ,
283
- stash_id : typing .Optional [RunActionOptsStashId ] = OMIT ,
284
291
request_options : typing .Optional [RequestOptions ] = None ,
285
292
) -> RunActionResponse :
286
293
"""
@@ -292,14 +299,14 @@ def run(
292
299
external_user_id : str
293
300
The external user ID
294
301
302
+ async_handle : typing.Optional[str]
303
+
295
304
configured_props : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
296
305
The configured properties for the action
297
306
298
307
dynamic_props_id : typing.Optional[str]
299
308
The ID for dynamic props
300
309
301
- stash_id : typing.Optional[RunActionOptsStashId]
302
-
303
310
request_options : typing.Optional[RequestOptions]
304
311
Request-specific configuration.
305
312
@@ -326,9 +333,9 @@ def run(
326
333
_response = self ._raw_client .run (
327
334
id = id ,
328
335
external_user_id = external_user_id ,
336
+ async_handle = async_handle ,
329
337
configured_props = configured_props ,
330
338
dynamic_props_id = dynamic_props_id ,
331
- stash_id = stash_id ,
332
339
request_options = request_options ,
333
340
)
334
341
return _response .data
@@ -463,10 +470,11 @@ async def configure_prop(
463
470
id : str ,
464
471
external_user_id : str ,
465
472
prop_name : str ,
473
+ async_handle : typing .Optional [str ] = None ,
466
474
blocking : typing .Optional [bool ] = OMIT ,
467
475
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
468
476
dynamic_props_id : typing .Optional [str ] = OMIT ,
469
- async_handle : typing .Optional [str ] = OMIT ,
477
+ configure_prop_opts_async_handle : typing .Optional [str ] = OMIT ,
470
478
page : typing .Optional [float ] = OMIT ,
471
479
prev_context : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
472
480
query : typing .Optional [str ] = OMIT ,
@@ -484,6 +492,8 @@ async def configure_prop(
484
492
prop_name : str
485
493
The name of the prop to configure
486
494
495
+ async_handle : typing.Optional[str]
496
+
487
497
blocking : typing.Optional[bool]
488
498
Whether this operation should block until completion
489
499
@@ -493,7 +503,7 @@ async def configure_prop(
493
503
dynamic_props_id : typing.Optional[str]
494
504
The ID for dynamic props
495
505
496
- async_handle : typing.Optional[str]
506
+ configure_prop_opts_async_handle : typing.Optional[str]
497
507
Handle for async operations
498
508
499
509
page : typing.Optional[float]
@@ -541,10 +551,11 @@ async def main() -> None:
541
551
id = id ,
542
552
external_user_id = external_user_id ,
543
553
prop_name = prop_name ,
554
+ async_handle = async_handle ,
544
555
blocking = blocking ,
545
556
configured_props = configured_props ,
546
557
dynamic_props_id = dynamic_props_id ,
547
- async_handle = async_handle ,
558
+ configure_prop_opts_async_handle = configure_prop_opts_async_handle ,
548
559
page = page ,
549
560
prev_context = prev_context ,
550
561
query = query ,
@@ -557,10 +568,11 @@ async def reload_props(
557
568
* ,
558
569
id : str ,
559
570
external_user_id : str ,
571
+ async_handle : typing .Optional [str ] = None ,
560
572
blocking : typing .Optional [bool ] = OMIT ,
561
573
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
562
574
dynamic_props_id : typing .Optional [str ] = OMIT ,
563
- async_handle : typing .Optional [str ] = OMIT ,
575
+ reload_props_opts_async_handle : typing .Optional [str ] = OMIT ,
564
576
request_options : typing .Optional [RequestOptions ] = None ,
565
577
) -> ReloadPropsResponse :
566
578
"""
@@ -572,6 +584,8 @@ async def reload_props(
572
584
external_user_id : str
573
585
The external user ID
574
586
587
+ async_handle : typing.Optional[str]
588
+
575
589
blocking : typing.Optional[bool]
576
590
Whether this operation should block until completion
577
591
@@ -581,7 +595,7 @@ async def reload_props(
581
595
dynamic_props_id : typing.Optional[str]
582
596
The ID for dynamic props
583
597
584
- async_handle : typing.Optional[str]
598
+ reload_props_opts_async_handle : typing.Optional[str]
585
599
Handle for async operations
586
600
587
601
request_options : typing.Optional[RequestOptions]
@@ -618,10 +632,11 @@ async def main() -> None:
618
632
_response = await self ._raw_client .reload_props (
619
633
id = id ,
620
634
external_user_id = external_user_id ,
635
+ async_handle = async_handle ,
621
636
blocking = blocking ,
622
637
configured_props = configured_props ,
623
638
dynamic_props_id = dynamic_props_id ,
624
- async_handle = async_handle ,
639
+ reload_props_opts_async_handle = reload_props_opts_async_handle ,
625
640
request_options = request_options ,
626
641
)
627
642
return _response .data
@@ -631,9 +646,9 @@ async def run(
631
646
* ,
632
647
id : str ,
633
648
external_user_id : str ,
649
+ async_handle : typing .Optional [str ] = None ,
634
650
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
635
651
dynamic_props_id : typing .Optional [str ] = OMIT ,
636
- stash_id : typing .Optional [RunActionOptsStashId ] = OMIT ,
637
652
request_options : typing .Optional [RequestOptions ] = None ,
638
653
) -> RunActionResponse :
639
654
"""
@@ -645,14 +660,14 @@ async def run(
645
660
external_user_id : str
646
661
The external user ID
647
662
663
+ async_handle : typing.Optional[str]
664
+
648
665
configured_props : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
649
666
The configured properties for the action
650
667
651
668
dynamic_props_id : typing.Optional[str]
652
669
The ID for dynamic props
653
670
654
- stash_id : typing.Optional[RunActionOptsStashId]
655
-
656
671
request_options : typing.Optional[RequestOptions]
657
672
Request-specific configuration.
658
673
@@ -687,9 +702,9 @@ async def main() -> None:
687
702
_response = await self ._raw_client .run (
688
703
id = id ,
689
704
external_user_id = external_user_id ,
705
+ async_handle = async_handle ,
690
706
configured_props = configured_props ,
691
707
dynamic_props_id = dynamic_props_id ,
692
- stash_id = stash_id ,
693
708
request_options = request_options ,
694
709
)
695
710
return _response .data
0 commit comments