@etsoo/appscript 1.1.84 → 1.1.85
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.
|
@@ -3,25 +3,25 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export interface IExternalSettings {
|
|
5
5
|
/**
|
|
6
|
-
* API endpoint
|
|
6
|
+
* Core system API endpoint
|
|
7
7
|
*/
|
|
8
8
|
readonly endpoint: string;
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* Core system app root url
|
|
11
11
|
*/
|
|
12
12
|
readonly homepage: string;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Core system web url
|
|
15
15
|
*/
|
|
16
16
|
readonly webUrl: string;
|
|
17
17
|
/**
|
|
18
|
-
*
|
|
18
|
+
* Service API endpoint
|
|
19
19
|
*/
|
|
20
|
-
readonly
|
|
20
|
+
readonly serviceEndpoint?: string;
|
|
21
21
|
/**
|
|
22
|
-
*
|
|
22
|
+
* Service web Url
|
|
23
23
|
*/
|
|
24
|
-
readonly
|
|
24
|
+
readonly serviceUrl?: string;
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
27
27
|
* External settings namespace
|
|
@@ -3,25 +3,25 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export interface IExternalSettings {
|
|
5
5
|
/**
|
|
6
|
-
* API endpoint
|
|
6
|
+
* Core system API endpoint
|
|
7
7
|
*/
|
|
8
8
|
readonly endpoint: string;
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* Core system app root url
|
|
11
11
|
*/
|
|
12
12
|
readonly homepage: string;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Core system web url
|
|
15
15
|
*/
|
|
16
16
|
readonly webUrl: string;
|
|
17
17
|
/**
|
|
18
|
-
*
|
|
18
|
+
* Service API endpoint
|
|
19
19
|
*/
|
|
20
|
-
readonly
|
|
20
|
+
readonly serviceEndpoint?: string;
|
|
21
21
|
/**
|
|
22
|
-
*
|
|
22
|
+
* Service web Url
|
|
23
23
|
*/
|
|
24
|
-
readonly
|
|
24
|
+
readonly serviceUrl?: string;
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
27
27
|
* External settings namespace
|
package/package.json
CHANGED
|
@@ -3,29 +3,29 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export interface IExternalSettings {
|
|
5
5
|
/**
|
|
6
|
-
* API endpoint
|
|
6
|
+
* Core system API endpoint
|
|
7
7
|
*/
|
|
8
8
|
readonly endpoint: string;
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* Core system app root url
|
|
12
12
|
*/
|
|
13
13
|
readonly homepage: string;
|
|
14
14
|
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* Core system web url
|
|
17
17
|
*/
|
|
18
18
|
readonly webUrl: string;
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* Service API endpoint
|
|
22
22
|
*/
|
|
23
|
-
readonly
|
|
23
|
+
readonly serviceEndpoint?: string;
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* Service web Url
|
|
27
27
|
*/
|
|
28
|
-
readonly
|
|
28
|
+
readonly serviceUrl?: string;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
/**
|