@5minds/processcube_engine_sdk 5.1.0-develop-ed0a28-lvue8ufc → 5.1.0-develop-d39e4b-lw7odtpv
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.
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
* - version
|
|
12
12
|
* - authorityUrl
|
|
13
13
|
* - allowAnonymousRootAccess
|
|
14
|
+
* - loadedExtensions
|
|
14
15
|
* - extraInfo
|
|
15
16
|
* properties:
|
|
16
17
|
* name:
|
|
@@ -28,6 +29,18 @@
|
|
|
28
29
|
* allowAnonymousRootAccess:
|
|
29
30
|
* type: boolean
|
|
30
31
|
* description: Flag indicating whether or not anonymous users are allowed to access the root route.
|
|
32
|
+
* loadedExtensions:
|
|
33
|
+
* type: array
|
|
34
|
+
* description: Contains the name and version of all loaded extensions.
|
|
35
|
+
* items:
|
|
36
|
+
* type: object
|
|
37
|
+
* properties:
|
|
38
|
+
* name:
|
|
39
|
+
* type: string
|
|
40
|
+
* description: Name of the extension.
|
|
41
|
+
* version:
|
|
42
|
+
* type: string
|
|
43
|
+
* description: Version of the extension.
|
|
31
44
|
* extraInfo:
|
|
32
45
|
* type: object
|
|
33
46
|
* description: Contains additional information about the application.
|
|
@@ -39,5 +52,9 @@ export type ApplicationInfo = {
|
|
|
39
52
|
version: string;
|
|
40
53
|
authorityUrl: string;
|
|
41
54
|
allowAnonymousRootAccess: boolean;
|
|
55
|
+
loadedExtensions: Array<{
|
|
56
|
+
name: string;
|
|
57
|
+
version: string;
|
|
58
|
+
}>;
|
|
42
59
|
extraInfo: any;
|
|
43
60
|
};
|
package/package.json
CHANGED