Skip to content

Interface: ListCatalogParams

@kortexya/reasoninglayer


@kortexya/reasoninglayer / Marketplace / ListCatalogParams

Interface: ListCatalogParams

Defined in: src/types/marketplace.ts:77

Pagination and scope parameters for listing the catalog.

Remarks

Sent as query parameters. Omitting limit returns the full page; omitting scope defaults to the caller’s own tenant view union the system-wide catalog.

Example

const params: ListCatalogParams = { limit: 20, offset: 40, scope: 'tenant' };

Properties

limit?

optional limit: number | null

Defined in: src/types/marketplace.ts:79

Max items to return. Omit for the full page.


offset?

optional offset: number | null

Defined in: src/types/marketplace.ts:81

Items to skip (pagination offset).


scope?

optional scope: MarketplaceScope

Defined in: src/types/marketplace.ts:83

Scope filter. Defaults to the caller’s own tenant view union system-wide.