@manyos/smileconnect-api 1.28.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/.github/workflows/nodejs.yml +26 -0
- package/CHANGELOG.md +75 -0
- package/Dockerfile +21 -0
- package/README.md +1 -0
- package/app.js +316 -0
- package/conf/clients.json +2491 -0
- package/conf/mapping.json +1048 -0
- package/conf/scripts/p1.js +11 -0
- package/conf/scripts/p2.js +1 -0
- package/conf/scripts/p3.js +1 -0
- package/conf/scripts/p4.js +2 -0
- package/conf/scripts/script1.js +2 -0
- package/conf/scripts/script2.js +2 -0
- package/conf/scripts/script3.js +2 -0
- package/controller/cmdbobjectController.js +291 -0
- package/controller/eventLogController.js +78 -0
- package/controller/orgdataController.js +440 -0
- package/controller/relatedObjectsController.js +194 -0
- package/controller/scriptController.js +213 -0
- package/controller/taskController.js +368 -0
- package/controller/templateController.js +97 -0
- package/controller/ticketCIRelationController.js +522 -0
- package/controller/ticketController.js +329 -0
- package/controller/ticketWorkLogController.js +195 -0
- package/docs/.gitattributes +48 -0
- package/docs/404.html +13 -0
- package/docs/CNAME +1 -0
- package/docs/Gemfile +7 -0
- package/docs/Gemfile.lock +249 -0
- package/docs/_config.yml +257 -0
- package/docs/_data/SocialNetworks.yml +92 -0
- package/docs/_data/ui-text.yml +494 -0
- package/docs/_includes/disqus.html +17 -0
- package/docs/_includes/ext-css.html +7 -0
- package/docs/_includes/ext-js.html +7 -0
- package/docs/_includes/fb-comment.html +14 -0
- package/docs/_includes/footer-minimal.html +16 -0
- package/docs/_includes/footer-scripts.html +32 -0
- package/docs/_includes/footer.html +51 -0
- package/docs/_includes/google_analytics.html +14 -0
- package/docs/_includes/gtag.html +11 -0
- package/docs/_includes/gtm_body.html +6 -0
- package/docs/_includes/gtm_head.html +9 -0
- package/docs/_includes/head.html +131 -0
- package/docs/_includes/header.html +76 -0
- package/docs/_includes/just_comments.html +4 -0
- package/docs/_includes/matomo.html +17 -0
- package/docs/_includes/nav.html +57 -0
- package/docs/_includes/social-share.html +42 -0
- package/docs/_includes/staticman-comment.html +22 -0
- package/docs/_includes/staticman-comments.html +81 -0
- package/docs/_layouts/base.html +35 -0
- package/docs/_layouts/default.html +9 -0
- package/docs/_layouts/minimal.html +26 -0
- package/docs/_layouts/page.html +26 -0
- package/docs/_layouts/post.html +82 -0
- package/docs/_posts/2015-02-28-test-markdown.md +77 -0
- package/docs/aboutme.md +18 -0
- package/docs/css/bootstrap-social.css +147 -0
- package/docs/css/bootstrap-theme.css +476 -0
- package/docs/css/bootstrap-theme.css.map +1 -0
- package/docs/css/bootstrap-theme.min.css +5 -0
- package/docs/css/bootstrap.css +6566 -0
- package/docs/css/bootstrap.css.map +1 -0
- package/docs/css/bootstrap.min.css +5 -0
- package/docs/css/main-minimal.css +13 -0
- package/docs/css/main.css +788 -0
- package/docs/css/normalize.css +427 -0
- package/docs/css/pygment_highlights.css +61 -0
- package/docs/css/staticman.css +180 -0
- package/docs/eventlog/events.md +65 -0
- package/docs/feed.xml +24 -0
- package/docs/general/architecture.md +10 -0
- package/docs/general/config.md +192 -0
- package/docs/general/field-management.md +119 -0
- package/docs/general/release-notes.md +9 -0
- package/docs/getting-started.md +19 -0
- package/docs/howto/cmdbobjects.md +339 -0
- package/docs/howto/incident-worklogs.md +186 -0
- package/docs/howto/incidents.md +244 -0
- package/docs/howto/sample-config.md +518 -0
- package/docs/howto/token.md +71 -0
- package/docs/howto/worklog-attachment.md +113 -0
- package/docs/img/404-southpark.jpg +0 -0
- package/docs/img/architecture.jpeg +0 -0
- package/docs/img/attachment-upload.png +0 -0
- package/docs/img/avatar-icon.png +0 -0
- package/docs/img/bgimage.png +0 -0
- package/docs/img/gb-isapi.jpg +0 -0
- package/docs/img/install-steps.gif +0 -0
- package/docs/img/workflow.png +0 -0
- package/docs/index.md +41 -0
- package/docs/installation.md +123 -0
- package/docs/js/bootstrap.js +2306 -0
- package/docs/js/bootstrap.min.js +7 -0
- package/docs/js/jquery-1.11.2.min.js +4 -0
- package/docs/js/main.js +140 -0
- package/docs/js/staticman.js +54 -0
- package/docs/openapi.json +15097 -0
- package/docs/postinstall.md +169 -0
- package/docs/preinstall.md +19 -0
- package/docs/spec/index.html +24 -0
- package/docs/staticman.yml +110 -0
- package/docs/tags.html +34 -0
- package/docs/workflow.md +127 -0
- package/nodemon.json +3 -0
- package/package.json +46 -0
- package/routes/appConfigRoutes.js +352 -0
- package/routes/ciRelationRoutes.js +38 -0
- package/routes/cmdbObjectRoutes.js +154 -0
- package/routes/organisationRoutes.js +121 -0
- package/routes/peopleRelationRoutes.js +38 -0
- package/routes/personRoutes.js +131 -0
- package/routes/supportgroupRoutes.js +122 -0
- package/routes/taskRoutes.js +306 -0
- package/routes/templateRoutes.js +67 -0
- package/routes/ticketRoutes.js +181 -0
- package/routes/ticketWorkLogRoutes.js +185 -0
- package/screwdriver.yaml +52 -0
- package/test/appTest.js +3 -0
- package/test/changeTest.js +541 -0
- package/test/cmdbobjectTest.js +167 -0
- package/test/files/logo.png +0 -0
- package/test/incidentTest.js +539 -0
- package/test/orgdataTest.js +156 -0
- package/test/problemTest.js +512 -0
- package/test/templateTest.js +80 -0
- package/test/testUtils.js +21 -0
- package/test/workorderTest.js +544 -0
- package/util/arquery.js +416 -0
- package/util/auth.js +37 -0
- package/util/cache.service.js +52 -0
- package/util/config.js +361 -0
- package/util/constants.js +73 -0
- package/util/mappingUtil.js +96 -0
- package/util/paramHelper.js +43 -0
- package/util/relationUtil.js +63 -0
- package/util/responsehandler.js +92 -0
- package/util/schemas/clientConfigSchema.js +180 -0
- package/util/schemas/fieldMappingSchema.js +211 -0
- package/util/searchUtil.js +148 -0
|
@@ -0,0 +1,1048 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cmdbobject": [
|
|
3
|
+
{
|
|
4
|
+
"oldName": "Instance Id",
|
|
5
|
+
"newName": "id"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"oldName": "Tag Number",
|
|
9
|
+
"newName": "tagNumber"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"oldName": "Name",
|
|
13
|
+
"newName": "name"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"oldName": "AssetLifecycleStatus",
|
|
17
|
+
"newName": "assetlifecycleStatus"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"oldName": "Category",
|
|
21
|
+
"newName": "category"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"oldName": "Item",
|
|
25
|
+
"newName": "item"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"oldName": "Type",
|
|
29
|
+
"newName": "type"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"oldName": "Availability",
|
|
33
|
+
"newName": "availability"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"oldName": "Confidentiality",
|
|
37
|
+
"newName": "confidentiality"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"oldName": "Integrity",
|
|
41
|
+
"newName": "integrity"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"oldName": "Authenticity",
|
|
45
|
+
"newName": "authenticity"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"oldName": "Model Number",
|
|
49
|
+
"newName": "productName"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"oldName": "Class Id",
|
|
53
|
+
"newName": "classId"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"oldName": "Reconciliation Identity",
|
|
57
|
+
"newName": "reconId"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"oldName": "Short Description",
|
|
61
|
+
"newName": "shortDescription"
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
"cmdbobject_AST:ComputerSystem": [
|
|
65
|
+
{
|
|
66
|
+
"oldName": "DNS Host Name",
|
|
67
|
+
"newName": "hostName"
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"cmdbobject_AST:LANEndpoint": [
|
|
71
|
+
{
|
|
72
|
+
"oldName": "MACAddress",
|
|
73
|
+
"newName": "macAddress"
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"change": [
|
|
77
|
+
{
|
|
78
|
+
"oldName": "Infrastructure Change ID",
|
|
79
|
+
"newName": "id"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"oldName": "Categorization Tier 1",
|
|
83
|
+
"newName": "opsCat1"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"oldName": "Categorization Tier 2",
|
|
87
|
+
"newName": "opsCat2"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"oldName": "Categorization Tier 3",
|
|
91
|
+
"newName": "opsCat3"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"oldName": "Product Cat Tier 1",
|
|
95
|
+
"newName": "prodCat1"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"oldName": "Product Cat Tier 2",
|
|
99
|
+
"newName": "prodCat2"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"oldName": "Product Cat Tier 3",
|
|
103
|
+
"newName": "prodCat3"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"oldName": "Product Name (2)",
|
|
107
|
+
"newName": "productName"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"oldName": "Description",
|
|
111
|
+
"newName": "summary"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"oldName": "Detailed Description",
|
|
115
|
+
"newName": "detailedDescription"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"oldName": "Status Reason",
|
|
119
|
+
"newName": "statusReason"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"oldName": "Change Request Status",
|
|
123
|
+
"newName": "status"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"oldName": "Requested Start Date",
|
|
127
|
+
"newName": "requestedStartDate"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"oldName": "Requested End Date",
|
|
131
|
+
"newName": "requestedEndDate"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"oldName": "Scheduled Start Date",
|
|
135
|
+
"newName": "scheduledStartDate"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"oldName": "Scheduled End Date",
|
|
139
|
+
"newName": "scheduledEndDate"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"oldName": "Support Group ID",
|
|
143
|
+
"newName": "managerGroup"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"oldName": "Support Group ID 2",
|
|
147
|
+
"newName": "coordinatorGroup"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"oldName": "Customer Person ID",
|
|
151
|
+
"newName": "customerId"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"oldName": "Requested By Person ID",
|
|
155
|
+
"newName": "requestorId"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"oldName": "Change Target Date",
|
|
159
|
+
"newName": "changeTargetDate"
|
|
160
|
+
}
|
|
161
|
+
],
|
|
162
|
+
"person": [
|
|
163
|
+
{
|
|
164
|
+
"oldName": "Person ID",
|
|
165
|
+
"newName": "id"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"oldName": "Full Name",
|
|
169
|
+
"newName": "name"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"oldName": "Department",
|
|
173
|
+
"newName": "department"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"oldName": "Remedy Login ID",
|
|
177
|
+
"newName": "login"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"oldName": "Internet E-mail",
|
|
181
|
+
"newName": "mail"
|
|
182
|
+
}
|
|
183
|
+
],
|
|
184
|
+
"supportGroup": [
|
|
185
|
+
{
|
|
186
|
+
"oldName": "Support Group ID",
|
|
187
|
+
"newName": "id"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"oldName": "Company",
|
|
191
|
+
"newName": "company"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"oldName": "Support Organization",
|
|
195
|
+
"newName": "supportOrganisation"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"oldName": "Support Group Name",
|
|
199
|
+
"newName": "supportGroup"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"oldName": "Support Group Role",
|
|
203
|
+
"newName": "supportRole"
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"organisation": [
|
|
207
|
+
{
|
|
208
|
+
"oldName": "People Organization ID",
|
|
209
|
+
"newName": "id"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"oldName": "Company",
|
|
213
|
+
"newName": "company"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"oldName": "Organization",
|
|
217
|
+
"newName": "organisation"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"oldName": "Department",
|
|
221
|
+
"newName": "department"
|
|
222
|
+
}
|
|
223
|
+
],
|
|
224
|
+
"newChange": [
|
|
225
|
+
{
|
|
226
|
+
"oldName": "Description",
|
|
227
|
+
"newName": "summary"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"oldName": "TemplateID",
|
|
231
|
+
"newName": "template"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"oldName": "Scheduled Start Date",
|
|
235
|
+
"newName": "scheduledStartDate"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"oldName": "Detailed Description",
|
|
239
|
+
"newName": "detailedDescription"
|
|
240
|
+
}
|
|
241
|
+
],
|
|
242
|
+
"changeWorklog": [
|
|
243
|
+
{
|
|
244
|
+
"oldName": "Description",
|
|
245
|
+
"newName": "summary"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"oldName": "Detailed Description",
|
|
249
|
+
"newName": "text"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"oldName": "Infrastructure Change ID",
|
|
253
|
+
"newName": "Infrastructure Change ID"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"oldName": "Infra. Change Entry ID",
|
|
257
|
+
"newName": "Infra. Change Entry ID"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"oldName": "Work Log ID",
|
|
261
|
+
"newName": "id"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"oldName": "Work Log Date",
|
|
265
|
+
"newName": "workLogDate"
|
|
266
|
+
}
|
|
267
|
+
],
|
|
268
|
+
"workOrder": [
|
|
269
|
+
{
|
|
270
|
+
"oldName": "Work Order ID",
|
|
271
|
+
"newName": "id"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"oldName": "InstanceId",
|
|
275
|
+
"newName": "instanceId"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"oldName": "Scheduled Start Date",
|
|
279
|
+
"newName": "scheduledStartDate"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"oldName": "Scheduled End Date",
|
|
283
|
+
"newName": "scheduledEndDate"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"oldName": "Categorization Tier 1",
|
|
287
|
+
"newName": "opsCat1"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"oldName": "Categorization Tier 2",
|
|
291
|
+
"newName": "opsCat2"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"oldName": "Categorization Tier 3",
|
|
295
|
+
"newName": "opsCat3"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"oldName": "Product Cat Tier 1(2)",
|
|
299
|
+
"newName": "prodCat1"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"oldName": "Product Cat Tier 2(2)",
|
|
303
|
+
"newName": "prodCat2"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"oldName": "Product Cat Tier 3(2)",
|
|
307
|
+
"newName": "prodCat3"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"oldName": "Product Name",
|
|
311
|
+
"newName": "productName"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"oldName": "Summary",
|
|
315
|
+
"newName": "summary"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"oldName": "Detailed Description",
|
|
319
|
+
"newName": "detailedDescription"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"oldName": "Status Reason",
|
|
323
|
+
"newName": "statusReason"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"oldName": "Status",
|
|
327
|
+
"newName": "status"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"oldName": "Support Group ID",
|
|
331
|
+
"newName": "managerGroup"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"oldName": "Support Group ID 2",
|
|
335
|
+
"newName": "coordinatorGroup"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"oldName": "Customer Person ID",
|
|
339
|
+
"newName": "customerId"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"oldName": "Requested By Person ID",
|
|
343
|
+
"newName": "requestorId"
|
|
344
|
+
}
|
|
345
|
+
],
|
|
346
|
+
"newWorkOrder": [
|
|
347
|
+
{
|
|
348
|
+
"oldName": "Summary",
|
|
349
|
+
"newName": "summary"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"oldName": "TemplateID",
|
|
353
|
+
"newName": "template"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"oldName": "Customer Person ID",
|
|
357
|
+
"newName": "customerId"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"oldName": "Detailed Description",
|
|
361
|
+
"newName": "detailedDescription"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"oldName": "Vendor Ticket Number",
|
|
365
|
+
"newName": "vendorTicketId"
|
|
366
|
+
}
|
|
367
|
+
],
|
|
368
|
+
"workOrderWorklog": [
|
|
369
|
+
{
|
|
370
|
+
"oldName": "Description",
|
|
371
|
+
"newName": "summary"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"oldName": "Detailed Description",
|
|
375
|
+
"newName": "text"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"oldName": "WorkOrder_EntryID",
|
|
379
|
+
"newName": "WorkOrder_EntryID"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"oldName": "Work Order ID",
|
|
383
|
+
"newName": "Work Order ID"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"oldName": "Work Log ID",
|
|
387
|
+
"newName": "id"
|
|
388
|
+
}
|
|
389
|
+
],
|
|
390
|
+
"incidentWorklog": [
|
|
391
|
+
{
|
|
392
|
+
"oldName": "Description",
|
|
393
|
+
"newName": "summary"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"oldName": "Detailed Description",
|
|
397
|
+
"newName": "text"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"oldName": "Incident Number",
|
|
401
|
+
"newName": "incidentNumber"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"oldName": "Incident Entry ID",
|
|
405
|
+
"newName": "Incident Entry ID"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"oldName": "Work Log ID",
|
|
409
|
+
"newName": "id"
|
|
410
|
+
}
|
|
411
|
+
],
|
|
412
|
+
"problemWorklog": [
|
|
413
|
+
{
|
|
414
|
+
"oldName": "Description",
|
|
415
|
+
"newName": "summary"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"oldName": "Detailed Description",
|
|
419
|
+
"newName": "text"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"oldName": "Problem Investigation ID",
|
|
423
|
+
"newName": "Problem Investigation ID"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"oldName": "Problem Investigation Entry ID",
|
|
427
|
+
"newName": "Problem Investigation Entry ID"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"oldName": "Work Log ID",
|
|
431
|
+
"newName": "id"
|
|
432
|
+
}
|
|
433
|
+
],
|
|
434
|
+
"incident": [
|
|
435
|
+
{
|
|
436
|
+
"oldName": "Incident Number",
|
|
437
|
+
"newName": "id"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"oldName": "Scheduled Start Date",
|
|
441
|
+
"newName": "scheduledStartDate"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"oldName": "Scheduled End Date",
|
|
445
|
+
"newName": "scheduledEndDate"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"oldName": "Categorization Tier 1",
|
|
449
|
+
"newName": "opsCat1"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"oldName": "Categorization Tier 2",
|
|
453
|
+
"newName": "opsCat2"
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"oldName": "Categorization Tier 3",
|
|
457
|
+
"newName": "opsCat3"
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"oldName": "Resolution Category",
|
|
461
|
+
"newName": "resolutionCat1"
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"oldName": "Resolution Category Tier 2",
|
|
465
|
+
"newName": "resolutionCat2"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"oldName": "Resolution Category Tier 3",
|
|
469
|
+
"newName": "resolutionCat3"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"oldName": "Product Categorization Tier 1",
|
|
473
|
+
"newName": "prodCat1"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"oldName": "Product Categorization Tier 2",
|
|
477
|
+
"newName": "prodCat2"
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"oldName": "Product Categorization Tier 3",
|
|
481
|
+
"newName": "prodCat3"
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"oldName": "Product Name",
|
|
485
|
+
"newName": "productName"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"oldName": "Manufacturer",
|
|
489
|
+
"newName": "manufacturer"
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"oldName": "Detailed Decription",
|
|
493
|
+
"newName": "detailedDescription"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"oldName": "Description",
|
|
497
|
+
"newName": "summary"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"oldName": "Status_Reason",
|
|
501
|
+
"newName": "statusReason"
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"oldName": "Status",
|
|
505
|
+
"newName": "status"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"oldName": "Assigned Group ID",
|
|
509
|
+
"newName": "assignedGroup"
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"oldName": "Owner Group ID",
|
|
513
|
+
"newName": "ownerGroup"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"oldName": "Vendor Group ID",
|
|
517
|
+
"newName": "vendorGroup"
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"oldName": "Person ID",
|
|
521
|
+
"newName": "customerId"
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"oldName": "Direct Contact Person ID",
|
|
525
|
+
"newName": "contactId"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"oldName": "Requested By Person ID",
|
|
529
|
+
"newName": "requestorId"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"oldName": "Impact",
|
|
533
|
+
"newName": "impact"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"oldName": "Urgency",
|
|
537
|
+
"newName": "urgency"
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"oldName": "Priority",
|
|
541
|
+
"newName": "priority"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"oldName": "Vendor Ticket Number",
|
|
545
|
+
"newName": "vendorTicketId"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"oldName": "Resolution",
|
|
549
|
+
"newName": "resolution"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"oldName": "Submit Date",
|
|
553
|
+
"newName": "submitDate"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"oldName": "Last Modified Date",
|
|
557
|
+
"newName": "lastModifiedDate"
|
|
558
|
+
}
|
|
559
|
+
],
|
|
560
|
+
"newIncident": [
|
|
561
|
+
{
|
|
562
|
+
"oldName": "Description",
|
|
563
|
+
"newName": "summary"
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
"oldName": "TemplateID",
|
|
567
|
+
"newName": "template"
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"oldName": "Customer Person ID",
|
|
571
|
+
"newName": "customerId"
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"oldName": "Detailed_Decription",
|
|
575
|
+
"newName": "detailedDescription"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"oldName": "Vendor Ticket Number",
|
|
579
|
+
"newName": "vendorTicketId"
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"oldName": "Categorization Tier 1",
|
|
583
|
+
"newName": "opsCat1"
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"oldName": "Categorization Tier 2",
|
|
587
|
+
"newName": "opsCat2"
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"oldName": "Categorization Tier 3",
|
|
591
|
+
"newName": "opsCat3"
|
|
592
|
+
}
|
|
593
|
+
],
|
|
594
|
+
"problem": [
|
|
595
|
+
{
|
|
596
|
+
"oldName": "Problem Investigation ID",
|
|
597
|
+
"newName": "id"
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"oldName": "Scheduled Start Date",
|
|
601
|
+
"newName": "scheduledStartDate"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"oldName": "Scheduled End Date",
|
|
605
|
+
"newName": "scheduledEndDate"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"oldName": "Categorization Tier 1",
|
|
609
|
+
"newName": "opsCat1"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"oldName": "Categorization Tier 2",
|
|
613
|
+
"newName": "opsCat2"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"oldName": "Categorization Tier 3",
|
|
617
|
+
"newName": "opsCat3"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"oldName": "Product Categorization Tier 1",
|
|
621
|
+
"newName": "prodCat1"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"oldName": "Product Categorization Tier 2",
|
|
625
|
+
"newName": "prodCat2"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"oldName": "Product Categorization Tier 3",
|
|
629
|
+
"newName": "prodCat3"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"oldName": "Product Name",
|
|
633
|
+
"newName": "productName"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"oldName": "Manufacturer",
|
|
637
|
+
"newName": "manufacturer"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"oldName": "Detailed Decription",
|
|
641
|
+
"newName": "detailedDescription"
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"oldName": "Description",
|
|
645
|
+
"newName": "summary"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"oldName": "Invesitgation Status Reason",
|
|
649
|
+
"newName": "statusReason"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"oldName": "Investigation Status",
|
|
653
|
+
"newName": "status"
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"oldName": "Assigned Group ID",
|
|
657
|
+
"newName": "assignedGroup"
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
"oldName": "Owner Group ID",
|
|
661
|
+
"newName": "ownerGroup"
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
"oldName": "Vendor Group ID",
|
|
665
|
+
"newName": "vendorGroup"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"oldName": "Person ID",
|
|
669
|
+
"newName": "customerId"
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"oldName": "Direct Contact Person ID",
|
|
673
|
+
"newName": "contactId"
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
"oldName": "Requested By Person ID",
|
|
677
|
+
"newName": "requestorId"
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
"oldName": "Impact",
|
|
681
|
+
"newName": "impact"
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"oldName": "Urgency",
|
|
685
|
+
"newName": "urgency"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"oldName": "Priority",
|
|
689
|
+
"newName": "priority"
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"oldName": "Target Resolution Date",
|
|
693
|
+
"newName": "targetDate"
|
|
694
|
+
}
|
|
695
|
+
],
|
|
696
|
+
"newProblem": [
|
|
697
|
+
{
|
|
698
|
+
"oldName": "Description",
|
|
699
|
+
"newName": "summary"
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"oldName": "TemplateID",
|
|
703
|
+
"newName": "template"
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
"oldName": "Customer Person ID",
|
|
707
|
+
"newName": "customerId"
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"oldName": "Detailed Decription",
|
|
711
|
+
"newName": "detailedDescription"
|
|
712
|
+
}
|
|
713
|
+
],
|
|
714
|
+
"task": [
|
|
715
|
+
{
|
|
716
|
+
"oldName": "Summary",
|
|
717
|
+
"newName": "summary"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"oldName": "Notes",
|
|
721
|
+
"newName": "notes"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"oldName": "Task ID",
|
|
725
|
+
"newName": "id"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"oldName": "Status",
|
|
729
|
+
"newName": "status"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"oldName": "StatusReasonSelection",
|
|
733
|
+
"newName": "statusReason"
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"oldName": "Actual Start Date",
|
|
737
|
+
"newName": "actualStartDate"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"oldName": "Actual End Date",
|
|
741
|
+
"newName": "actualEndDate"
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
"oldName": "Scheduled Start Date",
|
|
745
|
+
"newName": "scheduledStartDate"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"oldName": "Scheduled End Date",
|
|
749
|
+
"newName": "scheduledEndDate"
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"oldName": "InstanceId",
|
|
753
|
+
"newName": "instanceId"
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"oldName": "RootRequestFormName",
|
|
757
|
+
"newName": "rootRequestForm"
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"oldName": "RootRequestID",
|
|
761
|
+
"newName": "rootRequest"
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
"oldName": "Sequence",
|
|
765
|
+
"newName": "sequence"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"oldName": "Service Cat Tier 1",
|
|
769
|
+
"newName": "opsCat1"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"oldName": "Service Cat Tier 2",
|
|
773
|
+
"newName": "opsCat2"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"oldName": "Service Cat Tier 3",
|
|
777
|
+
"newName": "opsCat3"
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
"oldName": "Product Cat Tier 1",
|
|
781
|
+
"newName": "prodCat1"
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"oldName": "Product Cat Tier 2",
|
|
785
|
+
"newName": "prodCat2"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"oldName": "Product Cat Tier 3",
|
|
789
|
+
"newName": "prodCat3"
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"oldName": "Product Name",
|
|
793
|
+
"newName": "productName"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"oldName": "Assignee Group ID",
|
|
797
|
+
"newName": "assignedGroup"
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
"oldName": "Customer Person ID",
|
|
801
|
+
"newName": "customerId"
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"oldName": "Requested By Person ID",
|
|
805
|
+
"newName": "requestorId"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"oldName": "Character 01",
|
|
809
|
+
"newName": "character01"
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"oldName": "Character 06",
|
|
813
|
+
"newName": "character06"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"oldName": "Support Company",
|
|
817
|
+
"newName": "supportCompany"
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"oldName": "Assignee Organization",
|
|
821
|
+
"newName": "supportOrganization"
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"oldName": "Assignee Group",
|
|
825
|
+
"newName": "supportGroup"
|
|
826
|
+
}
|
|
827
|
+
],
|
|
828
|
+
"newTask": [
|
|
829
|
+
{
|
|
830
|
+
"oldName": "Summary",
|
|
831
|
+
"newName": "summary"
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
"oldName": "Notes",
|
|
835
|
+
"newName": "notes"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"oldName": "Support Company",
|
|
839
|
+
"newName": "supportCompany"
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
"oldName": "Assignee Organization",
|
|
843
|
+
"newName": "supportOrganization"
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
"oldName": "Assignee Group",
|
|
847
|
+
"newName": "supportGroup"
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
"oldName": "RootRequestFormName",
|
|
851
|
+
"newName": "RootRequestFormName"
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
"oldName": "RootRequestName",
|
|
855
|
+
"newName": "RootRequestName"
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"oldName": "RootRequestMode",
|
|
859
|
+
"newName": "RootRequestMode"
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"oldName": "RootRequestInstanceId",
|
|
863
|
+
"newName": "RootRequestInstanceId"
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"oldName": "Sequence",
|
|
867
|
+
"newName": "Sequence"
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"oldName": "TaskName",
|
|
871
|
+
"newName": "TaskName"
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
"oldName": "Character 01",
|
|
875
|
+
"newName": "character01"
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"oldName": "Character 06",
|
|
879
|
+
"newName": "character06"
|
|
880
|
+
}
|
|
881
|
+
],
|
|
882
|
+
"taskWorklog": [
|
|
883
|
+
{
|
|
884
|
+
"oldName": "Summary",
|
|
885
|
+
"newName": "summary"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"oldName": "Notes",
|
|
889
|
+
"newName": "text"
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
"oldName": "Work Info ID",
|
|
893
|
+
"newName": "id"
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"oldName": "Secure Log",
|
|
897
|
+
"newName": "Secure Log"
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
"oldName": "Communication Source",
|
|
901
|
+
"newName": "Communication Source"
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"oldName": "WorkInfoType",
|
|
905
|
+
"newName": "WorkInfoType"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"oldName": "TaskOrTaskGroupID",
|
|
909
|
+
"newName": "TaskOrTaskGroupID"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"oldName": "TaskOrTaskGroupInstanceId",
|
|
913
|
+
"newName": "TaskOrTaskGroupInstanceId"
|
|
914
|
+
}
|
|
915
|
+
],
|
|
916
|
+
"flowBuilder": [
|
|
917
|
+
{
|
|
918
|
+
"oldName": "RootRequestFormName",
|
|
919
|
+
"newName": "RootRequestFormName"
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"oldName": "RootRequestName",
|
|
923
|
+
"newName": "RootRequestName"
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"oldName": "RootRequestInstanceId",
|
|
927
|
+
"newName": "RootRequestInstanceId"
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"oldName": "zTmpInternalCommand",
|
|
931
|
+
"newName": "zTmpInternalCommand"
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"oldName": "Parent Type",
|
|
935
|
+
"newName": "Parent Type"
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"oldName": "ParentID",
|
|
939
|
+
"newName": "ParentID"
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
"oldName": "Parent Name",
|
|
943
|
+
"newName": "Parent Name"
|
|
944
|
+
}
|
|
945
|
+
],
|
|
946
|
+
"changeTemplate": [
|
|
947
|
+
{
|
|
948
|
+
"oldName": "InstanceId",
|
|
949
|
+
"newName": "id"
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"oldName": "Template Name",
|
|
953
|
+
"newName": "name"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"oldName": "Description",
|
|
957
|
+
"newName": "summary"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"oldName": "Detailed Description",
|
|
961
|
+
"newName": "notes"
|
|
962
|
+
}
|
|
963
|
+
],
|
|
964
|
+
"incidentTemplate": [
|
|
965
|
+
{
|
|
966
|
+
"oldName": "InstanceId",
|
|
967
|
+
"newName": "id"
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"oldName": "Template Name",
|
|
971
|
+
"newName": "name"
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
"oldName": "Description",
|
|
975
|
+
"newName": "summary"
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
"oldName": "Detailed Decription",
|
|
979
|
+
"newName": "notes"
|
|
980
|
+
}
|
|
981
|
+
],
|
|
982
|
+
"problemTemplate": [
|
|
983
|
+
{
|
|
984
|
+
"oldName": "InstanceId",
|
|
985
|
+
"newName": "id"
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"oldName": "Description",
|
|
989
|
+
"newName": "summary"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"oldName": "Detailed Decription",
|
|
993
|
+
"newName": "notes"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"oldName": "Template Name",
|
|
997
|
+
"newName": "name"
|
|
998
|
+
}
|
|
999
|
+
],
|
|
1000
|
+
"workOrderTemplate": [
|
|
1001
|
+
{
|
|
1002
|
+
"oldName": "GUID",
|
|
1003
|
+
"newName": "id"
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
"oldName": "Template Name",
|
|
1007
|
+
"newName": "name"
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"oldName": "Summary",
|
|
1011
|
+
"newName": "summary"
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
"oldName": "Notes",
|
|
1015
|
+
"newName": "notes"
|
|
1016
|
+
}
|
|
1017
|
+
],
|
|
1018
|
+
"taskTemplate": [
|
|
1019
|
+
{
|
|
1020
|
+
"oldName": "InstanceId",
|
|
1021
|
+
"newName": "id"
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
"oldName": "TaskName",
|
|
1025
|
+
"newName": "name"
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"oldName": "Summary",
|
|
1029
|
+
"newName": "summary"
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"oldName": "Notes",
|
|
1033
|
+
"newName": "notes"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"oldName": "Company",
|
|
1037
|
+
"newName": "assigneeCompany"
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"oldName": "Assignee Organization",
|
|
1041
|
+
"newName": "assigneeOrganization"
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"oldName": "Assignee Group",
|
|
1045
|
+
"newName": "assigneeGroup"
|
|
1046
|
+
}
|
|
1047
|
+
]
|
|
1048
|
+
}
|