stackchain-dashboard/frontend/private-data-registry.js
timmy 05405bf2e8
All checks were successful
CI / lint (pull_request) Successful in 4m52s
CI / build-release (pull_request) Successful in 15s
CI / browser-journey (pull_request) Successful in 7m5s
CI / release-candidate (pull_request) Has been skipped
feat: keep background Updates badge current (Closes #1281)
2026-08-22 22:11:52 +00:00

15 lines
577 B
JavaScript

(function (root) {
const databases = Object.freeze([
'stackchain-background-outbox-v1',
'stackchain-offline-work-v2',
'stackchain-unfiled-captures-v1',
'stackchain-voice-transcripts-v1',
'stackchain-search-reply-drafts-v1',
'stackchain-conversation-reply-drafts-v1',
'stackchain-today-action-mailbox-v1',
'stackchain-app-badge-preference-v1',
]);
if (typeof module !== 'undefined' && module.exports) module.exports = databases;
else root.stackchainPrivateDatabases = databases;
})(typeof globalThis !== 'undefined' ? globalThis : this);