@manyos/smileconnect-api 1.41.4 → 1.42.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/app.js +9 -7
- package/conf/clients.json +6 -2
- package/conf/customFormMapping.json +30 -0
- package/conf/mapping.json +0 -34
- package/controller/customFormController.js +13 -13
- package/controller/taskController.js +3 -0
- package/controller/ticketController.js +1 -0
- package/controller/ticketWorkLogController.js +2 -0
- package/docs/openapi.json +27 -27
- package/docs/releases.md +11 -1
- package/package.json +1 -1
- package/routes/appConfigRoutes.js +102 -0
- package/routes/customFormRoutes.js +5 -5
- 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/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
|