Skip to content

Function: createHighLevelApi()

createHighLevelApi(options?): object

Creates a high-level API instance and caches it. Reterns a new instance only if new options are provided.

Parameters

ParameterType
options?ApiOptions

Returns

object

API

API: LowLevelApi

broadcast()

broadcast: (event) => Promise<any>

Broadcast an event to CatalogIQ.

Parameters

ParameterTypeDescription
eventPitcherEventThe event to broadcast.

Returns

Promise<any>

Example

ts
usePitcherApi()
  .broadcast({
    type: "canvas_updated",
    body: { context: { myContextProperty: 'test' } },
  })
  .then(function (result) {
    useUi().toast({
      message: "Canvas Populated.",
      type: "info",
    })
  })

broadcastToWebviews()

broadcastToWebviews: (event) => Promise<any>

Broadcast an event to webviews only (iOS only).

Parameters

ParameterTypeDescription
eventPitcherEventThe event to broadcast.

Returns

Promise<any>

Example

ts
usePitcherApi()
  .broadcastToWebviews({
    type: "canvas_updated",
    body: { context: { myContextProperty: 'test' } },
  })
  .then(function (result) {
    useUi().toast({
      message: "Canvas Populated.",
      type: "info",
    })
  })

enterFullscreen()

enterFullscreen: () => Promise<any>

Make the entire CatalogIQ fullscreen.

Returns

Promise<any>

Example

ts
usePitcherApi().enterFullscreen()

exitFullscreen()

exitFullscreen: () => Promise<any>

Exit fullscreen mode.

Returns

Promise<any>

Example

ts
usePitcherApi().exitFullscreen()

getRequestTypes()

getRequestTypes: () => Promise<any>

Get the request types.

Returns

Promise<any>

isFullscreen()

isFullscreen: () => Promise<any>

Return is CatalogIQ in fullscreen.

Returns

Promise<any>

Example

ts
usePitcherApi().isFullscreen()

logout()

logout: () => Promise<any>

Log out the current user.

Returns

Promise<any>

Example

ts
usePitcherApi().logout()

off()

off: (type, callback) => void

Unsubscribe from a given event type by its key and the attached callback reference.

Parameters

ParameterTypeDescription
typestringThe event type to unsubscribe from.
callback(payload) => voidThe callback function reference to remove.

Returns

void

Example

ts
const callback = (event: object) => {
  // handle event
}
usePitcherApi().on('entered_fullscreen', callback)
// later
usePitcherApi().off('entered_fullscreen', callback)

on()

on: (type, callback) => void

Subscribe to a given event type by its key.

Parameters

ParameterTypeDescription
typestringThe event type to subscribe to.
callback(payload) => voidThe callback function to handle the event.

Returns

void

A Promise resolving to a cleanup function to unsubscribe from the event. *

Examples

ts
ts
const unsubscribeFromSectionListUpdate = usePitcherApi().on('entered_fullscreen', (event: object) => {
  // handle event
})
// later
unsubscribeFromSectionListUpdate()

quitInstance()

quitInstance: () => Promise<any>

Quit the current instance and go to the instance selection screen.

Returns

Promise<any>

Example

ts
usePitcherApi().quitInstance()

subscribe()

subscribe: () => Promise<any>

Subscribe to updates.

Returns

Promise<any>

unsubscribe()

unsubscribe: () => Promise<any>

Unsubscribe from updates.

Returns

Promise<any>

aiComplete()

Run an AI completion on the on-device model (iOS only). On web the host rejects with a clear error — use piaSearchAnswer (or the next-core AI routes) for online inference instead.

The payload is the EXACT iOS wire contract: { prompt, max_tokens?, stream? }{ text, tokens_generated, elapsed_seconds, time_to_first_token_seconds }.

Parameters

ParameterTypeDescription
payloadAICompletePayloadThe completion payload.

Returns

Promise<AICompleteResult>

  • Promise resolving with the completion.

Example

ts
const completion = await api.aiComplete({ prompt: 'Summarize ...', max_tokens: 256 })
console.log(completion.text)

aiGetCapabilities()

Capabilities of the AI completion runtime on the current platform.

On iOS this asks the native on-device bridge (ai.get_capabilities); on web it resolves statically to the online (Bedrock) runtime — no postMessage round-trip.

Returns

Promise<AIRuntimeCapabilities>

  • Promise resolving with the runtime capabilities.

Example

ts
const capabilities = await api.aiGetCapabilities()
if (capabilities.available) { ... }

appsDbDeleteEntry()

