intuned-runtime 1.3.1__py3-none-any.whl → 1.3.3__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 intuned-runtime might be problematic. Click here for more details.

Files changed (69) hide show
  1. intuned_cli/__init__.py +15 -24
  2. intuned_cli/commands/__init__.py +5 -0
  3. intuned_cli/commands/attempt_api_command.py +8 -2
  4. intuned_cli/commands/attempt_authsession_check_command.py +8 -2
  5. intuned_cli/commands/attempt_authsession_command.py +4 -7
  6. intuned_cli/commands/attempt_authsession_create_command.py +9 -3
  7. intuned_cli/commands/attempt_command.py +4 -7
  8. intuned_cli/commands/authsession_command.py +9 -0
  9. intuned_cli/commands/authsession_record_command.py +52 -0
  10. intuned_cli/commands/command.py +6 -7
  11. intuned_cli/commands/deploy_command.py +2 -3
  12. intuned_cli/commands/init_command.py +2 -3
  13. intuned_cli/commands/run_api_command.py +9 -3
  14. intuned_cli/commands/run_authsession_command.py +4 -7
  15. intuned_cli/commands/run_authsession_create_command.py +32 -5
  16. intuned_cli/commands/run_authsession_update_command.py +31 -5
  17. intuned_cli/commands/run_authsession_validate_command.py +30 -4
  18. intuned_cli/commands/run_command.py +4 -7
  19. intuned_cli/commands/save_command.py +2 -3
  20. intuned_cli/controller/__test__/test_api.py +159 -18
  21. intuned_cli/controller/__test__/test_authsession.py +497 -6
  22. intuned_cli/controller/api.py +40 -39
  23. intuned_cli/controller/authsession.py +213 -110
  24. intuned_cli/controller/deploy.py +3 -5
  25. intuned_cli/controller/save.py +47 -66
  26. intuned_cli/types.py +14 -0
  27. intuned_cli/utils/__test__/test_browser.py +132 -0
  28. intuned_cli/utils/__test__/test_traces.py +27 -0
  29. intuned_cli/utils/api_helpers.py +54 -5
  30. intuned_cli/utils/auth_session_helpers.py +42 -7
  31. intuned_cli/utils/backend.py +4 -1
  32. intuned_cli/utils/browser.py +63 -0
  33. intuned_cli/utils/error.py +14 -0
  34. intuned_cli/utils/exclusions.py +1 -0
  35. intuned_cli/utils/help.py +9 -0
  36. intuned_cli/utils/traces.py +31 -0
  37. intuned_cli/utils/wrapper.py +68 -0
  38. intuned_internal_cli/__init__.py +7 -0
  39. intuned_internal_cli/commands/__init__.py +8 -16
  40. intuned_internal_cli/commands/browser/__init__.py +1 -1
  41. intuned_internal_cli/commands/browser/save_state.py +2 -3
  42. intuned_internal_cli/commands/project/__init__.py +7 -9
  43. intuned_internal_cli/commands/project/auth_session/__init__.py +3 -3
  44. intuned_internal_cli/commands/project/auth_session/check.py +2 -2
  45. intuned_internal_cli/commands/project/auth_session/create.py +2 -3
  46. intuned_internal_cli/commands/project/auth_session/load.py +2 -3
  47. intuned_internal_cli/commands/project/project.py +2 -2
  48. intuned_internal_cli/commands/project/run.py +2 -2
  49. intuned_internal_cli/commands/project/run_interface.py +75 -8
  50. intuned_internal_cli/commands/project/type_check.py +5 -5
  51. intuned_internal_cli/commands/root.py +2 -1
  52. intuned_internal_cli/utils/wrapper.py +15 -0
  53. {intuned_runtime-1.3.1.dist-info → intuned_runtime-1.3.3.dist-info}/METADATA +4 -2
  54. intuned_runtime-1.3.3.dist-info/RECORD +115 -0
  55. runtime/browser/launch_browser.py +15 -0
  56. runtime/browser/launch_chromium.py +14 -1
  57. runtime/run/types.py +0 -5
  58. runtime/types/settings_types.py +13 -4
  59. runtime/utils/anyio.py +26 -0
  60. intuned_internal_cli/commands/ai_source/__init__.py +0 -4
  61. intuned_internal_cli/commands/ai_source/ai_source.py +0 -10
  62. intuned_internal_cli/commands/ai_source/deploy.py +0 -64
  63. intuned_internal_cli/commands/init.py +0 -127
  64. intuned_internal_cli/commands/project/upgrade.py +0 -92
  65. intuned_internal_cli/commands/publish_packages.py +0 -264
  66. intuned_runtime-1.3.1.dist-info/RECORD +0 -111
  67. {intuned_runtime-1.3.1.dist-info → intuned_runtime-1.3.3.dist-info}/WHEEL +0 -0
  68. {intuned_runtime-1.3.1.dist-info → intuned_runtime-1.3.3.dist-info}/entry_points.txt +0 -0
  69. {intuned_runtime-1.3.1.dist-info → intuned_runtime-1.3.3.dist-info}/licenses/LICENSE +0 -0
