@etsoo/smarterp-core 1.0.90 → 1.0.91
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.
|
@@ -37,7 +37,15 @@ export type PlaceCommon = {
|
|
|
37
37
|
*/
|
|
38
38
|
district?: string;
|
|
39
39
|
/**
|
|
40
|
-
*
|
|
40
|
+
* Route, 路线
|
|
41
41
|
*/
|
|
42
|
-
|
|
42
|
+
route?: string;
|
|
43
|
+
/**
|
|
44
|
+
* Street number, 门牌号
|
|
45
|
+
*/
|
|
46
|
+
street?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Postal code, 邮政编码
|
|
49
|
+
*/
|
|
50
|
+
postalCode?: string;
|
|
43
51
|
};
|
|
@@ -37,7 +37,15 @@ export type PlaceCommon = {
|
|
|
37
37
|
*/
|
|
38
38
|
district?: string;
|
|
39
39
|
/**
|
|
40
|
-
*
|
|
40
|
+
* Route, 路线
|
|
41
41
|
*/
|
|
42
|
-
|
|
42
|
+
route?: string;
|
|
43
|
+
/**
|
|
44
|
+
* Street number, 门牌号
|
|
45
|
+
*/
|
|
46
|
+
street?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Postal code, 邮政编码
|
|
49
|
+
*/
|
|
50
|
+
postalCode?: string;
|
|
43
51
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/smarterp-core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.91",
|
|
4
4
|
"description": "TypeScript APIs for SmartERP Core",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/mjs/index.js",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@etsoo/appscript": "^1.6.42",
|
|
57
|
-
"@etsoo/materialui": "^1.5.
|
|
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",
|
|
@@ -46,7 +46,17 @@ export type PlaceCommon = {
|
|
|
46
46
|
district?: string;
|
|
47
47
|
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
49
|
+
* Route, 路线
|
|
50
50
|
*/
|
|
51
|
-
|
|
51
|
+
route?: string;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Street number, 门牌号
|
|
55
|
+
*/
|
|
56
|
+
street?: string;
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* Postal code, 邮政编码
|
|
60
|
+
*/
|
|
61
|
+
postalCode?: string;
|
|
52
62
|
};
|