Skip to content

Commit 6d5f3d3

Browse files
fix(documents): add resource_override to create_validate_extraction_action
1 parent 9daa357 commit 6d5f3d3

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

packages/uipath-platform/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-platform"
3-
version = "0.1.9"
3+
version = "0.1.10"
44
description = "HTTP client library for programmatic access to UiPath Platform"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"

packages/uipath-platform/src/uipath/platform/documents/_documents_service.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2299,6 +2299,11 @@ async def create_validate_classification_action_async(
22992299
operation_id=operation_id,
23002300
)
23012301

2302+
@resource_override(
2303+
resource_type="bucket",
2304+
resource_identifier="storage_bucket_name",
2305+
folder_identifier="action_folder",
2306+
)
23022307
@traced(name="documents_create_validate_extraction_action", run_type="uipath")
23032308
def create_validate_extraction_action(
23042309
self,
@@ -2360,6 +2365,11 @@ def create_validate_extraction_action(
23602365
operation_id=operation_id,
23612366
)
23622367

2368+
@resource_override(
2369+
resource_type="bucket",
2370+
resource_identifier="storage_bucket_name",
2371+
folder_identifier="action_folder",
2372+
)
23632373
@traced(name="documents_create_validate_extraction_action_async", run_type="uipath")
23642374
async def create_validate_extraction_action_async(
23652375
self,

packages/uipath-platform/uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)