Provides the ability to cache objects in the platform application's session cache.
setTectonCacheObject provides the ability to cache objects in the platform from an extension module's frontend. Data is retrieved from the cache using getTectonCacheObject. Cache is automatically cleared upon logout, session timeout, or the window/browser tab closing.
tecton.sources.setTectonCacheObject(key: string, data: object): Promise<void>;Caching an object in the platform cache.
await tecton.sources.setTectonCacheObject('MyCacheKey', {
'account': 0000,
'amount': 1234,
'type': 'checking'
});keydata