fix(host,client): review round 24 — close-edge facts synced; wire-hop pointer; platform-flavored double join; loading reset

This commit is contained in:
creatixchu
2026-07-30 03:38:43 +08:00
parent df313b7531
commit 53e85101b9
5 changed files with 26 additions and 18 deletions

View File

@@ -48,10 +48,10 @@ export interface IWorkspaces {
* Create one child directory through the Host's `browse` capability.
* @param path - absolute existing parent directory.
* @param name - single non-blank path segment.
* @returns the created directory's absolute path, in the shape
* `DirectoryPickerBrowseCapability.createDirectory` contracts: verbatim
* equal to the child's `entries[].path` in the parent's next listing
* (the browser anchors a create landing's selection on that equality).
* @returns the created directory's absolute path, in the shape the wire
* `HostApi.createDirectory` contracts: verbatim equal to the child's
* `entries[].path` in the parent's next listing (the browser anchors a
* create landing's selection on that equality).
*/
createDirectory(path: string, name: string): Promise<string>
/**