@aibee/crc-bmap 0.8.17 → 0.8.18

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.
@@ -41,7 +41,7 @@ export interface Facility {
41
41
  floor_names: string[];
42
42
  type_name: string;
43
43
  infra_type_icon: string;
44
- entry_infra_type: "facility" | "escalator" | "straightLadder" | "staircase" | "ramp";
44
+ entry_infra_type: "facility" | "escalator" | "straightLadder" | "staircase" | "ramp" | "connectionPoint";
45
45
  entry_start_floor: string;
46
46
  entry_end_floor: string;
47
47
  type_alias_name: string;
@@ -168,6 +168,25 @@ export declare class RoadNetwork2 {
168
168
  permission?: number;
169
169
  relatedId?: string;
170
170
  }[]>;
171
+ connectionPointMap: Map<string, {
172
+ id: string;
173
+ cds: [number, number];
174
+ name: string;
175
+ type: "normal" | "graph" | "straightLadder" | "staircase" | "escalator" | "facility" | "wall" | "lane" | "parkingSpace" | "texture2d" | "glb" | "store";
176
+ floor: string;
177
+ locked: boolean;
178
+ nodeId: string;
179
+ visible: boolean;
180
+ targetId: string;
181
+ userData: Record<string, string>;
182
+ escalatorType: "" | "single" | "double" | "jd";
183
+ escalatorDirection: "" | "up" | "down" | "exit";
184
+ openStatus?: boolean;
185
+ startTime?: string;
186
+ endTime?: string;
187
+ permission?: number;
188
+ relatedId?: string;
189
+ }[]>;
171
190
  parkingMap: Map<string, {
172
191
  id: string;
173
192
  cds: [number, number];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aibee/crc-bmap",
3
- "version": "0.8.17",
3
+ "version": "0.8.18",
4
4
  "description": "",
5
5
  "main": "lib/bmap.min.js",
6
6
  "module": "lib/bmap.esm.js",
@@ -18,10 +18,10 @@
18
18
  "start": "cd example && vite",
19
19
  "dev": "cd ./build && ./dev",
20
20
  "publish:all": "cd ./build && ./publish",
21
- "publish:npm": "npm run publish:pre && npm publish --access public --registry https://registry.npmjs.org",
22
- "publish:aibee": "npm run publish:pre && npm publish --registry https://npm.aibee.cn",
21
+ "publish:npm": "npm run publish:pre && npm publish --access public --registry https://registry.npmjs.org && npm run publish:post",
22
+ "publish:aibee": "npm run publish:pre && npm publish --registry https://npm.aibee.cn && npm run publish:post",
23
23
  "publish:pre": "mv .npmrc .npmrc.bak",
24
- "postpublish": "mv .npmrc.bak .npmrc"
24
+ "publish:post": "mv .npmrc.bak .npmrc"
25
25
  },
26
26
  "keywords": [],
27
27
  "author": "",