@manyos/smileconnect-api 1.41.3 → 1.42.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/app.js +6 -3
- package/conf/clients.json +8 -7
- package/conf/customFormMapping.json +30 -0
- package/conf/mapping.json +4 -34
- package/controller/customFormController.js +13 -13
- package/controller/taskController.js +11 -11
- package/controller/ticketController.js +1 -0
- package/controller/ticketWorkLogController.js +2 -0
- package/docs/openapi.json +27 -27
- package/docs/releases.md +9 -4
- package/package.json +1 -1
- package/routes/appConfigRoutes.js +102 -0
- package/routes/customFormRoutes.js +5 -5
- package/routes/taskRoutes.js +1 -1
- package/test/workorderTest.js +1 -1
- package/util/config.js +55 -2
- package/util/constants.js +1 -0
- package/util/mappingUtil.js +76 -1
- package/util/paramHelper.js +1 -0
- package/util/schemas/fieldMappingSchema.js +28 -1
- package/util/searchUtil.js +68 -1
- package/docs/old/getting-started.md +0 -19
- package/docs/old/index.md +0 -41
- package/docs/old/installation.md +0 -123
- package/docs/old/postinstall.md +0 -169
- package/docs/old/preinstall.md +0 -19
- package/docs/old/tags.html +0 -34
- package/docs/old/workflow.md +0 -127
package/docs/old/preinstall.md
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# Prepare your environment for the SMILEconnect installation
|
|
2
|
-
|
|
3
|
-
# SSO environment
|
|
4
|
-
|
|
5
|
-
1. If you are already running an OIDC System create a new realm for SMILEconnect. if not you can setup for example Keykloak.
|
|
6
|
-
2. For each of your interfaces create a client with credential
|
|
7
|
-
3. Create a client with credentials for the SMILEconnect-Eventmanager
|
|
8
|
-
4. Create a client with implicit flow for SMILEconnectGUI and set the web-origin URL to your SMILEconnectGUI URL
|
|
9
|
-
5. Get the public certificate from your SSO Realm
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
# Docker
|
|
13
|
-
1. Setup docker and docker-compose on your liunx server
|
|
14
|
-
2. Setup your server to access https://\*.docker.io/\* and https://\*.docker.com/\*
|
|
15
|
-
3. Login to the docker-environment with the docker-hub user we provided to you.
|
|
16
|
-
|
|
17
|
-
docker login <username>
|
|
18
|
-
|
|
19
|
-
|
package/docs/old/tags.html
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
layout: page
|
|
3
|
-
title: 'Tag Index'
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
{%- capture site_tags -%}
|
|
7
|
-
{%- for tag in site.tags -%}
|
|
8
|
-
{{- tag | first -}}{%- unless forloop.last -%},{%- endunless -%}
|
|
9
|
-
{%- endfor -%}
|
|
10
|
-
{%- endcapture -%}
|
|
11
|
-
{%- assign tags_list = site_tags | split:',' | sort -%}
|
|
12
|
-
|
|
13
|
-
{%- for tag in tags_list -%}
|
|
14
|
-
<a href="#{{- tag -}}" class="btn btn-primary tag-btn"><i class="fa fa-tag" aria-hidden="true"></i> {{- tag -}} ({{site.tags[tag].size}})</a>
|
|
15
|
-
{%- endfor -%}
|
|
16
|
-
|
|
17
|
-
<div id="full-tags-list">
|
|
18
|
-
{%- for tag in tags_list -%}
|
|
19
|
-
<h2 id="{{- tag -}}" class="linked-section">
|
|
20
|
-
<i class="fa fa-tag" aria-hidden="true"></i>
|
|
21
|
-
{{- tag -}} ({{site.tags[tag].size}})
|
|
22
|
-
</h2>
|
|
23
|
-
<div class="post-list">
|
|
24
|
-
{%- for post in site.tags[tag] -%}
|
|
25
|
-
<div class="tag-entry">
|
|
26
|
-
<a href="{{ post.url | relative_url }}">{{- post.title -}}</a>
|
|
27
|
-
<div class="entry-date">
|
|
28
|
-
<time datetime="{{- post.date | date_to_xmlschema -}}">{{- post.date | date: "%B %d, %Y" -}}</time>
|
|
29
|
-
</div>
|
|
30
|
-
</div>
|
|
31
|
-
{%- endfor -%}
|
|
32
|
-
</div>
|
|
33
|
-
{%- endfor -%}
|
|
34
|
-
</div>
|
package/docs/old/workflow.md
DELETED
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
# SMILEconnect Workflow
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
## Onboarding Wizard
|
|
7
|
-
The SMILEconnect onboarding wizard handels everything you need for a new Vendor.
|
|
8
|
-
|
|
9
|
-
The Activelinks running on the Form: MYS:SMILEconnect_NewVendor
|
|
10
|
-
|
|
11
|
-
Create Entries in the following Forms:
|
|
12
|
-
|
|
13
|
-
COM:Company
|
|
14
|
-
SPG:Support Group
|
|
15
|
-
MYS:SMILEconnect_Vendors
|
|
16
|
-
SMT:SmartIT_ProviderAction_Template
|
|
17
|
-
SMT:SmartIT_ProviderAction_TemplateMapping
|
|
18
|
-
SMT:SmartIT_ProviderAction_Definition
|
|
19
|
-
SMT:SmartIT_ProviderAction_Definition_Properties
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
For the modules **Change, Workorder, Incident** you just need to refresh the SmartIT metadata.
|
|
23
|
-
|
|
24
|
-
For the module **Problem** you need to create an provider action in smart-it with the action name: SentToSMILEconnect_< Vendorname >
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
## Workflow for Tickets
|
|
28
|
-
The following illustration will show the Workflow for Tickets and Worklogs:
|
|
29
|
-
|
|
30
|
-

