xlport 0.3.1 → 0.3.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.
Files changed (240) hide show
  1. package/.env +1 -0
  2. package/dist/client.d.ts +23 -0
  3. package/dist/client.js +98 -0
  4. package/dist/client.js.map +1 -0
  5. package/dist/export.types.d.ts +53 -0
  6. package/dist/export.types.js +3 -0
  7. package/dist/export.types.js.map +1 -0
  8. package/dist/import.types.d.ts +25 -0
  9. package/dist/import.types.js +11 -0
  10. package/dist/import.types.js.map +1 -0
  11. package/dist/index.d.ts +4 -0
  12. package/dist/index.js +21 -0
  13. package/dist/index.js.map +1 -0
  14. package/dist/lib/client.d.ts +8 -9
  15. package/dist/lib/client.d.ts.map +1 -1
  16. package/dist/lib/client.js +148 -77
  17. package/dist/lib/client.js.map +1 -1
  18. package/dist/lib/export.types.d.ts +2 -0
  19. package/dist/lib/export.types.d.ts.map +1 -1
  20. package/dist/lib/export.types.js +5 -0
  21. package/dist/lib/export.types.js.map +1 -1
  22. package/dist/lib/index.js +5 -1
  23. package/dist/lib/index.js.map +1 -1
  24. package/dist/lib/shared.types.d.ts +1 -1
  25. package/dist/lib/shared.types.d.ts.map +1 -1
  26. package/dist/shared.types.d.ts +1 -0
  27. package/dist/shared.types.js +3 -0
  28. package/dist/shared.types.js.map +1 -0
  29. package/dist/tests/client/client.e2e.spec.d.ts +1 -0
  30. package/dist/tests/client/client.e2e.spec.js +109 -0
  31. package/dist/tests/client/client.e2e.spec.js.map +1 -0
  32. package/dist/tests/client/export/simple-export/request.json +6 -0
  33. package/dist/tests/client/import/1object/expected.json +10 -0
  34. package/dist/tests/client/import/1table/expected.json +39 -0
  35. package/dist/tests/client/import/1table-10col-100rows/expected.json +1306 -0
  36. package/dist/tests/client/import/multipleObjects/expected.json +20 -0
  37. package/dist/tests/client/import/multipleObjectsAndTables/expected.json +84 -0
  38. package/dist/tests/types/export/column-formatting.json +151 -0
  39. package/dist/tests/types/export/date.json +6 -0
  40. package/dist/tests/types/export/days.json +7 -0
  41. package/dist/tests/types/export/formats.json +169 -0
  42. package/dist/tests/types/export/formulas-and-lookups.json +9 -0
  43. package/dist/tests/types/export/multi-column-with-fixed-column.json +24 -0
  44. package/dist/tests/types/export/multi-sheet-column-fixed-topleft.json +59 -0
  45. package/dist/tests/types/export/multi-sheet-column-fixed.json +59 -0
  46. package/dist/tests/types/export/multi-sheet-column-simple-dash.json +97 -0
  47. package/dist/tests/types/export/multi-sheet-column-simple.json +68 -0
  48. package/dist/tests/types/export/multi-sheet-column.json +68 -0
  49. package/dist/tests/types/export/multi-sheet-simple.json +41 -0
  50. package/dist/tests/types/export/multiple-objects-and-tables.json +83 -0
  51. package/dist/tests/types/export/multiple-objects.json +20 -0
  52. package/dist/tests/types/export/multiple-tables.json +88 -0
  53. package/dist/tests/types/export/object.json +11 -0
  54. package/dist/tests/types/export/query-table-simple.json +12 -0
  55. package/dist/tests/types/export/query-table.json +27 -0
  56. package/dist/tests/types/export/sheets.json +6 -0
  57. package/dist/tests/types/export/table-with-calculations.json +27 -0
  58. package/dist/tests/types/export/table.json +40 -0
  59. package/dist/tests/types/export/utc.json +7 -0
  60. package/dist/tests/types/export.test.d.ts +26 -0
  61. package/dist/tests/types/export.test.js +48 -0
  62. package/dist/tests/types/export.test.js.map +1 -0
  63. package/dist/tests/types/import/large-table.json +1 -0
  64. package/dist/tests/types/import/multisheet.json +1 -0
  65. package/dist/tests/types/import/object.json +1 -0
  66. package/dist/tests/types/import/table.json +1 -0
  67. package/dist/tests/types/import.test.d.ts +5 -0
  68. package/dist/tests/types/import.test.js +12 -0
  69. package/dist/tests/types/import.test.js.map +1 -0
  70. package/dist/tsconfig.tsbuildinfo +1 -0
  71. package/package.json +42 -6
  72. package/tests/client/.env +1 -0
  73. package/tests/client/.env.example +1 -0
  74. package/tests/client/client.e2e.spec.ts +149 -0
  75. package/tests/client/export/1object/expected.xlsx +0 -0
  76. package/tests/{export/object.json → client/export/1object/request.json} +0 -0
  77. package/tests/client/export/1object/template.xlsx +0 -0
  78. package/tests/client/export/1table/expected.xlsx +0 -0
  79. package/tests/client/export/1table/request.json +40 -0
  80. package/tests/client/export/1table/template.xlsx +0 -0
  81. package/tests/client/export/1table/test.xlsx +0 -0
  82. package/tests/client/export/1table-10col-100rows/expected.xlsx +0 -0
  83. package/tests/client/export/1table-10col-100rows/request.json +1307 -0
  84. package/tests/client/export/1table-10col-100rows/template.xlsx +0 -0
  85. package/tests/client/export/1table-with-calculations/expected.xlsx +0 -0
  86. package/tests/{export/table-with-calculations.json → client/export/1table-with-calculations/request.json} +0 -0
  87. package/tests/client/export/1table-with-calculations/template.xlsx +0 -0
  88. package/tests/client/export/4col_10000rows/expected.xlsx +0 -0
  89. package/tests/client/export/4col_10000rows/request.json +70011 -0
  90. package/tests/client/export/4col_10000rows/template.xlsx +0 -0
  91. package/tests/client/export/4col_100rows/expected.xlsx +0 -0
  92. package/tests/client/export/4col_100rows/request.json +711 -0
  93. package/tests/client/export/4col_100rows/template.xlsx +0 -0
  94. package/tests/client/export/4col_20000rows/expected.xlsx +0 -0
  95. package/tests/client/export/4col_20000rows/request.json +140011 -0
  96. package/tests/client/export/4col_20000rows/template.xlsx +0 -0
  97. package/tests/client/export/daysbug/expected.xlsx +0 -0
  98. package/tests/{export/days.json → client/export/daysbug/request.json} +0 -0
  99. package/tests/client/export/daysbug/template.xlsx +0 -0
  100. package/tests/client/export/deals/expected.xlsx +0 -0
  101. package/tests/client/export/deals/request.json +444 -0
  102. package/tests/client/export/deals/template.xlsx +0 -0
  103. package/tests/client/export/firstXlPort2Test/expected.xlsx +0 -0
  104. package/tests/client/export/firstXlPort2Test/request.json +119 -0
  105. package/tests/client/export/firstXlPort2Test/template.xlsx +0 -0
  106. package/tests/client/export/formats/expected.xlsx +0 -0
  107. package/tests/{export/formats.json → client/export/formats/request.json} +0 -0
  108. package/tests/client/export/formats/template.xlsx +0 -0
  109. package/tests/client/export/formulasAndLookups/expected.xlsx +0 -0
  110. package/tests/client/export/formulasAndLookups/request.json +8 -0
  111. package/tests/client/export/formulasAndLookups/template.xlsx +0 -0
  112. package/tests/client/export/lookup/lookup.xlsx +0 -0
  113. package/tests/client/export/multipleObjects/expected.xlsx +0 -0
  114. package/tests/{export/multiple-objects.json → client/export/multipleObjects/request.json} +0 -0
  115. package/tests/client/export/multipleObjects/template.xlsx +0 -0
  116. package/tests/client/export/multipleObjectsAndTables/expected.xlsx +0 -0
  117. package/tests/{export/multiple-objects-and-tables.json → client/export/multipleObjectsAndTables/request.json} +0 -0
  118. package/tests/client/export/multipleObjectsAndTables/template.xlsx +0 -0
  119. package/tests/client/export/multipleTables/expected.xlsx +0 -0
  120. package/tests/{export/multiple-tables.json → client/export/multipleTables/request.json} +0 -0
  121. package/tests/client/export/multipleTables/template.xlsx +0 -0
  122. package/tests/client/export/query_table_bug/expected.xlsx +0 -0
  123. package/tests/{export/query-table.json → client/export/query_table_bug/request.json} +0 -0
  124. package/tests/client/export/query_table_bug/template copy.xlsx +0 -0
  125. package/tests/client/export/query_table_bug/template updated.xlsx +0 -0
  126. package/tests/client/export/query_table_bug/template.xlsx +0 -0
  127. package/tests/client/export/query_table_simple/expected.xlsx +0 -0
  128. package/tests/{export/query-table-simple.json → client/export/query_table_simple/request.json} +0 -0
  129. package/tests/client/export/query_table_simple/template copy.xlsx +0 -0
  130. package/tests/client/export/query_table_simple/template updated.xlsx +0 -0
  131. package/tests/client/export/query_table_simple/template.xlsx +0 -0
  132. package/tests/client/export/secondXlPort2Test/expected.xlsx +0 -0
  133. package/tests/client/export/secondXlPort2Test/request.json +131 -0
  134. package/tests/client/export/secondXlPort2Test/template.xlsx +0 -0
  135. package/tests/client/export/secondXlPort2Test/~$expected.xlsx +0 -0
  136. package/tests/client/export/sheets/expected.xlsx +0 -0
  137. package/tests/{export/sheets.json → client/export/sheets/request.json} +0 -0
  138. package/tests/client/export/simple-export/expected.xlsx +0 -0
  139. package/tests/client/export/simple-export/request.json +6 -0
  140. package/tests/client/export/simple-export/template.xlsx +0 -0
  141. package/tests/client/export/simple-export/test.xlsx +0 -0
  142. package/tests/client/export/thedate/expected.xlsx +0 -0
  143. package/tests/{export/date.json → client/export/thedate/request.json} +0 -0
  144. package/tests/client/export/thedate/template.xlsx +0 -0
  145. package/tests/client/export/thirdXlPort2Test/expected.xlsx +0 -0
  146. package/tests/client/export/thirdXlPort2Test/request.json +149 -0
  147. package/tests/client/export/thirdXlPort2Test/template.xlsx +0 -0
  148. package/tests/client/export/thirdXlPort2Test/~$expected.xlsx +0 -0
  149. package/tests/client/export/thirdXlPort2Test/~$template.xlsx +0 -0
  150. package/tests/client/export/v2-alma-minimized/expected.xlsx +0 -0
  151. package/tests/client/export/v2-alma-minimized/request.json +33 -0
  152. package/tests/client/export/v2-alma-minimized/template.xlsx +0 -0
  153. package/tests/client/export/v2-alma-scorecard-export/expected.xlsx +0 -0
  154. package/tests/client/export/v2-alma-scorecard-export/request.json +89 -0
  155. package/tests/client/export/v2-alma-scorecard-export/template.xlsx +0 -0
  156. package/tests/client/export/v2-alma-table/expected.xlsx +0 -0
  157. package/tests/client/export/v2-alma-table/request.json +66 -0
  158. package/tests/client/export/v2-alma-table/template.xlsx +0 -0
  159. package/tests/client/export/v2-column-formatting/expected.xlsx +0 -0
  160. package/tests/client/export/v2-column-formatting/request.json +160 -0
  161. package/tests/client/export/v2-column-formatting/template.xlsx +0 -0
  162. package/tests/client/export/v2-column-formatting/~$expected.xlsx +0 -0
  163. package/tests/client/export/v2-column-formatting/~$template.xlsx +0 -0
  164. package/tests/client/export/v2-multi-column-with-fixed-column/expected.xlsx +0 -0
  165. package/tests/{export/multi-column-with-fixed-column.json → client/export/v2-multi-column-with-fixed-column/request.json} +0 -0
  166. package/tests/client/export/v2-multi-column-with-fixed-column/template.xlsx +0 -0
  167. package/tests/client/export/v2-multi-sheet-column/expected.xlsx +0 -0
  168. package/tests/{export/multi-sheet-column.json → client/export/v2-multi-sheet-column/request.json} +0 -0
  169. package/tests/client/export/v2-multi-sheet-column/template.xlsx +0 -0
  170. package/tests/client/export/v2-multi-sheet-column-fixed/expected.xlsx +0 -0
  171. package/tests/{export/multi-sheet-column-fixed.json → client/export/v2-multi-sheet-column-fixed/request.json} +0 -0
  172. package/tests/client/export/v2-multi-sheet-column-fixed/template.xlsx +0 -0
  173. package/tests/client/export/v2-multi-sheet-column-fixed-topleft/expected.xlsx +0 -0
  174. package/tests/{export/multi-sheet-column-fixed-topleft.json → client/export/v2-multi-sheet-column-fixed-topleft/request.json} +0 -0
  175. package/tests/client/export/v2-multi-sheet-column-fixed-topleft/template.xlsx +0 -0
  176. package/tests/client/export/v2-multi-sheet-column-simple/expected.xlsx +0 -0
  177. package/tests/{export/multi-sheet-column-simple.json → client/export/v2-multi-sheet-column-simple/request.json} +0 -0
  178. package/tests/client/export/v2-multi-sheet-column-simple/template.xlsx +0 -0
  179. package/tests/client/export/v2-multi-sheet-column-simple-dash/expected.xlsx +0 -0
  180. package/tests/{export/multi-sheet-column-simple-dash.json → client/export/v2-multi-sheet-column-simple-dash/request.json} +0 -0
  181. package/tests/client/export/v2-multi-sheet-column-simple-dash/template.xlsx +0 -0
  182. package/tests/client/export/v2-multi-sheet-simple/expected.xlsx +0 -0
  183. package/tests/{export/multi-sheet-simple.json → client/export/v2-multi-sheet-simple/request.json} +0 -0
  184. package/tests/client/export/v2-multi-sheet-simple/template.xlsx +0 -0
  185. package/tests/client/export/v2-utc/expected.xlsx +0 -0
  186. package/tests/{export/utc.json → client/export/v2-utc/request.json} +0 -0
  187. package/tests/client/export/v2-utc/template.xlsx +0 -0
  188. package/tests/client/import/1object/Source.xlsx +0 -0
  189. package/tests/client/import/1object/data.xlsx +0 -0
  190. package/tests/client/import/1object/expected.json +10 -0
  191. package/tests/client/import/1object/request.json +10 -0
  192. package/tests/client/import/1table/Source.xlsx +0 -0
  193. package/tests/client/import/1table/data.xlsx +0 -0
  194. package/tests/client/import/1table/expected.json +39 -0
  195. package/tests/client/import/1table/request.json +15 -0
  196. package/tests/client/import/1table-10col-100rows/Source.xlsx +0 -0
  197. package/tests/client/import/1table-10col-100rows/data.xlsx +0 -0
  198. package/tests/client/import/1table-10col-100rows/expected.json +1306 -0
  199. package/tests/client/import/1table-10col-100rows/request.json +17 -0
  200. package/tests/client/import/multipleObjects/Source.xlsx +0 -0
  201. package/tests/client/import/multipleObjects/data.xlsx +0 -0
  202. package/tests/client/import/multipleObjects/expected.json +20 -0
  203. package/tests/client/import/multipleObjects/request.json +20 -0
  204. package/tests/client/import/multipleObjectsAndTables/Source.xlsx +0 -0
  205. package/tests/client/import/multipleObjectsAndTables/data.xlsx +0 -0
  206. package/tests/client/import/multipleObjectsAndTables/expected.json +84 -0
  207. package/tests/client/import/multipleObjectsAndTables/request.json +40 -0
  208. package/tests/client/import/multipleTables/Source.xlsx +0 -0
  209. package/tests/client/import/multipleTables/data.xlsx +0 -0
  210. package/tests/client/import/multipleTables/expected.json +87 -0
  211. package/tests/client/import/multipleTables/request.json +29 -0
  212. package/tests/{export → types/export}/column-formatting.json +0 -0
  213. package/tests/types/export/date.json +6 -0
  214. package/tests/types/export/days.json +7 -0
  215. package/tests/types/export/formats.json +169 -0
  216. package/tests/{export → types/export}/formulas-and-lookups.json +0 -0
  217. package/tests/types/export/multi-column-with-fixed-column.json +24 -0
  218. package/tests/types/export/multi-sheet-column-fixed-topleft.json +59 -0
  219. package/tests/types/export/multi-sheet-column-fixed.json +59 -0
  220. package/tests/types/export/multi-sheet-column-simple-dash.json +97 -0
  221. package/tests/types/export/multi-sheet-column-simple.json +68 -0
  222. package/tests/types/export/multi-sheet-column.json +68 -0
  223. package/tests/types/export/multi-sheet-simple.json +41 -0
  224. package/tests/types/export/multiple-objects-and-tables.json +83 -0
  225. package/tests/types/export/multiple-objects.json +20 -0
  226. package/tests/types/export/multiple-tables.json +88 -0
  227. package/tests/types/export/object.json +11 -0
  228. package/tests/types/export/query-table-simple.json +12 -0
  229. package/tests/types/export/query-table.json +27 -0
  230. package/tests/types/export/sheets.json +5 -0
  231. package/tests/types/export/table-with-calculations.json +27 -0
  232. package/tests/{export → types/export}/table.json +0 -0
  233. package/tests/types/export/utc.json +7 -0
  234. package/tests/{export.test.ts → types/export.test.ts} +2 -1
  235. package/tests/{import → types/import}/large-table.json +0 -0
  236. package/tests/{import → types/import}/multisheet.json +0 -0
  237. package/tests/{import → types/import}/object.json +0 -0
  238. package/tests/{import → types/import}/table.json +0 -0
  239. package/tests/{import.test.ts → types/import.test.ts} +1 -2
  240. package/tsconfig.json +6 -44
