Skip to content

Host

Typed wrappers for built-in request editor commands and library APIs.

Requires the ui permission. Use hc.host.openRequestDraft, hc.host.applyRequestDraft, hc.host.loadRequest, hc.host.send, hc.host.fetch, hc.host.createCollection, library read/write helpers (listLibraryTree, createFolder, createRequest, …), hc.host.onLibraryChanged, and hc.host.openImageView instead of hc.commands.execute('harborclient:…').

Request creation and update choices

Pick the host API based on the user-facing result you want:

GoalAPIResult
Create a new editable request tabhc.host.openRequestDraftOpens an unsaved tab seeded with the supplied request fields
Update the active request tab in placehc.host.applyRequestDraftReplaces supplied fields on the active draft and marks the tab dirty
Open an existing saved request by database idhc.host.loadRequestFocuses an already-open tab or loads the saved request from a collection
Bulk-create saved requests in a new collectionhc.host.createCollectionPersists a collection, optional folders, and saved requests
Mutate library tree entitieshc.host.createFolder / …Create/rename/delete/reorder/move/archive collections, folders, requests
List collections / build a custom treehc.host.listLibraryTreeReturns summaries for collections, folders, requests, and documents
React when the library changeshc.host.onLibraryChangedCoarse invalidation so plugins refetch without polling
Open an image in a dedicated viewer tabhc.host.openImageViewOpens or focuses an image-view tab (restored on restart) for a path, URL, or bytes

Use openRequestDraft for history/recent-request style workflows where the plugin should not disturb the current tab. Use applyRequestDraft when the user is intentionally transforming the active request, such as a cURL/import preview tab with an Update button. Use createCollection for importers that create saved requests rather than editing the current tab. Use openImageView for screenshots, logos, generated charts, or import previews that belong in a dedicated image tab.

Library read APIs

Custom collections sidebars need to discover collection ids and subscribe to changes. These APIs require the ui permission and return serializable summaries (ids, names, parent ids, method, sort order, marker) — not full request bodies or document markdown.

MethodReturns
hc.host.listCollections(options?)CollectionSummary[]
hc.host.listFolders(collectionId)FolderSummary[]
hc.host.listRequests(collectionId)SavedRequestSummary[]
hc.host.listDocuments(collectionId)DocumentSummary[]
hc.host.listLibraryTree(options?)LibraryTreeSnapshot (collections + nested contents + warnings)
hc.host.onLibraryChanged(listener)Disposable

options.includeArchived defaults to false (active collections only), matching the built-in Collections tree.

Related existing helpers:

  • hc.host.listCollectionRequests(collectionId, folderId?) — full saved-request rows in sidebar run order (includes body/auth). Prefer listRequests / listLibraryTree for tree UI.
  • hc.host.getCollectionMetadata(collectionId) — full collection settings row when you already know the id.
typescript
async function refreshTree() {
  const tree = await hc.host.listLibraryTree();
  renderSidebar(tree.collections);
}

const stop = hc.host.onLibraryChanged((event) => {
  // event.reason: 'collections' | 'folders' | 'requests' | 'documents'
  // event.collectionId is set for per-collection reasons
  void refreshTree();
});

await refreshTree();

// Later, when the panel deactivates:
stop.dispose();

Granular lists are available when a full tree fetch is too heavy:

typescript
const collections = await hc.host.listCollections();
const folders = await hc.host.listFolders(collections[0].id);
const requests = await hc.host.listRequests(collections[0].id);
const documents = await hc.host.listDocuments(collections[0].id);

Workflow CRUD

Local workflow registry APIs require the ui permission. Destructive methods are silent — confirm with hc.ui modals before calling deleteWorkflow.

MethodReturns
hc.host.listWorkflows()HostWorkflow[]
hc.host.getWorkflow(workflowId)HostWorkflow | null
hc.host.createWorkflow(input)HostWorkflow
hc.host.updateWorkflow(input)HostWorkflow
hc.host.renameWorkflow(workflowId, name)HostWorkflow
hc.host.deleteWorkflow(workflowId)void
hc.host.onWorkflowsChanged(listener)Disposable

updateWorkflow replaces actions and durationMs only; name/variables are preserved. Use renameWorkflow to change the display name.

typescript
const stop = hc.host.onWorkflowsChanged((event) => {
  // event.reason: 'created' | 'updated' | 'renamed' | 'deleted' | 'refreshed'
  void hc.host.listWorkflows().then(renderWorkflowList);
});

const workflows = await hc.host.listWorkflows();
const created = await hc.host.createWorkflow({
  name: 'Smoke path',
  durationMs: 0,
  actions: []
});
await hc.host.renameWorkflow(created.id, 'Smoke path (renamed)');
stop.dispose();

