import { Profile } from "../models/profile"; import { Scores } from "../models/scores"; export const importPnmData = async (data: { refid: string; profile: string; scores: string; }) => { const profile = JSON.parse(data.profile); const scores = JSON.parse(data.scores); await DB.Update( data.refid, { collection: 'profile' }, { $set: { ...profile } } ); await DB.Upsert( data.refid, { collection: 'scores' }, { $set: { scores: { ...scores } } } ); };