Deletes an AppsDB entry (soft delete server-side), adapting to the platform:

  • Web: DELETE to the next-core AppsDB REST API.
  • iOS: the appsdb_delete_entry bridge request deletes on the server and removes the entry from the local offline mirror. Offline it rejects with code = offline_write_not_supported.

Parameters

ParameterType
payloadAppsDbDeleteEntryPayload

Returns

Promise<void>

Example

ts
await api.appsDbDeleteEntry({ id: '01H5ZXE7YP2JR6Q1Z2G3K4H5J6' })

appsDbGetEntries()

Lists AppsDB entries of a type, adapting to the platform:

  • Web: GET to the next-core AppsDB REST API.
  • iOS: reads the local offline mirror via the appsdb_get_entries bridge request. Types not allowlisted in the offline_appsdb_types setting fail with code = type_not_synced and automatically fall back to the network.

Parameters

ParameterType
payloadAppsDbGetEntriesPayload

Returns

Promise<AppsDbEntriesResult>

Example

ts
const { entries } = await api.appsDbGetEntries({ type: 'favorite' })

appsDbPsql()

Runs a PSQL (SQL-like) query against AppsDB: POST to the next-core /appsdb/psql endpoint whenever the network is available.

On iOS the local offline mirror (appsdb_get_entries + client-side evaluation of simple field = literal AND-chains) serves the query ONLY while the device is offline, or when an online fetch fails at the connection level. Online queries are always answered by the server: Hub flows use psql results to decide between creating and updating an entry, and the mirror can lag the server by a sync cycle (multi-device) — a stale empty read would turn an update into a duplicate create. Offline that same stale read is harmless because AppsDB writes are rejected offline anyway.

Parameters

ParameterType
payloadAppsDbPsqlPayload

Returns

Promise<AppsDbEntriesResult>

Example

ts
const { entries } = await api.appsDbPsql({
  query: "SELECT * FROM personalfolders WHERE user_id = 1 AND data.custom_domain = 'acme.my.pitcher.com'",
})

appsDbUpsertEntry()

Creates or updates (deep-merges) an AppsDB entry, adapting to the platform:

  • Web: POST (create) or PUT (update, when id is set) to the next-core AppsDB REST API.
  • iOS: the appsdb_upsert_entry bridge request writes on the server and mirrors the authoritative result locally. Offline it rejects with code = offline_write_not_supported — AppsDB writes are online-only.

The data blob is sent verbatim (no key-casing transformation), and all appsDb* responses are likewise returned verbatim — even for casing: 'camel' consumers — so bridge and REST results are identical.

Parameters

ParameterType
payloadAppsDbUpsertEntryPayload

Returns

Promise<AppsDbEntry>

Example

ts
const entry = await api.appsDbUpsertEntry({ type: 'favorite', user_id: 1, data: { file_id: 'abc' } })

assignCanvasTheme()

Parameters

ParameterType
payload{ canvas_id: string; theme_id: string; }
payload.canvas_idstring
payload.theme_idstring

Returns

Promise<{ canvas_id: string; theme_id: string; }>

close()

Returns

Promise<any>

createCanvas()

Parameters

ParameterType
payloadOmit<CanvasCreateRequest, "instance_id">

Returns

Promise<CanvasRetrieve>

createFile()

Parameters

ParameterType
payloadOmit<AllFileCreateRequest, "instance_id">

Returns

Promise<FileRetrieve>

createFolder()

Creates a new folder.

Parameters

ParameterTypeDescription
payloadOmit<FolderCreateRequest, "instance_id">The folder creation request payload, excluding the instance_id.

Returns

Promise<FolderRetrieve>

A promise that resolves to the created folder.

crmCreate()

Creates new records in CRM (Web only). Uses Salesforce REST API to create records.

Parameters

ParameterTypeDescription
payloadCRMCreatePayloadThe create payload containing sobject type and records.

Returns

Promise<any>

  • Promise resolving with the result of the create operation.

Throws

  • Throws an error if the payload is invalid.

Example

ts
// Web only method to create CRM records.
api.crmCreate({
  sobject: 'Order__c',
  records: [
    { Account__c: '001xx000003DGbQAAW', Order_Date__c: '2024-01-15' },
    { Account__c: '001xx000003DGbRABW', Order_Date__c: '2024-01-16' }
  ]
})

crmDescribe()

Retrieves metadata/describe for a CRM object (Web only). Uses Salesforce REST API to fetch object metadata including fields and picklist values.

Parameters

ParameterTypeDescription
payloadCRMDescribePayloadThe describe payload containing the sobject name.

Returns

Promise<any>

  • Promise resolving with the object metadata including fields and picklist values.