Replacement sidebars open host editors and modals through typed hc.host methods (all require ui). These wrap the same Redux paths as the built-in tree — they do not show confirmation dialogs.

MethodBehavior
hc.host.loadRequest(requestId)Opens/focuses the request tab and updates sidebar selection
hc.host.loadDocument(documentId)Opens/focuses the markdown tab and updates sidebar selection
hc.host.openCollectionSettings(collectionId)Opens the collection settings page tab
hc.host.openCollectionRunner(collectionId)Opens the collection runner for the whole collection
hc.host.openShareModal(collectionId)Opens the share-collection modal
hc.host.showEntityContextMenu(input)Opens the host-built entity context menu (see below)

loadRequest / loadDocument require the parent collection contents to be cached (call listLibraryTree / expand the collection first), matching loadRequest today.

Plugins that replace the Collections sidebar stay in sync with host “reveal in sidebar” / breadcrumb / tab focus via a serializable SidebarSelection union:

typescript
type SidebarSelection =
  | { kind: 'collection'; collectionId: number }
  | { kind: 'folder'; collectionId: number; folderId: number }
  | {
      kind: 'request';
      collectionId: number;
      folderId: number | null;
      requestId: number;
    }
  | {
      kind: 'document';
      collectionId: number;
      folderId: number | null;
      documentId: number;
    };
MethodReturns / effect
hc.host.getSidebarSelection()SidebarSelection | null
hc.host.setSidebarSelection(selection)Updates host Redux; opens request/document tabs
hc.host.onSidebarSelectionChanged(listener)Disposable — fires on host and plugin-driven changes

Selection is derived from Redux collection/folder highlight plus the active request or document tab (not the built-in tree’s local multi-select set).

typescript
const current = await hc.host.getSidebarSelection();

const stop = hc.host.onSidebarSelectionChanged((selection) => {
  highlightRow(selection);
});

await hc.host.setSidebarSelection({
  kind: 'request',
  collectionId: 1,
  folderId: null,
  requestId: 42
});

When a sidebarPanels or sidebarRailItems contribution is mounted (including replaces: "collections" for panels), HostedSurface pushes:

typescript
interface SidebarPanelViewContext {
  sidebarSelection: SidebarSelection | null;
}

Read it on mount with hc.view.getContext() (same pattern as request-tab surfaces). Live updates use onSidebarSelectionChanged.

sidebarRailItems keep the activity rail visible; sidebarPanels use the horizontal switcher and hide the rail.

Replacement-panel keyboard shortcuts

When a panel with replaces: "collections" is registered:

  • Focus collections sidebar (focus-first-collection) reveals the primary surface and focuses the plugin webview (not a hidden built-in row).
  • Focus sidebar search (focus-sidebar-search) does the same — plugins own internal search UI; the built-in #sidebar-search input is not mounted.
  • Focus environments remains a no-op while the built-in Environments section is hidden by a collections replacement.

Library write APIs

Custom collections sidebars need the same day-to-day mutations as the built-in tree (create, rename, delete, reorder, move, archive) without accessing Redux. These APIs require the ui permission and wrap the host store thunks used by the Collections sidebar.

Destructive methods are silent. Host methods do not show confirmation dialogs or toasts. Plugins must confirm with hc.ui modals (or equivalent) before calling delete*, setCollectionArchived, and similar.

Created entities return summaries (same shapes as the list APIs) so plugins can update UI optimistically and reconcile via onLibraryChanged.

MethodReturns
hc.host.updateCollection({ id, name })CollectionSummary
hc.host.deleteCollection(collectionId)void
hc.host.reorderCollections(orderedIds)void
hc.host.setCollectionArchived({ collectionId, archived })void
hc.host.duplicateCollection(collectionId)CollectionSummary
hc.host.createFolder({ collectionId, name, parentFolderId? })FolderSummary
hc.host.renameFolder({ folderId, collectionId, name })FolderSummary
hc.host.deleteFolder({ folderId, collectionId })void
hc.host.moveFolder({ collectionId, folderId, parentFolderId, sortOrder? })FolderSummary
hc.host.reorderFolders({ collectionId, parentFolderId, orderedFolderIds })void
hc.host.createRequest({ collectionId, folderId?, name?, method?, url? })SavedRequestSummary
hc.host.deleteRequest(requestId)void
hc.host.duplicateRequest(requestId)SavedRequestSummary
hc.host.moveRequest({ collectionId, requestId, folderId, index? })void
hc.host.reorderRequests({ collectionId, folderId, orderedRequestIds })void
hc.host.createDocument({ collectionId, folderId?, name, content? })DocumentSummary
hc.host.renameDocument({ id, collectionId, name })DocumentSummary
hc.host.deleteDocument({ id, collectionId })void
hc.host.moveDocument({ collectionId, documentId, folderId, index? })void
hc.host.reorderDocuments({ collectionId, folderId, orderedDocumentIds })void
hc.host.reorderContainerItems({ collectionId, folderId, items })void

