Skip to content

Commit

Permalink
feat: add model to version
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanasar committed Dec 11, 2024
1 parent ca564eb commit 2b428fe
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/base-types/src/models/version/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ export interface Folder {
items: FolderItem[];
}

export interface NLUModel {
modelID: string;
}

export type DefaultStepColors = Partial<Record<NodeType, string>>;

export interface CustomBlock {
Expand Down Expand Up @@ -96,6 +100,7 @@ export interface Model<
canvasTemplates?: CanvasTemplate[];
templateDiagramID?: string;
defaultStepColors?: DefaultStepColors;
model?: NLUModel;

manualSave: boolean;
autoSaveFromRestore: boolean;
Expand Down

0 comments on commit 2b428fe

Please sign in to comment.