@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 +0 -58
- package/controller/taskController.js +1 -1
- package/docs/releases.md +3 -0
- package/package.json +1 -1
- package/util/config.js +0 -1
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('
|
|
55
|
+
const mapping = config.getMapping('task');
|
|
56
56
|
//add required data
|
|
57
57
|
|
|
58
58
|
const allTaskFinal = [];
|
package/docs/releases.md
CHANGED
package/package.json
CHANGED