Add support for returning transforming activity logs on the front-end

This commit is contained in:
DaneEveritt 2022-05-29 20:34:48 -04:00
parent e15985ea39
commit a5521ecb79
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
9 changed files with 162 additions and 6 deletions

View file

@ -1,4 +1,5 @@
import { MarkRequired } from 'ts-essentials';
import { FractalResponseData, FractalResponseList } from '../http';
export type UUID = string;
@ -6,7 +7,7 @@ export type UUID = string;
export interface Model {}
interface ModelWithRelationships extends Model {
relationships: Record<string, unknown>;
relationships: Record<string, FractalResponseData | FractalResponseList | undefined>;
}
/**