uipath 2.0.36__py3-none-any.whl → 2.0.38__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of uipath might be problematic. Click here for more details.
- uipath/_cli/cli_deploy.py +16 -2
- uipath/_cli/cli_new.py +2 -3
- {uipath-2.0.36.dist-info → uipath-2.0.38.dist-info}/METADATA +2 -1
- {uipath-2.0.36.dist-info → uipath-2.0.38.dist-info}/RECORD +7 -7
- {uipath-2.0.36.dist-info → uipath-2.0.38.dist-info}/WHEEL +0 -0
- {uipath-2.0.36.dist-info → uipath-2.0.38.dist-info}/entry_points.txt +0 -0
- {uipath-2.0.36.dist-info → uipath-2.0.38.dist-info}/licenses/LICENSE +0 -0
uipath/_cli/cli_deploy.py
CHANGED
|
@@ -6,9 +6,23 @@ from .cli_publish import publish
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
@click.command()
|
|
9
|
+
@click.option(
|
|
10
|
+
"--tenant",
|
|
11
|
+
"-t",
|
|
12
|
+
"feed",
|
|
13
|
+
flag_value="tenant",
|
|
14
|
+
help="Whether to publish to the tenant package feed",
|
|
15
|
+
)
|
|
16
|
+
@click.option(
|
|
17
|
+
"--my-workspace",
|
|
18
|
+
"-w",
|
|
19
|
+
"feed",
|
|
20
|
+
flag_value="personal",
|
|
21
|
+
help="Whether to publish to the personal workspace",
|
|
22
|
+
)
|
|
9
23
|
@click.argument("root", type=str, default="./")
|
|
10
|
-
def deploy(root):
|
|
24
|
+
def deploy(root, feed):
|
|
11
25
|
"""Pack and publish the project."""
|
|
12
26
|
ctx = click.get_current_context()
|
|
13
27
|
ctx.invoke(pack, root=root)
|
|
14
|
-
ctx.invoke(publish)
|
|
28
|
+
ctx.invoke(publish, feed=feed)
|
uipath/_cli/cli_new.py
CHANGED
|
@@ -65,10 +65,9 @@ def new(name: str):
|
|
|
65
65
|
console.success("Created 'main.py' file.")
|
|
66
66
|
generate_pyproject(directory, name)
|
|
67
67
|
console.success("Created 'pyproject.toml' file.")
|
|
68
|
-
|
|
69
|
-
init_cmd = ctx.parent.command.get_command(ctx, "init")
|
|
70
|
-
ctx.invoke(init_cmd)
|
|
68
|
+
init_command = """uipath init"""
|
|
71
69
|
run_command = """uipath run main.py '{"message": "Hello World!"}'"""
|
|
70
|
+
console.hint(f""" Initialize project: {click.style(init_command, fg="cyan")}""")
|
|
72
71
|
console.hint(f"""Run project: {click.style(run_command, fg="cyan")}""")
|
|
73
72
|
|
|
74
73
|
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: uipath
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.38
|
|
4
4
|
Summary: Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools.
|
|
5
5
|
Project-URL: Homepage, https://uipath.com
|
|
6
6
|
Project-URL: Repository, https://github.com/UiPath/uipath-python
|
|
7
|
+
Project-URL: Documentation, https://uipath.github.io/uipath-python/
|
|
7
8
|
Maintainer-email: Marius Cosareanu <marius.cosareanu@uipath.com>, Cristian Pufu <cristian.pufu@uipath.com>
|
|
8
9
|
License-File: LICENSE
|
|
9
10
|
Classifier: Development Status :: 3 - Alpha
|
|
@@ -7,10 +7,10 @@ uipath/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
7
7
|
uipath/_cli/README.md,sha256=GLtCfbeIKZKNnGTCsfSVqRQ27V1btT1i2bSAyW_xZl4,474
|
|
8
8
|
uipath/_cli/__init__.py,sha256=vGz3vJHkUvgK9_lKdzqiwwHkge1TCALRiOzGGwyr-8E,1885
|
|
9
9
|
uipath/_cli/cli_auth.py,sha256=O-hbaYxLXBPXgnjW2gGa1lbvmVh1ui2-U9BzrLUU708,3707
|
|
10
|
-
uipath/_cli/cli_deploy.py,sha256=
|
|
10
|
+
uipath/_cli/cli_deploy.py,sha256=lDqZQOsTPe8UyUApSQyFDMChj5HR6_hrEbn5tXtbHQE,608
|
|
11
11
|
uipath/_cli/cli_init.py,sha256=qleaHOuXZyqQ001XXFX3m8W2y3pW-miwuvMBl6rHCa4,3699
|
|
12
12
|
uipath/_cli/cli_invoke.py,sha256=OjsiwVq6g_Ah2E2Iv1OWmFR-Cpvf8-0YmsHXL8rfphg,3278
|
|
13
|
-
uipath/_cli/cli_new.py,sha256=
|
|
13
|
+
uipath/_cli/cli_new.py,sha256=6lLK_p7kRFQPgsc2i9t1v0Su4O1rC7zK55ic3y54QR8,2065
|
|
14
14
|
uipath/_cli/cli_pack.py,sha256=FZr7P5WZvPkrP56fjn4dTONv76NuoEhVtQwzG3CxGQs,14667
|
|
15
15
|
uipath/_cli/cli_publish.py,sha256=ozastFqfKZVZIKZLvRTXJq0ZXm4p-ZEVgwc5MeccisI,5716
|
|
16
16
|
uipath/_cli/cli_run.py,sha256=ke4UQiqzagv4ST60-mvcC7nh1dQMw_Z6GQ2hAbnspU0,5074
|
|
@@ -79,8 +79,8 @@ uipath/tracing/__init__.py,sha256=GimSzv6qkCOlHOG1WtjYKJsZqcXpA28IgoXfR33JhiA,13
|
|
|
79
79
|
uipath/tracing/_otel_exporters.py,sha256=x0PDPmDKJcxashsuehVsSsqBCzRr6WsNFaq_3_HS5F0,3014
|
|
80
80
|
uipath/tracing/_traced.py,sha256=GFxOp73jk0vGTN_H7YZOOsEl9rVLaEhXGztMiYKIA-8,16634
|
|
81
81
|
uipath/tracing/_utils.py,sha256=5SwsTGpHkIouXBndw-u8eCLnN4p7LM8DsTCCuf2jJgs,10165
|
|
82
|
-
uipath-2.0.
|
|
83
|
-
uipath-2.0.
|
|
84
|
-
uipath-2.0.
|
|
85
|
-
uipath-2.0.
|
|
86
|
-
uipath-2.0.
|
|
82
|
+
uipath-2.0.38.dist-info/METADATA,sha256=P92Y2LVaLqQYW8Ocik9dwhaVe21YOozxOkIYCJEphu4,6254
|
|
83
|
+
uipath-2.0.38.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
84
|
+
uipath-2.0.38.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
|
|
85
|
+
uipath-2.0.38.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
|
|
86
|
+
uipath-2.0.38.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|