Throws

  • Throws an error if the payload is invalid.

Example

ts
// Web only method to get CRM object metadata.
api.crmDescribe({ sobject: 'Account' })
  .then(metadata => {
    // Access fields
    console.log(metadata.fields)
    // Access picklist values for a specific field
    const industryField = metadata.fields.find(f => f.name === 'Industry')
    console.log(industryField.picklistValues)
  })

crmLayout()

Retrieves layout information for a CRM object (Web only). Uses Salesforce REST API to fetch object layout including sections, fields arrangement, and form factors.

Parameters

ParameterTypeDescription
payloadCRMLayoutPayloadThe layout payload containing the sobject name and optional layout parameters.

Returns

Promise<any>

  • Promise resolving with the object layout information.

Throws

  • Throws an error if the payload is invalid.

Examples

ts
// Web only method to get CRM object layout.
api.crmLayout({ sobject: 'Account' })
  .then(layout => {
    // Access layout sections
    console.log(layout.editLayoutSections)
  })
ts
// Get layout with specific form factor, mode, and record type.
api.crmLayout({
  sobject: 'Account',
  form_factor: 'Large',
  mode: 'Edit',
  record_type_id: '012xx0000004ABC'
})

crmQuery()

Parameters

ParameterType
payloadCRMQueryPayload

Returns

Promise<any>

crmQueryAdaptive()

Executes a CRM query with automatic iOS/SmartStore adaptation.

On iOS devices with the 'sfdc_offline_enabled' LaunchDarkly flag enabled, this function automatically converts SOQL queries to SmartStore Smart SQL format and uses the local SmartStore for offline data access. On other platforms or when the flag is disabled, it uses the standard CRM query API.

Parameters

ParameterTypeDescription
payloadCRMQueryPayloadThe query payload containing the SOQL query string.

Returns

Promise<any>

  • Promise resolving with query results.

Example

ts
// Works on all platforms - automatically adapts for iOS with sfdc_offline_enabled LD flag
const result = await crmQueryAdaptive({ query: 'SELECT Id, Name FROM Account WHERE Active = true' })

crmSmartDeleteObjects()

Deletes CRM objects from local CRM data (iOS only). Uses Salesforce Mobile SDK SmartStore to delete records. Each object in the payload specifies a table name and an array of IDs to delete.

Parameters

ParameterTypeDescription
payloadCRMSmartDeleteObjectsPayloadThe delete payload containing an array of CRMDeleteObject items.

Returns

Promise<any>

  • Promise resolving with the result of the delete operation.

Throws

  • Throws an error if the payload is invalid.

Example

ts
// iOS only method to delete CRM objects.
api.crmSmartDeleteObjects({
  objects: [
    {
      table_name: 'Account',
      ids: ['001xx000003DGbQAAW', '001xx000003DGbRABW']
    },
    {
      table_name: 'Contact',
      ids: ['003xx000004TmiQAAS']
    }
  ]
})

crmSmartObjectLayout()

Retrieves layout information for a CRM smart object (iOS only). Fetches object layout metadata from the Salesforce Mobile SDK cache.

Parameters

ParameterTypeDescription
payloadCRMSmartObjectLayoutPayloadThe payload containing the object name and optional layout parameters.

Returns

Promise<any>

  • Promise resolving with the object layout metadata.

Throws

  • Throws an error if the object name is not provided.

Examples

ts
// iOS only method to retrieve CRM object layout.
api.crmSmartObjectLayout({ object: 'Account' })
ts
// Get layout with specific form factor and mode.
api.crmSmartObjectLayout({ object: 'Account', form_factor: 'Large', mode: 'Edit' })

crmSmartObjectMetadata()

Retrieves metadata for a CRM smart object (iOS only). Fetches object metadata from the Salesforce Mobile SDK cache.

Parameters

ParameterTypeDescription
payloadCRMSmartObjectMetadataPayloadThe payload containing the object name.

Returns

Promise<any>

  • Promise resolving with the object metadata.

Throws

  • Throws an error if the object name is not provided.

Example

ts
// iOS only method to retrieve CRM object metadata.
api.crmSmartObjectMetadata({ object: 'Account' })

crmSmartObjectValidationRules()

Retrieves validation rules for a CRM smart object (iOS only). This method fetches the validation rules configured for a specific CRM object type from the local SmartStore cache.

Parameters

ParameterTypeDescription
payloadCRMSmartObjectValidationRulesPayloadThe payload containing the object name.

Returns

Promise<any>

  • Promise resolving with the validation rules for the specified object.

Examples