Bulk create remains available as hc.host.createCollection(payload).

Collections

MethodParametersNotes
updateCollectionid: number, name: stringRenames only; other settings are preserved
deleteCollectioncollectionId: numberSilent; moves to trash when supported
reorderCollectionsorderedIds: number[]Full top-level collection order
setCollectionArchivedcollectionId: number, archived: booleanSilent
duplicateCollectioncollectionId: numberPlaces the copy below the original

Folders

MethodParametersNotes
createFoldercollectionId, name, optional parentFolderIdReturns created folder summary
renameFolderfolderId, collectionId, name
deleteFolderfolderId, collectionIdDeletes subtree; silent
moveFoldercollectionId, folderId, parentFolderId, optional sortOrder
reorderFolderscollectionId, parentFolderId, orderedFolderIdsSibling order under one parent

Requests

MethodParametersNotes
createRequestcollectionId, optional folderId / name / method / urlDefaults: Untitled Request, GET, empty URL; opens a tab
deleteRequestrequestIdSilent
duplicateRequestrequestIdOpens the copy in a tab
moveRequestcollectionId, requestId, folderId, optional indexOmitting index appends
reorderRequestscollectionId, folderId, orderedRequestIds

Documents

MethodParametersNotes
createDocumentcollectionId, name, optional folderId / contentDoes not open a tab
renameDocumentid, collectionId, nameBody unchanged
deleteDocumentid, collectionIdSilent
moveDocumentcollectionId, documentId, folderId, optional indexOmitting index appends
reorderDocumentscollectionId, folderId, orderedDocumentIds

Mixed containers

MethodParametersNotes
reorderContainerItemscollectionId, folderId, items: { kind, id }[]Interleaved request + document order; prefer over separate reorder APIs

Reorder / move pattern

Replacement trees commit drag-end or “Move up/down” actions through the host APIs above, then refresh via onLibraryChanged (or an explicit relist). Prefer reorderContainerItems when a folder interleaves requests and documents.

Do not expect the host to ship a DnD library into the plugin webview. Plugins may use SortableSidebarItem / buildReorderMenuGroup from @harborclient/sdk/components (dnd-kit is an SDK dependency) or implement their own pointer DnD and call move* / reorder* on drop.

See the sidebar replacement tree example.

typescript
const { collectionId } = await hc.host.createCollection({
  name: 'Auth API',
  requests: []
});

await hc.host.createFolder({ collectionId, name: 'Auth' });
const folder = await hc.host.createFolder({
  collectionId,
  name: 'Tokens',
  parentFolderId: /* parent id */
});

const request = await hc.host.createRequest({
  collectionId,
  folderId: folder.id,
  name: 'Login',
  method: 'POST'
});

await hc.host.moveRequest({
  collectionId,
  requestId: request.id,
  folderId: null
});
await hc.host.reorderRequests({
  collectionId,
  folderId: null,
  orderedRequestIds: [request.id]
});

await hc.host.setCollectionArchived({ collectionId, archived: true });
await hc.host.deleteRequest(request.id);

Typed wrappers for built-in HarborClient request editor commands. Requires the ui permission. Prefer these over stringly-typed hc.commands.execute('harborclient:…').

hc.host.applyRequestDraft(payload)

Available since v2.0.0

Signature:(payload: ApplyRequestDraftPayload) => Promise<void>

Updates the active request editor tab in place. Provided fields replace the corresponding draft values; when headers or params are supplied, those tables are replaced entirely. The tab becomes dirty, so the user still decides whether to save the changed request to its collection.

applyRequestDraft throws when there is no active request tab or when a field is invalid. Show parse/update failures inline in your plugin UI when the user needs to fix input.

typescript
function parseExternalFormat(source: string): ApplyRequestDraftPayload {
  return {
    method: 'PUT',
    url: 'https://api.example.com/pets/123',
    headers: { 'Content-Type': 'application/json' },
    body: source,
    bodyType: 'json'
  };
}

await hc.host.applyRequestDraft(parseExternalFormat(editorText));
hc.ui.showToast('Request updated');

hc.host.createCollection(payload)

Available since v2.0.0

Signature:(payload: CreateCollectionPayload) => Promise<CreateCollectionResult>

Bulk-creates a collection with folders and saved requests. Requests sharing the same folder string are grouped into one folder; requests without folder are created at the collection root.

