AssetPoint position changed for the StaticMachive and Floatwidget iconName added

This commit is contained in:
2025-04-16 18:32:18 +05:30
parent b65fda8389
commit ff79647e44
6 changed files with 18 additions and 9 deletions

View File

@@ -3,6 +3,7 @@ import MainModel from "../../connect/mongoose.ts";
export interface floatingWidget extends Document {
className: string;
iconName: string;
header: string;
floatWidgetID: string;
position: {};
@@ -18,6 +19,7 @@ export interface floatingWidget extends Document {
const floatingWidgetSchema: Schema = new Schema(
{
className: { type: String },
iconName: { type: String },
header: { type: String },
floatWidgetID: { type: String },
position: { type: Object },