@etsoo/smarterp-core 1.0.90 → 1.0.92

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.
@@ -1,4 +1,4 @@
1
- import { PlaceLocation } from "./PlaceLocation";
1
+ import { PlaceLocation } from "@etsoo/appscript";
2
2
  /**
3
3
  * Common place
4
4
  * 通用地点
@@ -37,7 +37,15 @@ export type PlaceCommon = {
37
37
  */
38
38
  district?: string;
39
39
  /**
40
- * Postcode, 邮政编码
40
+ * Route, 路线
41
41
  */
42
- postcode?: string;
42
+ route?: string;
43
+ /**
44
+ * Street number, 门牌号
45
+ */
46
+ street?: string;
47
+ /**
48
+ * Postal code, 邮政编码
49
+ */
50
+ postalCode?: string;
43
51
  };
@@ -27,7 +27,6 @@ export * from "./dto/public/ChinaPinData";
27
27
  export * from "./dto/public/CurrencyItem";
28
28
  export * from "./dto/public/MemberInvitationDto";
29
29
  export * from "./dto/public/PlaceCommon";
30
- export * from "./dto/public/PlaceLocation";
31
30
  export * from "./dto/public/RegionData";
32
31
  export * from "./dto/user/AuditHistoryDto";
33
32
  export * from "./dto/user/DeviceListDto";
package/lib/cjs/index.js CHANGED
@@ -44,7 +44,6 @@ __exportStar(require("./dto/public/ChinaPinData"), exports);
44
44
  __exportStar(require("./dto/public/CurrencyItem"), exports);
45
45
  __exportStar(require("./dto/public/MemberInvitationDto"), exports);
46
46
  __exportStar(require("./dto/public/PlaceCommon"), exports);
47
- __exportStar(require("./dto/public/PlaceLocation"), exports);
48
47
  __exportStar(require("./dto/public/RegionData"), exports);
49
48
  __exportStar(require("./dto/user/AuditHistoryDto"), exports);
50
49
  __exportStar(require("./dto/user/DeviceListDto"), exports);
@@ -1,4 +1,4 @@
1
- import { PlaceLocation } from "../../dto/public/PlaceLocation";
1
+ import { PlaceLocation } from "@etsoo/appscript";
2
2
  /**
3
3
  * API output type
4
4
  * API输出类型
@@ -1,4 +1,4 @@
1
- import { PlaceLocation } from "./PlaceLocation";
1
+ import { PlaceLocation } from "@etsoo/appscript";
2
2
  /**
3
3
  * Common place
4
4
  * 通用地点
@@ -37,7 +37,15 @@ export type PlaceCommon = {
37
37
  */
38
38
  district?: string;
39
39
  /**
40
- * Postcode, 邮政编码
40
+ * Route, 路线
41
41
  */
42
- postcode?: string;
42
+ route?: string;
43
+ /**
44
+ * Street number, 门牌号
45
+ */
46
+ street?: string;
47
+ /**
48
+ * Postal code, 邮政编码
49
+ */
50
+ postalCode?: string;
43
51
  };
@@ -27,7 +27,6 @@ export * from "./dto/public/ChinaPinData";
27
27
  export * from "./dto/public/CurrencyItem";
28
28
  export * from "./dto/public/MemberInvitationDto";
29
29
  export * from "./dto/public/PlaceCommon";
30
- export * from "./dto/public/PlaceLocation";
31
30
  export * from "./dto/public/RegionData";
32
31
  export * from "./dto/user/AuditHistoryDto";
33
32
  export * from "./dto/user/DeviceListDto";
package/lib/mjs/index.js CHANGED
@@ -28,7 +28,6 @@ export * from "./dto/public/ChinaPinData";
28
28
  export * from "./dto/public/CurrencyItem";
29
29
  export * from "./dto/public/MemberInvitationDto";
30
30
  export * from "./dto/public/PlaceCommon";
31
- export * from "./dto/public/PlaceLocation";
32
31
  export * from "./dto/public/RegionData";
33
32
  export * from "./dto/user/AuditHistoryDto";
34
33
  export * from "./dto/user/DeviceListDto";
@@ -1,4 +1,4 @@
1
- import { PlaceLocation } from "../../dto/public/PlaceLocation";
1
+ import { PlaceLocation } from "@etsoo/appscript";
2
2
  /**
3
3
  * API output type
4
4
  * API输出类型
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/smarterp-core",
3
- "version": "1.0.90",
3
+ "version": "1.0.92",
4
4
  "description": "TypeScript APIs for SmartERP Core",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -53,8 +53,8 @@
53
53
  "vitest": "^3.2.4"
54
54
  },
55
55
  "dependencies": {
56
- "@etsoo/appscript": "^1.6.42",
57
- "@etsoo/materialui": "^1.5.65",
56
+ "@etsoo/appscript": "^1.6.43",
57
+ "@etsoo/materialui": "^1.5.66",
58
58
  "@etsoo/react": "^1.8.49",
59
59
  "@etsoo/shared": "^1.2.75",
60
60
  "@etsoo/toolpad": "^1.0.40",
@@ -1,4 +1,4 @@
1
- import { PlaceLocation } from "./PlaceLocation";
1
+ import { PlaceLocation } from "@etsoo/appscript";
2
2
 
3
3
  /**
4
4
  * Common place
@@ -46,7 +46,17 @@ export type PlaceCommon = {
46
46
  district?: string;
47
47
 
48
48
  /**
49
- * Postcode, 邮政编码
49
+ * Route, 路线
50
50
  */
51
- postcode?: string;
51
+ route?: string;
52
+
53
+ /**
54
+ * Street number, 门牌号
55
+ */
56
+ street?: string;
57
+
58
+ /**
59
+ * Postal code, 邮政编码
60
+ */
61
+ postalCode?: string;
52
62
  };
package/src/index.ts CHANGED
@@ -32,7 +32,6 @@ export * from "./dto/public/ChinaPinData";
32
32
  export * from "./dto/public/CurrencyItem";
33
33
  export * from "./dto/public/MemberInvitationDto";
34
34
  export * from "./dto/public/PlaceCommon";
35
- export * from "./dto/public/PlaceLocation";
36
35
  export * from "./dto/public/RegionData";
37
36
 
38
37
  export * from "./dto/user/AuditHistoryDto";
@@ -1,4 +1,4 @@
1
- import { PlaceLocation } from "../../dto/public/PlaceLocation";
1
+ import { PlaceLocation } from "@etsoo/appscript";
2
2
 
3
3
  /**
4
4
  * API output type
@@ -1,14 +0,0 @@
1
- /**
2
- * Place location
3
- * 地点位置
4
- */
5
- export type PlaceLocation = {
6
- /**
7
- * Latitude, 纬度
8
- */
9
- Lat: number;
10
- /**
11
- * Longitude, 经度
12
- */
13
- Lng: number;
14
- };
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,14 +0,0 @@
1
- /**
2
- * Place location
3
- * 地点位置
4
- */
5
- export type PlaceLocation = {
6
- /**
7
- * Latitude, 纬度
8
- */
9
- Lat: number;
10
- /**
11
- * Longitude, 经度
12
- */
13
- Lng: number;
14
- };
@@ -1 +0,0 @@
1
- export {};
@@ -1,15 +0,0 @@
1
- /**
2
- * Place location
3
- * 地点位置
4
- */
5
- export type PlaceLocation = {
6
- /**
7
- * Latitude, 纬度
8
- */
9
- Lat: number;
10
-
11
- /**
12
- * Longitude, 经度
13
- */
14
- Lng: number;
15
- };