ts
// iOS only method to get validation rules for an Account object.
api.crmSmartObjectValidationRules({ object: 'Account' })
ts
// Get validation rules for a Contact object.
api.crmSmartObjectValidationRules({ object: 'Contact' })

crmSmartQuery()

Executes a SmartStore query against local CRM data (iOS only). Uses Salesforce Mobile SDK SmartStore query syntax. Validates that the query uses SmartStore syntax before execution.

Parameters

ParameterTypeDescription
payloadCRMQueryPayloadThe query payload containing the SmartStore query string.

Returns

Promise<any[]>

  • Promise resolving with an array of query results from SmartStore.

Throws

  • Throws an error if the query is not a valid SmartStore query.

Example

ts
// iOS only method to execute a SmartStore query.
api.crmSmartQuery({ query: 'SELECT {Account:Id}, {Account:Name} FROM {Account} ORDER BY {Account:Name} LIMIT 10' })

crmSmartUpsertObjects()

Upserts CRM objects into local CRM data (iOS only). Uses Salesforce Mobile SDK SmartStore to insert or update records. Each object in the payload specifies a table name, the objects to upsert, and an optional external ID path.

Important: Always provide external_id_path when performing updates to ensure records are matched correctly. Without it, the operation may create duplicate records instead of updating existing ones.

Note: When creating new records, you must provide an explicit identifier field (e.g., Id) in each record object passed from the frontend. The backend does not auto-generate IDs.

Parameters

ParameterTypeDescription
payloadUpsertCRMObjectsPayloadThe upsert payload containing an array of UpsertCRMObject items.

Returns

Promise<any>

  • Promise resolving with the result of the upsert operation.

Throws

  • Throws an error if the payload is invalid.

Example

ts
// iOS only method to upsert CRM objects.

// Updating existing records - always include external_id_path
api.crmSmartUpsertObjects({
  objects: [
    {
      table_name: 'Account',
      objects: [{ Id: '001xx000003DGbQAAW', Name: 'Acme Corp Updated' }],
      external_id_path: 'Id' // Required for updates to match existing records
    }
  ]
})

// Creating new records - explicit ID required in each record
api.crmSmartUpsertObjects({
  objects: [
    {
      table_name: 'Account',
      objects: [
        { Id: '001xx000003NEW001', Name: 'New Company' }, // Explicit ID required
        { Id: '001xx000003NEW002', Name: 'Another Company' }
      ]
    }
  ]
})

crmUpsert()

Upserts records in CRM (Web only). Uses Salesforce REST API to insert or update records based on external ID. If a record with matching external ID exists, it will be updated; otherwise, a new record is created.

Parameters

ParameterTypeDescription
payloadCRMUpsertPayloadThe upsert payload containing sobject type, records, and external ID field.

Returns

Promise<any>

  • Promise resolving with the result of the upsert operation.

Throws

  • Throws an error if the payload is invalid.

Example

ts
// Web only method to upsert CRM records.
api.crmUpsert({
  sobject: 'Order__c',
  records: [
    { External_Id__c: 'ORD-001', Account__c: '001xx000003DGbQAAW', Status__c: 'Submitted' },
    { External_Id__c: 'ORD-002', Account__c: '001xx000003DGbRABW', Status__c: 'Draft' }
  ],
  external_id_field: 'External_Id__c'
})

deleteCanvas()

Parameters

ParameterType
payload{ id: string; }
payload.idstring

Returns

Promise<CanvasRetrieve>

deleteFile()

Parameters

ParameterType
payload{ file_id: string; }
payload.file_idstring

Returns

Promise<string>

deleteFolder()

Deletes a folder.

Parameters

ParameterTypeDescription
payload{ folder_id: string; }An object containing the ID of the folder to delete.
payload.folder_idstringThe ID of the folder to delete.

Returns

Promise<void>

A promise that resolves when the folder is deleted.

deleteLocalFile()

Deletes a local file on iOS devices from Pitcher Folders.

Parameters

ParameterType
payload{ url: string; }
payload.urlstring

Returns

Promise<void>

Example

ts
// iOS only method to delete a local file.
api.deleteLocalFile({ url: 'file:///var/mobile/Containers/Data/Application/x/Documents/Pitcher%20Folders/ARPhotocapture/x.png' })

downloadFile()

Parameters

ParameterType
payload{ file_id: string; }
payload.file_idstring

Returns

Promise<null>

fetchDocumentInfo()

Parameters

ParameterType
payload{ fileId: string; }
payload.fileIdstring

Returns

Promise<{ [key: string]: unknown; pageCount: number; }>

Deprecated

  • not used anymore

getAppConfig()

Parameters

