mirror of
https://github.com/hexastack/hexabot
synced 2025-05-01 11:33:24 +00:00
fix(frontend): update content dynamicFields field to be required
This commit is contained in:
parent
cbd39b2033
commit
d14e1b41e9
@ -15,13 +15,13 @@ export interface IContentAttributes {
|
|||||||
entity: string;
|
entity: string;
|
||||||
title: string;
|
title: string;
|
||||||
status: boolean;
|
status: boolean;
|
||||||
dynamicFields?: Record<string, any>;
|
dynamicFields: Record<string, any>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IContentStub extends IBaseSchema {
|
export interface IContentStub extends IBaseSchema {
|
||||||
title: string;
|
title: string;
|
||||||
status: boolean;
|
status: boolean;
|
||||||
dynamicFields?: Record<string, any>;
|
dynamicFields: Record<string, any>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IContent extends IContentStub, IFormat<Format.BASIC> {
|
export interface IContent extends IContentStub, IFormat<Format.BASIC> {
|
||||||
|
Loading…
Reference in New Issue
Block a user