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

@@ -24,8 +24,8 @@ interface IPointConveyor extends IPointBase {
bufferTime: number;
}>;
connections: {
source: { pathUUID: string; pointUUID: string };
targets: Array<{ pathUUID: string; pointUUID: string }>;
source: { modelUUID: string; pointUUID: string };
targets: Array<{ modelUUID: string; pointUUID: string }>;
};
}
@@ -41,7 +41,7 @@ interface IPointVehicle extends IPointBase {
};
connections: {
source: { modelUUID: string; pointUUID: string };
targets: Array<{ pathUUID: string; pointUUID: string }>;
targets: Array<{ modelUUID: string; pointUUID: string }>;
};
speed: number;
}
@@ -94,8 +94,8 @@ export class pointService {
},
],
connections: {
source: { pathUUID: "modelUUID", pointUUID: "point1UUID" },
targets: [{ pathUUID: "modelUUID", pointUUID: "point1UUID" }],
source: { modelUUID: "modelUUID", pointUUID: "point1UUID" },
targets: [{ modelUUID: "modelUUID", pointUUID: "point1UUID" }],
},
},
{
@@ -123,8 +123,8 @@ export class pointService {
},
],
connections: {
source: { pathUUID: "modelUUID", pointUUID: "point2UUID" },
targets: [{ pathUUID: "modelUUID", pointUUID: "point2UUID" }],
source: { modelUUID: "modelUUID", pointUUID: "point2UUID" },
targets: [{ modelUUID: "modelUUID", pointUUID: "point2UUID" }],
},
},
{
@@ -152,8 +152,8 @@ export class pointService {
},
],
connections: {
source: { pathUUID: "modelUUID", pointUUID: "point3UUID" },
targets: [{ pathUUID: "modelUUID", pointUUID: "point3UUID" }],
source: { modelUUID: "modelUUID", pointUUID: "point3UUID" },
targets: [{ modelUUID: "modelUUID", pointUUID: "point3UUID" }],
},
},
];
@@ -183,7 +183,7 @@ export class pointService {
},
connections: {
source: { modelUUID: "modelUUID", pointUUID: "point1UUID" },
targets: [{ pathUUID: "modelUUID", pointUUID: "point1UUID" }],
targets: [{ modelUUID: "modelUUID", pointUUID: "point1UUID" }],
},
speed: 2,
};