ParameterType
payload?{ app_name: string; }
payload.app_name?string

Returns

Promise<Record<string, any>>

getCanvas()

Fetches a single canvas by ID.

Pass lazy_sections: true to request the opt-in lazy "shell": when the org/instance lazy_load_sections setting is also on, the response returns ordered section_ids instead of the heavy inline sections, and you hydrate section bodies on demand via getSectionsByIds. With the setting off (or the param omitted) the response is the legacy fully-expanded canvas.

Parameters

ParameterType
payload{ fields: string; id: string; lazy_sections: boolean; }
payload.fields?string
payload.idstring
payload.lazy_sections?boolean

Returns

Promise<CanvasRetrieve>

getCanvases()

Fetches a list of canvases to use in your app.

Parameters

ParameterType
payloadGetCanvasesParams & object

Returns

Promise<PaginatedData<CanvasRetrieve>>

Example

ts
// The `filters` object is a reserved payload key to transfer the metadata dict over the wire.
api.getCanvases({
  search: 'my search query',
  ordering: '-created_at',
  filters: {
    metadata__mydaterangefiltername__range: ['2023-12-10', '2023-12-22'],
    metadata__mymultiselectfiltername: ['optionAValue', 'optionCValue'],
  },
 fields: 'id,name,metadata',
})

getCanvasRecommendedFiles()

Parameters

ParameterType
payload{ canvas_id: string; match: ("metadata" | "tags")[]; }
payload.canvas_idstring
payload.match?("metadata" | "tags")[]

Returns

Promise<CanvasRecommendedFiles>

getCanvasTheme()

Parameters

ParameterType
payload{ canvas_id: string; }
payload.canvas_idstring

Returns

Promise<null | CanvasThemeRetrieve>

getCoreFolders()

Parameters

ParameterType
payload{ entity: CoreFolderEntityType; instance_id: string; parent_id: null | string; }
payload.entityCoreFolderEntityType
payload.instance_idstring
payload.parent_id?null | string

Returns

Promise<CoreFolderContentsRetrieve>

getEnv()

Fetches the necessary info for the app to know where it is embedded.

It contains information about:

  • user
  • instance
  • organization
  • security token to query Pitcher REST API
  • Salesforce connection information (if connected) including security token to query Salesforce REST API
  • Auth0 token information

Returns

Promise<PitcherEnv>

Example

ts
const env = usePitcherApi().getEnv().then((env) => {
  console.log(env.pitcher.user.name)
})

getFile()

Parameters

ParameterType
payload{ file_id: string; id: string; }
payload.file_id?string
payload.id?string

Returns

Promise<FileRetrieve>

getFileRevisionData()

Parameters

ParameterType
payload{ file_id: string; revision_id: string; }
payload.file_idstring
payload.revision_idstring

Returns

Promise<FileRetrieve>

getFileRevisions()

Parameters

ParameterType
payload{ file_id: string; id: string; }
payload.file_id?string
payload.id?string

Returns

Promise<FileRevision[]>

getFiles()

Parameters

ParameterType
payloadPartial<Omit<File, "type">> & object & object

Returns

Promise<PaginatedFileList>

getFolder()

Retrieves a folder by its ID.

Parameters

ParameterTypeDescription
payload{ id: string; }An object containing the folder ID.
payload.idstringThe ID of the folder to retrieve. Defaults to 'root'.

Returns

Promise<FolderRetrieve>

A promise that resolves to the retrieved folder.

getFolders()

Retrieves a list of folders.

Parameters

ParameterTypeDescription
payloadFolderListRequestThe payload containing the search, ordering, filters, fields, name, page, and page_size.

Returns

Promise<PaginatedFolderList>

A promise that resolves to the list of folders.

getInstanceMetadataTemplates()

Parameters

ParameterType
payload?GetInstanceMetadataTemplatesPayload

Returns

Promise<PaginatedMetadataTemplateList>

getSectionsByIds()

Batch-hydrate section bodies for a canvas fetched as a lazy shell.

Companion to getCanvas({ lazy_sections: true }): pass the canvas ID and a slice of its section_ids (≤100 per call) and receive the full section bodies, serialized identically to a normal canvas retrieve's inline sections. Only sections actually referenced by the canvas are returned.

Pass the SAME exclude_drafts / include_expired_files / include_pending_files the shell was fetched with so hydration filters identically to the shell that advertised the IDs — otherwise admin decks (fetched with exclude_drafts:false, expired/pending on) list draft/expired sections the batch would silently drop, leaving them blank. Omit them to get the rep defaults (drafts excluded, expired/pending off). include_expired_files/include_pending_files are server-side role-gated (admin/editor only), matching the inline retrieve.

