IsArchive updated and AssetPosition API updated

This commit is contained in:
2025-04-02 09:55:23 +05:30
parent ba878589a9
commit bfe56693b9
5 changed files with 51 additions and 4 deletions

View File

@@ -8,6 +8,7 @@ export interface assetData extends Document {
isLocked: boolean;
type: string;
isVisible: boolean;
isArchive:false
// position: [];
// rotation: {
// x: number;
@@ -45,6 +46,7 @@ export interface assetData extends Document {
// Define the Mongoose Schema
const assetDataSchema: Schema = new Schema({
isArchive:{type:Boolean,default:false},
modeluuid: { type: String },
modelfileID: { type: String },
modelname: { type: String },