-
Notifications
You must be signed in to change notification settings - Fork 0
/
component.json
70 lines (70 loc) · 1.83 KB
/
component.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"title": "Transformation",
"description": "Data Transformation Component",
"actions": {
"transformPersonFromOih": {
"title": "Transform a Person from OIH",
"description": "Transform the outgoing data from OIH",
"main": "./lib/actions/transformAddressFromOih.js",
"metadata": {
"out": {}
}
},
"transformPersonToOih": {
"title": "Transform a Person to OIH",
"description": "Transform the incoming data to OIH",
"main": "./lib/actions/transformAddressToOih.js",
"metadata": {
"out": {}
}
},
"transformArticleToOih": {
"title": "Transform an Product to OIH",
"description": "Transform the incoming to OIH",
"main": "./lib/actions/transformProductToOih.js",
"metadata": {
"out": {}
}
},
"transformArticleFromOih": {
"title": "Transform an Product from OIH",
"description": "Transform the outgoing data to OIH",
"main": "./lib/actions/transformProductFromOih.js",
"metadata": {
"out": {}
}
},
"transformCountryToOih": {
"title": "Transform an Country to OIH",
"description": "Transform the incoming data to OIH",
"main": "./lib/actions/transformCountryToOih.js",
"metadata": {
"out": {}
}
},
"transformCountryFromOih": {
"title": "Transform an Country from OIH",
"description": "Transform the outgoing data from OIH",
"main": "./lib/actions/transformCountryFromOih.js",
"metadata": {
"out": {}
}
},
"transformUnitToOih": {
"title": "Transform an Unit to OIH",
"description": "Transform the incoming data to OIH",
"main": "./lib/actions/transformUnitToOih.js",
"metadata": {
"out": {}
}
},
"transformUnitFromOih": {
"title": "Transform an Unit from OIH",
"description": "Transform the outgoing data from OIH",
"main": "./lib/actions/transformUnitFromOih.js",
"metadata": {
"out": {}
}
}
}
}