@manyos/smileconnect-api 1.51.0 → 1.52.0
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.
- package/docs/configuration/config.md +6 -0
- package/docs/releases.md +10 -1
- package/package.json +2 -2
|
@@ -375,3 +375,9 @@ Url of the Midtier Appwizzard.
|
|
|
375
375
|
|
|
376
376
|
Sample:
|
|
377
377
|
*REACT_APP_WIZZARD_URL=https://midtier.mydomain.io/arsys/forms/arserver/MYS:SMILEconnect_NewVendor*
|
|
378
|
+
|
|
379
|
+
### REACT_APP_DISABLED_MODULES
|
|
380
|
+
Use this to disable modules in SMILEconnect.
|
|
381
|
+
|
|
382
|
+
Sample:
|
|
383
|
+
*REACT_APP_DISABLED_MODULES=workOrder,problem*
|
package/docs/releases.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# Release Notes
|
|
2
2
|
|
|
3
3
|
## API
|
|
4
|
+
### 1.52.0 - 09.11.21
|
|
5
|
+
Allow 16k header
|
|
4
6
|
|
|
5
|
-
### 1.
|
|
7
|
+
### 1.51.0 - 05.11.21
|
|
6
8
|
Add setAttachment & getAttachment to Remedy Adapter
|
|
7
9
|
|
|
8
10
|
### 1.50.0 - 05.11.21
|
|
@@ -102,6 +104,9 @@ e.g.
|
|
|
102
104
|
|
|
103
105
|
## Event Manager
|
|
104
106
|
|
|
107
|
+
### 1.19.0 - 09.11.21
|
|
108
|
+
Allow 16k header
|
|
109
|
+
|
|
105
110
|
### 1.18.0 - 03.11.21
|
|
106
111
|
Add parameter SSO_USERNAME_ATTRIBUTE to config.
|
|
107
112
|
|
|
@@ -121,6 +126,10 @@ Update Record added to [Remedy Adapter](adapter#remedy).
|
|
|
121
126
|
The eventmanager will check all outbound webhooks for an event. If one fails, the whole Event will be set to error and the details will be added to the error message.
|
|
122
127
|
|
|
123
128
|
## GUI
|
|
129
|
+
|
|
130
|
+
### 1.7.0 - 09.11.21
|
|
131
|
+
Added Parameter REACT_APP_DISABLED_MODULES to disable Modules
|
|
132
|
+
|
|
124
133
|
### 1.6.0 - 05.11.21
|
|
125
134
|
Added attachmentScripts to GUI
|
|
126
135
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manyos/smileconnect-api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.52.0",
|
|
4
4
|
"description": "A proxy and abstraction layer for BMCs IT Service Management Suite",
|
|
5
5
|
"main": "app.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test-bak": "mocha --exit || true",
|
|
8
|
-
"start": "version=$npm_package_version node app.js",
|
|
8
|
+
"start": "version=$npm_package_version node --max-http-header-size=16384 app.js",
|
|
9
9
|
"test": "jenkins-mocha --exit || true"
|
|
10
10
|
},
|
|
11
11
|
"author": "Robert Hannemann",
|