@etsoo/smarterp-core 1.0.7 → 1.0.8
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,5 @@
|
|
|
1
1
|
import { IdentityType } from "../IdentityType";
|
|
2
|
+
import { AppUrl } from "./AppData";
|
|
2
3
|
/**
|
|
3
4
|
* Application query data
|
|
4
5
|
* 应用查询数据
|
|
@@ -24,6 +25,11 @@ export type AppQueryData = {
|
|
|
24
25
|
* 身份类型
|
|
25
26
|
*/
|
|
26
27
|
identityType: IdentityType;
|
|
28
|
+
/**
|
|
29
|
+
* URLs
|
|
30
|
+
* 网址
|
|
31
|
+
*/
|
|
32
|
+
urls: AppUrl[];
|
|
27
33
|
/**
|
|
28
34
|
* Require local URL or not
|
|
29
35
|
* 是否需要本地地址
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IdentityType } from "../IdentityType";
|
|
2
|
+
import { AppUrl } from "./AppData";
|
|
2
3
|
/**
|
|
3
4
|
* Application query data
|
|
4
5
|
* 应用查询数据
|
|
@@ -24,6 +25,11 @@ export type AppQueryData = {
|
|
|
24
25
|
* 身份类型
|
|
25
26
|
*/
|
|
26
27
|
identityType: IdentityType;
|
|
28
|
+
/**
|
|
29
|
+
* URLs
|
|
30
|
+
* 网址
|
|
31
|
+
*/
|
|
32
|
+
urls: AppUrl[];
|
|
27
33
|
/**
|
|
28
34
|
* Require local URL or not
|
|
29
35
|
* 是否需要本地地址
|
package/package.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IdentityType } from "../IdentityType";
|
|
2
|
+
import { AppUrl } from "./AppData";
|
|
2
3
|
|
|
3
4
|
/**
|
|
4
5
|
* Application query data
|
|
@@ -29,6 +30,12 @@ export type AppQueryData = {
|
|
|
29
30
|
*/
|
|
30
31
|
identityType: IdentityType;
|
|
31
32
|
|
|
33
|
+
/**
|
|
34
|
+
* URLs
|
|
35
|
+
* 网址
|
|
36
|
+
*/
|
|
37
|
+
urls: AppUrl[];
|
|
38
|
+
|
|
32
39
|
/**
|
|
33
40
|
* Require local URL or not
|
|
34
41
|
* 是否需要本地地址
|