Skip to content

PersistentAI API Documentation / @persistent-ai/fireflow-vfs / server / getAppRegistryEntry

Function: getAppRegistryEntry()

getAppRegistryEntry(db, appId): Promise<{ appId: string; authMode: string; branch: string; createdAt: Date; displayConfig: Record<string, unknown> | null; executionConfig: Record<string, unknown> | null; flowId: string | null; lastSyncedAt: Date; manifestChecksum: string | null; name: string; ownerId: string; path: string; updatedAt: Date; vfsConfig: { rules?: object[]; } | null; visibility: string; workspaceId: string; } | null>

Defined in: packages/fireflow-vfs/src/steps/app-registry-steps.ts:115

Get an app registry entry by appId.

Used by the app.resolveById tRPC procedure for short URL resolution.

Parameters

db

DB

appId

string

Returns

Promise<{ appId: string; authMode: string; branch: string; createdAt: Date; displayConfig: Record<string, unknown> | null; executionConfig: Record<string, unknown> | null; flowId: string | null; lastSyncedAt: Date; manifestChecksum: string | null; name: string; ownerId: string; path: string; updatedAt: Date; vfsConfig: { rules?: object[]; } | null; visibility: string; workspaceId: string; } | null>

Licensed under BUSL-1.1