Open michielbdejong opened 5 months ago
Here is a first version, as a strawman:
{
identifiers: Set<string>;
title: string;
completed: boolean;
comments: string[];
}
The identifiers set can be used to link local identifiers for issues together across synced systems.
Version 2:
issue:
{
identifiers: Set<string>;
title: string;
completed: boolean;
}
comment:
{
identifiers: Set<string>;
text: string;
issueId: string;
}
While working on BridgeBot I became convinced that it does require some sort of union data format. I'll try to define it here, and keep it updated as the code evolves.