pathUUID changed to modelUUID in the connections source and targets of Asset points

This commit is contained in:
2025-04-05 14:55:29 +05:30
parent 35d4268a72
commit e83cf3b486
4 changed files with 34 additions and 34 deletions

View File

@@ -68,12 +68,12 @@ export default assetModel;
// triggers: [mongoose.Types.ObjectId];
// connections: {
// source: {
// pathUUID: string;
// modelUUID: string;
// pointUUID: string;
// };
// targets: [
// {
// pathUUID: string;
// modelUUID: string;
// pointUUID: string;
// }
// ];
@@ -106,12 +106,12 @@ export default assetModel;
// triggers: [{ type: mongoose.Schema.Types.ObjectId, ref: "Triggers" }],
// connections: {
// source: {
// pathUUID: { type: String },
// modelUUID: { type: String },
// pointUUID: { type: String },
// },
// targets: [
// {
// pathUUID: { type: String },
// modelUUID: { type: String },
// pointUUID: { type: String },
// },
// ],