@aibee/crc-bmap 0.14.11 → 0.14.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/meta.json CHANGED
@@ -386,7 +386,7 @@
386
386
  "format": "esm"
387
387
  },
388
388
  "../lib/src/utils/road2.js": {
389
- "bytes": 55224,
389
+ "bytes": 55766,
390
390
  "imports": [
391
391
  {
392
392
  "path": "../../../node_modules/.pnpm/@swc+helpers@0.5.17/node_modules/@swc/helpers/esm/_extends.js",
@@ -2160,7 +2160,7 @@
2160
2160
  "format": "esm"
2161
2161
  },
2162
2162
  "../src/utils/road2.ts": {
2163
- "bytes": 53504,
2163
+ "bytes": 54042,
2164
2164
  "imports": [
2165
2165
  {
2166
2166
  "path": "../../../node_modules/.pnpm/node-dijkstra@2.5.0/node_modules/node-dijkstra/libs/Graph.js",
@@ -9362,7 +9362,7 @@
9362
9362
  "bytesInOutput": 5426
9363
9363
  },
9364
9364
  "../lib/src/utils/road2.js": {
9365
- "bytesInOutput": 17042
9365
+ "bytesInOutput": 17294
9366
9366
  },
9367
9367
  "../lib/src/factory/unique-key.js": {
9368
9368
  "bytesInOutput": 733
@@ -9764,7 +9764,7 @@
9764
9764
  "bytesInOutput": 575
9765
9765
  }
9766
9766
  },
9767
- "bytes": 405797
9767
+ "bytes": 406049
9768
9768
  }
9769
9769
  }
9770
9770
  }
@@ -229,6 +229,29 @@ export declare class RoadNetwork2 {
229
229
  parkingType?: ParkingType;
230
230
  }>;
231
231
  lineMap: Map<string, Map<string, number>>;
232
+ weightPointMap: Map<string, {
233
+ id: string;
234
+ cds: [number, number];
235
+ name: string;
236
+ type: "normal" | "graph" | "straightLadder" | "staircase" | "escalator" | "facility" | "wall" | "lane" | "parkingSpace" | "texture2d" | "glb" | "ramp" | "connectionPoint" | "store";
237
+ floor: string;
238
+ nodeId: string;
239
+ visible: boolean;
240
+ targetId: string;
241
+ userData: Record<string, string>;
242
+ escalatorType: "" | "single" | "double" | "jd";
243
+ escalatorDirection: "" | "up" | "down" | "exit";
244
+ openStatus?: boolean;
245
+ startTime?: string;
246
+ endTime?: string;
247
+ permission?: number;
248
+ relatedId?: string;
249
+ crossName?: string;
250
+ isStarted?: boolean;
251
+ passWeight?: number;
252
+ coverageArea?: number;
253
+ parkingType?: ParkingType;
254
+ }[]>;
232
255
  baseRoute: Graph;
233
256
  escalatorRoute: Graph;
234
257
  straightLadderRoute: Graph;