Parameters

ParameterType
payload{ canvas_id: string; exclude_drafts: boolean; include_expired_files: boolean; include_pending_files: boolean; section_ids: string[]; }
payload.canvas_idstring
payload.exclude_drafts?boolean
payload.include_expired_files?boolean
payload.include_pending_files?boolean
payload.section_idsstring[]

Returns

Promise<{ sections: CanvasSection[]; }>

Example

ts
const { sections } = await api.getSectionsByIds({
  canvas_id: '01HH4RCBH631K4JDHWAQB0RPR6',
  section_ids: ['01SEC...', '02SEC...'],
})

getThemes()

Parameters

ParameterType
payloadPartial<CanvasThemeRetrieve>

Returns

Promise<CanvasThemeRetrieve[]>

getUsers()

Parameters

ParameterType
payload?GetUsersParams

Returns

Promise<PaginatedData<User>>

isOffline()

Returns

Promise<boolean>

moveFolderItems()

Moves items (files or folders) to a target folder.

Parameters

ParameterTypeDescription
payload{ items: object[]; target_folder_id: string; }The payload containing the target folder ID and items to move.
payload.itemsobject[]An array of items to move, each with an ID and type.
payload.target_folder_idstringThe ID of the target folder.

Returns

Promise<FolderRetrieve>

A promise that resolves to the updated target folder.

notify()

Parameters

ParameterType
payloadNotificationPayload

Returns

Promise<void>

open()

Open a file in the CatalogIQ instance.

Parameters

ParameterType
payloadOpenRequestPayload

Returns

Promise<string>

openExternalUrl()

Open external URL in a new tab. Works on both web and mobile.

Parameters

ParameterType
payloadOpenExternalUrlRequestPayload

Returns

Promise<void>

openWebViewAlwaysOnTop()

Parameters

ParameterType
payloadOpenWebViewAlwaysOnTop

Returns

Promise<void>

patchCoreFolder()

Parameters

ParameterType
idstring
payloadPartial<CoreFolderRetrieve>

Returns

Promise<CoreFolderContentsRetrieve>

piaSearchAnswer()

Answer a rep's natural-language question over the instance's content — the ONE high-level PIA Search call (PIT-6863). Routing follows the pia_search_config flag mode (see resolvePiaSearchMode):

  • on_device on iOS with an available local model → aiComplete over the caller-assembled context_text (the Hub has the file metadata client-side). Unavailable/downloading models fall through to online.
  • online (or any on-device fallback) → POST to the next-core pia-prepare/pia-search Bedrock route, which assembles its own candidate context server-side.
  • off → rejects.

Parameters

ParameterTypeDescription
payloadPiaSearchAnswerPayloadThe question + optional context/narrowing.

Returns

Promise<PiaSearchAnswerResult>

  • Unified answer with the serving source.

Example

ts
const result = await api.piaSearchAnswer({ query: 'What is our pricing for oncology?' })
console.log(result.answer, result.cited_file_ids, result.source)

postJsonWithTimeout()

POST JSON to a next-core route with a hard deadline, returning the parsed body. The shared scaffold behind the SDK's online AI calls (piaSearchAnswer, weeklyFocusRank).

Bounds the WHOLE request including the body read: fetch() resolves on headers alone, so reading .json() INSIDE the timed window (and letting the abort cancel that read too — hence clearTimeout in finally) is what stops a response that stalls mid-body from hanging unbounded. label names the route in BOTH the non-2xx error (<label> <status>) and the timeout error, so each caller keeps its exact error strings.

Type Parameters

Type Parameter
T

Parameters

ParameterType
urlstring
bodyunknown
accessTokenstring
timeoutMsnumber
labelstring

Returns

Promise<T>

query()

Parameters

ParameterType
payloadQueryPayload

Returns

Promise<any>

refreshAccessToken()

Returns

any

refreshServiceToken()

Ask for a refreshed Salesforce token. In case the token hasn't expired yet, this method will return the same token as the current one found in the (getEnv)[#getenv] result.

Parameters

ParameterType
payload?RefreshServiceTokenRequest

Returns

Promise<RefreshServiceTokenResponse>

Promise resolving to an object containing the token

renderPageAsImage()

Renders a page from a file together with annotations.

Parameters

ParameterTypeDescription
payload{ documentId: string; fileId: string; pageIndex: number; params: { width: number; } | { height: number; }; }-
payload.documentId?stringThe ID of the document to render (optional). If not provided the fileId will be used.
payload.fileIdstringThe ID of the file to render. Used when the documentId is not available.
payload.pageIndexnumberThe index of the page to render.
payload.params{ width: number; } | { height: number; }The parameters to use for rendering the page.

