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.
27 lines
785 B
TypeScript
27 lines
785 B
TypeScript
import {
|
|
AsyncWrapper,
|
|
ConfigDumpRow,
|
|
GetByPubkeyConfigDump,
|
|
GetByVariantAndPubkeyConfigDump,
|
|
SaveConfigDump,
|
|
SharedConfigSupportedVariant,
|
|
} from '../../types/sqlSharedTypes';
|
|
import { channels } from '../channels';
|
|
|
|
const getByVariantAndPubkey: AsyncWrapper<GetByVariantAndPubkeyConfigDump> = (
|
|
variant: SharedConfigSupportedVariant,
|
|
pubkey: string
|
|
) => {
|
|
return channels.getConfigDumpByVariantAndPubkey(variant, pubkey);
|
|
};
|
|
|
|
const getByPubkey: AsyncWrapper<GetByPubkeyConfigDump> = (pubkey: string) => {
|
|
return channels.getConfigDumpsByPk(pubkey);
|
|
};
|
|
|
|
const saveConfigDump: AsyncWrapper<SaveConfigDump> = (dump: ConfigDumpRow) => {
|
|
return channels.saveConfigDump(dump);
|
|
};
|
|
|
|
export const ConfigDumpData = { getByVariantAndPubkey, getByPubkey, saveConfigDump };
|