@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
- * App root url
10
+ * Core system app root url
11
11
  */
12
12
  readonly homepage: string;
13
13
  /**
14
- * Cloud web url
14
+ * Core system web url
15
15
  */
16
16
  readonly webUrl: string;
17
17
  /**
18
- * Core system Url
18
+ * Service API endpoint
19
19
  */
20
- readonly coreUrl?: string;
20
+ readonly serviceEndpoint?: string;
21
21
  /**
22
- * Core system API
22
+ * Service web Url
23
23
  */
24
- readonly coreApi?: string;
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
- * App root url
10
+ * Core system app root url
11
11
  */
12
12
  readonly homepage: string;
13
13
  /**
14
- * Cloud web url
14
+ * Core system web url
15
15
  */
16
16
  readonly webUrl: string;
17
17
  /**
18
- * Core system Url
18
+ * Service API endpoint
19
19
  */
20
- readonly coreUrl?: string;
20
+ readonly serviceEndpoint?: string;
21
21
  /**
22
- * Core system API
22
+ * Service web Url
23
23
  */
24
- readonly coreApi?: string;
24
+ readonly serviceUrl?: string;
25
25
  }
26
26
  /**
27
27
  * External settings namespace
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.1.84",
3
+ "version": "1.1.85",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -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
- * App root url
11
+ * Core system app root url
12
12
  */
13
13
  readonly homepage: string;
14
14
 
15
15
  /**
16
- * Cloud web url
16
+ * Core system web url
17
17
  */
18
18
  readonly webUrl: string;
19
19
 
20
20
  /**
21
- * Core system Url
21
+ * Service API endpoint
22
22
  */
23
- readonly coreUrl?: string;
23
+ readonly serviceEndpoint?: string;
24
24
 
25
25
  /**
26
- * Core system API
26
+ * Service web Url
27
27
  */
28
- readonly coreApi?: string;
28
+ readonly serviceUrl?: string;
29
29
  }
30
30
 
31
31
  /**