@aibee/crc-bmap 0.14.5 → 0.14.6

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": 53003,
389
+ "bytes": 53843,
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": 51917,
2163
+ "bytes": 52389,
2164
2164
  "imports": [
2165
2165
  {
2166
2166
  "path": "../../../node_modules/.pnpm/node-dijkstra@2.5.0/node_modules/node-dijkstra/libs/Graph.js",
@@ -9347,7 +9347,7 @@
9347
9347
  "bytesInOutput": 5426
9348
9348
  },
9349
9349
  "../lib/src/utils/road2.js": {
9350
- "bytesInOutput": 16560
9350
+ "bytesInOutput": 16550
9351
9351
  },
9352
9352
  "../lib/src/factory/unique-key.js": {
9353
9353
  "bytesInOutput": 733
@@ -9749,7 +9749,7 @@
9749
9749
  "bytesInOutput": 575
9750
9750
  }
9751
9751
  },
9752
- "bytes": 404080
9752
+ "bytes": 404070
9753
9753
  }
9754
9754
  }
9755
9755
  }
@@ -80,7 +80,9 @@ export declare class AibeeLoader extends EventDispatcher<AibeeLoaderEventMap> {
80
80
  getFloorJsonDataByFloorInfo(floorInfo: AibeeFloorInfo): Promise<AibeeFloorData>;
81
81
  getFloorJsonData(floor: string): Promise<AibeeFloorData | null>;
82
82
  getRoadNetworkData(): Promise<RoadData2[]>;
83
- getFacilitiesData(): Promise<any>;
83
+ getFacilitiesData(): Promise<{
84
+ infrastructures: any[];
85
+ } | null>;
84
86
  getOtherDataByFreeTime(): Promise<void>;
85
87
  getMulFloorsData(floors: string[]): Promise<Floor[]>;
86
88
  getDataByUrl(url: string): Promise<Floor>;
@@ -202,27 +202,8 @@ export declare class RoadNetwork2 {
202
202
  parkingType?: ParkingType;
203
203
  }[]>;
204
204
  connectionPointMap: Map<string, {
205
- id: string;
206
- cds: [number, number];
207
- name: string;
208
- type: "normal" | "graph" | "straightLadder" | "staircase" | "escalator" | "facility" | "wall" | "lane" | "parkingSpace" | "texture2d" | "glb" | "ramp" | "connectionPoint" | "store";
209
- floor: string;
210
- nodeId: string;
211
- visible: boolean;
212
- targetId: string;
213
- userData: Record<string, string>;
214
- escalatorType: "" | "single" | "double" | "jd";
215
- escalatorDirection: "" | "up" | "down" | "exit";
216
- openStatus?: boolean;
217
- startTime?: string;
218
- endTime?: string;
219
- permission?: number;
220
- relatedId?: string;
221
- crossName?: string;
222
- isStarted?: boolean;
223
- passWeight?: number;
224
- coverageArea?: number;
225
- parkingType?: ParkingType;
205
+ start?: RoadData2["points"][0];
206
+ end?: RoadData2["points"][0];
226
207
  }[]>;
227
208
  parkingMap: Map<string, {
228
209
  id: string;