ReadonlycryptoReadonlydbReadonlyexportsData stored in this object will persist between formulas on the same thread.
Will be cleared when the thread is finished or when [[B.clearExports]] is called.
Guest language objects will automactically be converted to host objects.
Example B.exports.key = value. To read the value use const value = B.exports.key.
ReadonlyfinanceProvides access to financial services and operations within the Bluestep platform.
ReadonlyfindUsed to find and give types to various objects given their string representation of their id.
ReadonlyglobalGlobal string to use with formatters.
ReadonlyioReadonlymailReadonlymesaReadonlynetThe [[Net]].
ReadonlyoptAn Optional [[User]]. The Optional will be empty if no one is logged in.
ReadonlyoptAn Optional User [[Relate.Entry]]. The Optional will be empty if no one is logged in or is a super. Same as calling B.optUser().flatMap(user => user.optRecordTypeEntry())
ReadonlyorgThe [[Organization]].
ReadonlyqueriesQueries
ReadonlyreportsReports
ReadonlysoapReadonlytextReadonlytimeThe [[Time]].
ReadonlyuserAn [[User]]. The [[User]] will be null if no one is logged in. Same as calling B.optUser.orElse(null)
ReadonlyuserA [[Relate.Entry]]. The [[Relate.Entry]] will be null if no one is logged in or is a super. Same as calling B.optUserRecordTypeEntry.orElse(null)
ReadonlyutilThe [[Util]].
StaticclearResets the B.exports for the next formula on the same thread.
TODO
Example