@manyos/smileconnect-api 1.45.2 → 1.45.3

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/conf/mapping.json CHANGED
@@ -829,64 +829,6 @@
829
829
  "newName": "supportGroup"
830
830
  }
831
831
  ],
832
- "newTask": [
833
- {
834
- "oldName": "Summary",
835
- "newName": "summary"
836
- },
837
- {
838
- "oldName": "Notes",
839
- "newName": "notes"
840
- },
841
- {
842
- "oldName": "Support Company",
843
- "newName": "supportCompany"
844
- },
845
- {
846
- "oldName": "Assignee Organization",
847
- "newName": "supportOrganization"
848
- },
849
- {
850
- "oldName": "Assignee Group",
851
- "newName": "supportGroup"
852
- },
853
- {
854
- "oldName": "RootRequestFormName",
855
- "newName": "RootRequestFormName"
856
- },
857
- {
858
- "oldName": "RootRequestName",
859
- "newName": "RootRequestName"
860
- },
861
- {
862
- "oldName": "RootRequestMode",
863
- "newName": "RootRequestMode"
864
- },
865
- {
866
- "oldName": "RootRequestInstanceId",
867
- "newName": "RootRequestInstanceId"
868
- },
869
- {
870
- "oldName": "Sequence",
871
- "newName": "sequence"
872
- },
873
- {
874
- "oldName": "TaskName",
875
- "newName": "TaskName"
876
- },
877
- {
878
- "oldName": "Character 01",
879
- "newName": "character01"
880
- },
881
- {
882
- "oldName": "Character 06",
883
- "newName": "character06"
884
- },
885
- {
886
- "oldName": "Phase GUID",
887
- "newName": "phaseGuid"
888
- }
889
- ],
890
832
  "taskWorklog": [
891
833
  {
892
834
  "oldName": "Summary",
@@ -52,7 +52,7 @@ async function createTask(clientConfig, rootForm, rootRequestId, taskData, creat
52
52
  allTask.push(taskData);
53
53
  }
54
54
 
55
- const mapping = config.getMapping('newTask');
55
+ const mapping = config.getMapping('task');
56
56
  //add required data
57
57
 
58
58
  const allTaskFinal = [];
package/docs/releases.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  ## API
4
4
 
5
+ ### 1.45.3 - 05.10.21
6
+ Fix issue: Use normal Task mapping for new tasks and existing tasks as no Interface Create Form is used.
7
+
5
8
  ### 1.45.2 - 05.10.21
6
9
  Fix issue: Error on AfterExecution Scripts in Tasks
7
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manyos/smileconnect-api",
3
- "version": "1.45.2",
3
+ "version": "1.45.3",
4
4
  "description": "A proxy and abstraction layer for BMCs IT Service Management Suite",
5
5
  "main": "app.js",
6
6
  "scripts": {
package/util/config.js CHANGED
@@ -171,7 +171,6 @@ function checkMapping() {
171
171
  'workOrderWorklog',
172
172
  'workOrderTemplate',
173
173
  'task',
174
- 'newTask',
175
174
  'taskWorklog',
176
175
  'taskTemplate',
177
176
  'flowBuilder'