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,9 +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
+ configure_prop_opts_async_handle : typing .Optional [str ] = OMIT ,
132
133
page : typing .Optional [float ] = OMIT ,
133
134
prev_context : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
134
135
query : typing .Optional [str ] = OMIT ,
@@ -146,6 +147,8 @@ def configure_prop(
146
147
prop_name : str
147
148
The name of the prop to configure
148
149
150
+ async_handle : typing.Optional[str]
151
+
149
152
blocking : typing.Optional[bool]
150
153
Whether this operation should block until completion
151
154
@@ -155,6 +158,9 @@ def configure_prop(
155
158
dynamic_props_id : typing.Optional[str]
156
159
The ID for dynamic props
157
160
161
+ configure_prop_opts_async_handle : typing.Optional[str]
162
+ Handle for async operations
163
+
158
164
page : typing.Optional[float]
159
165
Page number for paginated results
160
166
@@ -192,9 +198,11 @@ def configure_prop(
192
198
id = id ,
193
199
external_user_id = external_user_id ,
194
200
prop_name = prop_name ,
201
+ async_handle = async_handle ,
195
202
blocking = blocking ,
196
203
configured_props = configured_props ,
197
204
dynamic_props_id = dynamic_props_id ,
205
+ configure_prop_opts_async_handle = configure_prop_opts_async_handle ,
198
206
page = page ,
199
207
prev_context = prev_context ,
200
208
query = query ,
@@ -207,9 +215,11 @@ def reload_props(
207
215
* ,
208
216
id : str ,
209
217
external_user_id : str ,
218
+ async_handle : typing .Optional [str ] = None ,
210
219
blocking : typing .Optional [bool ] = OMIT ,
211
220
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
212
221
dynamic_props_id : typing .Optional [str ] = OMIT ,
222
+ reload_props_opts_async_handle : typing .Optional [str ] = OMIT ,
213
223
request_options : typing .Optional [RequestOptions ] = None ,
214
224
) -> ReloadPropsResponse :
215
225
"""
@@ -221,6 +231,8 @@ def reload_props(
221
231
external_user_id : str
222
232
The external user ID
223
233
234
+ async_handle : typing.Optional[str]
235
+
224
236
blocking : typing.Optional[bool]
225
237
Whether this operation should block until completion
226
238
@@ -230,6 +242,9 @@ def reload_props(
230
242
dynamic_props_id : typing.Optional[str]
231
243
The ID for dynamic props
232
244
245
+ reload_props_opts_async_handle : typing.Optional[str]
246
+ Handle for async operations
247
+
233
248
request_options : typing.Optional[RequestOptions]
234
249
Request-specific configuration.
235
250
@@ -256,9 +271,11 @@ def reload_props(
256
271
_response = self ._raw_client .reload_props (
257
272
id = id ,
258
273
external_user_id = external_user_id ,
274
+ async_handle = async_handle ,
259
275
blocking = blocking ,
260
276
configured_props = configured_props ,
261
277
dynamic_props_id = dynamic_props_id ,
278
+ reload_props_opts_async_handle = reload_props_opts_async_handle ,
262
279
request_options = request_options ,
263
280
)
264
281
return _response .data
@@ -268,9 +285,9 @@ def run(
268
285
* ,
269
286
id : str ,
270
287
external_user_id : str ,
288
+ async_handle : typing .Optional [str ] = None ,
271
289
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
272
290
dynamic_props_id : typing .Optional [str ] = OMIT ,
273
- stash_id : typing .Optional [RunActionOptsStashId ] = OMIT ,
274
291
request_options : typing .Optional [RequestOptions ] = None ,
275
292
) -> RunActionResponse :
276
293
"""
@@ -282,14 +299,14 @@ def run(
282
299
external_user_id : str
283
300
The external user ID
284
301
302
+ async_handle : typing.Optional[str]
303
+
285
304
configured_props : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
286
305
The configured properties for the action
287
306
288
307
dynamic_props_id : typing.Optional[str]
289
308
The ID for dynamic props
290
309
291
- stash_id : typing.Optional[RunActionOptsStashId]
292
-
293
310
request_options : typing.Optional[RequestOptions]
294
311
Request-specific configuration.
295
312
@@ -316,9 +333,9 @@ def run(
316
333
_response = self ._raw_client .run (
317
334
id = id ,
318
335
external_user_id = external_user_id ,
336
+ async_handle = async_handle ,
319
337
configured_props = configured_props ,
320
338
dynamic_props_id = dynamic_props_id ,
321
- stash_id = stash_id ,
322
339
request_options = request_options ,
323
340
)
324
341
return _response .data
@@ -453,9 +470,11 @@ async def configure_prop(
453
470
id : str ,
454
471
external_user_id : str ,
455
472
prop_name : str ,
473
+ async_handle : typing .Optional [str ] = None ,
456
474
blocking : typing .Optional [bool ] = OMIT ,
457
475
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
458
476
dynamic_props_id : typing .Optional [str ] = OMIT ,
477
+ configure_prop_opts_async_handle : typing .Optional [str ] = OMIT ,
459
478
page : typing .Optional [float ] = OMIT ,
460
479
prev_context : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
461
480
query : typing .Optional [str ] = OMIT ,
@@ -473,6 +492,8 @@ async def configure_prop(
473
492
prop_name : str
474
493
The name of the prop to configure
475
494
495
+ async_handle : typing.Optional[str]
496
+
476
497
blocking : typing.Optional[bool]
477
498
Whether this operation should block until completion
478
499
@@ -482,6 +503,9 @@ async def configure_prop(
482
503
dynamic_props_id : typing.Optional[str]
483
504
The ID for dynamic props
484
505
506
+ configure_prop_opts_async_handle : typing.Optional[str]
507
+ Handle for async operations
508
+
485
509
page : typing.Optional[float]
486
510
Page number for paginated results
487
511
@@ -527,9 +551,11 @@ async def main() -> None:
527
551
id = id ,
528
552
external_user_id = external_user_id ,
529
553
prop_name = prop_name ,
554
+ async_handle = async_handle ,
530
555
blocking = blocking ,
531
556
configured_props = configured_props ,
532
557
dynamic_props_id = dynamic_props_id ,
558
+ configure_prop_opts_async_handle = configure_prop_opts_async_handle ,
533
559
page = page ,
534
560
prev_context = prev_context ,
535
561
query = query ,
@@ -542,9 +568,11 @@ async def reload_props(
542
568
* ,
543
569
id : str ,
544
570
external_user_id : str ,
571
+ async_handle : typing .Optional [str ] = None ,
545
572
blocking : typing .Optional [bool ] = OMIT ,
546
573
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
547
574
dynamic_props_id : typing .Optional [str ] = OMIT ,
575
+ reload_props_opts_async_handle : typing .Optional [str ] = OMIT ,
548
576
request_options : typing .Optional [RequestOptions ] = None ,
549
577
) -> ReloadPropsResponse :
550
578
"""
@@ -556,6 +584,8 @@ async def reload_props(
556
584
external_user_id : str
557
585
The external user ID
558
586
587
+ async_handle : typing.Optional[str]
588
+
559
589
blocking : typing.Optional[bool]
560
590
Whether this operation should block until completion
561
591
@@ -565,6 +595,9 @@ async def reload_props(
565
595
dynamic_props_id : typing.Optional[str]
566
596
The ID for dynamic props
567
597
598
+ reload_props_opts_async_handle : typing.Optional[str]
599
+ Handle for async operations
600
+
568
601
request_options : typing.Optional[RequestOptions]
569
602
Request-specific configuration.
570
603
@@ -599,9 +632,11 @@ async def main() -> None:
599
632
_response = await self ._raw_client .reload_props (
600
633
id = id ,
601
634
external_user_id = external_user_id ,
635
+ async_handle = async_handle ,
602
636
blocking = blocking ,
603
637
configured_props = configured_props ,
604
638
dynamic_props_id = dynamic_props_id ,
639
+ reload_props_opts_async_handle = reload_props_opts_async_handle ,
605
640
request_options = request_options ,
606
641
)
607
642
return _response .data
@@ -611,9 +646,9 @@ async def run(
611
646
* ,
612
647
id : str ,
613
648
external_user_id : str ,
649
+ async_handle : typing .Optional [str ] = None ,
614
650
configured_props : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
615
651
dynamic_props_id : typing .Optional [str ] = OMIT ,
616
- stash_id : typing .Optional [RunActionOptsStashId ] = OMIT ,
617
652
request_options : typing .Optional [RequestOptions ] = None ,
618
653
) -> RunActionResponse :
619
654
"""
@@ -625,14 +660,14 @@ async def run(
625
660
external_user_id : str
626
661
The external user ID
627
662
663
+ async_handle : typing.Optional[str]
664
+
628
665
configured_props : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
629
666
The configured properties for the action
630
667
631
668
dynamic_props_id : typing.Optional[str]
632
669
The ID for dynamic props
633
670
634
- stash_id : typing.Optional[RunActionOptsStashId]
635
-
636
671
request_options : typing.Optional[RequestOptions]
637
672
Request-specific configuration.
638
673
@@ -667,9 +702,9 @@ async def main() -> None:
667
702
_response = await self ._raw_client .run (
668
703
id = id ,
669
704
external_user_id = external_user_id ,
705
+ async_handle = async_handle ,
670
706
configured_props = configured_props ,
671
707
dynamic_props_id = dynamic_props_id ,
672
- stash_id = stash_id ,
673
708
request_options = request_options ,
674
709
)
675
710
return _response .data
0 commit comments