@manyos/smileconnect-api 1.41.0 → 1.41.1

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/_sidebar.md CHANGED
@@ -1,25 +1,26 @@
1
1
  - Getting started
2
2
 
3
- - [Quick start](quickstart.md)
4
- - [Architecture](architecture.md)
3
+ - [Quick start](quickstart)
4
+ - [Architecture](architecture)
5
5
  - [API Specification](https://smileconnect.manyosdocs.de/spec/index.html)
6
+ - [Release notes](releases)
6
7
 
7
8
  - Configuration
8
9
 
9
- - [Global Settings](configuration/config.md)
10
- - [Mapping](configuration/mapping.md)
11
- - [Client Configuration](configuration/clients.md)
12
- - [Events](configuration/events.md)
10
+ - [Global Settings](configuration/config)
11
+ - [Mapping](configuration/mapping)
12
+ - [Client Configuration](configuration/clients)
13
+ - [Events](configuration/events)
13
14
 
14
15
  - Data manipulation
15
16
 
16
- - [Scripts](scripts.md)
17
- - [Adapter](adapter.md)
17
+ - [Scripts](scripts)
18
+ - [Adapter](adapter)
18
19
 
19
20
  - How-Tos
20
21
 
21
- - [Authentication](howto/token.md)
22
- - [Incident Requests](howto/incidents.md)
23
- - [Handle Worklogs](howto/worklogs.md)
24
- - [Handle Attachments](howto/attachments.md)
25
- - [Read Configuration Items](howto/cmdbobjects.md)
22
+ - [Authentication](howto/token)
23
+ - [Incident Requests](howto/incidents)
24
+ - [Handle Worklogs](howto/worklogs)
25
+ - [Handle Attachments](howto/attachments)
26
+ - [Read Configuration Items](howto/cmdbobjects)
package/docs/adapter.md CHANGED
@@ -49,11 +49,11 @@ return adapterParams;
49
49
 
50
50
  The different Adapter and their configuration values are described in detail below.
51
51
 
52
- ## Remedy
52
+ # Remedy
53
53
 
54
54
  The Remedy Adapter is used to connect to BMC Remedy Action Request Servers. It allows you to create, query and update records.
55
55
 
56
- ### Configuration values
56
+ ## Configuration values
57
57
 
58
58
  **arServer**: The name of the arsystem server. e.g. ars1.mydomain.com
59
59
 
@@ -71,9 +71,9 @@ The Remedy Adapter is used to connect to BMC Remedy Action Request Servers. It a
71
71
 
72
72
  **limitMax**: The maximum number of records retrieved in a query. This parameter can be used to enforce a limit. The limit can not be overwritten by queries.
73
73
 
74
- ### Functions
74
+ ## Functions
75
75
 
76
- #### Search
76
+ ### Search
77
77
 
78
78
  ```javascript
79
79
  async function search(form, query, fields, options)
@@ -125,7 +125,7 @@ Will return an object with a data array and some meta data.
125
125
  ```
126
126
 
127
127
 
128
- #### Create
128
+ ### Create
129
129
 
130
130
  ```javascript
131
131
  async function create(form, entry, options)
@@ -172,7 +172,7 @@ const resultCreate = await adapter.remedy.create(settings.createForm, settings.e
172
172
 
173
173
  Will return return the id of the created record. e.g. REQ00000002893 or throw an error.
174
174
 
175
- #### Update
175
+ ### Update
176
176
 
177
177
  ```javascript
178
178
  async function update(form, id, entry, options)
@@ -222,7 +222,7 @@ const resultUpdate = await adapter.remedy.update(settings.form, settings.id, set
222
222
  Will return return the id of the updated record. e.g. 000000000000115 or throw an error.
223
223
 
224
224
 
225
- #### Options
225
+ ### Options
226
226
 
227
227
  * limit
228
228
 
@@ -267,10 +267,10 @@ const options = {
267
267
  }
268
268
  ```
269
269
 
270
- ## LDAP
270
+ # LDAP
271
271
 
272
272
 
273
- ### Configuration values
273
+ ## Configuration values
274
274
 
275
275
  * ldapUrl
276
276
 
@@ -284,10 +284,10 @@ The Bind DN to authenticate with. e.g. cn=smilecatalog-user,dc=example,dc=com
284
284
 
285
285
  The secret to use with the Bind DN. e.g. password
286
286
 
287
- ### Functions
287
+ ## Functions
288
288
 
289
289
 
290
- #### Search
290
+ ### Search
291
291
 
292
292
  ```javascript
293
293
  async search(base, options)
@@ -338,11 +338,11 @@ Returns an array of records. e.g.
338
338
  ]
339
339
  ```
340
340
 
341
- ## SMILEconnect
341
+ # SMILEconnect
342
342
 
343
343
  The SMILEconnect Adapter can be used to do calls against SMILEconnect. It will act as it is called externally.
344
344
 
345
- ### Configuration values
345
+ ## Configuration values
346
346
 
347
347
  **smileConnectUrl**: The url of your SMILEconnect installation e.g. https://smileconnect.mydomain.io
348
348
 
@@ -352,7 +352,7 @@ The SMILEconnect Adapter can be used to do calls against SMILEconnect. It will a
352
352
 
353
353
  **secret**: The secret of the client. e.g. jd92hd-03283d-2293s-232
354
354
 
355
- ### Functions
355
+ ## Functions
356
356
 
357
357
  The SMILEconnect adapter is an open source project.
358
358
 
package/docs/releases.md CHANGED
@@ -2,10 +2,13 @@
2
2
 
3
3
  ## API
4
4
 
5
- ### 1.41.0 - 02.08.21
5
+ ### 1.41.1 - 10.08.21
6
6
 
7
- Update Record added to [Remedy Adapter](adapter#remedy).
7
+ Fix issue with sort in Remedy Adapter
8
+
9
+ ### 1.41.0 - 03.08.21
8
10
 
11
+ Update Record added to [Remedy Adapter](adapter#remedy).
9
12
 
10
13
  ### 1.40.0 - 30.07.21
11
14
 
@@ -19,8 +22,20 @@ e.g.
19
22
 
20
23
  ## Event Manager
21
24
 
25
+ ### 1.16.0 - 03.08.21
26
+
27
+ Update Record added to [Remedy Adapter](adapter#remedy).
28
+
22
29
  ### 1.15.0 - 30.07.21
23
30
 
24
31
  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.
25
32
 
26
- ## GUI
33
+ ## GUI
34
+
35
+ ### 1.4.17 - 09.08.21
36
+
37
+ Multiple events caused an error in the UI.
38
+
39
+ ### 1.4.16 - 02.08.21
40
+
41
+ Add Auth + Scripts to Event config
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manyos/smileconnect-api",
3
- "version": "1.41.0",
3
+ "version": "1.41.1",
4
4
  "description": "A proxy and abstraction layer for BMCs IT Service Management Suite",
5
5
  "main": "app.js",
6
6
  "scripts": {