@vsleem-realsee-viewer/shared 2.0.8 → 2.0.9

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +11 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -36,15 +36,25 @@ export declare class AppError extends Error {
36
36
  * 业务错误码枚举(扩展无返回值错误)
37
37
  */
38
38
  export declare enum AppErrorCode {
39
+ /** 没有对应的平面信息(GeoPoint) */
39
40
  GeoPointNoPlane = 9000,
41
+ /** GIS中未映射的点(Point) */
40
42
  PointUnmappedGIS = 9010,
43
+ /** 点缺少XYZ坐标信息 */
41
44
  PointNoXYZ = 9011,
45
+ /** 点没有对应的平面信息(Point) */
42
46
  PointNoPlane = 9012,
47
+ /** 相对地图中的平面不匹配 */
43
48
  RelativePlaneUnmatch = 9020,
49
+ /** 相对地图中没有对应的平面信息 */
44
50
  RelativeNoPlane = 9021,
51
+ /** 相对地图JSON格式错误 */
45
52
  RelativeJsonError = 9022,
53
+ /** 请求的返回码错误 */
46
54
  RequestCodeError = 9030,
55
+ /** 请求的返回结果错误 */
47
56
  RequestResultError = 9031,
57
+ /** 请求发生未知错误 */
48
58
  RequestUnknownError = 9032
49
59
  }
50
60
 
@@ -83,6 +93,7 @@ declare function bindCoordinate(data: CoordinateModel[], options?: RequestOption
83
93
  export declare type BindingModel = {
84
94
  id: number;
85
95
  modelId: number;
96
+ parentId: number;
86
97
  };
87
98
 
88
99
  export declare type CADModel = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vsleem-realsee-viewer/shared",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "private": false,
5
5
  "description": "Shared utilities for VSLeem RealSee Viewer",
6
6
  "main": "./dist/index.umd.js",