@alpsckr/unitycli 0.4.2 → 0.4.4

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.
Files changed (420) hide show
  1. package/README.md +5 -5
  2. package/contracts/command-contract.json +109 -217
  3. package/contracts/package-files.json +374 -294
  4. package/contracts/stable-session/direct-call-semantics.json +8 -2
  5. package/contracts/tool-completion-contract.json +148 -672
  6. package/dist/bridge/admission.d.ts +17 -1
  7. package/dist/bridge/admission.js +2 -0
  8. package/dist/bridge/admission.js.map +1 -1
  9. package/dist/bridge/domains/asset.js +3 -1
  10. package/dist/bridge/domains/asset.js.map +1 -1
  11. package/dist/bridge/domains/camera.js +39 -7
  12. package/dist/bridge/domains/camera.js.map +1 -1
  13. package/dist/bridge/domains/console.js +2 -1
  14. package/dist/bridge/domains/console.js.map +1 -1
  15. package/dist/bridge/domains/doctor.d.ts +3 -0
  16. package/dist/bridge/domains/doctor.js +8 -0
  17. package/dist/bridge/domains/doctor.js.map +1 -0
  18. package/dist/bridge/domains/editor.js +0 -4
  19. package/dist/bridge/domains/editor.js.map +1 -1
  20. package/dist/bridge/domains/game-object.js +4 -12
  21. package/dist/bridge/domains/game-object.js.map +1 -1
  22. package/dist/bridge/domains/graphics.js +1 -16
  23. package/dist/bridge/domains/graphics.js.map +1 -1
  24. package/dist/bridge/domains/object.js +3 -0
  25. package/dist/bridge/domains/object.js.map +1 -1
  26. package/dist/bridge/domains/physics.js +1 -2
  27. package/dist/bridge/domains/physics.js.map +1 -1
  28. package/dist/bridge/domains/profiler.js +18 -7
  29. package/dist/bridge/domains/profiler.js.map +1 -1
  30. package/dist/bridge/domains/project-tool.js +4 -0
  31. package/dist/bridge/domains/project-tool.js.map +1 -1
  32. package/dist/bridge/domains/reflection.js +10 -2
  33. package/dist/bridge/domains/reflection.js.map +1 -1
  34. package/dist/bridge/domains/runtime-tool.js +3 -0
  35. package/dist/bridge/domains/runtime-tool.js.map +1 -1
  36. package/dist/bridge/domains/scene.js +3 -8
  37. package/dist/bridge/domains/scene.js.map +1 -1
  38. package/dist/bridge/domains/screenshot.js +30 -6
  39. package/dist/bridge/domains/screenshot.js.map +1 -1
  40. package/dist/bridge/domains/ui.js +3 -1
  41. package/dist/bridge/domains/ui.js.map +1 -1
  42. package/dist/bridge/index.d.ts +5 -5
  43. package/dist/bridge/index.js +6 -9
  44. package/dist/bridge/index.js.map +1 -1
  45. package/dist/bridge/registry.js +3 -5
  46. package/dist/bridge/registry.js.map +1 -1
  47. package/dist/bridge/session-supervisor.d.ts +6 -3
  48. package/dist/bridge/session-supervisor.js +122 -34
  49. package/dist/bridge/session-supervisor.js.map +1 -1
  50. package/dist/bridge/types.d.ts +6 -5
  51. package/dist/bridge/types.js +16 -2
  52. package/dist/bridge/types.js.map +1 -1
  53. package/dist/catalog-protocol.d.ts +64 -0
  54. package/dist/catalog-protocol.js +460 -0
  55. package/dist/catalog-protocol.js.map +1 -0
  56. package/dist/cli-commands/command.js +84 -61
  57. package/dist/cli-commands/command.js.map +1 -1
  58. package/dist/cli-commands/extensions.js +70 -50
  59. package/dist/cli-commands/extensions.js.map +1 -1
  60. package/dist/cli-commands/instances.js +1 -1
  61. package/dist/cli-commands/instances.js.map +1 -1
  62. package/dist/cli-process-owners.d.ts +6 -0
  63. package/dist/cli-process-owners.js +27 -0
  64. package/dist/cli-process-owners.js.map +1 -0
  65. package/dist/cli.d.ts +1 -1
  66. package/dist/cli.js +20 -5
  67. package/dist/cli.js.map +1 -1
  68. package/dist/contracts/command-contract.js +14 -4
  69. package/dist/contracts/command-contract.js.map +1 -1
  70. package/dist/doctor.d.ts +4 -6
  71. package/dist/doctor.js +429 -398
  72. package/dist/doctor.js.map +1 -1
  73. package/dist/editor-blocker-observer.d.ts +2 -1
  74. package/dist/editor-blocker-observer.js +40 -13
  75. package/dist/editor-blocker-observer.js.map +1 -1
  76. package/dist/extension-availability.d.ts +27 -9
  77. package/dist/extension-availability.js +96 -56
  78. package/dist/extension-availability.js.map +1 -1
  79. package/dist/extensions/descriptor-loader.d.ts +2 -2
  80. package/dist/extensions/descriptor-loader.js +3 -4
  81. package/dist/extensions/descriptor-loader.js.map +1 -1
  82. package/dist/extensions/index.d.ts +1 -1
  83. package/dist/extensions/index.js +1 -1
  84. package/dist/extensions/index.js.map +1 -1
  85. package/dist/extensions/installer.d.ts +24 -7
  86. package/dist/extensions/installer.js +142 -66
  87. package/dist/extensions/installer.js.map +1 -1
  88. package/dist/extensions/registry.js +3 -5
  89. package/dist/extensions/registry.js.map +1 -1
  90. package/dist/extensions/state-contract.d.ts +11 -0
  91. package/dist/extensions/state-contract.js +50 -0
  92. package/dist/extensions/state-contract.js.map +1 -0
  93. package/dist/instances.d.ts +13 -1
  94. package/dist/instances.js +26 -0
  95. package/dist/instances.js.map +1 -1
  96. package/dist/package-manager.d.ts +0 -24
  97. package/dist/package-manager.js +5 -58
  98. package/dist/package-manager.js.map +1 -1
  99. package/dist/project-tool-discovery.d.ts +5 -2
  100. package/dist/project-tool-discovery.js +22 -18
  101. package/dist/project-tool-discovery.js.map +1 -1
  102. package/dist/runtime-code.js +1 -1
  103. package/dist/runtime-code.js.map +1 -1
  104. package/dist/tool-name.d.ts +4 -0
  105. package/dist/tool-name.js +15 -0
  106. package/dist/tool-name.js.map +1 -0
  107. package/dist/tools/.generated-completion-registry.d.ts +2 -0
  108. package/dist/tools/.generated-completion-registry.js +763 -325
  109. package/dist/tools/.generated-completion-registry.js.map +1 -1
  110. package/dist/tools/.generated-registry.d.ts +6 -11
  111. package/dist/tools/.generated-registry.js +6 -11
  112. package/dist/tools/.generated-registry.js.map +1 -1
  113. package/dist/tools/.generated-schemas.js +11 -16
  114. package/dist/tools/.generated-schemas.js.map +1 -1
  115. package/dist/tools/asset/refresh-status.d.ts +3 -0
  116. package/dist/tools/asset/refresh-status.js +12 -0
  117. package/dist/tools/asset/refresh-status.js.map +1 -0
  118. package/dist/tools/asset/refresh.js +7 -3
  119. package/dist/tools/asset/refresh.js.map +1 -1
  120. package/dist/tools/build/player-status.d.ts +3 -0
  121. package/dist/tools/build/player-status.js +12 -0
  122. package/dist/tools/build/player-status.js.map +1 -0
  123. package/dist/tools/build/run.js +1 -1
  124. package/dist/tools/build/run.js.map +1 -1
  125. package/dist/tools/catalog-control.d.ts +22 -0
  126. package/dist/tools/catalog-control.js +335 -0
  127. package/dist/tools/catalog-control.js.map +1 -0
  128. package/dist/tools/catalog.d.ts +7 -9
  129. package/dist/tools/catalog.js +66 -45
  130. package/dist/tools/catalog.js.map +1 -1
  131. package/dist/tools/commands.d.ts +1 -1
  132. package/dist/tools/commands.js +44 -11
  133. package/dist/tools/commands.js.map +1 -1
  134. package/dist/tools/define.js +3 -2
  135. package/dist/tools/define.js.map +1 -1
  136. package/dist/tools/dispatcher.d.ts +53 -6
  137. package/dist/tools/dispatcher.js +277 -108
  138. package/dist/tools/dispatcher.js.map +1 -1
  139. package/dist/tools/editor/compile.js +1 -1
  140. package/dist/tools/editor/compile.js.map +1 -1
  141. package/dist/tools/editor/play-mode-status.d.ts +3 -0
  142. package/dist/tools/editor/play-mode-status.js +12 -0
  143. package/dist/tools/editor/play-mode-status.js.map +1 -0
  144. package/dist/tools/editor/readiness.d.ts +0 -1
  145. package/dist/tools/editor/readiness.js +0 -1
  146. package/dist/tools/editor/readiness.js.map +1 -1
  147. package/dist/tools/editor/refresh.d.ts +7 -3
  148. package/dist/tools/editor/refresh.js +20 -15
  149. package/dist/tools/editor/refresh.js.map +1 -1
  150. package/dist/tools/editor/state.d.ts +2 -2
  151. package/dist/tools/editor/state.js +13 -12
  152. package/dist/tools/editor/state.js.map +1 -1
  153. package/dist/tools/metadata/derived.js +1 -7
  154. package/dist/tools/metadata/derived.js.map +1 -1
  155. package/dist/tools/metadata/status.js +1 -12
  156. package/dist/tools/metadata/status.js.map +1 -1
  157. package/dist/tools/metadata/types.d.ts +0 -2
  158. package/dist/tools/navmesh/live.js +1 -1
  159. package/dist/tools/navmesh/live.js.map +1 -1
  160. package/dist/tools/occlusion/live.js +1 -1
  161. package/dist/tools/occlusion/live.js.map +1 -1
  162. package/dist/tools/package/deploy.js +2 -2
  163. package/dist/tools/package/deploy.js.map +1 -1
  164. package/dist/tools/package/embed.js +1 -1
  165. package/dist/tools/package/embed.js.map +1 -1
  166. package/dist/tools/package/install-status.d.ts +3 -0
  167. package/dist/tools/package/install-status.js +12 -0
  168. package/dist/tools/package/install-status.js.map +1 -0
  169. package/dist/tools/package/install.js +3 -3
  170. package/dist/tools/package/install.js.map +1 -1
  171. package/dist/tools/package/live-resolve.js +45 -12
  172. package/dist/tools/package/live-resolve.js.map +1 -1
  173. package/dist/tools/package/registry-clear.js.map +1 -1
  174. package/dist/tools/package/registry-set.js.map +1 -1
  175. package/dist/tools/package/remove-status.d.ts +3 -0
  176. package/dist/tools/package/remove-status.js +12 -0
  177. package/dist/tools/package/remove-status.js.map +1 -0
  178. package/dist/tools/package/remove.js +3 -3
  179. package/dist/tools/package/remove.js.map +1 -1
  180. package/dist/tools/package/resolve.js +3 -3
  181. package/dist/tools/package/resolve.js.map +1 -1
  182. package/dist/tools/package/restore.js +2 -2
  183. package/dist/tools/package/restore.js.map +1 -1
  184. package/dist/tools/package/scoped-registry-add.js.map +1 -1
  185. package/dist/tools/status/support.d.ts +13 -0
  186. package/dist/tools/status/support.js +28 -0
  187. package/dist/tools/status/support.js.map +1 -0
  188. package/dist/tools/test/cancel.js +2 -2
  189. package/dist/tools/test/cancel.js.map +1 -1
  190. package/dist/tools/test/run-status.d.ts +3 -0
  191. package/dist/tools/test/run-status.js +12 -0
  192. package/dist/tools/test/run-status.js.map +1 -0
  193. package/dist/tools/test/run.js +7 -4
  194. package/dist/tools/test/run.js.map +1 -1
  195. package/dist/tools/tools/group-summaries.js +10 -14
  196. package/dist/tools/tools/group-summaries.js.map +1 -1
  197. package/docs/architecture.md +4 -4
  198. package/docs/availability-differences.md +4 -4
  199. package/docs/command-execution.md +4 -3
  200. package/docs/error-codes.md +13 -5
  201. package/docs/extensions.md +1 -7
  202. package/docs/risk-and-side-effects.md +4 -3
  203. package/docs/safety-boundaries.md +3 -1
  204. package/docs/target-and-instance.md +1 -1
  205. package/docs/tool-discovery.md +17 -10
  206. package/docs/tool-execution.md +18 -7
  207. package/extensions/cinemachine/unitypkg/Editor/UnityCliExtensionAssembly.cs +3 -0
  208. package/extensions/hdrp/unitypkg/Editor/UnityCliExtensionAssembly.cs +3 -0
  209. package/extensions/probuilder/unitypkg/Editor/UnityCliExtensionAssembly.cs +3 -0
  210. package/extensions/urp/unitypkg/Editor/UnityCliExtensionAssembly.cs +3 -0
  211. package/extensions/vfx-graph/unitypkg/Editor/UnityCliExtensionAssembly.cs +3 -0
  212. package/package.json +2 -4
  213. package/skills/unitycli/SKILL.md +35 -42
  214. package/skills/unitycli/manifest.json +1 -1
  215. package/skills/unitycli/references/operation-protocol.md +3 -3
  216. package/unitypkg/Editor/AssemblyInfo.cs +5 -0
  217. package/unitypkg/Editor/Bridge/BridgeCommandRegistry.cs +49 -14
  218. package/unitypkg/Editor/Bridge/BridgeHttpServer.cs +9 -35
  219. package/unitypkg/Editor/Bridge/BridgeQueueState.cs +672 -0
  220. package/unitypkg/Editor/Bridge/BridgeWorkQueue.cs +970 -120
  221. package/unitypkg/Editor/BridgeStartupStateMachine.cs +59 -1
  222. package/unitypkg/Editor/Commands/ProjectToolCommands.cs +4 -0
  223. package/unitypkg/Editor/Commands/RuntimeToolCommands.cs +3 -0
  224. package/unitypkg/Editor/Generated/UnityCliToolCompletionRegistry.g.cs +379 -14
  225. package/unitypkg/Editor/Infrastructure/CodeExecSupport.cs +28 -13
  226. package/unitypkg/Editor/Infrastructure/RegistryOwnershipResolver.cs +132 -105
  227. package/unitypkg/Editor/Infrastructure/UnityCliActiveOperation.cs +138 -29
  228. package/unitypkg/Editor/Infrastructure/UnityCliAdmission.cs +1856 -237
  229. package/unitypkg/Editor/Infrastructure/UnityCliDoctorDiagnostics.cs +220 -0
  230. package/unitypkg/Editor/Infrastructure/UnityCliDurableStatusCoordinator.cs +118 -0
  231. package/unitypkg/Editor/Infrastructure/UnityCliEditorStateSnapshot.cs +2 -1
  232. package/unitypkg/Editor/Infrastructure/UnityCliHierarchyPager.cs +203 -0
  233. package/unitypkg/Editor/Infrastructure/UnityCliInstanceCleanup.cs +2 -1
  234. package/unitypkg/Editor/Infrastructure/UnityCliInstanceRegistry.cs +201 -63
  235. package/unitypkg/Editor/Infrastructure/UnityCliJson.cs +2 -3
  236. package/unitypkg/Editor/Infrastructure/UnityCliLiveBuildCoordinator.cs +289 -46
  237. package/unitypkg/Editor/Infrastructure/UnityCliLiveRefreshCoordinator.cs +87 -53
  238. package/unitypkg/Editor/Infrastructure/UnityCliNavMeshBakeCoordinator.cs +4 -4
  239. package/unitypkg/Editor/Infrastructure/UnityCliObjectRef.cs +128 -25
  240. package/unitypkg/Editor/Infrastructure/UnityCliObjectSerializer.cs +435 -327
  241. package/unitypkg/Editor/Infrastructure/UnityCliOcclusionBakeCoordinator.cs +4 -4
  242. package/unitypkg/Editor/Infrastructure/UnityCliOperationCoordinator.cs +351 -53
  243. package/unitypkg/Editor/Infrastructure/UnityCliPackageResolveCoordinator.cs +118 -18
  244. package/unitypkg/Editor/Infrastructure/UnityCliPackageResolveState.cs +20 -1
  245. package/unitypkg/Editor/Infrastructure/UnityCliReadGeneration.cs +97 -0
  246. package/unitypkg/Editor/Infrastructure/UnityCliReflection.cs +644 -133
  247. package/unitypkg/Editor/Infrastructure/UnityCliReloadOperation.cs +128 -41
  248. package/unitypkg/Editor/Infrastructure/UnityCliRuntimeExecutor.cs +14 -84
  249. package/unitypkg/Editor/Infrastructure/UnityCliSerializer.cs +220 -0
  250. package/unitypkg/Editor/Infrastructure/UnityCliSessionMutationLease.cs +69 -29
  251. package/unitypkg/Editor/Infrastructure/UnityCliTestRunCoordinator.cs +440 -54
  252. package/unitypkg/Editor/Infrastructure/UnityCliWaiter.cs +128 -35
  253. package/unitypkg/Editor/ProjectTools/IUnityCliTool.cs +9 -1
  254. package/unitypkg/Editor/ProjectTools/OfficialAttributeToolRegistry.cs +32 -31
  255. package/unitypkg/Editor/ProjectTools/ProjectToolRegistry.cs +607 -458
  256. package/unitypkg/Editor/ProjectTools/ProjectToolSchemaValidator.cs +35 -7
  257. package/unitypkg/Editor/ProjectTools/RegisteredTool.cs +501 -60
  258. package/unitypkg/Editor/ProjectTools/UnityCliProjectToolContext.cs +21 -0
  259. package/unitypkg/Editor/ProjectTools/UnityCliSchemaDeriver.cs +36 -7
  260. package/unitypkg/Editor/ProjectTools/UnityCliToolName.cs +30 -0
  261. package/unitypkg/Editor/Properties/AssemblyInfo.cs +3 -0
  262. package/unitypkg/Editor/Tools/asset/get-data.cs +16 -7
  263. package/unitypkg/Editor/Tools/build/BuildSceneStateTool.cs +23 -3
  264. package/unitypkg/Editor/Tools/build/BuildToolDtos.cs +2 -1
  265. package/unitypkg/Editor/Tools/build/scene/add.cs +6 -3
  266. package/unitypkg/Editor/Tools/build/scene/disable.cs +1 -1
  267. package/unitypkg/Editor/Tools/build/scene/enable.cs +1 -1
  268. package/unitypkg/Editor/Tools/build/scene/list.cs +1 -1
  269. package/unitypkg/Editor/Tools/build/scene/remove.cs +13 -3
  270. package/unitypkg/Editor/Tools/camera/CameraToolSupport.cs +38 -38
  271. package/unitypkg/Editor/Tools/camera/multiview.cs +13 -6
  272. package/unitypkg/Editor/Tools/camera/screenshot.cs +14 -7
  273. package/unitypkg/Editor/Tools/component/get.cs +16 -9
  274. package/unitypkg/Editor/Tools/component/modify.cs +6 -4
  275. package/unitypkg/Editor/Tools/console/clear.cs +7 -6
  276. package/unitypkg/Editor/Tools/console/get.cs +48 -16
  277. package/unitypkg/Editor/Tools/editor/EditorToolSupport.cs +143 -28
  278. package/unitypkg/Editor/Tools/editor/menu-items.cs +1 -1
  279. package/unitypkg/Editor/Tools/editor/play.cs +2 -11
  280. package/unitypkg/Editor/Tools/editor/selection.cs +1 -1
  281. package/unitypkg/Editor/Tools/editor/stop.cs +2 -11
  282. package/unitypkg/Editor/Tools/editor/windows.cs +1 -1
  283. package/unitypkg/Editor/Tools/go/GameObjectToolSupport.cs +54 -4
  284. package/unitypkg/Editor/Tools/go/delete.cs +1 -1
  285. package/unitypkg/Editor/Tools/go/find.cs +167 -70
  286. package/unitypkg/Editor/Tools/graphics/GraphicsToolSupport.cs +25 -0
  287. package/unitypkg/Editor/Tools/graphics/light-probe-group.cs +9 -3
  288. package/unitypkg/Editor/Tools/graphics/pipeline-info.cs +1 -1
  289. package/unitypkg/Editor/Tools/graphics/pipeline-settings.cs +1 -1
  290. package/unitypkg/Editor/Tools/graphics/quality.cs +2 -2
  291. package/unitypkg/Editor/Tools/graphics/reflection-probe.cs +3 -3
  292. package/unitypkg/Editor/Tools/graphics/stats.cs +1 -1
  293. package/unitypkg/Editor/Tools/object/ObjectToolSupport.cs +4 -4
  294. package/unitypkg/Editor/Tools/object/get-data.cs +9 -7
  295. package/unitypkg/Editor/Tools/object/modify.cs +7 -5
  296. package/unitypkg/Editor/Tools/physics/raycast.cs +24 -6
  297. package/unitypkg/Editor/Tools/prefab/stage.cs +1 -1
  298. package/unitypkg/Editor/Tools/profiler/ProfilerFrameDebuggerSupport.cs +94 -21
  299. package/unitypkg/Editor/Tools/profiler/ProfilerMemorySnapshotSupport.cs +397 -10
  300. package/unitypkg/Editor/Tools/profiler/ProfilerToolSupport.cs +18 -4
  301. package/unitypkg/Editor/Tools/profiler/frame-debugger/enable.cs +1 -1
  302. package/unitypkg/Editor/Tools/profiler/frame-debugger/events.cs +88 -87
  303. package/unitypkg/Editor/Tools/profiler/hierarchy.cs +278 -112
  304. package/unitypkg/Editor/Tools/profiler/memory-snapshot/compare.cs +9 -5
  305. package/unitypkg/Editor/Tools/profiler/memory-snapshot/list.cs +37 -35
  306. package/unitypkg/Editor/Tools/profiler/memory-snapshot/take.cs +99 -97
  307. package/unitypkg/Editor/Tools/project/info.cs +1 -1
  308. package/unitypkg/Editor/Tools/project/layers.cs +1 -1
  309. package/unitypkg/Editor/Tools/project/tags.cs +1 -1
  310. package/unitypkg/Editor/Tools/reflection/method/call.cs +9 -7
  311. package/unitypkg/Editor/Tools/reflection/method/find.cs +27 -37
  312. package/unitypkg/Editor/Tools/reflection/type/schema.cs +24 -28
  313. package/unitypkg/Editor/Tools/scene/gameobject/component.cs +8 -5
  314. package/unitypkg/Editor/Tools/scene/gameobject/components.cs +10 -7
  315. package/unitypkg/Editor/Tools/scene/gameobject-support.cs +104 -8
  316. package/unitypkg/Editor/Tools/scene/gameobject.cs +37 -16
  317. package/unitypkg/Editor/Tools/scene/hierarchy.cs +146 -142
  318. package/unitypkg/Editor/Tools/screenshot/EditorElementCaptureToolSupport.cs +77 -25
  319. package/unitypkg/Editor/Tools/screenshot/ScreenshotToolSupport.cs +315 -95
  320. package/unitypkg/Editor/Tools/screenshot/editor-element.cs +7 -5
  321. package/unitypkg/Editor/Tools/screenshot/game-view.cs +35 -21
  322. package/unitypkg/Editor/Tools/screenshot/isolated-object.cs +29 -23
  323. package/unitypkg/Editor/Tools/screenshot/orbit.cs +37 -25
  324. package/unitypkg/Editor/Tools/screenshot/scene-view.cs +25 -18
  325. package/unitypkg/Editor/Tools/screenshot/screen.cs +177 -17
  326. package/unitypkg/Editor/Tools/screenshot/surround.cs +83 -79
  327. package/unitypkg/Editor/Tools/ui/render-preview.cs +16 -11
  328. package/unitypkg/Editor/UnityCliBridge.cs +97 -34
  329. package/unitypkg/Runtime/Infrastructure/UnityCliRuntimeBridge.cs +753 -122
  330. package/unitypkg/Runtime/Properties/AssemblyInfo.cs +5 -0
  331. package/unitypkg/Runtime/UnityCli.Runtime.asmdef +1 -1
  332. package/unitypkg/Shared/AssemblyInfo.cs +4 -0
  333. package/unitypkg/Shared/UnityCliAdmissionPool.cs +265 -75
  334. package/unitypkg/Shared/UnityCliBridgeQueuePolicy.cs +410 -0
  335. package/unitypkg/Shared/UnityCliBridgeWorkItemState.cs +47 -0
  336. package/unitypkg/Shared/UnityCliExceptionProjection.cs +151 -0
  337. package/unitypkg/Shared/UnityCliQueuePublication.cs +30 -0
  338. package/unitypkg/Shared/UnityCliRequestBudget.cs +352 -0
  339. package/unitypkg/Shared/UnityCliRuntimeRequestPublication.cs +107 -0
  340. package/unitypkg/Tests/Editor/UnityCli.Editor.Tests.asmdef +2 -2
  341. package/unitypkg/Tests/Editor/UnityCliAdmissionCoordinatorIntegrationTests.cs +1329 -0
  342. package/unitypkg/Tests/Editor/UnityCliAdmissionPoolTests.cs +311 -114
  343. package/unitypkg/Tests/Editor/UnityCliAdmissionRepairStateTests.cs +94 -0
  344. package/unitypkg/Tests/Editor/UnityCliBridgeAdmissionIntegrationTests.cs +1229 -0
  345. package/unitypkg/Tests/Editor/UnityCliBridgeQueuePolicyTests.cs +412 -0
  346. package/unitypkg/Tests/Editor/UnityCliContinuationIntegrationTests.cs +292 -0
  347. package/unitypkg/Tests/Editor/UnityCliDiagnosticBoundaryTests.cs +120 -0
  348. package/unitypkg/Tests/Editor/UnityCliDurableStatusTests.cs +84 -0
  349. package/unitypkg/Tests/Editor/UnityCliExceptionProjectionTests.cs +72 -0
  350. package/unitypkg/Tests/Editor/UnityCliInstancePublicationRetryTests.cs +180 -97
  351. package/unitypkg/Tests/Editor/UnityCliMemoryReflectionIntegrationTests.cs +434 -0
  352. package/unitypkg/Tests/Editor/UnityCliRequestBudgetTests.cs +615 -0
  353. package/unitypkg/Tests/Editor/UnityCliRuntimeBridgeIntegrationTests.cs +520 -0
  354. package/unitypkg/Tests/Editor/UnityCliToolCatalogTests.cs +562 -0
  355. package/unitypkg/Tests/Runtime/UnityCli.Runtime.Tests.asmdef +23 -0
  356. package/unitypkg/Tests/Runtime/UnityCliRuntimeCatalogValidationTests.cs +29 -0
  357. package/unitypkg/package.json +1 -1
  358. package/contracts/static-capability-catalog.json +0 -48226
  359. package/dist/bridge/domains/diagnose.d.ts +0 -2
  360. package/dist/bridge/domains/diagnose.js +0 -11
  361. package/dist/bridge/domains/diagnose.js.map +0 -1
  362. package/dist/bridge/domains/extension.d.ts +0 -8
  363. package/dist/bridge/domains/extension.js +0 -20
  364. package/dist/bridge/domains/extension.js.map +0 -1
  365. package/dist/capabilities.d.ts +0 -5
  366. package/dist/capabilities.js +0 -84
  367. package/dist/capabilities.js.map +0 -1
  368. package/dist/static-capability-catalog.d.ts +0 -13
  369. package/dist/static-capability-catalog.js +0 -41
  370. package/dist/static-capability-catalog.js.map +0 -1
  371. package/dist/tools/diagnose/capabilities.d.ts +0 -13
  372. package/dist/tools/diagnose/capabilities.js +0 -34
  373. package/dist/tools/diagnose/capabilities.js.map +0 -1
  374. package/dist/tools/package/info.d.ts +0 -19
  375. package/dist/tools/package/info.js +0 -27
  376. package/dist/tools/package/info.js.map +0 -1
  377. package/dist/tools/package/list.d.ts +0 -27
  378. package/dist/tools/package/list.js +0 -21
  379. package/dist/tools/package/list.js.map +0 -1
  380. package/dist/tools/package/registry-get.d.ts +0 -10
  381. package/dist/tools/package/registry-get.js +0 -22
  382. package/dist/tools/package/registry-get.js.map +0 -1
  383. package/dist/tools/package/scoped-registry-list.d.ts +0 -14
  384. package/dist/tools/package/scoped-registry-list.js +0 -22
  385. package/dist/tools/package/scoped-registry-list.js.map +0 -1
  386. package/dist/tools/package/search.d.ts +0 -17
  387. package/dist/tools/package/search.js +0 -39
  388. package/dist/tools/package/search.js.map +0 -1
  389. package/dist/tools/package/status.d.ts +0 -21
  390. package/dist/tools/package/status.js +0 -37
  391. package/dist/tools/package/status.js.map +0 -1
  392. package/dist/tools/tools/describe.d.ts +0 -27
  393. package/dist/tools/tools/describe.js +0 -35
  394. package/dist/tools/tools/describe.js.map +0 -1
  395. package/dist/tools/tools/group-list.d.ts +0 -16
  396. package/dist/tools/tools/group-list.js +0 -38
  397. package/dist/tools/tools/group-list.js.map +0 -1
  398. package/dist/tools/tools/group.d.ts +0 -13
  399. package/dist/tools/tools/group.js +0 -34
  400. package/dist/tools/tools/group.js.map +0 -1
  401. package/dist/tools/tools/pagination.d.ts +0 -17
  402. package/dist/tools/tools/pagination.js +0 -28
  403. package/dist/tools/tools/pagination.js.map +0 -1
  404. package/dist/tools/tools/search.d.ts +0 -15
  405. package/dist/tools/tools/search.js +0 -42
  406. package/dist/tools/tools/search.js.map +0 -1
  407. package/unitypkg/Editor/Tools/diagnose/preflight.cs +0 -269
  408. package/unitypkg/Editor/Tools/editor/console.cs +0 -26
  409. package/unitypkg/Editor/Tools/extension/status.cs +0 -87
  410. package/unitypkg/Editor/Tools/go/inspect.cs +0 -49
  411. package/unitypkg/Editor/Tools/graphics/pipeline-quality.cs +0 -24
  412. package/unitypkg/Editor/Tools/graphics/probe-positions.cs +0 -58
  413. package/unitypkg/Editor/Tools/graphics/settings.cs +0 -104
  414. package/unitypkg/Editor/Tools/graphics/stats-counters.cs +0 -28
  415. package/unitypkg/Editor/Tools/graphics/stats-memory.cs +0 -21
  416. package/unitypkg/Editor/Tools/instances/list.cs +0 -71
  417. package/unitypkg/Editor/Tools/physics/raycast-all.cs +0 -67
  418. package/unitypkg/Editor/Tools/scene/build-settings.cs +0 -69
  419. package/unitypkg/Editor/Tools/scene/data.cs +0 -125
  420. package/unitypkg/Editor/Tools/tests/list.cs +0 -98