typescript
const { collectionId } = await hc.host.createCollection({
  name: 'Petstore API',
  requests: [
    {
      name: 'List pets',
      method: 'GET',
      url: 'https://api.example.com/pets',
      folder: 'pets'
    },
    {
      name: 'Create pet',
      method: 'POST',
      url: 'https://api.example.com/pets',
      folder: 'pets',
      body: '{"name":"Fluffy"}',
      bodyType: 'json'
    }
  ]
});

hc.host.fetch(input, init?)

Available since v2.0.0

Signature:(input: string | URL | { url: string }, init?: PluginFetchInit) => Promise<PluginFetchResponse>

Sends one outbound HTTP request through the main-process pipeline using the native fetch(input, init?) signature. Requires the network permission.

typescript
const response = await hc.host.fetch('https://api.example.com/token', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({ grant_type: 'client_credentials' })
});
const data = await response.json();

hc.host.loadRequest(requestId)

Available since v2.0.0

Signature:(requestId: number) => Promise<void>

Opens a saved collection request or focuses an existing tab for it.

typescript
await hc.host.loadRequest(42);

hc.host.openImageView(payload)

Available since v2.8.4

Signature:(payload: OpenImageViewPayload) => Promise<void>

Opens or focuses an image-view page tab. Use this to display screenshots, logos, generated charts, or import previews in a dedicated tab with Copy location and Download actions. Prefer this typed API over hc.commands.execute('harborclient:openImageView', payload).

See also Renderer API → hc.host.

Payload rules

  • Provide exactly one source: path, url, dataUrl, or base64 with contentType.
  • fileName is optional for path and url (derived from the basename or last URL path segment). It is required for inline dataUrl and base64 payloads.
  • Inline dataUrl / base64 payloads are capped by the same IPC body-size limit as large request bodies.

Tab behavior

Aspect Behavior
Tab label Shortened filename (middle ellipsis, extension preserved)
Page header Full filename
Deduping Reopening the same source focuses the existing tab
Persistence Restored on restart until the user closes the tab
In-tab actions Copy location (path, URL, or data URL) and Download via a save dialog
typescript
// From a menu action or command handler
await hc.host.openImageView({
  url: 'https://harborclient.com/images/logo.png'
});

// After the user picks a file with hc.fs.pickFile
await hc.host.openImageView({ path: selectedPath });

// Inline bytes from a plugin-generated PNG
await hc.host.openImageView({
  fileName: 'preview.png',
  base64: pngBase64,
  contentType: 'image/png'
});

hc.host.openRequestDraft(payload)

Available since v2.0.0

Signature:(payload: OpenRequestDraftPayload) => Promise<void>

Opens a new unsaved request tab seeded with request metadata. Omitted fields use HarborClient defaults (GET, no body, empty headers/params). headers is a flat map; params is an array of enabled query parameter rows.

typescript
await hc.host.openRequestDraft({
  name: 'Create pet',
  method: 'POST',
  url: 'https://api.example.com/pets',
  headers: { 'Content-Type': 'application/json' },
  params: [{ key: 'trace', value: 'true' }],
  body: JSON.stringify({ name: 'Fluffy' }),
  bodyType: 'json'
});

hc.host.send()

Available since v2.0.0

Signature:() => Promise<void>

Sends the active request editor tab using the same pipeline as the Send button. No-op when a send is already in flight for the active tab.

typescript
await hc.host.send();

hc.host.showEntityContextMenu(input)

Available since v2.8.5

Signature:(input: ShowEntityContextMenuInput) => Promise<void>

ParameterTypeDescription
targetEntityContextMenuTarget{ type: 'collection', collectionId }` | folder | request
x`, `ynumberCoordinates in the plugin webview viewport
pluginIdstringYour plugin manifest id (for HostedSurface lookup and focus return)
contributionIdstringSidebar panel contribution id mounted in the surface

Opens the same collection / folder / request context menu the built-in Collections tree would show — including plugin registerContextMenuItem contributions — positioned in the host window. Fire-and-forget; does not wait for the user to dismiss the menu.

The host offsets x/y by the HostedSurface bounding rect. When the surface cannot be found, coordinates are treated as host viewport coordinates.

Limitations

  • Document targets are not supported (v1).
  • Submenu flyouts and focus return to the webview may be imperfect across the webview boundary.
  • Menu actions dispatch host thunks and work even when the built-in Collections tree is unmounted (replacement mode).

See the sidebar replacement tree example for a full pattern including reorder/move.

typescript
row.addEventListener('contextmenu', (event) => {
  event.preventDefault();
  void hc.host.showEntityContextMenu({
    target: { type: 'request', requestId },
    x: event.clientX,
    y: event.clientY,
    pluginId: 'com.example.tree',
    contributionId: 'collections'
  });
});
typescript
await hc.host.loadRequest(requestId);
await hc.host.loadDocument(documentId);
await hc.host.openCollectionSettings(collectionId);
await hc.host.openCollectionRunner(collectionId);