Interface: ListCatalogParams
@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?
optionallimit:number|null
Defined in: src/types/marketplace.ts:79
Max items to return. Omit for the full page.
offset?
optionaloffset:number|null
Defined in: src/types/marketplace.ts:81
Items to skip (pagination offset).
scope?
optionalscope:MarketplaceScope
Defined in: src/types/marketplace.ts:83
Scope filter. Defaults to the caller’s own tenant view union system-wide.