We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b44251 commit 1fc2d2eCopy full SHA for 1fc2d2e
src/nextpyp/client/gen.py
@@ -12,7 +12,7 @@
12
from nextpyp.client import Client
13
14
15
-API_VERSION = '2.0.0'
+API_VERSION = '2.1.0'
16
17
18
T = TypeVar('T')
@@ -442,6 +442,18 @@ def cancel_export(self, export_id: str) -> None:
442
path = '/kv/sessions/cancelExport'
443
self.client._transport.call(path, [export_id])
444
445
+ def pick_folder(self) -> str:
446
+ """
447
+ (no description yet)
448
+
449
+ :Permission Needed: ``session_create``
450
451
+ path = '/kv/sessions/pickFolder'
452
+ response = self.client._transport.call(path, [])
453
+ if response is None:
454
+ raise Exception(f'response expected from {path}, but none received')
455
+ return cast(str, response)
456
457
458
class SingleParticleSessionsService:
459
"""
0 commit comments