|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
## Workflow for Ticketregistration
|
|
34
|
-
|
|
35
|
-
The following filters will register the ticket for SMILEconnect, and will send it to the vendor:
|
|
36
|
-
|
|
37
|
-
**Incident:**
|
|
38
|
-
|
|
39
|
-
MYS:SMILEconnect_MarkasSMILEconnect_INC
|
|
40
|
-
MYS:SMILEconnect_MarkasSMILEconnect_INC_Error
|
|
41
|
-
MYS:SMILEconnect_MarkasSMILEconnect_INC_CheckVendors
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
**Workorder:**
|
|
45
|
-
|
|
46
|
-
MYS:SMILEconnect_MarkasSMILEconnect_WOI
|
|
47
|
-
MYS:SMILEconnect_MarkasSMILEconnect_WOI_Error
|
|
48
|
-
MYS:SMILEconnect_MarkasSMILEconnect_WOI_CheckVendors
|
|
49
|
-
|
|
50
|
-
**Change:**
|
|
51
|
-
|
|
52
|
-
MYS:SMILEconnect_MarkasSMILEconnect_CM
|
|
53
|
-
MYS:SMILEconnect_MarkasSMILEconnect_CM_CheckVendors
|
|
54
|
-
MYS:SMILEconnect_MarkasSMILEconnect_CM_Error
|
|
55
|
-
|
|
56
|
-
**Problem:**
|
|
57
|
-
|
|
58
|
-
MYS:SMILEconnect_PBM_SetError
|
|
59
|
-
MYS:SMILEconnect_PBM_Actions
|
|
60
|
-
MYS:SMILEconnect_PBM_SetVendor
|
|
61
|
-
MYS:SMILEconnect_PBM_CheckVendor
|
|
62
|
-
|
|
63
|
-
After the ticket is registert for SMILEconnect the following filters will monitor Modifications on the tickets and Worklogs:
|
|
64
|
-
|
|
65
|
-
**Incident:**
|
|
66
|
-
|
|
67
|
-
MYS:SMILEconnect_Queue_INC_Modifed_Incident
|
|
68
|
-
MYS:SMILEconnect_Queue_INC_Modifed_WorkInfo
|
|
69
|
-
|
|
70
|
-
**Workorder:**
|
|
71
|
-
|
|
72
|
-
MYS:SMILEconnect_Queue_WO_Modifed_WorkOrder
|
|
73
|
-
MYS:SMILEconnect_Queue_WO_Modifed_WorkInfo
|
|
74
|
-
|
|
75
|
-
**Change:**
|
|
76
|
-
|
|
77
|
-
MYS:SMILEconnect_Queue_CHG_Modifed_Change
|
|
78
|
-
MYS:SMILEconnect_Queue_CHG_Modifed_WorkInfo
|
|
79
|
-
|
|
80
|
-
**Problem:**
|
|
81
|
-
|
|
82
|
-
MYS:SMILEconnect_Queue_PBM_Modifed_Problem
|
|
83
|
-
MYS:SMILEconnect_Queue_PBM_Modifed_WorkInfo
|
|
84
|
-
|
|
85
|
-
Additional there is the form "MYS:SMILEconnect_WorkInfo_Checker" which will check if the ticket is registered and the worklog type is correct.
|
|
86
|
-
|
|
87
|
-
**Incident:**
|
|
88
|
-
|
|
89
|
-
MYS:SMILEconnect_WorkInfo_Checker_Check_Incident
|
|
90
|
-
MYS:SMILEconnect_WorkInfo_Checker_Check_Incident2
|
|
91
|
-
|
|
92
|
-
**Workorder:**
|
|
93
|
-
|
|
94
|
-
MYS:SMILEconnect_WorkInfo_Checker_Check_WorkOrder
|
|
95
|
-
MYS:SMILEconnect_WorkInfo_Checker_Check_WorkOrder2
|
|
96
|
-
|
|
97
|
-
**Change:**
|
|
98
|
-
|
|
99
|
-
MYS:SMILEconnect_WorkInfo_Checker_Check_Change
|
|
100
|
-
MYS:SMILEconnect_WorkInfo_Checker_Check_Change2
|
|
101
|
-
|
|
102
|
-
**Problem:**
|
|
103
|
-
|
|
104
|
-
MYS:SMILEconnect_WorkInfo_Checker_Check_Problem
|
|
105
|
-
MYS:SMILEconnect_WorkInfo_Checker_Check_Problem2
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
Workflow for ticket unregistration
|
|
110
|
-
|
|
111
|
-
The unregistration will be handled by the following filters:
|
|
112
|
-
|
|
113
|
-
**Incident:**
|
|
114
|
-
|
|
115
|
-
MYS:SMILEconnect_INC_UnregisterSMILEconnect
|
|
116
|
-
|
|
117
|
-
**Workorder:**
|
|
118
|
-
|
|
119
|
-
MYS:SMILEconnect_WOI_UnregisterSMILEconnect
|
|
120
|
-
|
|
121
|
-
**Change:**
|
|
122
|
-
|
|
123
|
-
MYS:SMILEconnect_CM_UnregisterSMILEconnect
|
|
124
|
-
|
|
125
|
-
**Problem:**
|
|
126
|
-
|
|
127
|
-
MYS:SMILEconnect_PBM_UnregisterSMILEconnect
|