This feature is only available for your authenticated users. Please visit the authentication feature specification before trying to implement it
Coming soon
Coming soon
import { STCatalogItem } from "../../models/catalog-item";export interface ISTCatalogSDK {/*** List transactions*/getCatalog(): Promise<Array<STCatalogItem>>;}
The STCatalogItem contains information regarding the pricing of your products. Trying to acquire a content listed in the catalog through the transaction system will result in purchasing the product. it will also decrease your wallet amount from the content corresponding price regarding the requested payment type.
Coming soon
Coming soon
const catalog = await staytunedSDK.STCatalog.getCatalog();