Returns

Promise<ArrayBuffer>

A promise that resolves with the image as an ArrayBuffer.

Example

ts
api.renderPageAsImage({
  fileId: '123456',
  documentId: '654321',
  pageIndex: 0,
  params: { width: 1920 },
})

Parameters

ParameterType
payload{ includeExpired: boolean; query: string; }
payload.includeExpired?boolean
payload.querystring

Returns

Promise<any>

selectDeviceFile()

Dispatches iOS native file selector and returns the selected file.

Returns

Promise<DeviceFile>

Example

ts
// iOS only method to select a file from the device.
api.selectDeviceFile()

share()

Dispatch iOS sharing dialog.

Parameters

ParameterType
payloadSharePayload

Returns

Promise<ShareResponse>

Example

ts
api.share({text: "example text", subject: "example subject"})

shareCanvas()

Parameters

ParameterType
payload{ id: string; }
payload.idstring

Returns

Promise<SharedLink>

showPeerSession()

Show peer session dialog with button coordinates, for local peer sharing feature.

Parameters

ParameterType
payloadShowPeerSessionRequestPayload

Returns

Promise<void>

Example

ts
api.showPeerSession({x: 100, y: 200})

showSyncbox()

Parameters

ParameterType
payloadShowSyncboxRequestPayload

Returns

Promise<void>

sttAvailability()

Check whether dictation can be offered — a side-effect-free capability probe to gate a mic button. Does NOT prompt for the microphone or download a model. Answered by the native bridge on iOS and the Impact host on web.

Returns

Promise<SttAvailabilityResult>

{ available, engine, reason? }available is true only when the feature is enabled AND an engine can run; engine is what would answer sttStart ("webspeech" sends audio off-device); reason is "disabled" or "unsupported" when not available.

Example

ts
const { available, engine } = await api.sttAvailability()
if (available) showMicButton({ warnCloud: engine === 'webspeech' })

sttErrorCode()

Extract the SttErrorCode from a rejected sttStart / sttStop, normalizing across hosts: the iOS bridge rejection (error_code / errorCode) and Impact web's { reason } / error message string. Returns undefined if no known code is present.

Parameters

ParameterType
errorunknown

Returns

undefined | SttErrorCode

Example

ts
try { await api.sttStart({ session_id }) } catch (err) {
  if (api.sttErrorCode(err) === 'STT_BUSY') showMicInUseHint()
}

sttStart()

Parameters

ParameterType
payloadSttStartPayload

Returns

Promise<void>

sttStop()

Finalize a dictation session. Resolves with the final full transcript; rejects with STT_NOT_RECORDING if the session isn't active.

Parameters

ParameterTypeDescription
payloadSttStopPayload

Returns

Promise<SttStopResult>

The final { transcript }.

Example

ts
const { transcript } = await api.sttStop({ session_id: 'notes-1' })

sttWarmup()

Pre-load the on-device dictation model so a later sttStart resolves instantly (and the mic-permission prompt appears immediately instead of after a download). Web only — on iOS the native side manages its own model lifecycle, so the bridge has no stt.warmup type and calling it there rejects requestTypeDoesNotExists.

Fire-and-forget: don't block your UI on it and ignore rejections. It is idempotent (repeated / concurrent calls collapse to a single download) and a no-op when the feature is disabled or the engine has nothing to warm (Web Speech fallback). Call it right after sttAvailability reports available with engine === 'whisper'.

Returns

Promise<void>