@@ -0,0 +1,444 @@
1
+ {
2
+ "templateId": "cjsll62vc21q90a36d4vi5yy1_list.xlsx",
3
+ "data": {
4
+ "Deals": [
5
+ {
6
+ "Id": "cjsyem3o1l4rc0a369kdxcqo8",
7
+ "Deal Name": "bla",
8
+ "Function": "",
9
+ "Status": "",
10
+ "Country": "",
11
+ "Account": "",
12
+ "Account Number": 0,
13
+ "Key Account": false,
14
+ "Strat. Importance": false,
15
+ "Probability": 5,
16
+ "Discounted Budget" : 15,
17
+ "Next Steps": "",
18
+ "Category": "",
19
+ "Contact": "",
20
+ "Project Start": null,
21
+ "Lead 1": "",
22
+ "Client Project Code": "",
23
+ "Project End": null,
24
+ "Lead 2": "",
25
+ "Lead 3": "",
26
+ "Project Number": "",
27
+ "": 0,
28
+ "Name Competitor 1": "",
29
+ "Status Competitor 1": "",
30
+ "Name Competitor 2": "",
31
+ "Status Competitor 2": "",
32
+ "Name Competitor 3": "",
33
+ "Status Competitor 3": "",
34
+ "Existence Tender": false,
35
+ "Action Tender": "",
36
+ "Result Tender": "",
37
+ "Existence Pitch Round 1": false,
38
+ "Action Pitch Round 1": "",
39
+ "Result Pitch Round 1": "",
40
+ "Existence Pitch Round 2": false,
41
+ "Action Pitch Round 2": "",
42
+ "Result Pitch Round 2": "",
43
+ "Existence Pitch Round 3": false,
44
+ "Action Pitch Round 3": "",
45
+ "Result Pitch Round 3": "",
46
+ "Industry": "All"
47
+ }
48
+ ],
49
+ "Staffing": [
50
+ {
51
+ "Id": "cjt73gbyi1pkh0a70a2kp6tu1",
52
+ "Level": "Partner 1",
53
+ "Name": "",
54
+ "Utilization": 0.2,
55
+ "Start": "2019-03-01T02:00:00.000Z",
56
+ "End": "2019-08-30T02:00:00.000Z",
57
+ "Daily Rate": 5750,
58
+ "Discount": 0.2
59
+ },
60
+ {
61
+ "Id": "cjt7grbq62ng90a70qj9mpe5g",
62
+ "Level": "Project Manager 1",
63
+ "Name": "",
64
+ "Utilization": 1,
65
+ "Start": "2019-03-01T02:00:00.000Z",
66
+ "End": "2019-08-30T02:00:00.000Z",
67
+ "Daily Rate": 4250,
68
+ "Discount": 0
69
+ },
70
+ {
71
+ "Id": "cjthd74svdhdp0a89j4l897rs",
72
+ "Level": "Partner 1",
73
+ "Name": "",
74
+ "Utilization": 0.2,
75
+ "Start": "2019-03-01T02:00:00.000Z",
76
+ "End": "2019-08-30T02:00:00.000Z",
77
+ "Daily Rate": 5750,
78
+ "Discount": 0.2
79
+ },
80
+ {
81
+ "Id": "cjthd74sydhg10a89iktsakod",
82
+ "Level": "Project Manager 1",
83
+ "Name": "",
84
+ "Utilization": 1,
85
+ "Start": "2019-03-01T02:00:00.000Z",
86
+ "End": "2019-08-30T02:00:00.000Z",
87
+ "Daily Rate": 4250,
88
+ "Discount": 0
89
+ },
90
+ {
91
+ "Id": "cjthi3vv5dpr40a8935px0dzn",
92
+ "Level": "Project Manager 1",
93
+ "Name": "",
94
+ "Utilization": 1,
95
+ "Start": "2019-03-01T02:00:00.000Z",
96
+ "End": "2019-08-30T02:00:00.000Z",
97
+ "Daily Rate": 4250,
98
+ "Discount": 0
99
+ },
100
+ {
101
+ "Id": "cjthi3vvbdptg0a89o2jgoi8w",
102
+ "Level": "Partner 1",
103
+ "Name": "",
104
+ "Utilization": 0.2,
105
+ "Start": "2019-03-01T02:00:00.000Z",
106
+ "End": "2019-08-30T02:00:00.000Z",
107
+ "Daily Rate": 5750,
108
+ "Discount": 0.2
109
+ },
110
+ {
111
+ "Id": "cjthc7is9ddaf0a89cy06gym3",
112
+ "Level": "Project Manager 1",
113
+ "Name": "",
114
+ "Utilization": 1,
115
+ "Start": "2019-03-01T02:00:00.000Z",
116
+ "End": "2019-08-30T02:00:00.000Z",
117
+ "Daily Rate": 4250,
118
+ "Discount": 0
119
+ },
120
+ {
121
+ "Id": "cjthc7isiddcr0a8945ql4nwl",
122
+ "Level": "Partner 1",
123
+ "Name": "",
124
+ "Utilization": 0.2,
125
+ "Start": "2019-03-01T02:00:00.000Z",
126
+ "End": "2019-08-30T02:00:00.000Z",
127
+ "Daily Rate": 5750,
128
+ "Discount": 0.2
129
+ },
130
+ {
131
+ "Id": "cjthl2gisdxlc0a89xj0tl9xv",
132
+ "Level": "Partner 1",
133
+ "Name": "",
134
+ "Utilization": 0.2,
135
+ "Start": "2019-03-01T02:00:00.000Z",
136
+ "End": "2019-08-30T02:00:00.000Z",
137
+ "Daily Rate": 5750,
138
+ "Discount": 0.2
139
+ },
140
+ {
141
+ "Id": "cjthl2gjwdxod0a89z3bieryl",
142
+ "Level": "Project Manager 1",
143
+ "Name": "",
144
+ "Utilization": 1,
145
+ "Start": "2019-03-01T02:00:00.000Z",
146
+ "End": "2019-08-30T02:00:00.000Z",
147
+ "Daily Rate": 4250,
148
+ "Discount": 0
149
+ },
150
+ {
151
+ "Id": "cjthd35ludfw40a890yqelgpy",
152
+ "Level": "Partner 1",
153
+ "Name": "",
154
+ "Utilization": 0.2,
155
+ "Start": "2019-03-01T02:00:00.000Z",
156
+ "End": "2019-08-30T02:00:00.000Z",
157
+ "Daily Rate": 5750,
158
+ "Discount": 0.2
159
+ },
160
+ {
161
+ "Id": "cjthd35m0dfyg0a8969y6ljse",
162
+ "Level": "Project Manager 1",
163
+ "Name": "",
164
+ "Utilization": 1,
165
+ "Start": "2019-03-01T02:00:00.000Z",
166
+ "End": "2019-08-30T02:00:00.000Z",
167
+ "Daily Rate": 4250,
168
+ "Discount": 0
169
+ },
170
+ {
171
+ "Id": "cjthjs1c1dthk0a897ept6ych",
172
+ "Level": "Project Manager 1",
173
+ "Name": "",
174
+ "Utilization": 1,
175
+ "Start": "2019-03-01T02:00:00.000Z",
176
+ "End": "2019-08-30T02:00:00.000Z",
177
+ "Daily Rate": 4250,
178
+ "Discount": 0
179
+ },
180
+ {
181
+ "Id": "cjthjs1cadtjw0a89oazhki9y",
182
+ "Level": "Partner 1",
183
+ "Name": "",
184
+ "Utilization": 0.2,
185
+ "Start": "2019-03-01T02:00:00.000Z",
186
+ "End": "2019-08-30T02:00:00.000Z",
187
+ "Daily Rate": 5750,
188
+ "Discount": 0.2
189
+ },
190
+ {
191
+ "Id": "cjtidbaiof3i50a899l4pm1xr",
192
+ "Level": "Partner 1",
193
+ "Name": "",
194
+ "Utilization": 0.2,
195
+ "Start": "2019-03-01T02:00:00.000Z",
196
+ "End": "2019-08-30T02:00:00.000Z",
197
+ "Daily Rate": 5750,
198
+ "Discount": 0.2
199
+ },
200
+ {
201
+ "Id": "cjtidbaiof3i60a89gjttaxn1",
202
+ "Level": "Project Manager 1",
203
+ "Name": "",
204
+ "Utilization": 1,
205
+ "Start": "2019-03-01T02:00:00.000Z",
206
+ "End": "2019-08-30T02:00:00.000Z",
207
+ "Daily Rate": 4250,
208
+ "Discount": 0
209
+ }
210
+ ],
211
+ "Function_Lookup": [
212
+ {
213
+ "Id": "cjslmzuiy24ns0a366gwi5iax",
214
+ "Value": 10,
215
+ "Label": "Digitization"
216
+ },
217
+ {
218
+ "Id": "cjslmzujb24nu0a36bqsebrt6",
219
+ "Value": 20,
220
+ "Label": "Executive Communications"
221
+ },
222
+ {
223
+ "Id": "cjslmzujf24nw0a361kn2crw5",
224
+ "Value": 30,
225
+ "Label": "Information Management"
226
+ },
227
+ {
228
+ "Id": "cjslmzujj24ny0a36rezejrys",
229
+ "Value": 40,
230
+ "Label": "Investor Support & Corporate Finance"
231
+ },
232
+ { "Id": "cjslmzujm24o00a36u6xemitl", "Value": 50, "Label": "Operations" },
233
+ {
234
+ "Id": "cjslmzujp24o20a364nfz8paj",
235
+ "Value": 60,
236
+ "Label": "Restructuring & Corporate Performance"
237
+ },
238
+ {
239
+ "Id": "cjslmzuju24o40a36ul9fshac",
240
+ "Value": 70,
241
+ "Label": "Sales & Marketing"
242
+ },
243
+ { "Id": "cjslmzujy24o60a367j4jks6k", "Value": 80, "Label": "Strategy" }
244
+ ],
245
+ "Status_Lookup": [
246
+ {
247
+ "Id": "cjsln2d9d24sh0a362qen1t4p",
248
+ "Value": 10,
249
+ "Label": "Proposal in process"
250
+ },
251
+ {
252
+ "Id": "cjsln2d9h24sj0a36udd8ps7c",
253
+ "Value": 20,
254
+ "Label": "Proposal submitted"
255
+ },
256
+ {
257
+ "Id": "cjsln2d9k24sl0a36a3o6oyfs",
258
+ "Value": 30,
259
+ "Label": "Intermediate pitch presented"
260
+ },
261
+ {
262
+ "Id": "cjsln2d9o24sn0a360b3z3ahz",
263
+ "Value": 40,
264
+ "Label": "Final pitch in preparation"
265
+ },
266
+ {
267
+ "Id": "cjsln2d9r24sp0a36xsmy72b5",
268
+ "Value": 50,
269
+ "Label": "Final pitch presented"
270
+ },
271
+ { "Id": "cjsln2d9z24sr0a366hjntwe9", "Value": 60, "Label": "Lost" },
272
+ { "Id": "cjsln2da224st0a36vyjp3dxw", "Value": 70, "Label": "Win" }
273
+ ],
274
+ "Country_Lookup": [
275
+ { "Id": "cjslncdal258d0a368cc9ayoo", "Value": 10, "Label": "Austria" },
276
+ { "Id": "cjslncdap258f0a36wtn153bm", "Value": 20, "Label": "Belgium" },
277
+ { "Id": "cjslncdat258h0a36m6u7cd47", "Value": 30, "Label": "Bulgaria" },
278
+ { "Id": "cjslncdax258j0a36b3khvy7e", "Value": 40, "Label": "Croatia" },
279
+ { "Id": "cjslncdb0258l0a36fs441eog", "Value": 50, "Label": "Cyprus" },
280
+ {
281
+ "Id": "cjslncdb3258n0a36g4swim3g",
282
+ "Value": 60,
283
+ "Label": "Czech Republic"
284
+ },
285
+ { "Id": "cjslncdb9258p0a36vx4fxbuz", "Value": 70, "Label": "Denmark" },
286
+ { "Id": "cjslncdbc258r0a36pk5c5zwj", "Value": 80, "Label": "Estonia" },
287
+ { "Id": "cjslncdbg258t0a363ld2j46q", "Value": 90, "Label": "Finland" },
288
+ { "Id": "cjslncdbk258v0a366n04pf94", "Value": 100, "Label": "France" },
289
+ { "Id": "cjslncdbo258x0a36dhjxz45h", "Value": 110, "Label": "Germany" },
290
+ { "Id": "cjslncdbs258z0a36mz0yhgpf", "Value": 120, "Label": "Greece" },
291
+ { "Id": "cjslncdbx25910a36xc79kg9c", "Value": 130, "Label": "Hungary" },
292
+ { "Id": "cjslncdc025930a3651zoren0", "Value": 140, "Label": "Ireland" },
293
+ { "Id": "cjslncdc425950a36hdmjc58y", "Value": 150, "Label": "Italy" },
294
+ { "Id": "cjslncdc925970a36rfddvqtv", "Value": 160, "Label": "Latvia" },
295
+ { "Id": "cjslncdcd25990a3694zuotk5", "Value": 170, "Label": "Lithuania" },
296
+ {
297
+ "Id": "cjslncdcg259b0a360782j2tn",
298
+ "Value": 180,
299
+ "Label": "Luxembourg"
300
+ },
301
+ { "Id": "cjslncdcj259d0a361vy3mw3w", "Value": 190, "Label": "Malta" },
302
+ {
303
+ "Id": "cjslncdcr259f0a36vpxklt4o",
304
+ "Value": 200,
305
+ "Label": "Netherlands"
306
+ },
307
+ { "Id": "cjslncdcw259h0a36lycha4ff", "Value": 210, "Label": "Poland" },
308
+ { "Id": "cjslncdd1259j0a36s4dhk1bl", "Value": 220, "Label": "Portugal" },
309
+ { "Id": "cjslncdd9259l0a36d7r5ig8o", "Value": 230, "Label": "Romania" },
310
+ { "Id": "cjslncdde259n0a36kk2l813k", "Value": 240, "Label": "Slovakia" },
311
+ { "Id": "cjslncddi259p0a36a05e2yis", "Value": 250, "Label": "Slovenia" },
312
+ { "Id": "cjslncddl259r0a36juw8iod7", "Value": 260, "Label": "Spain" },
313
+ { "Id": "cjslncddo259t0a36ephyiw4d", "Value": 270, "Label": "Sweden" },
314
+ {
315
+ "Id": "cjslncdds259v0a367dv7iaey",
316
+ "Value": 280,
317
+ "Label": "United Kingdom"
318
+ }
319
+ ],
320
+ "Category_Lookup": [
321
+ { "Id": "cjsodofhs6d2x0a36xdrt38ft", "Value": 10, "Label": "Accounting" },
322
+ {
323
+ "Id": "cjsodofhx6d2z0a362sif66d0",
324
+ "Value": 20,
325
+ "Label": "Controlling"
326
+ },
327
+ {
328
+ "Id": "cjsodofi16d310a36czufigjc",
329
+ "Value": 30,
330
+ "Label": "Corporate Finance"
331
+ },
332
+ { "Id": "cjsodofi46d330a36h4p5asz1", "Value": 40, "Label": "CRM" },
333
+ { "Id": "cjsodofi76d350a36oupuqwzv", "Value": 50, "Label": "Efficiency" },
334
+ {
335
+ "Id": "cjsodofib6d370a36s7amhtmh",
336
+ "Value": 60,
337
+ "Label": "Human Ressources"
338
+ },
339
+ {
340
+ "Id": "cjsodofie6d390a36sbv73lg5",
341
+ "Value": 70,
342
+ "Label": "Internal Processes"
343
+ },
344
+ { "Id": "cjsodofih6d3b0a36i51ksa5r", "Value": 80, "Label": "IT" },
345
+ { "Id": "cjsodofik6d3d0a36z8mujdzq", "Value": 90, "Label": "Marketing" },
346
+ {
347
+ "Id": "cjsodofin6d3f0a36l1nd3w02",
348
+ "Value": 100,
349
+ "Label": "Procurement"
350
+ },
351
+ {
352
+ "Id": "cjsodofiq6d3h0a365ivigh8d",
353
+ "Value": 110,
354
+ "Label": "Production"
355
+ },
356
+ {
357
+ "Id": "cjsodofiu6d3j0a36mqn8qogm",
358
+ "Value": 120,
359
+ "Label": "Restructuring"
360
+ },
361
+ { "Id": "cjsodofix6d3l0a3628xbxedk", "Value": 130, "Label": "Sales" },
362
+ { "Id": "cjsodofj06d3n0a36bbv5somw", "Value": 140, "Label": "Strategy" },
363
+ {
364
+ "Id": "cjsodofj36d3p0a36v6h24ngd",
365
+ "Value": 150,
366
+ "Label": "Supply Chain"
367
+ },
368
+ { "Id": "cjsodofj66d3r0a364d3ekyyg", "Value": 160, "Label": "Tax" }
369
+ ],
370
+ "Industry_Lookup": [
371
+ { "Id": "cjslm2b9723300a36yecw3o6y", "Label": "All" },
372
+ { "Id": "cjslmo25e241b0a364jowsx0z", "Label": "Aerospace & Defense" },
373
+ { "Id": "cjslmo25i241d0a36epdzlt0z", "Label": "Aviation" },
374
+ { "Id": "cjslmo25p241g0a36h2v649z9", "Label": "Government" },
375
+ { "Id": "cjslmo25w241j0a36snfkr20n", "Label": "Military Production" },
376
+ { "Id": "cjslmo266241m0a36or51twis", "Label": "Military Services" },
377
+ { "Id": "cjslmo26d241p0a368hghmojm", "Label": "Space" },
378
+ { "Id": "cjslmo26l241t0a36luq2vqrl", "Label": "Automotive" },
379
+ { "Id": "cjslmo26p241v0a36wxrbfcyw", "Label": "Suppliers" },
380
+ { "Id": "cjslmo26x241y0a36u7k8xh21", "Label": "OEM" },
381
+ { "Id": "cjslmo27324210a36vugw0zd0", "Label": "Dealership" },
382
+ { "Id": "cjslmo27b24250a36f3fr0sya", "Label": "Chemicals" },
383
+ { "Id": "cjslmo27i24280a36zzxbdloy", "Label": "Civil Economics" },
384
+ { "Id": "cjslmo27p242b0a36pefvyats", "Label": "Construction" },
385
+ {
386
+ "Id": "cjslmo27z242e0a365oparyqp",
387
+ "Label": "Consumer Goods, Retail & Agribusiness"
388
+ },
389
+ { "Id": "cjslmo287242g0a368lrsvffx", "Label": "Agribusiness" },
390
+ { "Id": "cjslmo28d242j0a36rjdyeg42", "Label": "E-Commerce" },
391
+ { "Id": "cjslmo28j242m0a36z1ia7pzb", "Label": "Fashion" },
392
+ { "Id": "cjslmo28p242p0a3688gvxk6q", "Label": "FMCG Drinks" },
393
+ { "Id": "cjslmo28u242s0a36vunyqma8", "Label": "FMCG Food" },
394
+ { "Id": "cjslmo291242v0a368p5lcdcc", "Label": "FMCG Non-Food" },
395
+ { "Id": "cjslmo296242y0a36k0onyd3d", "Label": "Retail" },
396
+ { "Id": "cjslmo29b24310a36bg66i50f", "Label": "SMCG" },
397
+ { "Id": "cjslmo29i24350a363vjmzx7q", "Label": "Energy & Utilities" },
398
+ { "Id": "cjslmo29o24380a369bxnhqjg", "Label": "Financial Services" },
399
+ { "Id": "cjslmo29s243a0a36dlom42ro", "Label": "Banking" },
400
+ { "Id": "cjslmo29x243d0a3628rnx20v", "Label": "Fintech" },
401
+ { "Id": "cjslmo2a3243g0a36fqvc8bza", "Label": "Insurance" },
402
+ {
403
+ "Id": "cjslmo2ac243k0a36ge4qszmr",
404
+ "Label": "Industrial Products & Services"
405
+ },
406
+ { "Id": "cjslmo2ai243n0a36pclanh9g", "Label": "Infrastructure" },
407
+ { "Id": "cjslmo2al243p0a365wwmfoif", "Label": "Airports & Harbours" },
408
+ { "Id": "cjslmo2at243s0a361ak60kuq", "Label": "Basic Supply" },
409
+ { "Id": "cjslmo2ay243v0a36rpvbw83p", "Label": "Digital Supply" },
410
+ { "Id": "cjslmo2b5243y0a3674xt8v9e", "Label": "Rail & Road Systems" },
411
+ { "Id": "cjslmo2bc24420a36u59xoumw", "Label": "Pharma & Healthcare" },
412
+ { "Id": "cjslmo2bg24440a36hwc7saye", "Label": "Biotech" },
413
+ { "Id": "cjslmo2bm24470a360f1svfm3", "Label": "Clinics & Hospitals" },
414
+ { "Id": "cjslmo2bs244a0a36hb7b5tyw", "Label": "Government" },
415
+ {
416
+ "Id": "cjslmo2bx244d0a36zhkg6vzt",
417
+ "Label": "Pharmaceutical Production"
418
+ },
419
+ { "Id": "cjslmo2c3244g0a362gi3496c", "Label": "Pharmacies & Retail" },
420
+ { "Id": "cjslmo2c8244j0a36gof6t21a", "Label": "Research Institutes" },
421
+ {
422
+ "Id": "cjslmo2cg244n0a3626ssybl2",
423
+ "Label": "Technology, Media & Telcos"
424
+ },
425
+ { "Id": "cjslmo2cj244p0a36cqcx3mje", "Label": "High Tech" },
426
+ { "Id": "cjslmo2cq244s0a36b4tay9ws", "Label": "Media" },
427
+ { "Id": "cjslmo2cw244v0a36bbgyqoym", "Label": "Telecommunication" },
428
+ { "Id": "cjslmo2d4244z0a369bkm31yb", "Label": "Transportation" },
429
+ { "Id": "cjslmo2d724510a36ch3610dw", "Label": "Airlines" },
430
+ { "Id": "cjslmo2dd24540a3618jcdwgb", "Label": "Rail" }
431
+ ],
432
+ "Person_Lookup": [
433
+ { "Id": "cjslnk3ko25m90a36lv6ltfm3", "Label": "Arthur Agro" },
434
+ { "Id": "cjslnk3kx25mb0a36ono3u2ju", "Label": "Constantin Consumer" },
435
+ { "Id": "cjslnk3l425md0a36cq1n6bup", "Label": "Fabienne Fashion" },
436
+ { "Id": "cjslnk3l725mf0a36qye675wu", "Label": "Iris Ecom" },
437
+ { "Id": "cjslnk3lb25mh0a36nddqk7vz", "Label": "Stefan Slowmo" },
438
+ { "Id": "cjslnk3le25mj0a36nwk28s3w", "Label": "Ricarda Retail" },
439
+ { "Id": "cjslnk3lj25ml0a361fta2exg", "Label": "Theo Trinker" },
440
+ { "Id": "cjslnk3ln25mn0a367n18uz4s", "Label": "Dirk Ditschitel" },
441
+ { "Id": "cjslnk3ls25mp0a36axem8p2e", "Label": "Beate Beauty" }
442
+ ]
443
+ }
444
+ }
@@ -0,0 +1,119 @@
1
+ {
2
+ "templateId": "template.xlsx",
3
+ "data": {
4
+ "CompanyBoolean": false,
5
+ "CompanyFloat": 2141.4,
6
+ "CompanyId": "cid1",
7
+ "CompanyInteger": 252454,
8
+ "CompanyLabel": "Company Name",
9
+ "CompanyLastUpdated": "2019-02-02T00:00:00.000Z",
10
+ "sheets": [
11
+ {
12
+ "name": "Q1",
13
+ "fromTemplateSheet": "Project",
14
+ "tabColor": "#FF0000",
15
+ "data": {
16
+ "ProjectId": "12345",
17
+ "ProjectLabel":"MyLabel",
18
+ "Integer":42,
19
+ "Float":37.005,
20
+ "Boolean":true,
21
+ "LastUpdated":"1982-01-25T00:00:00.000Z",
22
+ "Status": [
23
+ {
24
+ "Id": "uuidStatus1",
25
+ "Label": "On track"
26
+ },
27
+ {
28
+ "Id": "uuidStatus2",
29
+ "Label": "Some progress"
30
+ },
31
+ {
32
+ "Id": "uuidStatus3",
33
+ "Label": "Delayed"
34
+ }
35
+ ]
36
+ }
37
+ },
38
+ {
39
+ "name": "Q2",
40
+ "fromTemplateSheet": "Project",
41
+ "tabColor": "#00FF00",
42
+ "data": {
43
+ "dummy": "dummy value"
44
+ }
45
+ },
46
+ {
47
+ "name": "Q3",
48
+ "fromTemplateSheet": "Project",
49
+ "tabColor": "#0000FF",
50
+ "data": {
51
+ "dummy": "dummy value"
52
+ }
53
+ }
54
+ ],
55
+ "Initiatives": [
56
+ {
57
+ "Id": "uuidInitiative1",
58
+ "Name": "Initiative 1",
59
+ "StatusId": "uuidStatus1",
60
+ "SavingsPotential": 123.3,
61
+ "Achievement": 0.12,
62
+ "IsComplete": false,
63
+ "Date": "2018-04-11T00:00:00.000Z",
64
+ "Integer": 1,
65
+ "Calculated column": 146.727
66
+ },
67
+ {
68
+ "Id": "uuidInitiative2",
69
+ "Name": "Initiative 2",
70
+ "StatusId": "uuidStatus2",
71
+ "SavingsPotential": null,
72
+ "Achievement": 0,
73
+ "IsComplete": true,
74
+ "Date": "1966-05-01T00:00:00.000Z",
75
+ "Integer": -246537347,
76
+ "Calculated column": 0
77
+ },
78
+ {
79
+ "Id": "uuidInitiative3",
80
+ "Name": "Initiative 3",
81
+ "StatusId": "uuidStatus3",
82
+ "SavingsPotential": 456,
83
+ "Achievement": 0.2,
84
+ "IsComplete": false,
85
+ "Date": "2020-01-01T00:00:00.000Z",
86
+ "Integer": 1324275242,
87
+ "Calculated column": 542.64
88
+ }
89
+ ],
90
+ "Status": [
91
+ {
92
+ "Id": "uuidStatus1",
93
+ "Label": "On track"
94
+ },
95
+ {
96
+ "Id": "uuidStatus2",
97
+ "Label": "Some progress"
98
+ },
99
+ {
100
+ "Id": "uuidStatus3",
101
+ "Label": "Delayed"
102
+ }
103
+ ],
104
+ "Persons": [
105
+ {
106
+ "Id": "pid1",
107
+ "LastName": "Bolle"
108
+ },
109
+ {
110
+ "Id": "pid2",
111
+ "LastName": "Zwille"
112
+ },
113
+ {
114
+ "Id": "pid3",
115
+ "LastName": "Ralle"
116
+ }
117
+ ]
118
+ }
119
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "data":{
3
+ "inputA":1,
4
+ "inputB":2,
5
+ "inputC":"=VLOOKUP(1,rangeA,2,FALSE)",
6
+ "inputD":"=VLOOKUP(2,rangeB,2,FALSE)"
7
+ }
8
+ }