feat: add topic alias resolution APIs
This commit is contained in:
@@ -1,8 +1,15 @@
|
||||
import type { FactRecord, FactTopicRecord, TopicRecord, TopicRelationRecord } from './domain';
|
||||
import type {
|
||||
FactRecord,
|
||||
FactTopicRecord,
|
||||
TopicAliasRecord,
|
||||
TopicRecord,
|
||||
TopicRelationRecord,
|
||||
} from './domain';
|
||||
|
||||
export interface IdentityDatabaseSchema {
|
||||
topics: TopicRecord;
|
||||
facts: FactRecord;
|
||||
fact_topics: FactTopicRecord;
|
||||
topic_relations: TopicRelationRecord;
|
||||
topic_aliases: TopicAliasRecord;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user