Resolves once the model is ready (or immediately when there's nothing to warm).

Example

ts
const { available, engine } = await api.sttAvailability()
if (available) {
  showMicButton()
  if (engine === 'whisper') api.sttWarmup().catch(() => {}) // background, non-blocking
}

submitUserFeedback()

Submit user feedback

Parameters

ParameterType
payloadSubmitUserFeedbackPayload

Returns

Promise<any>

toast()

Parameters

ParameterType
payload{ message: string; type: string; }
payload.messagestring
payload.typestring

Returns

Promise<void>

track()

Parameters

ParameterType
payload{ event_name: string; payload: any; }
payload.event_namestring
payload.payloadany

Returns

Promise<any>

triggerNonFilesSync()

Dispatches iOS only sync method for non-files.

Returns

Promise<void>

Example

ts
// iOS only method to sync non-files from the server.
api.triggerNonFilesSync()

ttsErrorCode()

Extract the TtsErrorCode from a rejected ttsSpeak, normalizing across hosts: the iOS bridge APIError (code / error_code / errorCode) and a host { reason } / error message string. Returns undefined if no known code is present.

Parameters

ParameterType
errorunknown

Returns

undefined | TtsErrorCode

Example

ts
try { await api.ttsSpeak({ text, language }) } catch (err) {
  if (api.ttsErrorCode(err) === 'TTS_VOICE_UNAVAILABLE') promptVoiceDownload()
}

ttsSpeak()

Speak text on the device speaker. Resolves when the utterance FINISHES; rejects with a TtsErrorCode.

Parameters

ParameterTypeDescription
payloadTtsSpeakPayload

Returns

Promise<TtsSpeakResult>

{ completed }true if it finished naturally, false if stopped or replaced by a newer ttsSpeak.

Example

ts
const { completed } = await api.ttsSpeak({ text: 'Meeting summary saved.', language: 'en-US' })

ttsStop()

Stop any in-flight speech. The in-flight ttsSpeak resolves with { completed: false }.

Returns

Promise<void>

Example

ts
await api.ttsStop()

unassignCanvasTheme()

Parameters

ParameterType
payload{ canvas_id: string; }
payload.canvas_idstring

Returns

Promise<void>

updateCanvas()

Updates a canvas by ID

Parameters

ParameterType
payloadPatchedCanvasUpdateRequest & object

Returns

Promise<CanvasRetrieve>

Example

ts
// The fields param is appended to the URL as a query param.
onMounted(() => {
  PitcherAPI.updateCanvas({
    id: '01HH4RCBH631K4JDHWAQB0RPR6',
    fields: 'id,name',
    name: 'To 3!',
  }).then((res) => {
    console.log(res)  // logs: { id: '01HH4RCBH631K4JDHWAQB0RPR6', name: 'To 3!' }
  })
})

updateCanvasIndicators()

Updates canvas indicators by canvas ID. It merges the passed object into existing canvas indicators adding new keys if they were empty and overriding pre-existing keys.

Indicators can also be updated using updateCanvas API but in this case passed object fully replaces existing indicators.

Parameters

ParameterType
payload{ id: string; indicators: Record<string, CanvasIndicator>; instance_id: string; }
payload.idstring
payload.indicatorsRecord<string, CanvasIndicator>
payload.instance_id?string

Returns

Promise<CanvasRetrieve>

Example

ts
// The fields param is appended to the URL as a query param.
onMounted(() => {
  PitcherAPI.updateCanvasIndicators({
    id: '01J9XT0WVXRTETF4CQZP42CPZP',
    indicators: {
      existing: { type: 'info', label: 'new label' }, // will be overriden
      new: { type: 'info', label: 'INFO' }, // will be added
      removeExisting: null // will be set to null and ignored, it is the same as removal
   }
   }).then((res) => {
    console.log(res)  // entire canvas object, including indicators field
  })
})

updateFile()

Parameters

ParameterType
payloadFileUpdateRequest & object

Returns

Promise<FileRetrieve>

updateFolder()

Updates an existing folder.

Parameters

ParameterTypeDescription
payloadUpdateFolderPayloadThe folder update payload, including the folder ID and update data.

Returns

Promise<FolderRetrieve>

A promise that resolves to the updated folder.

updateMyUser()

Parameters

ParameterType
payloadUpdateEnvParams

Returns

Promise<User>

weeklyFocusRank()

Rank the rep's next-7-days meetings by how much preparation they need — the ONE high-level Weekly Focus call (PIT-7257), the weekly_focus AITask.

The on-device path runs the prompt, window, parser and ordinal resolver from @lib/ai-tasks/weekly-focus; the online route runs next-core's parallel copy of the same logic. The two are kept in lockstep by matching test suites, not a shared import (see that module's header / ADR-002), so the two paths produce the same shape:

  • iOS with an available local model → aiComplete over the caller-supplied meetings + account context. Unavailable models / unusable output fall through.
  • Otherwise → POST to the next-core Bedrock route.

The model picks meetings by ORDINAL and the resolver maps them back to event_ids, dropping out-of-range ones — so a returned id can only come from the meetings passed in.

This does NOT cache, lock or prewarm: an app that generates on a schedule (as pre-call-brief does) owns those mechanics and calls this underneath.

Parameters

ParameterTypeDescription
payloadWeeklyFocusRankPayloadThe meetings + optional account context.

Returns

Promise<WeeklyFocusRankResult>

  • Ranking with the serving source.

Example

ts
const focus = await api.weeklyFocusRank({ meetings, context })
console.log(focus.hero, focus.top, focus.collapsed_count)