@@ -1,264 +0,0 @@
1
- import functools
2
- import subprocess
3
- from os import environ
4
- from os import path
5
-
6
- import arguably
7
- import toml
8
- from more_termcolor import bold # type: ignore
9
- from more_termcolor import cyan # type: ignore
10
- from more_termcolor import green # type: ignore
11
- from more_termcolor import italic # type: ignore
12
- from more_termcolor import underline # type: ignore
13
- from more_termcolor import yellow # type: ignore
14
-
15
-
16
- @arguably.command # type: ignore
17
- def publish_packages(
18
- *,
19
- sdk: bool = False,
20
- runtime: bool = False,
21
- show_diff: bool = False,
22
- update_template: bool = False,
23
- ):
24
- """
25
- Publishes the SDK and Runtime packages to `python-packages` repository. Uses the version defined in the pyproject.toml file.
26
- Args:
27
- sdk (bool): Publish the SDK package.
28
- runtime (bool): Publish the Runtime package.
29
- show_diff (bool): Show the diff of the files that will be copied to the package repo. Configure your git difftool to use your preferred diff tool (VSCode recommended).
30
- update_template (bool): [-u/--update-template] Update the template versions in the WebApp repo.
31
- """
32
-
33
- sdk_source_path = None
34
- sdk_runtime_path = None
35
-
36
- webapp_path = environ.get("WEBAPP_PATH")
37
- if not webapp_path:
38
- webapp_resolved_path = path.join(path.dirname(__file__), "..", "..", "..", "..")
39
- if path.exists(path.join(webapp_resolved_path, ".git")):
40
- webapp_path = webapp_resolved_path
41
- else:
42
- raise ValueError(
43
- "WebApp repo could not be found. Maybe you are not running the globally-installed CLI. Set WEBAPP_PATH environment variable."
44
- )
45
- print(bold("WebApp path"), underline(cyan(path.abspath(webapp_path))))
46
-
47
- sdk_source_path = path.join(webapp_path, "apps", "python-sdk")
48
- sdk_runtime_path = path.join(webapp_path, "apps", "python-runtime")
49
-
50
- if True not in [sdk, runtime]:
51
- raise ValueError("You should select at least one package to release")
52
-
53
- _release_package = functools.partial(release_package, webapp_path=webapp_path, show_diff=show_diff)
54
-
55
- if sdk:
56
- _release_package(
57
- package_human_name="SDK",
58
- package_name="intuned-sdk",
59
- packages_repo_dirname="sdk",
60
- package_source_path=sdk_source_path,
61
- )
62
-
63
- if runtime:
64
- _release_package(
65
- package_human_name="Runtime",
66
- package_name="intuned-runtime",
67
- packages_repo_dirname="runtime",
68
- package_source_path=sdk_runtime_path,
69
- )
70
-
71
- runtime_version = check_package_version(sdk_runtime_path, "intuned-runtime")
72
- sdk_version = check_package_version(sdk_source_path, "intuned-sdk")
73
-
74
- # Only run template generation in production environment
75
- if update_template:
76
- update_template_version(webapp_path, runtime_version, sdk_version)
77
- generate_authoring_template_files(webapp_path)
78
- else:
79
- print(bold(f"\n🔍 {yellow('Skipping authoring template generation - only runs in production environment')}"))
80
-
81
-
82
- def generate_authoring_template_files(webapp_path: str):
83
- """
84
- Generates the authoring template files by running the `yarn generate:build-authoring-template-files` command.
85
- """
86
- web_app_dir = path.join(webapp_path, "apps", "web")
87
- if not path.exists(web_app_dir):
88
- raise ValueError(f"Web app directory not found at {web_app_dir}")
89
-
90
- print(bold("\n📝 Generating authoring template files..."))
91
-
92
- # Run the command to generate the authoring template files
93
- subprocess.run(
94
- ["yarn", "generate:build-authoring-template-files"],
95
- cwd=web_app_dir,
96
- check=True,
97
- )
98
- print(bold(f"\n✨ {green('Authoring template files generated successfully!')}"))
99
-
100
-
101
- def update_template_version(webapp_path: str, runtime_version: str, sdk_version: str):
102
- template_path = path.join(
103
- webapp_path, "apps", "web", "packagerWorkerAssets", "packagerTemplates", "playwright_v1_python", "default"
104
- )
105
- pyproject_path = path.join(template_path, "pyproject.toml")
106
- if not path.exists(pyproject_path):
107
- raise ValueError(f"pyproject.toml not found at {pyproject_path}")
108
-
109
- with open(pyproject_path) as f:
110
- pyproject = toml.load(f)
111
-
112
- # Update the runtime and sdk versions
113
- pyproject["tool"]["poetry"]["dependencies"]["intuned-runtime"]["tag"] = f"runtime-{runtime_version}"
114
- pyproject["tool"]["poetry"]["dependencies"]["intuned-sdk"]["tag"] = f"sdk-{sdk_version}"
115
-
116
- with open(pyproject_path, "w") as f:
117
- toml.dump(pyproject, f)
118
-
119
- print(bold(f"\n✨ {green('Updated template versions successfully!')}"))
120
-
121
-
122
- def release_package(
123
- *,
124
- package_human_name: str,
125
- package_name: str,
126
- package_source_path: str | None,
127
- webapp_path: str,
128
- packages_repo_dirname: str,
129
- show_diff: bool = False,
130
- ):
131
- print(bold(f"🚀 Releasing {green(package_human_name)}"))
132
- if not package_source_path:
133
- package_source_path_input = input(bold(f" Enter {green(package_human_name)} path:"))
134
- package_source_path = package_source_path_input
135
- else:
136
- print(bold(f" {green(package_human_name)} Source Path"), underline(cyan(path.abspath(package_source_path))))
137
- package_version = check_package_version(package_source_path, package_name)
138
-
139
- print(bold(f" Using package version {green(package_version)} to release:"))
140
-
141
- package_repo_path = path.join(webapp_path, "..", "python-packages", packages_repo_dirname)
142
- if not path.exists(package_repo_path):
143
- raise ValueError(
144
- f"Package path does not exist. The {underline("python-packages")} repo is expected to be next to the {underline("WebApp")} (expected package at {underline(path.abspath(package_repo_path))})"
145
- )
146
-
147
- package_tag = f"{packages_repo_dirname}-{package_version}"
148
-
149
- # Check if a tag with the sdk_version exists
150
- result = subprocess.run(
151
- ["git", "tag", "--list", package_tag], capture_output=True, text=True, cwd=package_repo_path
152
- )
153
- should_delete_tag = False
154
- if package_tag in result.stdout.split():
155
- raise ValueError(f"Tag {package_version} already exists. Please update the version in the pyproject.toml file.")
156
-
157
- # fetch and pull main branch
158
- print(bold("\n📡 Fetching main branch..."))
159
- subprocess.run(["git", "fetch", "origin", "main"], cwd=package_repo_path, check=True)
160
- print(bold("🔃 Pulling main branch..."))
161
- subprocess.run(["git", "reset", "--hard", "origin/main"], cwd=package_repo_path, check=True)
162
-
163
- # switch to main branch
164
- print(bold("🔄 Switching to main branch..."))
165
- subprocess.run(["git", "checkout", "main"], cwd=package_repo_path, check=True)
166
-
167
- print(bold("📑 Writing source to repo path..."))
168
- print(
169
- yellow(
170
- f"This will delete all files in {underline(path.realpath(package_repo_path))} and copy the source from {underline(path.realpath(package_source_path))}"
171
- )
172
- )
173
- if input("Continue? (y, N) ").lower().strip() != "y":
174
- raise ValueError("Publish cancelled")
175
-
176
- # delete all files in the repo path except .git
177
- subprocess.run(
178
- [
179
- "find",
180
- package_repo_path,
181
- "-mindepth",
182
- "1",
183
- "-maxdepth",
184
- "1",
185
- "-not",
186
- "-name",
187
- ".git",
188
- "-exec",
189
- "rm",
190
- "-rf",
191
- "{}",
192
- "+",
193
- ]
194
- )
195
- yes_process = subprocess.Popen(["yes"], stdout=subprocess.PIPE)
196
- try:
197
- subprocess.run(
198
- ["cp", "-rf", f"{path.realpath(package_source_path)}/", path.realpath(package_repo_path)],
199
- stdin=yes_process.stdout,
200
- check=True,
201
- )
202
- finally:
203
- yes_process.kill()
204
-
205
- # Commit and push copied changes to main, force with lease
206
- print(bold("\n📄 Committing changes..."))
207
- subprocess.run(["git", "add", "."], cwd=package_repo_path, check=True)
208
- subprocess.run(
209
- ["git", "commit", "--allow-empty", "-m", f"Release {package_human_name} version {package_version}"],
210
- cwd=package_repo_path,
211
- check=True,
212
- )
213
-
214
- try:
215
- if show_diff:
216
- print(bold("\n🔍 Showing diff..."))
217
- print(italic("Close the diff tool to continue. You will be prompted to confirm the release."))
218
- subprocess.run(["git", "difftool", "HEAD^", "-t", "vscode", "-y"], cwd=package_repo_path, check=True)
219
-
220
- if input("Push? (y, N) ").lower().strip() != "y":
221
- raise ValueError("Publish cancelled")
222
-
223
- print(bold("\n📝 Pushing changes..."))
224
- subprocess.run(["git", "push", "origin", "main", "--force-with-lease"], cwd=package_repo_path, check=True)
225
-
226
- except (KeyboardInterrupt, ValueError):
227
- print(bold("Resetting commit..."))
228
- # drop the current commit and go back to the previous state
229
- subprocess.run(["git", "reset", "--hard", "HEAD^"], cwd=package_repo_path, check=True)
230
- raise
231
-
232
- # Create a tag with the version to the current HEAD and push it
233
- print(bold(f"\n📝 Creating tag {green(package_tag)}..."))
234
- if should_delete_tag:
235
- subprocess.run(["git", "tag", "-d", package_tag], cwd=package_repo_path, check=True)
236
- subprocess.run(["git", "tag", package_tag], cwd=package_repo_path, check=True)
237
- subprocess.run(
238
- ["git", "push", "origin", package_tag, *(["--force"] if should_delete_tag else [])],
239
- cwd=package_repo_path,
240
- check=True,
241
- )
242
-
243
- print(bold(f"\n✨ {green(package_human_name)} released successfully!\n\n"))
244
-
245
-
246
- def check_package_version(package_path: str, package_expected_name: str):
247
- if not path.exists(package_path):
248
- raise ValueError("Invalid package path")
249
- pyproject_path = path.join(package_path, "pyproject.toml")
250
- if not path.exists(pyproject_path):
251
- raise ValueError("pyproject.toml not found in package path")
252
- with open(pyproject_path) as f:
253
- pyproject = toml.load(f)
254
- if not pyproject:
255
- raise ValueError("Invalid pyproject.toml")
256
- if not pyproject.get("tool"):
257
- raise ValueError("Invalid pyproject.toml")
258
- if not pyproject["tool"].get("poetry"):
259
- raise ValueError("Invalid pyproject.toml")
260
- if pyproject["tool"]["poetry"].get("name") != package_expected_name:
261
- raise ValueError(f"Invalid package name - expected {package_expected_name}")
262
- if not pyproject["tool"]["poetry"].get("version"):
263
- raise ValueError("Invalid package version")
264
- return pyproject["tool"]["poetry"]["version"]
@@ -1,111 +0,0 @@
1
- intuned_cli/__init__.py,sha256=COYx7VKi1Qdsusc58Tt3P1DpGUd6LFomjbf53GTCVKI,1466
2
- intuned_cli/commands/__init__.py,sha256=pN4XuY6EAAaiJRoRcpcyKw4Lei9ZfS7zmoaoNuwbz9I,1291
3
- intuned_cli/commands/attempt_api_command.py,sha256=3iN3L_vd--wMb96zgW-qNfyaqrGTUdcxKhYgifQu9XU,1949
4
- intuned_cli/commands/attempt_authsession_check_command.py,sha256=y7ODZLLSF5Pzm3LHOdRr7frGeuFn18NKHNtkg6_NH9Q,1329
5
- intuned_cli/commands/attempt_authsession_command.py,sha256=hir9y1XyW9VYioOWT6C1-dH43f3JcHhIlfEEijMg2Lc,277
6
- intuned_cli/commands/attempt_authsession_create_command.py,sha256=tgnBqtboV2PRfGGr0kxTVo6yAOf2M2kD1DBlwNPW7pA,1703
7
- intuned_cli/commands/attempt_command.py,sha256=7NZC2dXA8GViCH3ZS2PMziR43hv2RmS6-jgW7l9bu40,253
8
- intuned_cli/commands/command.py,sha256=b0OlQIFhoCjCo5QIerfysccBKcU9iIsvqiU7oxshA2M,727
9
- intuned_cli/commands/deploy_command.py,sha256=vZQy6AJUuyfdsM_7DIvMIBhmk7RUxBsUDLOB8uPNzVw,1549
10
- intuned_cli/commands/init_command.py,sha256=JIDr9vY_SRKCvVbXE_lCEeHQlmC48LMZz0cghMPAs90,492
11
- intuned_cli/commands/run_api_command.py,sha256=Hwltx9eMEzksUoZUcpzTe2teGSD7tyu8f08uXSGBJOs,3008
12
- intuned_cli/commands/run_authsession_command.py,sha256=kM_TANy8M3yx8iBUsgSDO42byzccikLOd9KJfytfLmQ,269
13
- intuned_cli/commands/run_authsession_create_command.py,sha256=kVxQR8j8yARGRKY2FyUhW_E3hRA3KmGzP2zG3gVLRBc,2084
14
- intuned_cli/commands/run_authsession_update_command.py,sha256=vK3rJcHkqL-mVfL5IGrLb_4tWRQ6xpufwXymBr0kTCw,2140
15
- intuned_cli/commands/run_authsession_validate_command.py,sha256=lri5CyV-1cHOgKa83BTHHLeMT6_xlpbkS5vH1pUjHNA,2003
16
- intuned_cli/commands/run_command.py,sha256=JN1yCewcyb4zFquMcv0wEZ_aRmhJZIBMheY8L9yBeDE,245
17
- intuned_cli/commands/save_command.py,sha256=iW8i42B_NBrhmuGveV0XXkhaKW0Xx63ofOgMfH1FxTM,1543
18
- intuned_cli/controller/__test__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
- intuned_cli/controller/__test__/test_api.py,sha256=yuKxW6yWlAs1Pj6QBJ4DyryR8A8suG-A7xtBiUcMJ-E,19242
20
- intuned_cli/controller/__test__/test_authsession.py,sha256=y7O3dkDPHZTf2W7WRLEhysYYRati0hg93-J8BvGjRUM,35110
21
- intuned_cli/controller/api.py,sha256=cIxfuKsMibn7XRbTQCELy1QVtWH-UMWO8KGyOCvKx2A,7135
22
- intuned_cli/controller/authsession.py,sha256=KGpRYXO9W6DFbuM1ofdH5aba0Zs4A_A3nhbNj-KaCE8,14272
23
- intuned_cli/controller/deploy.py,sha256=krbVm0-c1XDIsiOPIf0lesFmFuVF_VfGYNWCOQ70Mmo,5452
24
- intuned_cli/controller/save.py,sha256=_ujsh4C9cgFGW4GTkj43JDSpIq0TuBLhZRJsH_1wgX8,9025
25
- intuned_cli/types.py,sha256=A053bHBqgVUG5wdHygwlJ2F-XeJIhFRidSOij5veBOQ,394
26
- intuned_cli/utils/api_helpers.py,sha256=q_xJMcl-RMccdTNTyDFu27T4OrXihhZtshYdZDiSDGI,1118
27
- intuned_cli/utils/auth_session_helpers.py,sha256=acKAPUjOfdybstLur4Lk3huaLFP2Ipl4AjPSqQPQLzY,1899
28
- intuned_cli/utils/backend.py,sha256=RvaDClFDf_Tur1E4Z_HoxM1hsHYpm_CWG0ju77ZyKZo,1026
29
- intuned_cli/utils/confirmation.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
- intuned_cli/utils/console.py,sha256=jgin2xB-0kpANPMoiDBOnWhrc8Ey5zT4IHRxQa8f5CQ,93
31
- intuned_cli/utils/error.py,sha256=KzqWG0e8PLerCY-AL534zygCLbIBD6uReo2WEuej-EA,990
32
- intuned_cli/utils/exclusions.py,sha256=Qe7NkWA3lsX73dOC9WprdD0KyYc_vuiwkrUCwD105gk,796
33
- intuned_cli/utils/get_auth_parameters.py,sha256=HmMSjBE8bPulkUdX319Ipr383Ko2Gtz3y8_WT9CK3Kw,798
34
- intuned_cli/utils/import_function.py,sha256=UmE2yw5std1ENMFdBU-TUBuQ01qsv7Qr5ElnAhqE6Yc,453
35
- intuned_cli/utils/timeout.py,sha256=DkoeoU9XvKKKSQ06CpwqcNvxWqLPAOVuAMw6kSr4Tuo,886
36
- intuned_internal_cli/__init__.py,sha256=MLkUSYcMp4qMvCHeRgsPDzUlz10XwiAHAsgoNvzl6MA,1468
37
- intuned_internal_cli/commands/__init__.py,sha256=gZ-r8UIXvRakeCfvmOZCNWr8CJHBcYzRzbMjyKYPXV0,1003
38
- intuned_internal_cli/commands/ai_source/__init__.py,sha256=lg7owgcK8owNn2a4VBUP9RKxzFsLruhtnnQV0F_z6pc,149
39
- intuned_internal_cli/commands/ai_source/ai_source.py,sha256=2woQtCmhxKvLfEz832eUoCT9gMsuSvEE6rMnHSYXC7w,138
40
- intuned_internal_cli/commands/ai_source/deploy.py,sha256=NpomuP_2mo5SLKe7BZoY5H0Pp36aDtkYU_CyihqOvdI,2457
41
- intuned_internal_cli/commands/browser/__init__.py,sha256=AuVbvh7aSBTFKYvewXZyPoIvfBTe2uHiPcnaAkzapas,95
42
- intuned_internal_cli/commands/browser/save_state.py,sha256=_gfspwLkk6j1zBzqY1Qr7KnEMjGP6x10Q2IvKdfjyuI,839
43
- intuned_internal_cli/commands/init.py,sha256=8rWBenWZfwNtLxOBqhEMbOATyQNEnmDUmrFJ1xBGyxI,4384
44
- intuned_internal_cli/commands/project/__init__.py,sha256=t97wvhSenerYRdbSeCKXqHASA6EWA3lc1hnRhF9baOE,734
45
- intuned_internal_cli/commands/project/auth_session/__init__.py,sha256=gt7mlaW6xmqAc_4-pfF_FiecsR51C6fqCaq_NFbcbwA,300
46
- intuned_internal_cli/commands/project/auth_session/check.py,sha256=UDG2iF6ULmYH6_WdUTVRTAZq3fBHuVSzhWB1tGkkGb0,4524
47
- intuned_internal_cli/commands/project/auth_session/create.py,sha256=r-eYu3uLUo2mzF836CbVgu4oBzcIIDekzzFwwekxmg0,3374
48
- intuned_internal_cli/commands/project/auth_session/load.py,sha256=Y0V6bFZQeHq_lTtR-rQvM9SSbExWhVVMFu-Uykl-9k4,1199
49
- intuned_internal_cli/commands/project/project.py,sha256=_MSh6Xor2Cbh-ItifwgOPq_BP8UDuKB7S6w796FULKQ,137
50
- intuned_internal_cli/commands/project/run.py,sha256=7lqrFrTOaW0W5UF6WTVwwDauAoGbABNv6RVQ6_DEIfQ,12209
51
- intuned_internal_cli/commands/project/run_interface.py,sha256=4RyR8WZriIF7Va4z1wt-q6zZDQOI31n62Ho2dyimzUY,8717
52
- intuned_internal_cli/commands/project/type_check.py,sha256=QFnXL93Y-z250EQRln5sRqwkVqjGJ-eP_p1jGrXB7NA,3522
53
- intuned_internal_cli/commands/project/upgrade.py,sha256=XmkZLflM4O-mwvhwcswlZpazRotwi3xesLgE0Zz8fTI,3061
54
- intuned_internal_cli/commands/publish_packages.py,sha256=sijkaG7_s0I1EWgLekGy1qm8Aqi_gYY8poXbMX0B6Yw,10505
55
- intuned_internal_cli/commands/root.py,sha256=o75rSb5WYa5JMD8HLN3eiNu4fM0mar3y15A63-Qm4s4,426
56
- intuned_internal_cli/logger.py,sha256=bZK3q-KUdGxk_qzDb6pn-n0LOhKJvi6a9p8oSwZtq3s,594
57
- intuned_internal_cli/utils/ai_source_project.py,sha256=xUCM6p3i1XN4bJbuQz8LCzeI4BwqAdSvCl_vwDAEi0k,831
58
- intuned_internal_cli/utils/code_tree.py,sha256=1wfxZoQ5kRCfqs2SEPAicbAIPTiD6P1LxSuwYu_eeaI,2790
59
- intuned_internal_cli/utils/run_apis.py,sha256=Zee4zkgt9R8XY1XCGzj2Nc4zJ3jlRz1xnO493wotuWw,4690
60
- intuned_internal_cli/utils/setup_ide_functions_token.py,sha256=72-hf5HOPO9hj_eo3MTSVEPIwtkaIma_NRepsw_FHQM,304
61
- intuned_internal_cli/utils/unix_socket.py,sha256=UISmkJMHrir5iBLUm6vxC3uzTGIFyOk_wa0C9LUw4Cc,1889
62
- intuned_runtime/__init__.py,sha256=1BPzEc-qC2WAYiCWDOJChpgnFyO3ZNYRKHEZqdHUGwM,322
63
- runtime/__init__.py,sha256=87gDXuxUv_kGzQfuB1mh6DF-dDysJN8r684c7jGnHxc,144
64
- runtime/backend_functions/__init__.py,sha256=j2EaK4FK8bmdFtqc5FxtFwx1KhIn_7qKPChrrAhJI3s,119
65
- runtime/backend_functions/_call_backend_function.py,sha256=NpbQmEieuRan0fgbJQ0L_skU6MgjMmR99bWsQQYuFtI,3402
66
- runtime/backend_functions/get_auth_session_parameters.py,sha256=pOvB7XiWpphEuBpazdKALw9EWgBU1PeY3gkzBfVLpkc,869
67
- runtime/browser/__init__.py,sha256=EPWfa4ZmdR8GJqh2qcsx1ZvHmCYiUYrQ-zeHYVapH9s,285
68
- runtime/browser/extensions/__init__.py,sha256=VGUFvkYUwuYc9UlYy1TD79veXuDhnLDcmbyHiVnf6dQ,80
69
- runtime/browser/extensions/helpers.py,sha256=W3XiOf66J_xWpa4-U7hQjW0CfAucCYz12pBcIRnzLTQ,387
70
- runtime/browser/extensions/intuned_extension.py,sha256=_La0ikQX2isdiBgZXkZt2iQ6eyW7Fe-9yjePFzpj0rk,2804
71
- runtime/browser/helpers.py,sha256=CwgiBToawPgwAY9nIGkGHW544N7Db_OgKmS-SHkN2pU,1255
72
- runtime/browser/launch_browser.py,sha256=ym97J4RffOGUwhi9iNjAR5Ek2f8pKiAtAcDQFSqMJw0,1899
73
- runtime/browser/launch_camoufox.py,sha256=TBOAwwipNGlbtMdFYnGkVM0ppLU44vWNkMGZA5uPZCE,1787
74
- runtime/browser/launch_chromium.py,sha256=2hU2paJY55_e1UgvobKtaj2MlXKiiC8ac5HXTrONY8I,8155
75
- runtime/browser/storage_state.py,sha256=fwLg8sP-H-vgt_6AJKNl03CpgyMVCQWWcN2cqswTQMs,3603
76
- runtime/constants.py,sha256=YMYQgCWZdJXUpxz_IN2TvZO5rFye9k_Lk9CS8m-shLg,34
77
- runtime/context/__init__.py,sha256=hg8ejm4bJy4tNkwmZ9lKgYJx6bU7OgOdBS684Uv5XGg,73
78
- runtime/context/context.py,sha256=uZxt5cF7Q66Ng6F5J83LMCn9UG7swWOM3f-Wz4MYq7w,1805
79
- runtime/env.py,sha256=DYEU5a-XtPbImdmLEDqdWn40JGSOvG-V7mIXrt0sM9A,660
80
- runtime/errors/__init__.py,sha256=oqiBSvT_yFLQ3hG0AbCUA3WYFaxkTDVkDMSy59xvBCo,688
81
- runtime/errors/auth_session_errors.py,sha256=6b4XTI8UCDHDPX4jEA8_HyrNUp4VZ1TrEA8DRh6Z3rM,228
82
- runtime/errors/run_api_errors.py,sha256=D3zHsJnsjSOy0JUac_CDgHWOYEsOG2CUo7boVcteuCI,4070
83
- runtime/errors/trace_errors.py,sha256=Lzfo0sH3zGaWz1kn5DHcAXQMn3aR2y2bnauj6xP1LYE,110
84
- runtime/helpers/__init__.py,sha256=rkywrr_76AMaIsAAjsVmmfLh8BjB5_E6AeJY5sWFm6U,292
85
- runtime/helpers/attempt_store.py,sha256=YPwGHkdJNbC8rSiQ1vOReKNOQrjPT1wpO9ZDcQf530I,339
86
- runtime/helpers/extend_payload.py,sha256=towZF08WTpTTDBL4AV1bUU3XpKAQHEB66kGUfTICDe0,246
87
- runtime/helpers/extend_timeout.py,sha256=KjfSLEUrqoz7v00rhnPAKq2OmUzEzcv-eQ3M8c2U46s,348
88
- runtime/helpers/get_auth_session_parameters.py,sha256=7bopGhJ7vjKAn_UxnHSAah-k2rVOPbq0zi9FQOOCFds,472
89
- runtime/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
- runtime/run/__init__.py,sha256=zxMYVb7hn147YTrhMLsrcX6-KTd71HLrYHstJOWeWXQ,52
91
- runtime/run/intuned_settings.py,sha256=vy2-ktEzUfUp5Z90dp3l7jPKHNjgB-8GSMDgAY-rYaU,1074
92
- runtime/run/playwright_context.py,sha256=pSTWIg_XpnuHtV5noApabAlZGZJYqtX82YW77n1FGFU,4675
93
- runtime/run/playwright_tracing.py,sha256=oqr9b6xjqdYPCEOUvIVE1M7ord7LAvXAUQAz38Jwjw8,708
94
- runtime/run/pydantic_encoder.py,sha256=wJCljwwINSICvCJ0i2izp2RLkQ15nYglUQCyyjM40Jk,332
95
- runtime/run/run_api.py,sha256=AFhZerLTyHGznGCJl0fLbiTqhZ_WRmphaJK-RqrupTQ,8981
96
- runtime/run/setup_context_hook.py,sha256=KTX4mRmeUEmYS9zrmobR1V09GakOk6uz81Uo_xXTJZk,1156
97
- runtime/run/traces.py,sha256=fKzh11LqV47ujgq_9I2tdp-dgld566wffWaHwU_4gis,1123
98
- runtime/run/types.py,sha256=RR4RGiYVBIK6f2qXvzfLhQMZ8kmrziu265k5eqoIh98,346
99
- runtime/types/__init__.py,sha256=LWf5iOMgbve_BrpVP-LWWzDD3v2K4Y2sLxthOnVEqyY,539
100
- runtime/types/payload.py,sha256=sty8HgDEn3nJbZrwEOMCXyuG7_ICGDwlBIIWSON5ABY,124
101
- runtime/types/run_types.py,sha256=GcYLkL2BHxOjT4O3KvBP6xjBKsmJbjltMt_5bCVnfCI,4554
102
- runtime/types/settings_types.py,sha256=KWCxrQBlvJ8cmOJ2w1qd0-R5ypKlJLFJ5aiRh3BAluU,2486
103
- runtime/utils/__init__.py,sha256=v0qHjnc54YCkY1yPbXuihgymVZau_15xaEVyaFQj9ts,78
104
- runtime/utils/config_loader.py,sha256=yqk2eDGbgyw0Xslgd3dJbB28NjUe02L9LyCxzCmH9r4,482
105
- runtime_helpers/__init__.py,sha256=1BPzEc-qC2WAYiCWDOJChpgnFyO3ZNYRKHEZqdHUGwM,322
106
- runtime_helpers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
- intuned_runtime-1.3.1.dist-info/METADATA,sha256=WMEHeT7DdGH6Ck8LrQUfGeOfDm3YRD4Ar7z8AjohgMk,5372
108
- intuned_runtime-1.3.1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
109
- intuned_runtime-1.3.1.dist-info/entry_points.txt,sha256=ToMS2cqDeRmF1FGkflwoeD-Xz6jJV5p1zIbw9G7IxMg,85
110
- intuned_runtime-1.3.1.dist-info/licenses/LICENSE,sha256=9LIjQdgyU_ptzNIfItNCR7VmEHqYnrY1f1XwOreKFI0,3714
111
- intuned_runtime-1.3.1.dist-info/RECORD,,