@@ -1,9 +1,14 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
3
  "packageName": "com.alpsckr.unitycli",
4
- "packageVersion": "0.4.2",
5
- "sourceHash": "3849b321c2e4793eec4ec7368c27a58a167913e1b92903a2b1c53f6578193d61",
4
+ "packageVersion": "0.4.4",
5
+ "sourceHash": "426be69105d5f782a698988d40afa71954d0006dacf3f1f131ae2d05f01e3ad7",
6
6
  "files": [
7
+ {
8
+ "path": "Editor/AssemblyInfo.cs",
9
+ "size": 120,
10
+ "sha256": "c92975ae24685fc2ee2a84e4f44d3e8637a8e6c7a1acc0ddf33e69a1cc641fba"
11
+ },
7
12
  {
8
13
  "path": "Editor/Bridge/BridgeCommandContext.cs",
9
14
  "size": 1776,
@@ -16,13 +21,18 @@
16
21
  },
17
22
  {
18
23
  "path": "Editor/Bridge/BridgeCommandRegistry.cs",
19
- "size": 8109,
20
- "sha256": "45d25270d8f8c737f2c09e2218a0d6d57afa0144c05c44b5fb9c4de0a77ce277"
24
+ "size": 10797,
25
+ "sha256": "a0f3a2a1bf023f8ae5e29a979f0eca585bbe9273e1a9d077b79ea64dc1165a65"
21
26
  },
22
27
  {
23
28
  "path": "Editor/Bridge/BridgeHttpServer.cs",
24
- "size": 29319,
25
- "sha256": "21ef760cfdf4b84659dc928e6f68a6e6c0b80f0c86a74906b1f871f303ea42ed"
29
+ "size": 28280,
30
+ "sha256": "2ddce13e47aeb8ec7b0dca22e44bc880223d5da59a93a77222ec1989d7cd5e13"
31
+ },
32
+ {
33
+ "path": "Editor/Bridge/BridgeQueueState.cs",
34
+ "size": 31240,
35
+ "sha256": "7ec33da955930fd57310e0fa988eb49f4fa10b59097878606b94508628a66465"
26
36
  },
27
37
  {
28
38
  "path": "Editor/Bridge/BridgeResponse.cs",
@@ -31,48 +41,48 @@
31
41
  },
32
42
  {
33
43
  "path": "Editor/Bridge/BridgeWorkQueue.cs",
34
- "size": 16538,
35
- "sha256": "753c7447be6f624284487f52bd2f8d3d75766ef13306773409155a6d57ebbee9"
44
+ "size": 65356,
45
+ "sha256": "af957fe8d90c2db722e7515458d4f0f2e571c83f7b829c308f7c7d73dc83b04a"
36
46
  },
37
47
  {
38
48
  "path": "Editor/BridgeStartupStateMachine.cs",
39
- "size": 2819,
40
- "sha256": "d7f217be80e2ba3f451fb5a7a0ffbdedddec2895c80e02830dce60fec30279cf"
49
+ "size": 5025,
50
+ "sha256": "95fda3c576dc5494078c412fd621321d4b25573d038a3bdefbc3a91463e6de76"
41
51
  },
42
52
  {
43
53
  "path": "Editor/Commands/ProjectToolCommands.cs",
44
- "size": 1240,
45
- "sha256": "e530169c7584c59f73b11f8bf0b1fbe2a3bd95bb765623c59a8a955ee9397433"
54
+ "size": 1669,
55
+ "sha256": "542e8be3ec58871a782bf6588cf4d7b7e172000d9a6428bcdc35a34e98632e5a"
46
56
  },
47
57
  {
48
58
  "path": "Editor/Commands/RuntimeToolCommands.cs",
49
- "size": 1239,
50
- "sha256": "cb252edf92a6b34eb76343ea259aa625adfeb32d1b2d937897eb2805427f278e"
59
+ "size": 1557,
60
+ "sha256": "852e986af51828b66479cf213852d35ac41e29900085e694a818ec00a50e9b35"
51
61
  },
52
62
  {
53
63
  "path": "Editor/Generated/UnityCliToolCompletionRegistry.g.cs",
54
- "size": 116449,
55
- "sha256": "d8e3afcd07ba28c784f9544561d5883cfe75e3576de5e1de6e401bfc07b6d579"
64
+ "size": 168147,
65
+ "sha256": "c9ba3037d919e8f2a64d01dec11502b6144bb0fe973ed4fa7b7878575075e8aa"
56
66
  },
57
67
  {
58
68
  "path": "Editor/Infrastructure/CodeExecSupport.cs",
59
- "size": 33122,
60
- "sha256": "d4cece05c0d962d92208c2d4504a8045378263cd75e350cb5290bd08f0c05e3c"
69
+ "size": 33950,
70
+ "sha256": "128128dad40eb7d62af4e49f85274f65818456196ecdb67182e325624215c978"
61
71
  },
62
72
  {
63
73
  "path": "Editor/Infrastructure/RegistryOwnershipResolver.cs",
64
- "size": 8029,
65
- "sha256": "8352ce8ad0035728e22efa9c93fe620c67164e1420496efa27ae6d8e15aa9fc3"
74
+ "size": 11391,
75
+ "sha256": "7d68a4bbe16d9ac74b8d1a016af3bd630b5a3b9696d5d25690de4b642649e37b"
66
76
  },
67
77
  {
68
78
  "path": "Editor/Infrastructure/UnityCliActiveOperation.cs",
69
- "size": 24634,
70
- "sha256": "c6ab53ad062f50c2da0cdd55eb1efe3a848bff46836a71b7602ce8bf5dce5445"
79
+ "size": 31602,
80
+ "sha256": "f6176d1e5e371f5ceff99ab05f78003bf5f5382c5462ef3de8cce250cf3d2806"
71
81
  },
72
82
  {
73
83
  "path": "Editor/Infrastructure/UnityCliAdmission.cs",
74
- "size": 31496,
75
- "sha256": "c367b955496c1d645033cbad08751e1e18fbdbeb9551768e3c3062f252dcbbf4"
84
+ "size": 135247,
85
+ "sha256": "af3de3017cd7a95b4d8c85cafeddef78108568dd1862211e6430dd5a50e52d0a"
76
86
  },
77
87
  {
78
88
  "path": "Editor/Infrastructure/UnityCliArtifacts.cs",
@@ -109,25 +119,40 @@
109
119
  "size": 30220,
110
120
  "sha256": "d123daf4cdcc94fbd27ea0ce9ca3bc35e899cdde2225c0019d67f4ec06ac9ba7"
111
121
  },
122
+ {
123
+ "path": "Editor/Infrastructure/UnityCliDoctorDiagnostics.cs",
124
+ "size": 12175,
125
+ "sha256": "5c717649feb129f199f003f0aa90b1336a49f42c225b00117847a2ce77e22734"
126
+ },
127
+ {
128
+ "path": "Editor/Infrastructure/UnityCliDurableStatusCoordinator.cs",
129
+ "size": 6965,
130
+ "sha256": "6191fc9c0d0c77fe54fb10116474b6137a982def897c3d8426a49d6677984c0a"
131
+ },
112
132
  {
113
133
  "path": "Editor/Infrastructure/UnityCliEditorStateSnapshot.cs",
114
- "size": 4375,
115
- "sha256": "dba7c4f303ec46c52341d0e61f0b3ca4a44b47e064f059425c698d5c73d66aae"
134
+ "size": 4439,
135
+ "sha256": "70cc6da34d68a4f0d608b2590198106cad0578b1947b0e9093e9dc3929c25eba"
136
+ },
137
+ {
138
+ "path": "Editor/Infrastructure/UnityCliHierarchyPager.cs",
139
+ "size": 10604,
140
+ "sha256": "baab3d648a8af65d0994ae890712fc85557c599244ceb37e5f097a4348826482"
116
141
  },
117
142
  {
118
143
  "path": "Editor/Infrastructure/UnityCliInstanceCleanup.cs",
119
- "size": 15310,
120
- "sha256": "6948825b1d20397bd16e6e0b4dae74d906fe3839e4642e0f5fc90a6aa630bfe2"
144
+ "size": 15372,
145
+ "sha256": "e7276cdb9a92604406c6204f142cefa29bcce0c50786418a9288e19bd43d3bf1"
121
146
  },
122
147
  {
123
148
  "path": "Editor/Infrastructure/UnityCliInstanceRegistry.cs",
124
- "size": 35230,
125
- "sha256": "edb5f28a6ca8811e3a012135773c697ede9ea3e6bc1faa8474c0acde9d122f3f"
149
+ "size": 40498,
150
+ "sha256": "be02b6f11781e90865a1050f535788376e114469cee96804eef90a5789cf981a"
126
151
  },
127
152
  {
128
153
  "path": "Editor/Infrastructure/UnityCliJson.cs",
129
- "size": 8777,
130
- "sha256": "7e404a2173eaf4ba2bb869024e3f528bd96d38b00d5b0ae5337498255b75de51"
154
+ "size": 8667,
155
+ "sha256": "03f91d4f6146f5f4465b7a91493023620cfc4b31c3bf59e40abedd80282cb29b"
131
156
  },
132
157
  {
133
158
  "path": "Editor/Infrastructure/UnityCliLargeOutput.cs",
@@ -136,13 +161,13 @@
136
161
  },
137
162
  {
138
163
  "path": "Editor/Infrastructure/UnityCliLiveBuildCoordinator.cs",
139
- "size": 21950,
140
- "sha256": "a48d3536f1e38af37085bb3886d0d9f58efacc3797c079b8e4b9672e9c38b01d"
164
+ "size": 37542,
165
+ "sha256": "00f6ef588372230af41d5feba1463ea356abc0566436f8d98b2fbde60e0838c7"
141
166
  },
142
167
  {
143
168
  "path": "Editor/Infrastructure/UnityCliLiveRefreshCoordinator.cs",
144
- "size": 15150,
145
- "sha256": "c41b121ad944fee0afebdb88ea45ad09999e8854d5269d6a59db3fb06e0c8cfd"
169
+ "size": 15494,
170
+ "sha256": "cdc1408520e0dc6030b49cddfad9c0734a7027b3d368b9a4569d0192804e17cc"
146
171
  },
147
172
  {
148
173
  "path": "Editor/Infrastructure/UnityCliLog.cs",
@@ -151,8 +176,8 @@
151
176
  },
152
177
  {
153
178
  "path": "Editor/Infrastructure/UnityCliNavMeshBakeCoordinator.cs",
154
- "size": 140768,
155
- "sha256": "30fa31845681707179741aeeb1fe7b9e8681ba85afbba3d045b04e217551f000"
179
+ "size": 140957,
180
+ "sha256": "0dd03b11414a93cfe76700382eec5821c6ef48a38acae5a1d046888b05905ceb"
156
181
  },
157
182
  {
158
183
  "path": "Editor/Infrastructure/UnityCliObjectPatch.cs",
@@ -161,23 +186,23 @@
161
186
  },
162
187
  {
163
188
  "path": "Editor/Infrastructure/UnityCliObjectRef.cs",
164
- "size": 13546,
165
- "sha256": "27a0ed578f171ffa90741d45a1d1c67ec38662f2366bf9267bff7ccbca346a5e"
189
+ "size": 22373,
190
+ "sha256": "dfabd7762b903f207276b7ddb94a6164cb1d1a98e32badf5f28aac7c30b48271"
166
191
  },
167
192
  {
168
193
  "path": "Editor/Infrastructure/UnityCliObjectSerializer.cs",
169
- "size": 29127,
170
- "sha256": "317f501196adffa1a5dea58f0cbafae83eb24a9e88f23c60c86b93e949cb0709"
194
+ "size": 43083,
195
+ "sha256": "73a3ba1cf2a5ed6f9eba1912b47a577daeeeed42bab803b82ef67efee2e10757"
171
196
  },
172
197
  {
173
198
  "path": "Editor/Infrastructure/UnityCliOcclusionBakeCoordinator.cs",
174
- "size": 117081,
175
- "sha256": "34c4fa742ceacbe2c348ed28895fcb9e1ce708308f8f6590090d6818429e9f32"
199
+ "size": 117270,
200
+ "sha256": "3e800a3432dcc6a6fce76fcbf60ba5f94d97ef25c41ef8d9521986386cb14db0"
176
201
  },
177
202
  {
178
203
  "path": "Editor/Infrastructure/UnityCliOperationCoordinator.cs",
179
- "size": 54927,
180
- "sha256": "896c902767605b3b90f02cf582f61e1fd202822986e1e600a33f96c566e861e4"
204
+ "size": 73906,
205
+ "sha256": "f489dd4f86ef86eeb3e91a4ffb4465580849ec69d003d0e1a9952c8c4e073505"
181
206
  },
182
207
  {
183
208
  "path": "Editor/Infrastructure/UnityCliPackageEmbedCoordinator.cs",
@@ -186,13 +211,13 @@
186
211
  },
187
212
  {
188
213
  "path": "Editor/Infrastructure/UnityCliPackageResolveCoordinator.cs",
189
- "size": 32194,
190
- "sha256": "530f33ea5065fea8e8ea1ba34d0456fad31462a92ac800c2585ec20d75c30327"
214
+ "size": 40228,
215
+ "sha256": "df182f96ba25232f41561c95d5b4f5b9785340274601121477d0691727d3ba0a"
191
216
  },
192
217
  {
193
218
  "path": "Editor/Infrastructure/UnityCliPackageResolveState.cs",
194
- "size": 48449,
195
- "sha256": "0a06a4ae1f99d5ee23aa484333eeb29e3e455a815eaac47ecf3b3b31a93f37e3"
219
+ "size": 49908,
220
+ "sha256": "990615e957c23fb2fbbef45d9f86a1b4a7f413b0b2604a1e0952a435cc97deb4"
196
221
  },
197
222
  {
198
223
  "path": "Editor/Infrastructure/UnityCliPipelineHandoff.cs",
@@ -209,15 +234,20 @@
209
234
  "size": 5968,
210
235
  "sha256": "5f22b18dace00766368a78305f8f769b9d94bff4ddec0255cecc2aa5da07c84d"
211
236
  },
237
+ {
238
+ "path": "Editor/Infrastructure/UnityCliReadGeneration.cs",
239
+ "size": 4375,
240
+ "sha256": "20ddb1212c7803e33fd44588a8ec64638ad0fd378c3586a3bfeb5c2c0b488bc3"
241
+ },
212
242
  {
213
243
  "path": "Editor/Infrastructure/UnityCliReflection.cs",
214
- "size": 28169,
215
- "sha256": "a43a0d0bedcfda92c1a69f6c42698f1cbb7158e8c3f2cc583e0f3f13a5c4bfe0"
244
+ "size": 61681,
245
+ "sha256": "d18bc7b6eb4cfa203028f53fca9e337d773e61f34d1aa7a1d516aa05de47f8ed"
216
246
  },
217
247
  {
218
248
  "path": "Editor/Infrastructure/UnityCliReloadOperation.cs",
219
- "size": 45950,
220
- "sha256": "e58f14fe0d66097d7ef2936025a1257044ac053f501e5c88a2a079ca6a345f5d"
249
+ "size": 51916,
250
+ "sha256": "901bb68701e5c5349ee8636831f3dead84b14932868be9acf9855818933ba461"
221
251
  },
222
252
  {
223
253
  "path": "Editor/Infrastructure/UnityCliRequestDigest.cs",
@@ -231,8 +261,8 @@
231
261
  },
232
262
  {
233
263
  "path": "Editor/Infrastructure/UnityCliRuntimeExecutor.cs",
234
- "size": 22057,
235
- "sha256": "eacfa3441536e60b8dd5c63cc0ccb3e199e8a42f5f51e4bb55d5985f4de9c8ae"
264
+ "size": 18167,
265
+ "sha256": "8188800312588e6e5fa63afe36827ce6b39dda148b75977bfbc6cb423f2ddf38"
236
266
  },
237
267
  {
238
268
  "path": "Editor/Infrastructure/UnityCliSceneMutation.cs",
@@ -246,13 +276,13 @@
246
276
  },
247
277
  {
248
278
  "path": "Editor/Infrastructure/UnityCliSerializer.cs",
249
- "size": 30125,
250
- "sha256": "f46a825967755518af3ee31750218830236831c64bd7f73726b67441c4201c96"
279
+ "size": 41728,
280
+ "sha256": "7c523454bd37dfe15c83fc30da316ee8153bbf56f0ff360675eb234a8a8ba2a8"
251
281
  },
252
282
  {
253
283
  "path": "Editor/Infrastructure/UnityCliSessionMutationLease.cs",
254
- "size": 31172,
255
- "sha256": "4798f81a067f316b6512dd816ce9adcab0942ec6726c929ea2b83dfb51cad0b8"
284
+ "size": 33943,
285
+ "sha256": "7d1057db82a7570828c72c9bb929bba008b863c9b361001d358ee3f1bd975bc3"
256
286
  },
257
287
  {
258
288
  "path": "Editor/Infrastructure/UnityCliStateIO.cs",
@@ -261,8 +291,8 @@
261
291
  },
262
292
  {
263
293
  "path": "Editor/Infrastructure/UnityCliTestRunCoordinator.cs",
264
- "size": 59487,
265
- "sha256": "666040d0420cfd80401d89694951b332cc77e5face5c54abe6e1040d8cb041a3"
294
+ "size": 87526,
295
+ "sha256": "d3cff12348622516e7d9ee7dd0d9af0ce2be6738ca5ea12a4476470b87e62803"
266
296
  },
267
297
  {
268
298
  "path": "Editor/Infrastructure/UnityCliTransactionLog.cs",
@@ -276,43 +306,53 @@
276
306
  },
277
307
  {
278
308
  "path": "Editor/Infrastructure/UnityCliWaiter.cs",
279
- "size": 29372,
280
- "sha256": "4297ad9909f6c07f681d8ff08a2f0e9e7f8c9dc9aef88f615faf2892838d562a"
309
+ "size": 32647,
310
+ "sha256": "9bba649f10df111c0479dfb5979c7ba0c14c82d6de4e7802826027c152f63fff"
281
311
  },
282
312
  {
283
313
  "path": "Editor/ProjectTools/IUnityCliTool.cs",
284
- "size": 6549,
285
- "sha256": "f3901af50ae57fd67aee8d9c0d359cc03d829eb5cdcd022697833b9676fa1d11"
314
+ "size": 6945,
315
+ "sha256": "927b646023325f3283ecb7866950d62498b7bf4d0541ffb5aa637440b97afa3a"
286
316
  },
287
317
  {
288
318
  "path": "Editor/ProjectTools/OfficialAttributeToolRegistry.cs",
289
- "size": 56212,
290
- "sha256": "f10556c85801e86cb474c594958514c4e759cff5228768d43f87f3f4a9f5794f"
319
+ "size": 55915,
320
+ "sha256": "a0c9eebce5b796126d766519ecde8b6aebff2e591e1f5d5e7bf9a2e6e0ecc125"
291
321
  },
292
322
  {
293
323
  "path": "Editor/ProjectTools/ProjectToolRegistry.cs",
294
- "size": 55353,
295
- "sha256": "bebf287c01f4dea68d2280930be368b64057b63309dec354c78d55e4aef1bc3a"
324
+ "size": 68352,
325
+ "sha256": "983ed5fb2b8239068c26d6c14093fe05a1eaf4c617426044082232af9592aba7"
296
326
  },
297
327
  {
298
328
  "path": "Editor/ProjectTools/ProjectToolSchemaValidator.cs",
299
- "size": 12686,
300
- "sha256": "a6b869393ed37428c0e920be42980866325c109d7778a2aca85dcb7b6ebe3f6d"
329
+ "size": 14789,
330
+ "sha256": "f4b6bcd4134c07257574951528ea11dcd61ec9fa2ffff570a9dbd5536a981d78"
301
331
  },
302
332
  {
303
333
  "path": "Editor/ProjectTools/RegisteredTool.cs",
304
- "size": 3041,
305
- "sha256": "00245e601e342d27d2c9cdf1a2697f25d6241b014ddac34c64af697bb1f2fe23"
334
+ "size": 28944,
335
+ "sha256": "1271714693974811350ce878b7cda02d99f603a4b0f6b0359d87cf55dc47949d"
306
336
  },
307
337
  {
308
338
  "path": "Editor/ProjectTools/UnityCliProjectToolContext.cs",
309
- "size": 3120,
310
- "sha256": "0219678ebd96193a7c998844dbe69d841d5ce52d1acd95e0025c370c5e135892"
339
+ "size": 4194,
340
+ "sha256": "a3ba0dc34c20dcd26fbf2a46386d7656975dac0db0a96041dc5df53eec1fd5dd"
311
341
  },
312
342
  {
313
343
  "path": "Editor/ProjectTools/UnityCliSchemaDeriver.cs",
314
- "size": 14507,
315
- "sha256": "c90d89c45479b44aeeb36a6b98e5842d69986520ec971b4e6b9e6c88e8252f8b"
344
+ "size": 16687,
345
+ "sha256": "c87de2b464b4064744d1cbfc0626bd9e715562a1065062a6a365607d0f705974"
346
+ },
347
+ {
348
+ "path": "Editor/ProjectTools/UnityCliToolName.cs",
349
+ "size": 1691,
350
+ "sha256": "a96eeaf160b0524a407cf7387d0222f0c6d9550bfd13b473c7874c0dd497929c"
351
+ },
352
+ {
353
+ "path": "Editor/Properties/AssemblyInfo.cs",
354
+ "size": 96,
355
+ "sha256": "8a7b5c2641b88032798edaf61abd1ca1e8323b61ace0b53a72882690f68a30cf"
316
356
  },
317
357
  {
318
358
  "path": "Editor/Protocol/ProtocolEnvelopeFactory.cs",
@@ -426,8 +466,8 @@
426
466
  },
427
467
  {
428
468
  "path": "Editor/Tools/asset/get-data.cs",
429
- "size": 3617,
430
- "sha256": "99e663ddf28b95696815cc51a9303bcd3c0e286254343a296a27ac242a52e162"
469
+ "size": 4600,
470
+ "sha256": "2dde1b77fc9a0ba83e49807a7b9e7898725a8426b49accaaaebfc0a1985ce3d7"
431
471
  },
432
472
  {
433
473
  "path": "Editor/Tools/asset/import-settings.cs",
@@ -481,8 +521,8 @@
481
521
  },
482
522
  {
483
523
  "path": "Editor/Tools/build/BuildSceneStateTool.cs",
484
- "size": 1885,
485
- "sha256": "c3fc6ab02a3041a194e5bf46b8ff2fa719d6ae85febbc8289f015c9d28fba61c"
524
+ "size": 2923,
525
+ "sha256": "a8743baabd8fc40b2c6da3f8e95d68449b9e2a9614c53478ecaf0ce6ec0afad2"
486
526
  },
487
527
  {
488
528
  "path": "Editor/Tools/build/BuildSettingsToolSupport.cs",
@@ -491,8 +531,8 @@
491
531
  },
492
532
  {
493
533
  "path": "Editor/Tools/build/BuildToolDtos.cs",
494
- "size": 1869,
495
- "sha256": "fb6331db69f936b01cef2c4d6fd996eb564315b1afcfbd82ad3482e7e9578b3a"
534
+ "size": 2131,
535
+ "sha256": "45ddd3d1f2233b3fc4d40dca21fd7472ea1e3f455cb3f8931a98591cada871ce"
496
536
  },
497
537
  {
498
538
  "path": "Editor/Tools/build/BuildToolSupport.cs",
@@ -531,28 +571,28 @@
531
571
  },
532
572
  {
533
573
  "path": "Editor/Tools/build/scene/add.cs",
534
- "size": 3427,
535
- "sha256": "985ba73ae85265024d80f511da8c79317ca96ca31b27837b5c6036b92dbbf4c8"
574
+ "size": 3965,
575
+ "sha256": "a0f1ff66b37eb19485b2afdd5d92685bed2736966d8c5440972c5330730d547f"
536
576
  },
537
577
  {
538
578
  "path": "Editor/Tools/build/scene/disable.cs",
539
- "size": 1196,
540
- "sha256": "2361be6fa99f49550b8d252574cdafc31cf6de30ae7f685cf30a3061fbfd594d"
579
+ "size": 1264,
580
+ "sha256": "7099f05dd20f8b60de2f431809aee8051d5eeb00c4a776aa801cbdc5a358cbe2"
541
581
  },
542
582
  {
543
583
  "path": "Editor/Tools/build/scene/enable.cs",
544
- "size": 1226,
545
- "sha256": "cdc5b4dd22590bfac1f5eec7e0ee1286c018082856117a034808b76d25f5b702"
584
+ "size": 1294,
585
+ "sha256": "ec3f5f8ad1d828663425e4c5218f646723c8555fbb059a643695f671eef6db27"
546
586
  },
547
587
  {
548
588
  "path": "Editor/Tools/build/scene/list.cs",
549
- "size": 1286,
550
- "sha256": "a538858b7576f0194dbead06358a76e8dd7516a2a7d6cc2ad99c320d1fb61671"
589
+ "size": 1362,
590
+ "sha256": "6677cffa9ed7ec048ca46518506aaff9fd9f4361560a96b7b192aa914ff2bd16"
551
591
  },
552
592
  {
553
593
  "path": "Editor/Tools/build/scene/remove.cs",
554
- "size": 2199,
555
- "sha256": "a2e6b32315160b5612b7ff1c1485cb88f61e9a4d0392c584bd604dab0caaa349"
594
+ "size": 2933,
595
+ "sha256": "7b7ef1f632279a3243beb9243d634c8d6d088523381c875308518481d79db762"
556
596
  },
557
597
  {
558
598
  "path": "Editor/Tools/build/settings/get.cs",
@@ -566,8 +606,8 @@
566
606
  },
567
607
  {
568
608
  "path": "Editor/Tools/camera/CameraToolSupport.cs",
569
- "size": 14931,
570
- "sha256": "7981c22420f4fc94e9af81e36f6f6385d7a7fc196e5836ae14fb0a3450157fe9"
609
+ "size": 14184,
610
+ "sha256": "cf9652f4e975d87b591c8dea8f7b977b85132c27abfa0aefca2caaac3e2a6dd1"
571
611
  },
572
612
  {
573
613
  "path": "Editor/Tools/camera/create.cs",
@@ -591,13 +631,13 @@
591
631
  },
592
632
  {
593
633
  "path": "Editor/Tools/camera/multiview.cs",
594
- "size": 5537,
595
- "sha256": "76957099862b3f9317877586d5ccbb752081a84e63f4a54e99902c577131589e"
634
+ "size": 6500,
635
+ "sha256": "2097842aa9c76b1b26689ca67bb77128a7920429005553722bbd11abfcd5c3a2"
596
636
  },
597
637
  {
598
638
  "path": "Editor/Tools/camera/screenshot.cs",
599
- "size": 3592,
600
- "sha256": "d89adf46df189b0873beeba6d20a17243b4e94a274abed51ab0ccb2843c6f611"
639
+ "size": 4547,
640
+ "sha256": "ff1feeb907a25b47421a3445f466b47e30344f18d3c199f80db81ea390198c3a"
601
641
  },
602
642
  {
603
643
  "path": "Editor/Tools/camera/target.cs",
@@ -611,8 +651,8 @@
611
651
  },
612
652
  {
613
653
  "path": "Editor/Tools/component/get.cs",
614
- "size": 3607,
615
- "sha256": "67876f21945e18a4c574fc80a72b6b563ea665686eb8f932e3cc13643b2dc798"
654
+ "size": 4600,
655
+ "sha256": "3321fd362b717836a888c83dd48f8c163b2a3d1d1ccff87b9076e6eaf5caffbb"
616
656
  },
617
657
  {
618
658
  "path": "Editor/Tools/component/list-types.cs",
@@ -621,8 +661,8 @@
621
661
  },
622
662
  {
623
663
  "path": "Editor/Tools/component/modify.cs",
624
- "size": 6019,
625
- "sha256": "f68432e9cf5cb65a6a2eeadbea22740024e12e362a7b18f4aee56b36df35d9b4"
664
+ "size": 6230,
665
+ "sha256": "b5df909e318c867a035cdc3337f46479854faa15c8e9816fe2525463062ff9e9"
626
666
  },
627
667
  {
628
668
  "path": "Editor/Tools/component/remove.cs",
@@ -636,13 +676,13 @@
636
676
  },
637
677
  {
638
678
  "path": "Editor/Tools/console/clear.cs",
639
- "size": 3056,
640
- "sha256": "7efdbd628a5931267378e99df3b25cd1e08f0e2f939acd175693bc273e50ee03"
679
+ "size": 3546,
680
+ "sha256": "3a60564d20e9673fd2582d2a6749479660fb7bb650f3141c4dbdfb8e0d763419"
641
681
  },
642
682
  {
643
683
  "path": "Editor/Tools/console/get.cs",
644
- "size": 2015,
645
- "sha256": "b9a7649129b8769cda3f64599c118ed385c4ce1235899e66a2b46e764df3b6c8"
684
+ "size": 2926,
685
+ "sha256": "286c75a2f52a103ce42ad07092b08f254afb93c35fa7c1d28555e388afb4fbe0"
646
686
  },
647
687
  {
648
688
  "path": "Editor/Tools/controller/add-blend-tree-child.cs",
@@ -704,11 +744,6 @@
704
744
  "size": 4255,
705
745
  "sha256": "63f8c988b81982e6fa29b6e66f51d91e4902ca08b6dacbc77b6417e231ec6488"
706
746
  },
707
- {
708
- "path": "Editor/Tools/diagnose/preflight.cs",
709
- "size": 14971,
710
- "sha256": "5c3409982019d0c7be54bd3834823896c7111035a41805f0dddda0bb2feb07e6"
711
- },
712
747
  {
713
748
  "path": "Editor/Tools/editor/EditorActionToolSupport.cs",
714
749
  "size": 5930,
@@ -721,8 +756,8 @@
721
756
  },
722
757
  {
723
758
  "path": "Editor/Tools/editor/EditorToolSupport.cs",
724
- "size": 8591,
725
- "sha256": "c97bcc2038d22fa3a4459424893f1be09f13787154932a5ffb66c7d752f360c4"
759
+ "size": 15104,
760
+ "sha256": "da139074c291e0f37f4ad19ddfde77517ff5e4da93a4e6d62acc04c6645ff3b7"
726
761
  },
727
762
  {
728
763
  "path": "Editor/Tools/editor/EditorWindowFocusToolSupport.cs",
@@ -744,11 +779,6 @@
744
779
  "size": 5647,
745
780
  "sha256": "a442d5bc318f7780298848db019590c71066238c40f1ad7d96f4317a147a8171"
746
781
  },
747
- {
748
- "path": "Editor/Tools/editor/console.cs",
749
- "size": 1673,
750
- "sha256": "7a33e6aa60ec0b63fad0818330d2726ee439bf0afe4d7005b0c212a8569b0ec3"
751
- },
752
782
  {
753
783
  "path": "Editor/Tools/editor/focus.cs",
754
784
  "size": 4539,
@@ -756,8 +786,8 @@
756
786
  },
757
787
  {
758
788
  "path": "Editor/Tools/editor/menu-items.cs",
759
- "size": 2284,
760
- "sha256": "668478cd7c5c87e6a41bd560099c53f99954125e5a941f047f271f3f7e568b13"
789
+ "size": 2283,
790
+ "sha256": "7d2aa70d83c0963bb6217594c055b28f0388e8afe87aa4573e7209949c804a77"
761
791
  },
762
792
  {
763
793
  "path": "Editor/Tools/editor/menu.cs",
@@ -771,8 +801,8 @@
771
801
  },
772
802
  {
773
803
  "path": "Editor/Tools/editor/play.cs",
774
- "size": 3136,
775
- "sha256": "b44ba725787b09c7105bf5a70469597cfae1c94fac3f7b056b1d1c57e5acb80f"
804
+ "size": 2666,
805
+ "sha256": "544e1637b7a528fc17bae629cf2eae272ef7f9ad5b507f4a011da9b1338820dc"
776
806
  },
777
807
  {
778
808
  "path": "Editor/Tools/editor/redo.cs",
@@ -791,8 +821,8 @@
791
821
  },
792
822
  {
793
823
  "path": "Editor/Tools/editor/selection.cs",
794
- "size": 9008,
795
- "sha256": "549a7d3fe1f6560f805885825a2d17d50b056d6e274417483b47df3ebfcdd133"
824
+ "size": 9007,
825
+ "sha256": "0160dd48101b11c71781ffdeb46dbd704871e2e86f26a7d1366418310953e8c8"
796
826
  },
797
827
  {
798
828
  "path": "Editor/Tools/editor/selection/set.cs",
@@ -801,8 +831,8 @@
801
831
  },
802
832
  {
803
833
  "path": "Editor/Tools/editor/stop.cs",
804
- "size": 3105,
805
- "sha256": "2f7fbe9243d696ae7dd3d62e49b067670441f1842003a9be16b26664dfdd7042"
834
+ "size": 2635,
835
+ "sha256": "76ab922121d2f4a20fb2cfc306f50607f618287a1407b6a37d533f25e3a324e7"
806
836
  },
807
837
  {
808
838
  "path": "Editor/Tools/editor/tool-states.cs",
@@ -816,18 +846,13 @@
816
846
  },
817
847
  {
818
848
  "path": "Editor/Tools/editor/windows.cs",
819
- "size": 3393,
820
- "sha256": "9f92485c284932e3889badea590eedc8a535ed0bfb0f39fae6e92c63e073dab7"
821
- },
822
- {
823
- "path": "Editor/Tools/extension/status.cs",
824
- "size": 3240,
825
- "sha256": "9ba0fd9cd4a73ddc9a8e08e36d21f13765b278864e98063aaded5ac52839677c"
849
+ "size": 3392,
850
+ "sha256": "51651bc743a4c8ffb27e47a7723f536688313e4642eaa6434cf33791eb11df67"
826
851
  },
827
852
  {
828
853
  "path": "Editor/Tools/go/GameObjectToolSupport.cs",
829
- "size": 26166,
830
- "sha256": "5ee88bce8a26e641b2aa9b5eb11cef69d30115fa78b333274d8036161cdf7a73"
854
+ "size": 29645,
855
+ "sha256": "50a10215e0fbac619b027f8f1254b7b470654ca2aefb18ac88978e0f7719859f"
831
856
  },
832
857
  {
833
858
  "path": "Editor/Tools/go/create.cs",
@@ -837,7 +862,7 @@
837
862
  {
838
863
  "path": "Editor/Tools/go/delete.cs",
839
864
  "size": 4861,
840
- "sha256": "4b2e17e5171c0a85c44a143ac1f11c3a58e5c1da5f6aa1784edc7d9aa2ee4656"
865
+ "sha256": "68a584133eeef4d356134c4e4c5e4e82b549f7b289351d7f235e6c88595c6d7e"
841
866
  },
842
867
  {
843
868
  "path": "Editor/Tools/go/duplicate.cs",
@@ -846,13 +871,8 @@
846
871
  },
847
872
  {
848
873
  "path": "Editor/Tools/go/find.cs",
849
- "size": 8304,
850
- "sha256": "49dd452fc081facafbc5e3c83f4ff3e6fd4c6321bca62f1d4405b668913e351c"
851
- },
852
- {
853
- "path": "Editor/Tools/go/inspect.cs",
854
- "size": 2129,
855
- "sha256": "fa7d6a7ea5fa51ee4672cc18979a1924328a42b2d7967c36601c50d05a3ad283"
874
+ "size": 14518,
875
+ "sha256": "68fc679b211703518c06d035c158bc882774dce46890e8591285fee77c56609e"
856
876
  },
857
877
  {
858
878
  "path": "Editor/Tools/go/look-at.cs",
@@ -876,8 +896,8 @@
876
896
  },
877
897
  {
878
898
  "path": "Editor/Tools/graphics/GraphicsToolSupport.cs",
879
- "size": 19677,
880
- "sha256": "b93980043b3d540a001f8d63b851d7340f1fa87093dcaf49b3eda606832afaf0"
899
+ "size": 20620,
900
+ "sha256": "d8139c57e2ba62e2e2c0be3092f709a5a5eb5f34b5aa4c1e88999b3e70f92214"
881
901
  },
882
902
  {
883
903
  "path": "Editor/Tools/graphics/bake-cancel.cs",
@@ -911,49 +931,34 @@
911
931
  },
912
932
  {
913
933
  "path": "Editor/Tools/graphics/light-probe-group.cs",
914
- "size": 4883,
915
- "sha256": "f7a2ec71e539e03b1ba1d1713c91f62c60a5b6fa2175b2d990ba41ed5d35158a"
934
+ "size": 5521,
935
+ "sha256": "ca09eb7411e3cf3f8afead52163eb76edacfc5df9f0a76e6826ed773e62e909e"
916
936
  },
917
937
  {
918
938
  "path": "Editor/Tools/graphics/pipeline-info.cs",
919
- "size": 1438,
920
- "sha256": "10db701307738c0b3eceee0a028a5e2f908d06376b757f87bb2ca5cd7cc59ba0"
921
- },
922
- {
923
- "path": "Editor/Tools/graphics/pipeline-quality.cs",
924
- "size": 2236,
925
- "sha256": "7fb8766dcbbb0337be0228622000184b8f78f0d1f8465a9364fe0fb97cf4df16"
939
+ "size": 1596,
940
+ "sha256": "100bda1ddebdf6f4b73cfd4988ade578135244bafc6b78f5e0bb55727748fab3"
926
941
  },
927
942
  {
928
943
  "path": "Editor/Tools/graphics/pipeline-settings.cs",
929
- "size": 3864,
930
- "sha256": "d9f3975b227df7e22eaabee1e81684f41b3697e7b525b9aee104ec5ab643166d"
931
- },
932
- {
933
- "path": "Editor/Tools/graphics/probe-positions.cs",
934
- "size": 5463,
935
- "sha256": "1247496ef36e70373e1a4049b230414ddc7913170d23218e6444ff6a9c70e4d1"
944
+ "size": 4158,
945
+ "sha256": "1cda3ed2e5c833f1186fce243732f6a135c00fa01b4403b6802747cd080bdf12"
936
946
  },
937
947
  {
938
948
  "path": "Editor/Tools/graphics/quality.cs",
939
- "size": 9952,
940
- "sha256": "eff786392412bd9f458c45dc3bdea29e50ce6212929b6c97b1a864347075313b"
949
+ "size": 10137,
950
+ "sha256": "fbb357167b51876bfe655e81bb58f2c9e6ebd338fa37c5bfcb0636706a463d8b"
941
951
  },
942
952
  {
943
953
  "path": "Editor/Tools/graphics/reflection-probe.cs",
944
- "size": 7740,
945
- "sha256": "ae47b0e7b08ce16298376397facbdb1c51ab1f672a142f66bbfe3efde7aebb83"
954
+ "size": 8004,
955
+ "sha256": "69aa84597d2f06db0dc60a12bae621853f4ebd1be704faf54aa92a4eadb098e7"
946
956
  },
947
957
  {
948
958
  "path": "Editor/Tools/graphics/scene-debug.cs",
949
959
  "size": 3270,
950
960
  "sha256": "189bdf14cd6297ee65852f2ec7ea9c4b75868499e14f1b2a0aa2f54d0b9a4071"
951
961
  },
952
- {
953
- "path": "Editor/Tools/graphics/settings.cs",
954
- "size": 13283,
955
- "sha256": "ce082e72903b006b3bd3c40cef6063774d27c52d76dc53205b978fb78aeff604"
956
- },
957
962
  {
958
963
  "path": "Editor/Tools/graphics/skybox-get.cs",
959
964
  "size": 2726,
@@ -989,31 +994,16 @@
989
994
  "size": 2823,
990
995
  "sha256": "0c206073214871ac43d5c5470870f8d3e887a494e0801e007de085e9bd0870aa"
991
996
  },
992
- {
993
- "path": "Editor/Tools/graphics/stats-counters.cs",
994
- "size": 2029,
995
- "sha256": "b1f581d8c6c0af56e94bca565a902f6aff12d7e4fd98adb415c554af87f258ec"
996
- },
997
- {
998
- "path": "Editor/Tools/graphics/stats-memory.cs",
999
- "size": 1672,
1000
- "sha256": "eeb08b268f029afb9285224548efad740a7661312b48a4a360ddc2159b05026f"
1001
- },
1002
997
  {
1003
998
  "path": "Editor/Tools/graphics/stats.cs",
1004
- "size": 1279,
1005
- "sha256": "a089c45b80dd26a168d1911b2b44910073a51cd101212ed09810c1a03f32479c"
999
+ "size": 1404,
1000
+ "sha256": "9d8a76919fa1f160688c8f5c3ee633b590c2d2ea777579727bbdbb2b29bfb0f6"
1006
1001
  },
1007
1002
  {
1008
1003
  "path": "Editor/Tools/graphics/volume.cs",
1009
1004
  "size": 4670,
1010
1005
  "sha256": "04641ee5ea311982ae40f703db777d23ce93ad8ee6bdab87dca61d9bb53ca523"
1011
1006
  },
1012
- {
1013
- "path": "Editor/Tools/instances/list.cs",
1014
- "size": 2791,
1015
- "sha256": "8a8312c6e7c2f5561b77cb83cad5fff76f1fb3dc4962abeffbaddfa735758a77"
1016
- },
1017
1007
  {
1018
1008
  "path": "Editor/Tools/material/MaterialToolSupport.cs",
1019
1009
  "size": 18958,
@@ -1066,18 +1056,18 @@
1066
1056
  },
1067
1057
  {
1068
1058
  "path": "Editor/Tools/object/ObjectToolSupport.cs",
1069
- "size": 4813,
1070
- "sha256": "1bb49d3a595842857d9dca3c08288522dde340b5b3d55130a418f6e0637394db"
1059
+ "size": 4827,
1060
+ "sha256": "917a53e9108976e582bbc628c9034336e853b89ffc6e46786184c4bc9337dcb5"
1071
1061
  },
1072
1062
  {
1073
1063
  "path": "Editor/Tools/object/get-data.cs",
1074
- "size": 3101,
1075
- "sha256": "4885bd02aabee3992cb411f59b4f5f2bedaf889b4d62ad48fe1d5bf27caa0972"
1064
+ "size": 3509,
1065
+ "sha256": "54eb517acd618cc28228f252f0754db0b67ec52e11f29310a3f5992f1ea90fb0"
1076
1066
  },
1077
1067
  {
1078
1068
  "path": "Editor/Tools/object/modify.cs",
1079
- "size": 6653,
1080
- "sha256": "edd98422800004768b031f10cb0d5531aab74875b5bf9c15cedd60c8f1c5e6d9"
1069
+ "size": 6886,
1070
+ "sha256": "f37adc2ce2c4760eb62e1d51786adb25410d105f1616ee85db6d6c889bc64f55"
1081
1071
  },
1082
1072
  {
1083
1073
  "path": "Editor/Tools/occlusion/OcclusionToolSupport.cs",
@@ -1139,15 +1129,10 @@
1139
1129
  "size": 4051,
1140
1130
  "sha256": "fcddb01c7bc2d4e58c3470b4074f51df0249c11d4c44ff5d7892bc0f532fa4bb"
1141
1131
  },
1142
- {
1143
- "path": "Editor/Tools/physics/raycast-all.cs",
1144
- "size": 3324,
1145
- "sha256": "844a3bdd394a61757cde485008d451bf7b5fa5f40b3aded40e51e88ecafda1cf"
1146
- },
1147
1132
  {
1148
1133
  "path": "Editor/Tools/physics/raycast.cs",
1149
- "size": 5425,
1150
- "sha256": "ea63fd49b26b1984ba72bdec6278719243b59d060d8f52c10b62684370695521"
1134
+ "size": 6423,
1135
+ "sha256": "8e9e3eab3e176feef77c0f9dc302f700ab284925ce91224c1a29faebcfd54fef"
1151
1136
  },
1152
1137
  {
1153
1138
  "path": "Editor/Tools/physics/rigidbody.cs",
@@ -1236,8 +1221,8 @@
1236
1221
  },
1237
1222
  {
1238
1223
  "path": "Editor/Tools/prefab/stage.cs",
1239
- "size": 2986,
1240
- "sha256": "0487e61991634cabe40c36b251d1520e73f721379347b033fc1ac60c081509de"
1224
+ "size": 2985,
1225
+ "sha256": "11855c98b732866cd93adff2cd7c163e88fddb7eb19f29d74f3a8d05389e0e9b"
1241
1226
  },
1242
1227
  {
1243
1228
  "path": "Editor/Tools/prefab/unpack.cs",
@@ -1251,18 +1236,18 @@
1251
1236
  },
1252
1237
  {
1253
1238
  "path": "Editor/Tools/profiler/ProfilerFrameDebuggerSupport.cs",
1254
- "size": 3629,
1255
- "sha256": "6548b5e38c84ea398e8dc62418fd2a9f7a5a680ae439ecdd07cd9df1645191b3"
1239
+ "size": 8606,
1240
+ "sha256": "b0f5bec8be995540c4adc6f1328aa1a9c2edcd005b4248fc12fff22cdd9e2e7a"
1256
1241
  },
1257
1242
  {
1258
1243
  "path": "Editor/Tools/profiler/ProfilerMemorySnapshotSupport.cs",
1259
- "size": 756,
1260
- "sha256": "369b81bbed3b57df570ca994cc50c899b67f322db263da07c6c6feaf4b779ef5"
1244
+ "size": 21716,
1245
+ "sha256": "b6969fe3ba70c0f7fc0a99b6ced9cc326c51efc5c390a64360651c580cd1ef84"
1261
1246
  },
1262
1247
  {
1263
1248
  "path": "Editor/Tools/profiler/ProfilerToolSupport.cs",
1264
- "size": 23909,
1265
- "sha256": "a3e9313f1580cb02892798ddbb0603dc9eed10b5a250d0e4e8a15ff83ccc7adf"
1249
+ "size": 25036,
1250
+ "sha256": "57e2ae450edf9b6ead113b9446c8ca1686da71d567fbb98ebb50b8d6a1623db0"
1266
1251
  },
1267
1252
  {
1268
1253
  "path": "Editor/Tools/profiler/areas.cs",
@@ -1301,13 +1286,13 @@
1301
1286
  },
1302
1287
  {
1303
1288
  "path": "Editor/Tools/profiler/frame-debugger/enable.cs",
1304
- "size": 3509,
1305
- "sha256": "9bb156677c289cc769e2796cb01078196b68227e1e705419a5deb4862f6b831b"
1289
+ "size": 3528,
1290
+ "sha256": "c23355be022d68951954c2bcffd90d411002584d1c8d5798123b8a07f9e94234"
1306
1291
  },
1307
1292
  {
1308
1293
  "path": "Editor/Tools/profiler/frame-debugger/events.cs",
1309
- "size": 6671,
1310
- "sha256": "97ce8f452311df1c4a9bccc5bfee3e256da77f8a99e3dcb53ca1ad181b19cf9f"
1294
+ "size": 7567,
1295
+ "sha256": "9938e17f115a8ae29092b36d8d36e19de26a603e46df0d91e3460697ab8a8221"
1311
1296
  },
1312
1297
  {
1313
1298
  "path": "Editor/Tools/profiler/frame.cs",
@@ -1316,8 +1301,8 @@
1316
1301
  },
1317
1302
  {
1318
1303
  "path": "Editor/Tools/profiler/hierarchy.cs",
1319
- "size": 9231,
1320
- "sha256": "94ed00dc768f8ac0e20af8635ed2c012b7246dbe158df2196e55c427d13f4d0f"
1304
+ "size": 21246,
1305
+ "sha256": "492442c5c5c9b0fb5fed876bfd3f7c48a830e6179b0f8bff8f3f363c6d2f7f9d"
1321
1306
  },
1322
1307
  {
1323
1308
  "path": "Editor/Tools/profiler/load.cs",
@@ -1326,18 +1311,18 @@
1326
1311
  },
1327
1312
  {
1328
1313
  "path": "Editor/Tools/profiler/memory-snapshot/compare.cs",
1329
- "size": 3610,
1330
- "sha256": "e6249e94ff50cfbfd4aec82a1955b175e69e0affc3f7e5c884f7a3e0e6f02f48"
1314
+ "size": 4235,
1315
+ "sha256": "7d07398ed33212f9ef27e7b48ba6a91ddfb49c6b3aaee33ef585df26ef142288"
1331
1316
  },
1332
1317
  {
1333
1318
  "path": "Editor/Tools/profiler/memory-snapshot/list.cs",
1334
- "size": 2807,
1335
- "sha256": "e9f7d67af52b2cf1f0be62c54225e3c9d727e41a51af5bdadbe33d011caa2d18"
1319
+ "size": 4468,
1320
+ "sha256": "34d91f8122f46799f380e8e0ff4d429af9cfa15fdca4c51b640f724b75b8c2c4"
1336
1321
  },
1337
1322
  {
1338
1323
  "path": "Editor/Tools/profiler/memory-snapshot/take.cs",
1339
- "size": 6702,
1340
- "sha256": "021ed83e88c018575c5c2c8bfa70790459bd838de642d3c0dad12b15386c65c8"
1324
+ "size": 9103,
1325
+ "sha256": "b85d5bea5c95c625e791b15a9edbb3c1fd8edd2549c856c5894e38e76bc91c88"
1341
1326
  },
1342
1327
  {
1343
1328
  "path": "Editor/Tools/profiler/memory.cs",
@@ -1416,8 +1401,8 @@
1416
1401
  },
1417
1402
  {
1418
1403
  "path": "Editor/Tools/project/info.cs",
1419
- "size": 2136,
1420
- "sha256": "a0128cc2ec2f0bd33d1ee9cdd4e5c05fd7abe0bb4814e61e925c3ebfe4350861"
1404
+ "size": 2135,
1405
+ "sha256": "948671b66b69a3fbc749cec09479ef73cb183424ac806492618b242e3490c26a"
1421
1406
  },
1422
1407
  {
1423
1408
  "path": "Editor/Tools/project/input-settings.cs",
@@ -1441,8 +1426,8 @@
1441
1426
  },
1442
1427
  {
1443
1428
  "path": "Editor/Tools/project/layers.cs",
1444
- "size": 2159,
1445
- "sha256": "2cd50b25b7cff62542226ab348bee61ef9b48c8d43eeedfb6d5aa180a84f6c6e"
1429
+ "size": 2158,
1430
+ "sha256": "724b03e528c2685137986424aab53362ac2fd676d6afe0ebf92c38c9890a08b2"
1446
1431
  },
1447
1432
  {
1448
1433
  "path": "Editor/Tools/project/player-settings.cs",
@@ -1466,8 +1451,8 @@
1466
1451
  },
1467
1452
  {
1468
1453
  "path": "Editor/Tools/project/tags.cs",
1469
- "size": 1656,
1470
- "sha256": "af9951086ed467ad67efb0ffbec8c8af83f242eb477bddb897baf1cf6a1d396d"
1454
+ "size": 1655,
1455
+ "sha256": "39cac574fa659de3cf65025997dee4f7c32820b48f29932b2787020305e97dac"
1471
1456
  },
1472
1457
  {
1473
1458
  "path": "Editor/Tools/project/time-settings.cs",
@@ -1481,18 +1466,18 @@
1481
1466
  },
1482
1467
  {
1483
1468
  "path": "Editor/Tools/reflection/method/call.cs",
1484
- "size": 5684,
1485
- "sha256": "11dc69f1a2e020377d1c188fe6d35271d5fa32b43600b18b6afd51f216e54503"
1469
+ "size": 6043,
1470
+ "sha256": "f997f365b8282cd3f984a1b91df175065a64010df58d0cc6bc8e23851617497f"
1486
1471
  },
1487
1472
  {
1488
1473
  "path": "Editor/Tools/reflection/method/find.cs",
1489
- "size": 3227,
1490
- "sha256": "58bd1b8985630035af53e6d96b69fedda972ba6a86264b61f46b4b3184928d22"
1474
+ "size": 4255,
1475
+ "sha256": "ab0f9b71e9ac04c22c3dccf63a208975e60c903052df7ec6581a157ac5730fef"
1491
1476
  },
1492
1477
  {
1493
1478
  "path": "Editor/Tools/reflection/type/schema.cs",
1494
- "size": 2171,
1495
- "sha256": "efac1692856074fd2d8d6a3d1ec20bf88ec6150231a8a40ab8452898669a63d1"
1479
+ "size": 3538,
1480
+ "sha256": "c7afab9a601526dd87b4be0157b1a56bc14febef22c75c043af6bd61085692ca"
1496
1481
  },
1497
1482
  {
1498
1483
  "path": "Editor/Tools/scene/SceneToolSupport.cs",
@@ -1504,45 +1489,35 @@
1504
1489
  "size": 2221,
1505
1490
  "sha256": "ef9963a88324399cefb482148344abfe93a830722a272c32aef82a85ee5ee719"
1506
1491
  },
1507
- {
1508
- "path": "Editor/Tools/scene/build-settings.cs",
1509
- "size": 2591,
1510
- "sha256": "806f5a4c350280b6224f05b97555d0285e73f83ae0d69308b79d279c5d996622"
1511
- },
1512
1492
  {
1513
1493
  "path": "Editor/Tools/scene/create.cs",
1514
1494
  "size": 3667,
1515
1495
  "sha256": "1b30dc7ec0a00dafae396878ef5e1735fabd3fdcaa164159f5c91f11be692e0e"
1516
1496
  },
1517
- {
1518
- "path": "Editor/Tools/scene/data.cs",
1519
- "size": 4871,
1520
- "sha256": "f24e3e3f64190a939affb6445b6c00470b5ea4681d8af5f5ef522a295ad99926"
1521
- },
1522
1497
  {
1523
1498
  "path": "Editor/Tools/scene/gameobject-support.cs",
1524
- "size": 5262,
1525
- "sha256": "2b127a9eeb6aaac1ec85deb32a2fff02b7e9c6eefa3b1e7415245803a1074e8a"
1499
+ "size": 11963,
1500
+ "sha256": "7806d6753c6b38c3f8daabd8170a06ddbf854ff4e533d3e4291df4f37d0cadb4"
1526
1501
  },
1527
1502
  {
1528
1503
  "path": "Editor/Tools/scene/gameobject.cs",
1529
- "size": 5871,
1530
- "sha256": "154ca4aca405a5599eea41cac25c44f9c2e25a893bb95f8831e61998d440ed16"
1504
+ "size": 7758,
1505
+ "sha256": "47ebe0a7961f563d79038b7f8e6d37aa4fe89c1a5c5425a9bc9503556c329b91"
1531
1506
  },
1532
1507
  {
1533
1508
  "path": "Editor/Tools/scene/gameobject/component.cs",
1534
- "size": 4671,
1535
- "sha256": "d3f716c4ccae087379693a5907aa3fcdf9e8038739663fe3abcfae6ad1f38bf8"
1509
+ "size": 5121,
1510
+ "sha256": "e8a35f42861703eccb53a36d209f31af9ebaa5e66b7466bb22d1d2fc163d5589"
1536
1511
  },
1537
1512
  {
1538
1513
  "path": "Editor/Tools/scene/gameobject/components.cs",
1539
- "size": 3618,
1540
- "sha256": "353d1eb6c7857f55f49c37294691f32fdc00fa4934e836d435fe616e6f4dc0ae"
1514
+ "size": 3972,
1515
+ "sha256": "2ae50f1f002776e88b24727e7d9faa0683584a9a1d9b0c82829f82ac4471e40e"
1541
1516
  },
1542
1517
  {
1543
1518
  "path": "Editor/Tools/scene/hierarchy.cs",
1544
- "size": 10914,
1545
- "sha256": "c8a96880efc2c30804df85c706356c5b734b32ef5f2ecf62b86241ce3624457e"
1519
+ "size": 14885,
1520
+ "sha256": "937f78bd6f9bc5e393a452238da8a68db447b5e09a2af838088b46da0d83b61a"
1546
1521
  },
1547
1522
  {
1548
1523
  "path": "Editor/Tools/scene/list-opened.cs",
@@ -1586,48 +1561,48 @@
1586
1561
  },
1587
1562
  {
1588
1563
  "path": "Editor/Tools/screenshot/EditorElementCaptureToolSupport.cs",
1589
- "size": 11360,
1590
- "sha256": "30a6427b52889c148b93a3000c1028ba9e6668d64b9ffb09b9fa56922265e121"
1564
+ "size": 14489,
1565
+ "sha256": "2a77881f499a0d740b741cb932f7b809d5da8ae3fae30a5ca689420d560567a2"
1591
1566
  },
1592
1567
  {
1593
1568
  "path": "Editor/Tools/screenshot/ScreenshotToolSupport.cs",
1594
- "size": 9715,
1595
- "sha256": "ea8ae830459c6b02b91f0cf2f84f5c92607422c7fa1be8115994eedaedab8f53"
1569
+ "size": 22267,
1570
+ "sha256": "109dbe839ccf7fe2c86e183fae5b9d4e11e78e80e813c46d616baeffc68deecd"
1596
1571
  },
1597
1572
  {
1598
1573
  "path": "Editor/Tools/screenshot/editor-element.cs",
1599
- "size": 4264,
1600
- "sha256": "ed0b8cd41193f8b83c7f7a42de0801929f04a9b5b335fff5661751354fceede2"
1574
+ "size": 4561,
1575
+ "sha256": "4662d027027c290be624675a96ccd2644721791496610c8708ee6ae71057384c"
1601
1576
  },
1602
1577
  {
1603
1578
  "path": "Editor/Tools/screenshot/game-view.cs",
1604
- "size": 5470,
1605
- "sha256": "f377c1104be72a24f4ceed4b86fb09f66e6b8787d7e8036d8d5e1e37fce910eb"
1579
+ "size": 7061,
1580
+ "sha256": "ae878548152d9e93e12365be8b8a0f4a65e5d729ab2d9bc5c8093032e14fc8de"
1606
1581
  },
1607
1582
  {
1608
1583
  "path": "Editor/Tools/screenshot/isolated-object.cs",
1609
- "size": 4644,
1610
- "sha256": "c22bb4e6fd48542e027e3b16cc2be57518f052d17e482b889825f9106d4d6931"
1584
+ "size": 5746,
1585
+ "sha256": "0eb1f274092304745a0abb54ac64372467e5cd4d34205e84c93cf613acd47874"
1611
1586
  },
1612
1587
  {
1613
1588
  "path": "Editor/Tools/screenshot/orbit.cs",
1614
- "size": 5192,
1615
- "sha256": "c22ab8ed1e6992aa5404a850e7cd434d701285b9d1856cdab7b9c6bb219ddf0b"
1589
+ "size": 6576,
1590
+ "sha256": "b3e6a634d2ad4e22f498ec013bb627cc4e594e2a2ed7c883391b8320d983f683"
1616
1591
  },
1617
1592
  {
1618
1593
  "path": "Editor/Tools/screenshot/scene-view.cs",
1619
- "size": 4888,
1620
- "sha256": "626382b26bc82359fa9db4b540b0785bd04cbf01a188d4ca0b8585efbfdbd5a3"
1594
+ "size": 5961,
1595
+ "sha256": "143d977a10c38ced0fb2907d138e621bbdf9d3948adc93bcf02551b1cc0ccb64"
1621
1596
  },
1622
1597
  {
1623
1598
  "path": "Editor/Tools/screenshot/screen.cs",
1624
- "size": 4753,
1625
- "sha256": "5837ef1a52ab65908c5bdbe4668a0dbc5555bb6b294da47fd50037081f57a16f"
1599
+ "size": 13031,
1600
+ "sha256": "0c261f028ce758d73adc43dc1ac6e0bc6c845fd0ee5b48a383a571688b73a5e7"
1626
1601
  },
1627
1602
  {
1628
1603
  "path": "Editor/Tools/screenshot/surround.cs",
1629
- "size": 9529,
1630
- "sha256": "14650f6688b130af4f6a0acabaae9ba7eef4ba7041adb40e9867d751da653ffd"
1604
+ "size": 11361,
1605
+ "sha256": "0e44479a4d4c1da51aafad389058362043bc0362b1db18c16ab2c2e73cb8aaad"
1631
1606
  },
1632
1607
  {
1633
1608
  "path": "Editor/Tools/scriptable-object/ScriptableObjectToolSupport.cs",
@@ -1694,11 +1669,6 @@
1694
1669
  "size": 3454,
1695
1670
  "sha256": "cddcb2b201eb6270bc9b63ff85fb7ba17c8b5b069701c93cb697a9702b3e0390"
1696
1671
  },
1697
- {
1698
- "path": "Editor/Tools/tests/list.cs",
1699
- "size": 4131,
1700
- "sha256": "693fe7acdf13f3ee1908e605c8db86c8f28f16c33058347fdd0cba6737086849"
1701
- },
1702
1672
  {
1703
1673
  "path": "Editor/Tools/texture/TextureToolSupport.cs",
1704
1674
  "size": 17131,
@@ -1861,8 +1831,8 @@
1861
1831
  },
1862
1832
  {
1863
1833
  "path": "Editor/Tools/ui/render-preview.cs",
1864
- "size": 6173,
1865
- "sha256": "20603bed85271de121c8638ba5e735503e877a3949912d1bc1a333a9509247cd"
1834
+ "size": 6652,
1835
+ "sha256": "dbc9c2d3d9899b79d92f1caf5ad0db1df6020f2bad95f16110113b048708d7da"
1866
1836
  },
1867
1837
  {
1868
1838
  "path": "Editor/Tools/ui/text/create.cs",
@@ -1876,8 +1846,8 @@
1876
1846
  },
1877
1847
  {
1878
1848
  "path": "Editor/UnityCliBridge.cs",
1879
- "size": 25879,
1880
- "sha256": "955b240a093672fa2fc8f382c691422f814fa239a3e5ddd84551870976981705"
1849
+ "size": 29285,
1850
+ "sha256": "3d0c0919267070c6d0f1c5612111889e18fe64eefa65ee0792a2c7ac89f780c6"
1881
1851
  },
1882
1852
  {
1883
1853
  "path": "Editor/UnityCliBridgeBuildInfo.cs",
@@ -1886,8 +1856,8 @@
1886
1856
  },
1887
1857
  {
1888
1858
  "path": "Runtime/Infrastructure/UnityCliRuntimeBridge.cs",
1889
- "size": 45282,
1890
- "sha256": "1394b3c6102c076f01aba824d1f44cce3de7f75bc01c0b78796db4e6f2709473"
1859
+ "size": 79525,
1860
+ "sha256": "73bcef38d66d1c9e9351fd97835d4881570baa69c499e15783b076b66e10eae6"
1891
1861
  },
1892
1862
  {
1893
1863
  "path": "Runtime/Infrastructure/UnityCliRuntimeJson.cs",
@@ -1899,6 +1869,11 @@
1899
1869
  "size": 18518,
1900
1870
  "sha256": "9e08ba71cf42d0ad6bd77bd26a7ac04a6360abda3a26f8b232a4e93e155c445e"
1901
1871
  },
1872
+ {
1873
+ "path": "Runtime/Properties/AssemblyInfo.cs",
1874
+ "size": 120,
1875
+ "sha256": "c92975ae24685fc2ee2a84e4f44d3e8637a8e6c7a1acc0ddf33e69a1cc641fba"
1876
+ },
1902
1877
  {
1903
1878
  "path": "Runtime/Tools/UnityCliRuntimeTools.cs",
1904
1879
  "size": 45541,
@@ -1906,8 +1881,13 @@
1906
1881
  },
1907
1882
  {
1908
1883
  "path": "Runtime/UnityCli.Runtime.asmdef",
1909
- "size": 395,
1910
- "sha256": "34f111872ae236bb7d89c6e6d61dc71ca009db1084f0d00cc160f380dfbd788d"
1884
+ "size": 405,
1885
+ "sha256": "79d716e52d6d785c0ebd361a03f8d13e98e97f15e2d77d68bf730fb3a41d38d1"
1886
+ },
1887
+ {
1888
+ "path": "Shared/AssemblyInfo.cs",
1889
+ "size": 146,
1890
+ "sha256": "ba124036df8d26cd59ea1113e879b0e94380fd8675bb7b1ed81003e5b54f3a53"
1911
1891
  },
1912
1892
  {
1913
1893
  "path": "Shared/UnityCli.Shared.asmdef",
@@ -1916,18 +1896,88 @@
1916
1896
  },
1917
1897
  {
1918
1898
  "path": "Shared/UnityCliAdmissionPool.cs",
1919
- "size": 25223,
1920
- "sha256": "64301aeaefd22c4a3c297d73e934fa8e2dc7d769d04a496ce1218f0180ec4806"
1899
+ "size": 38017,
1900
+ "sha256": "bb796ef8986de84dcb0f39223ac02febf1a6720f1e5ca11bf09e4ea70fe20abb"
1901
+ },
1902
+ {
1903
+ "path": "Shared/UnityCliBridgeQueuePolicy.cs",
1904
+ "size": 19905,
1905
+ "sha256": "0510042ca344c104f1d1db049f3fbfab3146cc4c24ef36d8eb7d748862a6c608"
1906
+ },
1907
+ {
1908
+ "path": "Shared/UnityCliBridgeWorkItemState.cs",
1909
+ "size": 1379,
1910
+ "sha256": "e7c4031ecbd01d329100f01d373424a93bf29af4e66b2353a9510039daa7d70a"
1911
+ },
1912
+ {
1913
+ "path": "Shared/UnityCliExceptionProjection.cs",
1914
+ "size": 6651,
1915
+ "sha256": "ecb13028b50d3c6738e69e8d643a2ace28671dc5d502c4befdba81cbd17cb224"
1916
+ },
1917
+ {
1918
+ "path": "Shared/UnityCliQueuePublication.cs",
1919
+ "size": 1036,
1920
+ "sha256": "4a19cbd75c688ca2ec05fca38ee52027200602a76b7d6e33682af84df70bf31e"
1921
+ },
1922
+ {
1923
+ "path": "Shared/UnityCliRequestBudget.cs",
1924
+ "size": 18237,
1925
+ "sha256": "cb06831f19d30ad995fb8a3f990d306197dce0ce941142803cc44df3d82ce1d4"
1926
+ },
1927
+ {
1928
+ "path": "Shared/UnityCliRuntimeRequestPublication.cs",
1929
+ "size": 5159,
1930
+ "sha256": "e83546e6b1f6519a7941d0bcc60b4f24f968ccf7cde15e997d25ff76ea001eb0"
1921
1931
  },
1922
1932
  {
1923
1933
  "path": "Tests/Editor/UnityCli.Editor.Tests.asmdef",
1924
- "size": 419,
1925
- "sha256": "49a352a88720abc0fbab5bfa8be83e3a782dd3812d642d107ad3cd4b38065a23"
1934
+ "size": 459,
1935
+ "sha256": "2823aed945c3fe84c96fb1c6f7922708ff6cf6a04bfff6a8d6bd819267bb63af"
1936
+ },
1937
+ {
1938
+ "path": "Tests/Editor/UnityCliAdmissionCoordinatorIntegrationTests.cs",
1939
+ "size": 84710,
1940
+ "sha256": "7681f502586afe4c056b7c9e58ccbd5766e297b61f4b215c30c3e2ff81b1e320"
1926
1941
  },
1927
1942
  {
1928
1943
  "path": "Tests/Editor/UnityCliAdmissionPoolTests.cs",
1929
- "size": 17577,
1930
- "sha256": "028160d5b0c44cab23f2e283695d08791ae70fee32882ff30a51520ea8fffd4f"
1944
+ "size": 29396,
1945
+ "sha256": "52189909820d7e23d54d342ff9f089c75569eaade171114692dad486f9976505"
1946
+ },
1947
+ {
1948
+ "path": "Tests/Editor/UnityCliAdmissionRepairStateTests.cs",
1949
+ "size": 4485,
1950
+ "sha256": "bc9b5dcbc022f4a2986af8e430fbdedc14f15e8ddeca99a8a1674ef2ae0ab591"
1951
+ },
1952
+ {
1953
+ "path": "Tests/Editor/UnityCliBridgeAdmissionIntegrationTests.cs",
1954
+ "size": 69723,
1955
+ "sha256": "89423edce01dd0d32f204c4089e873bfdc13023f121b43f024b777bd84f390ac"
1956
+ },
1957
+ {
1958
+ "path": "Tests/Editor/UnityCliBridgeQueuePolicyTests.cs",
1959
+ "size": 23107,
1960
+ "sha256": "21d51492a520752b7a2a27689a270d3614c21cd5415bec56bde26459ee75d4ce"
1961
+ },
1962
+ {
1963
+ "path": "Tests/Editor/UnityCliContinuationIntegrationTests.cs",
1964
+ "size": 14594,
1965
+ "sha256": "36498d02757fc6307b4000d32fcb299ad93071d2dbf93bf0a84e910df0048877"
1966
+ },
1967
+ {
1968
+ "path": "Tests/Editor/UnityCliDiagnosticBoundaryTests.cs",
1969
+ "size": 7539,
1970
+ "sha256": "c1972c53bd12de189d7ce0062edb1e5df64cf99600083ea11993f49d764494b1"
1971
+ },
1972
+ {
1973
+ "path": "Tests/Editor/UnityCliDurableStatusTests.cs",
1974
+ "size": 3694,
1975
+ "sha256": "ad53d3840efbaeb1f990c3968e676d4845653ee71acb48aa140295e7c3d4e292"
1976
+ },
1977
+ {
1978
+ "path": "Tests/Editor/UnityCliExceptionProjectionTests.cs",
1979
+ "size": 3972,
1980
+ "sha256": "354d7e26160cfb7750f165c288bd90506b6f18cec334bac32913519ec2f61732"
1931
1981
  },
1932
1982
  {
1933
1983
  "path": "Tests/Editor/UnityCliInstanceCleanupTests.cs",
@@ -1936,8 +1986,38 @@
1936
1986
  },
1937
1987
  {
1938
1988
  "path": "Tests/Editor/UnityCliInstancePublicationRetryTests.cs",
1939
- "size": 6353,
1940
- "sha256": "533f8e19841e3913d0ec6946068c71d8b0706df5fa9c8e2e4ce89902221ac416"
1989
+ "size": 10209,
1990
+ "sha256": "6a6e76c11f833d08b74c300a2a5193a72efe5a863530e47426d20bb92e5a01ba"
1991
+ },
1992
+ {
1993
+ "path": "Tests/Editor/UnityCliMemoryReflectionIntegrationTests.cs",
1994
+ "size": 21399,
1995
+ "sha256": "c7b0e378f50d486425f866c55bdf87a6400cb95f0e50e0442f78d36b76c713af"
1996
+ },
1997
+ {
1998
+ "path": "Tests/Editor/UnityCliRequestBudgetTests.cs",
1999
+ "size": 33085,
2000
+ "sha256": "5850a4acc2c9828ac205c01a43d6c0cd56b932868cfaecc624c2365c72961d8d"
2001
+ },
2002
+ {
2003
+ "path": "Tests/Editor/UnityCliRuntimeBridgeIntegrationTests.cs",
2004
+ "size": 27783,
2005
+ "sha256": "d07b825f1df7bf7751ce617bb2bc1a4c0dd8c91dcf3808eda834179a0a2e6895"
2006
+ },
2007
+ {
2008
+ "path": "Tests/Editor/UnityCliToolCatalogTests.cs",
2009
+ "size": 32468,
2010
+ "sha256": "abe2e886ca4591390ee39c4b8fe0c9d5b4a923a8a78b5891969ff39765e773a3"
2011
+ },
2012
+ {
2013
+ "path": "Tests/Runtime/UnityCli.Runtime.Tests.asmdef",
2014
+ "size": 475,
2015
+ "sha256": "3a57f002a94cdae8bbbf283edc6e9df42cd93cd8d1df9c2fa48ec42a7bbd355c"
2016
+ },
2017
+ {
2018
+ "path": "Tests/Runtime/UnityCliRuntimeCatalogValidationTests.cs",
2019
+ "size": 1266,
2020
+ "sha256": "0669270439e8b1f365cba40cb9cb72e9664659c6974edaa4ce89b7b5195cce7f"
1941
2021
  },
1942
2022
  {
1943
2023
  "path": "UnityCli.Editor.asmdef",
@@ -1947,7 +2027,7 @@
1947
2027
  {
1948
2028
  "path": "package.json",
1949
2029
  "size": 268,
1950
- "sha256": "35d9fba8bf248922183ec5dd3f70d4fafb66ef3ffab59f9adf4ccc549ed2f9fd"
2030
+ "sha256": "e16daaeaa4557c4fbe9ca1aa4c19b9cef92b94c34fe1988a504930f225e0b699"
1951
2031
  }
1952
2032
  ]
1953
2033
  }