You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.7 KiB
TypeScript
49 lines
1.7 KiB
TypeScript
/**
|
|
* This wrapper can be used to make a function type not async, asynced.
|
|
* We use it in the typing of the database communication, because the data calls (renderer side) have essentially the same signature of the sql calls (node side), with an added `await`
|
|
*/
|
|
export type AsyncWrapper<T extends (...args: any) => any> = (
|
|
...args: Parameters<T>
|
|
) => Promise<ReturnType<T>>;
|
|
|
|
export type MsgDuplicateSearchOpenGroup = Array<{
|
|
sender: string;
|
|
serverTimestamp: number;
|
|
// senderBlinded?: string; // for a message we sent, we need a blinded id and an unblinded one
|
|
}>;
|
|
|
|
export type UpdateLastHashType = {
|
|
convoId: string;
|
|
snode: string;
|
|
hash: string;
|
|
expiresAt: number;
|
|
namespace: number;
|
|
};
|
|
|
|
/**
|
|
* Shared config dump types
|
|
*/
|
|
|
|
export type SharedConfigSupportedVariant = 'user-profile' | 'contacts';
|
|
|
|
export type ConfigDumpRow = {
|
|
variant: SharedConfigSupportedVariant; // the variant this entry is about. (user-config, contacts, ...)
|
|
pubkey: string; // either our pubkey if a dump for our own swarm or the closed group pubkey
|
|
data: Uint8Array; // the blob returned by libsession.dump() call
|
|
combinedMessageHashes?: string; // array of lastHashes to keep track of, stringified
|
|
// we might need to add a `seqno` field here.
|
|
};
|
|
|
|
export type GetByVariantAndPubkeyConfigDump = (
|
|
variant: SharedConfigSupportedVariant,
|
|
pubkey: string
|
|
) => Array<ConfigDumpRow>;
|
|
export type GetByPubkeyConfigDump = (pubkey: string) => Array<ConfigDumpRow>;
|
|
export type SaveConfigDump = (dump: ConfigDumpRow) => void;
|
|
|
|
export type ConfigDumpDataNode = {
|
|
getConfigDumpByVariantAndPubkey: GetByVariantAndPubkeyConfigDump;
|
|
getConfigDumpsByPubkey: GetByPubkeyConfigDump;
|
|
saveConfigDump: SaveConfigDump;
|
|
};
|