@limetech/lime-web-components 4.48.2 → 4.49.1-alpha.4

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 (360) hide show
  1. package/CHANGELOG.md +145 -1
  2. package/README.md +1 -1
  3. package/dist/application/decorators/application.d.ts +8 -0
  4. package/dist/application/decorators/application.js +18 -0
  5. package/dist/application/decorators/index.d.ts +3 -0
  6. package/dist/application/decorators/index.js +3 -0
  7. package/dist/application/decorators/session.d.ts +8 -0
  8. package/dist/application/decorators/session.js +18 -0
  9. package/dist/application/decorators/user.d.ts +8 -0
  10. package/dist/application/decorators/user.js +18 -0
  11. package/dist/application/index.d.ts +4 -0
  12. package/dist/application/index.js +4 -0
  13. package/dist/application/session.d.ts +67 -0
  14. package/dist/application/session.js +1 -0
  15. package/dist/application/types.d.ts +14 -0
  16. package/dist/application/types.js +3 -0
  17. package/dist/application/user.d.ts +59 -0
  18. package/dist/application/user.js +1 -0
  19. package/dist/commandbus/commandbus.d.ts +112 -0
  20. package/dist/commandbus/commandbus.js +63 -0
  21. package/dist/commandbus/index.d.ts +2 -0
  22. package/dist/commandbus/index.js +2 -0
  23. package/dist/commandbus/types.d.ts +14 -0
  24. package/dist/commandbus/types.js +3 -0
  25. package/dist/config/decorator.d.ts +14 -0
  26. package/dist/config/decorator.js +14 -0
  27. package/dist/config/index.d.ts +3 -0
  28. package/dist/config/index.js +3 -0
  29. package/dist/config/repository.d.ts +17 -0
  30. package/dist/config/repository.js +1 -0
  31. package/dist/config/types.d.ts +14 -0
  32. package/dist/config/types.js +3 -0
  33. package/dist/core/context.d.ts +17 -0
  34. package/dist/core/context.js +1 -0
  35. package/dist/core/decorators/factory.d.ts +29 -0
  36. package/dist/core/decorators/factory.js +243 -0
  37. package/dist/core/decorators/factory.spec.d.ts +1 -0
  38. package/dist/core/decorators/factory.spec.js +337 -0
  39. package/dist/core/decorators/index.d.ts +1 -0
  40. package/dist/core/decorators/index.js +1 -0
  41. package/dist/core/index.d.ts +6 -0
  42. package/dist/core/index.js +6 -0
  43. package/dist/core/lime-web-component.d.ts +15 -0
  44. package/dist/core/lime-web-component.js +1 -0
  45. package/dist/core/platform.d.ts +38 -0
  46. package/dist/core/platform.js +6 -0
  47. package/dist/core/plugin-loader.d.ts +28 -0
  48. package/dist/core/plugin-loader.js +1 -0
  49. package/dist/core/state.d.ts +39 -0
  50. package/dist/core/state.js +1 -0
  51. package/dist/device/decorator.d.ts +16 -0
  52. package/dist/device/decorator.js +16 -0
  53. package/dist/device/device.d.ts +21 -0
  54. package/dist/device/device.js +1 -0
  55. package/dist/device/index.d.ts +3 -0
  56. package/dist/device/index.js +3 -0
  57. package/dist/device/types.d.ts +14 -0
  58. package/dist/device/types.js +3 -0
  59. package/dist/dialog/dialog.d.ts +41 -0
  60. package/dist/dialog/dialog.js +1 -0
  61. package/dist/dialog/index.d.ts +2 -0
  62. package/dist/dialog/index.js +2 -0
  63. package/dist/dialog/types.d.ts +14 -0
  64. package/dist/dialog/types.js +3 -0
  65. package/dist/es5/application/decorators/application.js +18 -0
  66. package/dist/es5/application/decorators/index.js +6 -0
  67. package/dist/es5/application/decorators/session.js +18 -0
  68. package/dist/es5/application/decorators/user.js +18 -0
  69. package/dist/es5/application/index.js +7 -0
  70. package/dist/es5/application/session.js +2 -0
  71. package/dist/es5/application/types.js +5 -0
  72. package/dist/es5/application/user.js +2 -0
  73. package/dist/es5/commandbus/commandbus.js +31 -0
  74. package/dist/es5/commandbus/index.js +5 -0
  75. package/dist/es5/commandbus/types.js +5 -0
  76. package/dist/es5/config/decorator.js +12 -0
  77. package/dist/es5/config/index.js +6 -0
  78. package/dist/es5/config/repository.js +2 -0
  79. package/dist/es5/config/types.js +5 -0
  80. package/dist/es5/core/context.js +2 -0
  81. package/dist/es5/core/decorators/factory.js +213 -0
  82. package/dist/es5/core/decorators/factory.spec.js +495 -0
  83. package/dist/es5/core/decorators/index.js +2 -0
  84. package/dist/es5/core/index.js +9 -0
  85. package/dist/es5/core/lime-web-component.js +2 -0
  86. package/dist/es5/core/platform.js +6 -0
  87. package/dist/es5/core/plugin-loader.js +2 -0
  88. package/dist/es5/core/state.js +2 -0
  89. package/dist/es5/device/decorator.js +13 -0
  90. package/dist/es5/device/device.js +2 -0
  91. package/dist/es5/device/index.js +6 -0
  92. package/dist/es5/device/types.js +5 -0
  93. package/dist/es5/dialog/dialog.js +2 -0
  94. package/dist/es5/dialog/index.js +5 -0
  95. package/dist/es5/dialog/types.js +5 -0
  96. package/dist/es5/eventdispatcher/eventdispatcher.js +2 -0
  97. package/dist/es5/eventdispatcher/index.js +5 -0
  98. package/dist/es5/eventdispatcher/types.js +5 -0
  99. package/dist/es5/filter/decorator.js +13 -0
  100. package/dist/es5/filter/index.js +6 -0
  101. package/dist/es5/filter/repository.js +2 -0
  102. package/dist/es5/filter/types.js +5 -0
  103. package/dist/es5/http/http.js +2 -0
  104. package/dist/es5/http/index.js +5 -0
  105. package/dist/es5/http/types.js +5 -0
  106. package/dist/es5/index.js +22 -0
  107. package/dist/es5/keybindings/index.js +5 -0
  108. package/dist/es5/keybindings/registry.js +2 -0
  109. package/dist/es5/keybindings/types.js +5 -0
  110. package/dist/es5/limeobject/commands/bulk-create-dialog.js +17 -0
  111. package/dist/es5/limeobject/commands/create-dialog.js +17 -0
  112. package/dist/es5/limeobject/commands/delete-object.js +16 -0
  113. package/dist/es5/limeobject/commands/index.js +8 -0
  114. package/dist/es5/limeobject/commands/object-access.js +16 -0
  115. package/dist/es5/limeobject/commands/save-object.js +17 -0
  116. package/dist/es5/limeobject/decorator.js +38 -0
  117. package/dist/es5/limeobject/error.js +2 -0
  118. package/dist/es5/limeobject/index.js +9 -0
  119. package/dist/es5/limeobject/limeobject.js +2 -0
  120. package/dist/es5/limeobject/repository.js +2 -0
  121. package/dist/es5/limeobject/types.js +5 -0
  122. package/dist/es5/limetype/acl.js +2 -0
  123. package/dist/es5/limetype/decorator.js +28 -0
  124. package/dist/es5/limetype/index.js +8 -0
  125. package/dist/es5/limetype/limetype.js +2 -0
  126. package/dist/es5/limetype/property.js +40 -0
  127. package/dist/es5/limetype/types.js +5 -0
  128. package/dist/es5/navigator/decorator.js +13 -0
  129. package/dist/es5/navigator/index.js +6 -0
  130. package/dist/es5/navigator/navigator.js +2 -0
  131. package/dist/es5/navigator/types.js +5 -0
  132. package/dist/es5/notifications/index.js +5 -0
  133. package/dist/es5/notifications/notifications.js +2 -0
  134. package/dist/es5/notifications/types.js +5 -0
  135. package/dist/es5/query/index.js +6 -0
  136. package/dist/es5/query/query.js +17 -0
  137. package/dist/es5/query/service.js +2 -0
  138. package/dist/es5/query/types.js +5 -0
  139. package/dist/es5/routeregistry/index.js +5 -0
  140. package/dist/es5/routeregistry/registry.js +2 -0
  141. package/dist/es5/routeregistry/types.js +5 -0
  142. package/dist/es5/task/index.js +5 -0
  143. package/dist/es5/task/repository.js +17 -0
  144. package/dist/es5/task/types.js +5 -0
  145. package/dist/es5/testing/component-testing.js +102 -0
  146. package/dist/es5/testing/index.js +10 -0
  147. package/dist/es5/testing/limeobjects/company.js +660 -0
  148. package/dist/es5/testing/limeobjects/coworker.js +110 -0
  149. package/dist/es5/testing/limeobjects/deal.js +447 -0
  150. package/dist/es5/testing/limeobjects/document.js +82 -0
  151. package/dist/es5/testing/limeobjects/index.js +55 -0
  152. package/dist/es5/testing/limeobjects/person.js +1162 -0
  153. package/dist/es5/testing/limetypes/campaign.js +486 -0
  154. package/dist/es5/testing/limetypes/company.js +621 -0
  155. package/dist/es5/testing/limetypes/consent.js +237 -0
  156. package/dist/es5/testing/limetypes/consenttype.js +194 -0
  157. package/dist/es5/testing/limetypes/coworker.js +579 -0
  158. package/dist/es5/testing/limetypes/deal.js +422 -0
  159. package/dist/es5/testing/limetypes/document.js +343 -0
  160. package/dist/es5/testing/limetypes/helpdesk.js +426 -0
  161. package/dist/es5/testing/limetypes/helpdesktype.js +142 -0
  162. package/dist/es5/testing/limetypes/history.js +349 -0
  163. package/dist/es5/testing/limetypes/index.js +69 -0
  164. package/dist/es5/testing/limetypes/infotiles.js +514 -0
  165. package/dist/es5/testing/limetypes/localize.js +287 -0
  166. package/dist/es5/testing/limetypes/mailing.js +218 -0
  167. package/dist/es5/testing/limetypes/office.js +388 -0
  168. package/dist/es5/testing/limetypes/participant.js +195 -0
  169. package/dist/es5/testing/limetypes/person.js +535 -0
  170. package/dist/es5/testing/limetypes/recipient.js +175 -0
  171. package/dist/es5/testing/limetypes/solutionimprovement.js +353 -0
  172. package/dist/es5/testing/limetypes/successplan.js +215 -0
  173. package/dist/es5/testing/limetypes/target.js +181 -0
  174. package/dist/es5/testing/limetypes/todo.js +429 -0
  175. package/dist/es5/testing/platform/index.js +53 -0
  176. package/dist/es5/testing/platform/platform.spec.js +44 -0
  177. package/dist/es5/translator/index.js +5 -0
  178. package/dist/es5/translator/translator.js +2 -0
  179. package/dist/es5/translator/types.js +5 -0
  180. package/dist/es5/userdata/decorator.js +13 -0
  181. package/dist/es5/userdata/index.js +6 -0
  182. package/dist/es5/userdata/repository.js +2 -0
  183. package/dist/es5/userdata/types.js +5 -0
  184. package/dist/eventdispatcher/eventdispatcher.d.ts +26 -0
  185. package/dist/eventdispatcher/eventdispatcher.js +1 -0
  186. package/dist/eventdispatcher/index.d.ts +2 -0
  187. package/dist/eventdispatcher/index.js +2 -0
  188. package/dist/eventdispatcher/types.d.ts +14 -0
  189. package/dist/eventdispatcher/types.js +3 -0
  190. package/dist/filter/decorator.d.ts +15 -0
  191. package/dist/filter/decorator.js +14 -0
  192. package/dist/filter/index.d.ts +3 -0
  193. package/dist/filter/index.js +3 -0
  194. package/dist/filter/repository.d.ts +18 -0
  195. package/dist/filter/repository.js +1 -0
  196. package/dist/filter/types.d.ts +14 -0
  197. package/dist/filter/types.js +3 -0
  198. package/dist/http/http.d.ts +72 -0
  199. package/dist/http/http.js +1 -0
  200. package/dist/http/index.d.ts +2 -0
  201. package/dist/http/index.js +2 -0
  202. package/dist/http/types.d.ts +14 -0
  203. package/dist/http/types.js +3 -0
  204. package/dist/index.d.ts +19 -0
  205. package/dist/index.js +19 -0
  206. package/dist/keybindings/index.d.ts +2 -0
  207. package/dist/keybindings/index.js +2 -0
  208. package/dist/keybindings/registry.d.ts +79 -0
  209. package/dist/keybindings/registry.js +1 -0
  210. package/dist/keybindings/types.d.ts +17 -0
  211. package/dist/keybindings/types.js +3 -0
  212. package/dist/limeobject/commands/bulk-create-dialog.d.ts +49 -0
  213. package/dist/limeobject/commands/bulk-create-dialog.js +48 -0
  214. package/dist/limeobject/commands/create-dialog.d.ts +28 -0
  215. package/dist/limeobject/commands/create-dialog.js +26 -0
  216. package/dist/limeobject/commands/delete-object.d.ts +10 -0
  217. package/dist/limeobject/commands/delete-object.js +15 -0
  218. package/dist/limeobject/commands/index.d.ts +5 -0
  219. package/dist/limeobject/commands/index.js +5 -0
  220. package/dist/limeobject/commands/object-access.d.ts +10 -0
  221. package/dist/limeobject/commands/object-access.js +15 -0
  222. package/dist/limeobject/commands/save-object.d.ts +16 -0
  223. package/dist/limeobject/commands/save-object.js +21 -0
  224. package/dist/limeobject/decorator.d.ts +32 -0
  225. package/dist/limeobject/decorator.js +42 -0
  226. package/dist/limeobject/error.d.ts +4 -0
  227. package/dist/limeobject/error.js +1 -0
  228. package/dist/limeobject/index.d.ts +6 -0
  229. package/dist/limeobject/index.js +6 -0
  230. package/dist/limeobject/limeobject.d.ts +43 -0
  231. package/dist/limeobject/limeobject.js +1 -0
  232. package/dist/limeobject/repository.d.ts +113 -0
  233. package/dist/limeobject/repository.js +1 -0
  234. package/dist/limeobject/types.d.ts +14 -0
  235. package/dist/limeobject/types.js +3 -0
  236. package/dist/limetype/acl.d.ts +6 -0
  237. package/dist/limetype/acl.js +1 -0
  238. package/dist/limetype/decorator.d.ts +21 -0
  239. package/dist/limetype/decorator.js +32 -0
  240. package/dist/limetype/index.d.ts +5 -0
  241. package/dist/limetype/index.js +5 -0
  242. package/dist/limetype/limetype.d.ts +25 -0
  243. package/dist/limetype/limetype.js +1 -0
  244. package/dist/limetype/property.d.ts +32 -0
  245. package/dist/limetype/property.js +32 -0
  246. package/dist/limetype/types.d.ts +14 -0
  247. package/dist/limetype/types.js +3 -0
  248. package/dist/navigator/decorator.d.ts +18 -0
  249. package/dist/navigator/decorator.js +15 -0
  250. package/dist/navigator/index.d.ts +3 -0
  251. package/dist/navigator/index.js +3 -0
  252. package/dist/navigator/navigator.d.ts +158 -0
  253. package/dist/navigator/navigator.js +1 -0
  254. package/dist/navigator/types.d.ts +17 -0
  255. package/dist/navigator/types.js +3 -0
  256. package/dist/notifications/index.d.ts +2 -0
  257. package/dist/notifications/index.js +2 -0
  258. package/dist/notifications/notifications.d.ts +101 -0
  259. package/dist/notifications/notifications.js +1 -0
  260. package/dist/notifications/types.d.ts +14 -0
  261. package/dist/notifications/types.js +3 -0
  262. package/dist/query/index.d.ts +3 -0
  263. package/dist/query/index.js +3 -0
  264. package/dist/query/query.d.ts +46 -0
  265. package/dist/query/query.js +14 -0
  266. package/dist/query/service.d.ts +12 -0
  267. package/dist/query/service.js +1 -0
  268. package/dist/query/types.d.ts +14 -0
  269. package/dist/query/types.js +3 -0
  270. package/dist/routeregistry/index.d.ts +2 -0
  271. package/dist/routeregistry/index.js +2 -0
  272. package/dist/routeregistry/registry.d.ts +92 -0
  273. package/dist/routeregistry/registry.js +1 -0
  274. package/dist/routeregistry/types.d.ts +17 -0
  275. package/dist/routeregistry/types.js +3 -0
  276. package/dist/task/index.d.ts +2 -0
  277. package/dist/task/index.js +2 -0
  278. package/dist/task/repository.d.ts +82 -0
  279. package/dist/task/repository.js +49 -0
  280. package/dist/task/types.d.ts +14 -0
  281. package/dist/task/types.js +3 -0
  282. package/dist/testing/component-testing.d.ts +53 -0
  283. package/dist/testing/component-testing.js +162 -0
  284. package/dist/testing/index.d.ts +4 -0
  285. package/dist/testing/index.js +4 -0
  286. package/dist/testing/limeobjects/company.d.ts +55 -0
  287. package/dist/testing/limeobjects/company.js +656 -0
  288. package/dist/testing/limeobjects/coworker.d.ts +22 -0
  289. package/dist/testing/limeobjects/coworker.js +106 -0
  290. package/dist/testing/limeobjects/deal.d.ts +41 -0
  291. package/dist/testing/limeobjects/deal.js +443 -0
  292. package/dist/testing/limeobjects/document.d.ts +20 -0
  293. package/dist/testing/limeobjects/document.js +78 -0
  294. package/dist/testing/limeobjects/index.d.ts +177 -0
  295. package/dist/testing/limeobjects/index.js +50 -0
  296. package/dist/testing/limeobjects/person.d.ts +20 -0
  297. package/dist/testing/limeobjects/person.js +1158 -0
  298. package/dist/testing/limetypes/campaign.d.ts +417 -0
  299. package/dist/testing/limetypes/campaign.js +477 -0
  300. package/dist/testing/limetypes/company.d.ts +591 -0
  301. package/dist/testing/limetypes/company.js +614 -0
  302. package/dist/testing/limetypes/consent.d.ts +199 -0
  303. package/dist/testing/limetypes/consent.js +232 -0
  304. package/dist/testing/limetypes/consenttype.d.ts +188 -0
  305. package/dist/testing/limetypes/consenttype.js +189 -0
  306. package/dist/testing/limetypes/coworker.d.ts +563 -0
  307. package/dist/testing/limetypes/coworker.js +564 -0
  308. package/dist/testing/limetypes/deal.d.ts +391 -0
  309. package/dist/testing/limetypes/deal.js +419 -0
  310. package/dist/testing/limetypes/document.d.ts +309 -0
  311. package/dist/testing/limetypes/document.js +332 -0
  312. package/dist/testing/limetypes/helpdesk.d.ts +394 -0
  313. package/dist/testing/limetypes/helpdesk.js +417 -0
  314. package/dist/testing/limetypes/helpdesktype.d.ts +136 -0
  315. package/dist/testing/limetypes/helpdesktype.js +137 -0
  316. package/dist/testing/limetypes/history.d.ts +308 -0
  317. package/dist/testing/limetypes/history.js +346 -0
  318. package/dist/testing/limetypes/index.d.ts +5 -0
  319. package/dist/testing/limetypes/index.js +63 -0
  320. package/dist/testing/limetypes/infotiles.d.ts +387 -0
  321. package/dist/testing/limetypes/infotiles.js +509 -0
  322. package/dist/testing/limetypes/localize.d.ts +283 -0
  323. package/dist/testing/limetypes/localize.js +284 -0
  324. package/dist/testing/limetypes/mailing.d.ts +212 -0
  325. package/dist/testing/limetypes/mailing.js +213 -0
  326. package/dist/testing/limetypes/office.d.ts +384 -0
  327. package/dist/testing/limetypes/office.js +385 -0
  328. package/dist/testing/limetypes/participant.d.ts +165 -0
  329. package/dist/testing/limetypes/participant.js +188 -0
  330. package/dist/testing/limetypes/person.d.ts +472 -0
  331. package/dist/testing/limetypes/person.js +530 -0
  332. package/dist/testing/limetypes/recipient.d.ts +147 -0
  333. package/dist/testing/limetypes/recipient.js +170 -0
  334. package/dist/testing/limetypes/solutionimprovement.d.ts +302 -0
  335. package/dist/testing/limetypes/solutionimprovement.js +344 -0
  336. package/dist/testing/limetypes/successplan.d.ts +209 -0
  337. package/dist/testing/limetypes/successplan.js +210 -0
  338. package/dist/testing/limetypes/target.d.ts +160 -0
  339. package/dist/testing/limetypes/target.js +178 -0
  340. package/dist/testing/limetypes/todo.d.ts +386 -0
  341. package/dist/testing/limetypes/todo.js +426 -0
  342. package/dist/testing/platform/index.d.ts +8 -0
  343. package/dist/testing/platform/index.js +61 -0
  344. package/dist/testing/platform/platform.spec.d.ts +1 -0
  345. package/dist/testing/platform/platform.spec.js +41 -0
  346. package/dist/translator/index.d.ts +2 -0
  347. package/dist/translator/index.js +2 -0
  348. package/dist/translator/translator.d.ts +13 -0
  349. package/dist/translator/translator.js +1 -0
  350. package/dist/translator/types.d.ts +14 -0
  351. package/dist/translator/types.js +3 -0
  352. package/dist/userdata/decorator.d.ts +17 -0
  353. package/dist/userdata/decorator.js +14 -0
  354. package/dist/userdata/index.d.ts +3 -0
  355. package/dist/userdata/index.js +3 -0
  356. package/dist/userdata/repository.d.ts +29 -0
  357. package/dist/userdata/repository.js +1 -0
  358. package/dist/userdata/types.d.ts +14 -0
  359. package/dist/userdata/types.js +3 -0
  360. package/package.json +11 -6
@@ -0,0 +1,1158 @@
1
+ import { getLimetype, getValue } from '.';
2
+ export const person = [
3
+ {
4
+ firstname: 'Andreas',
5
+ inactive: false,
6
+ phone: '+4586234533',
7
+ mobilephone: '+4532449812',
8
+ email: 'andreas.mortensen@limedemo.com',
9
+ lastname: 'Mortensen',
10
+ name: 'Andreas Mortensen',
11
+ position: 'Försäljningsansvarig',
12
+ expireddate: null,
13
+ anonymizeddate: null,
14
+ emailhardbounce: false,
15
+ id: 1001,
16
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
17
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
18
+ descriptive: 'Andreas Mortensen',
19
+ company: 1008,
20
+ },
21
+ {
22
+ firstname: 'Annika',
23
+ inactive: false,
24
+ phone: '0402224000',
25
+ mobilephone: '0708961423',
26
+ email: 'annika.olsson@limedemo.com',
27
+ lastname: 'Olsson',
28
+ name: 'Annika Olsson',
29
+ position: 'Kundtjänst',
30
+ expireddate: null,
31
+ anonymizeddate: null,
32
+ emailhardbounce: false,
33
+ id: 1002,
34
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
35
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
36
+ descriptive: 'Annika Olsson',
37
+ company: 1010,
38
+ },
39
+ {
40
+ firstname: 'Chewbacca',
41
+ inactive: false,
42
+ phone: '',
43
+ mobilephone: '',
44
+ email: 'chewbacca.persson@limedemo.com',
45
+ lastname: 'Persson',
46
+ name: 'Chewbacca Persson',
47
+ position: 'Tekniker',
48
+ expireddate: null,
49
+ anonymizeddate: null,
50
+ emailhardbounce: false,
51
+ id: 1006,
52
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
53
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
54
+ descriptive: 'Chewbacca Persson',
55
+ company: 1018,
56
+ },
57
+ {
58
+ firstname: 'Darth',
59
+ inactive: false,
60
+ phone: '040725895',
61
+ mobilephone: '',
62
+ email: 'darth.vader@limedemo.com',
63
+ lastname: 'Vader',
64
+ name: 'Darth Vader',
65
+ position: 'Kundtjänst',
66
+ expireddate: null,
67
+ anonymizeddate: null,
68
+ emailhardbounce: false,
69
+ id: 1008,
70
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
71
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
72
+ descriptive: 'Darth Vader',
73
+ company: 1018,
74
+ },
75
+ {
76
+ firstname: 'Elana',
77
+ inactive: false,
78
+ phone: '0101010101',
79
+ mobilephone: '070893354342',
80
+ email: 'elana.doverklint@limedemo.com',
81
+ lastname: 'Doverklint',
82
+ name: 'Elana Doverklint',
83
+ position: 'Försäljningsansvarig',
84
+ expireddate: null,
85
+ anonymizeddate: null,
86
+ emailhardbounce: false,
87
+ id: 1010,
88
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
89
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
90
+ descriptive: 'Elana Doverklint',
91
+ company: 1025,
92
+ },
93
+ {
94
+ firstname: 'Erik',
95
+ inactive: false,
96
+ phone: '0822254381',
97
+ mobilephone: '0707424727',
98
+ email: 'erik.karlsson@limedemo.com',
99
+ lastname: 'Karlsson',
100
+ name: 'Erik Karlsson',
101
+ position: 'VD',
102
+ expireddate: null,
103
+ anonymizeddate: null,
104
+ emailhardbounce: false,
105
+ id: 1012,
106
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
107
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
108
+ descriptive: 'Erik Karlsson',
109
+ company: 1016,
110
+ },
111
+ {
112
+ firstname: 'Frank',
113
+ inactive: false,
114
+ phone: '',
115
+ mobilephone: '',
116
+ email: 'frank.hvam@limedemo.com',
117
+ lastname: 'Hvam',
118
+ name: 'Frank Hvam',
119
+ position: 'Konsult',
120
+ expireddate: null,
121
+ anonymizeddate: null,
122
+ emailhardbounce: false,
123
+ id: 1013,
124
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
125
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
126
+ descriptive: 'Frank Hvam',
127
+ company: 1017,
128
+ },
129
+ {
130
+ firstname: 'Gerda',
131
+ inactive: false,
132
+ phone: '+4566343455',
133
+ mobilephone: '+4520436571',
134
+ email: 'gerda.petersen@limedemo.com',
135
+ lastname: 'Petersen',
136
+ name: 'Gerda Petersen',
137
+ position: 'Ekonomiansvarig',
138
+ expireddate: null,
139
+ anonymizeddate: null,
140
+ emailhardbounce: false,
141
+ id: 1014,
142
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
143
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
144
+ descriptive: 'Gerda Petersen',
145
+ company: 1020,
146
+ },
147
+ {
148
+ firstname: 'Gunnar Nu',
149
+ inactive: false,
150
+ phone: '+4590909090',
151
+ mobilephone: '+4521324254',
152
+ email: 'gunnar nu.hansen@limedemo.com',
153
+ lastname: 'Hansen',
154
+ name: 'Gunnar Nu Hansen',
155
+ position: 'VD',
156
+ expireddate: null,
157
+ anonymizeddate: null,
158
+ emailhardbounce: false,
159
+ id: 1015,
160
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
161
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
162
+ descriptive: 'Gunnar Nu Hansen',
163
+ company: 1014,
164
+ },
165
+ {
166
+ firstname: 'Hans',
167
+ inactive: false,
168
+ phone: '',
169
+ mobilephone: '+46733501201',
170
+ email: 'hans.andersson@limedemo.com',
171
+ lastname: 'Andersson',
172
+ name: 'Hans Andersson',
173
+ position: 'VD',
174
+ expireddate: null,
175
+ anonymizeddate: null,
176
+ emailhardbounce: false,
177
+ id: 1017,
178
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
179
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
180
+ descriptive: 'Hans Andersson',
181
+ company: 1026,
182
+ },
183
+ {
184
+ firstname: 'Hans',
185
+ inactive: false,
186
+ phone: '',
187
+ mobilephone: '+4522667272',
188
+ email: 'hans.hansen@limedemo.com',
189
+ lastname: 'Hansen',
190
+ name: 'Hans Hansen',
191
+ position: 'VD',
192
+ expireddate: null,
193
+ anonymizeddate: null,
194
+ emailhardbounce: false,
195
+ id: 1018,
196
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
197
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
198
+ descriptive: 'Hans Hansen',
199
+ company: 1012,
200
+ },
201
+ {
202
+ firstname: 'Ida',
203
+ inactive: false,
204
+ phone: '',
205
+ mobilephone: '+4533876634',
206
+ email: 'ida.hansen@limedemo.com',
207
+ lastname: 'Hansen',
208
+ name: 'Ida Hansen',
209
+ position: 'Marknadsansvarig',
210
+ expireddate: null,
211
+ anonymizeddate: null,
212
+ emailhardbounce: false,
213
+ id: 1020,
214
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
215
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
216
+ descriptive: 'Ida Hansen',
217
+ company: 1017,
218
+ },
219
+ {
220
+ firstname: 'Jesper',
221
+ inactive: false,
222
+ phone: '+4563121212',
223
+ mobilephone: '+4523232425',
224
+ email: 'jesper.olsen@limedemo.com',
225
+ lastname: 'Olsen',
226
+ name: 'Jesper Olsen',
227
+ position: 'Försäljningsansvarig',
228
+ expireddate: null,
229
+ anonymizeddate: null,
230
+ emailhardbounce: false,
231
+ id: 1022,
232
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
233
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
234
+ descriptive: 'Jesper Olsen',
235
+ company: 1019,
236
+ },
237
+ {
238
+ firstname: 'Johan',
239
+ inactive: false,
240
+ phone: '+4722134788',
241
+ mobilephone: '+4741022765',
242
+ email: 'johan.hansen@limedemo.com',
243
+ lastname: 'Hansen',
244
+ name: 'Johan Hansen',
245
+ position: '',
246
+ expireddate: null,
247
+ anonymizeddate: null,
248
+ emailhardbounce: false,
249
+ id: 1023,
250
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
251
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
252
+ descriptive: 'Johan Hansen',
253
+ company: 1021,
254
+ },
255
+ {
256
+ firstname: 'Johanna',
257
+ inactive: false,
258
+ phone: '0818321254',
259
+ mobilephone: '0807351224',
260
+ email: 'johanna.eriksson@limedemo.com',
261
+ lastname: 'Eriksson',
262
+ name: 'Johanna Eriksson',
263
+ position: 'Säljare',
264
+ expireddate: null,
265
+ anonymizeddate: null,
266
+ emailhardbounce: false,
267
+ id: 1024,
268
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
269
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
270
+ descriptive: 'Johanna Eriksson',
271
+ company: 1011,
272
+ },
273
+ {
274
+ firstname: 'Jonna',
275
+ inactive: false,
276
+ phone: '+4566343478',
277
+ mobilephone: '+4532112296',
278
+ email: 'jonna.hansen@limedemo.com',
279
+ lastname: 'Hansen',
280
+ name: 'Jonna Hansen',
281
+ position: 'Försäljningsansvarig',
282
+ expireddate: null,
283
+ anonymizeddate: null,
284
+ emailhardbounce: false,
285
+ id: 1025,
286
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
287
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
288
+ descriptive: 'Jonna Hansen',
289
+ company: 1020,
290
+ },
291
+ {
292
+ firstname: 'Kalle',
293
+ inactive: false,
294
+ phone: '0900020233',
295
+ mobilephone: '07070707070',
296
+ email: 'kalle.kula@limedemo.com',
297
+ lastname: 'Kula',
298
+ name: 'Kalle Kula',
299
+ position: 'VD',
300
+ expireddate: null,
301
+ anonymizeddate: null,
302
+ emailhardbounce: false,
303
+ id: 1026,
304
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
305
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
306
+ descriptive: 'Kalle Kula',
307
+ company: 1027,
308
+ },
309
+ {
310
+ firstname: 'Kim',
311
+ inactive: false,
312
+ phone: '+4570202035',
313
+ mobilephone: '+4521324252',
314
+ email: 'kim.larsen@limedemo.com',
315
+ lastname: 'Larsen',
316
+ name: 'Kim Larsen',
317
+ position: 'Ekonomiansvarig',
318
+ expireddate: null,
319
+ anonymizeddate: null,
320
+ emailhardbounce: false,
321
+ id: 1029,
322
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
323
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
324
+ descriptive: 'Kim Larsen',
325
+ company: 1014,
326
+ },
327
+ {
328
+ firstname: 'Klas',
329
+ inactive: false,
330
+ phone: '01035020',
331
+ mobilephone: '07093932903',
332
+ email: 'klas.musström@limedemo.com',
333
+ lastname: 'Musström',
334
+ name: 'Klas Musström',
335
+ position: 'Ekonomiansvarig',
336
+ expireddate: null,
337
+ anonymizeddate: null,
338
+ emailhardbounce: false,
339
+ id: 1032,
340
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
341
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
342
+ descriptive: 'Klas Musström',
343
+ company: 1025,
344
+ },
345
+ {
346
+ firstname: 'Klas',
347
+ inactive: false,
348
+ phone: '04058502',
349
+ mobilephone: '0734224655',
350
+ email: 'klas.ralvert@limedemo.com',
351
+ lastname: 'Ralvert',
352
+ name: 'Klas Ralvert',
353
+ position: 'Marknadsassistent',
354
+ expireddate: null,
355
+ anonymizeddate: null,
356
+ emailhardbounce: false,
357
+ id: 1033,
358
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
359
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
360
+ descriptive: 'Klas Ralvert',
361
+ company: 1007,
362
+ },
363
+ {
364
+ firstname: 'Kurt',
365
+ inactive: false,
366
+ phone: '4649028130',
367
+ mobilephone: '46704836842',
368
+ email: 'kurt.möller@limedemo.com',
369
+ lastname: 'Möller',
370
+ name: 'Kurt Möller',
371
+ position: '',
372
+ expireddate: null,
373
+ anonymizeddate: null,
374
+ emailhardbounce: false,
375
+ id: 1034,
376
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
377
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
378
+ descriptive: 'Kurt Möller',
379
+ company: 1015,
380
+ },
381
+ {
382
+ firstname: 'Lars',
383
+ inactive: false,
384
+ phone: '',
385
+ mobilephone: '+4555998833',
386
+ email: 'lars.løkke@limedemo.com',
387
+ lastname: 'Løkke',
388
+ name: 'Lars Løkke',
389
+ position: 'Konsult',
390
+ expireddate: null,
391
+ anonymizeddate: null,
392
+ emailhardbounce: false,
393
+ id: 1035,
394
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
395
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
396
+ descriptive: 'Lars Løkke',
397
+ company: 1017,
398
+ },
399
+ {
400
+ firstname: 'Lene',
401
+ inactive: false,
402
+ phone: '+4586234321',
403
+ mobilephone: '+4534226545',
404
+ email: 'lene.hansen@limedemo.com',
405
+ lastname: 'Hansen',
406
+ name: 'Lene Hansen',
407
+ position: 'IT-chef',
408
+ expireddate: null,
409
+ anonymizeddate: null,
410
+ emailhardbounce: false,
411
+ id: 1037,
412
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
413
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
414
+ descriptive: 'Lene Hansen',
415
+ company: 1008,
416
+ },
417
+ {
418
+ firstname: 'Mari',
419
+ inactive: false,
420
+ phone: '',
421
+ mobilephone: '0708896745',
422
+ email: 'mari.ahna@limedemo.com',
423
+ lastname: 'Ahna',
424
+ name: 'Mari Ahna',
425
+ position: 'Marknadsansvarig',
426
+ expireddate: null,
427
+ anonymizeddate: null,
428
+ emailhardbounce: false,
429
+ id: 1039,
430
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
431
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
432
+ descriptive: 'Mari Ahna',
433
+ company: 1015,
434
+ },
435
+ {
436
+ firstname: 'Mats',
437
+ inactive: false,
438
+ phone: '04058522',
439
+ mobilephone: '0734224788',
440
+ email: 'mats.nyman@limedemo.com',
441
+ lastname: 'Nyman',
442
+ name: 'Mats Nyman',
443
+ position: 'Försäljningsansvarig',
444
+ expireddate: null,
445
+ anonymizeddate: null,
446
+ emailhardbounce: false,
447
+ id: 1040,
448
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
449
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
450
+ descriptive: 'Mats Nyman',
451
+ company: 1007,
452
+ },
453
+ {
454
+ firstname: 'Mattias',
455
+ inactive: false,
456
+ phone: '+358324253',
457
+ mobilephone: '+3584541152',
458
+ email: 'mattias.nyberg@limedemo.com',
459
+ lastname: 'Nyberg',
460
+ name: 'Mattias Nyberg',
461
+ position: 'Ostopäällikkö',
462
+ expireddate: null,
463
+ anonymizeddate: null,
464
+ emailhardbounce: false,
465
+ id: 1041,
466
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
467
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
468
+ descriptive: 'Mattias Nyberg',
469
+ company: 1009,
470
+ },
471
+ {
472
+ firstname: 'Michael',
473
+ inactive: false,
474
+ phone: '+4521217879',
475
+ mobilephone: '+4561616343',
476
+ email: 'michael.laudrup@limedemo.com',
477
+ lastname: 'Laudrup',
478
+ name: 'Michael Laudrup',
479
+ position: 'IT-chef',
480
+ expireddate: null,
481
+ anonymizeddate: null,
482
+ emailhardbounce: false,
483
+ id: 1042,
484
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
485
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
486
+ descriptive: 'Michael Laudrup',
487
+ company: 1022,
488
+ },
489
+ {
490
+ firstname: 'Mike',
491
+ inactive: false,
492
+ phone: '',
493
+ mobilephone: '+4526889201',
494
+ email: 'mike.mortensen@limedemo.com',
495
+ lastname: 'Mortensen',
496
+ name: 'Mike Mortensen',
497
+ position: 'IT-chef',
498
+ expireddate: null,
499
+ anonymizeddate: null,
500
+ emailhardbounce: false,
501
+ id: 1043,
502
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
503
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
504
+ descriptive: 'Mike Mortensen',
505
+ company: 1023,
506
+ },
507
+ {
508
+ firstname: 'Morten',
509
+ inactive: false,
510
+ phone: '+4588556678',
511
+ mobilephone: '+4523547765',
512
+ email: 'morten.andersen@limedemo.com',
513
+ lastname: 'Andersen',
514
+ name: 'Morten Andersen',
515
+ position: 'Ekonomiansvarig',
516
+ expireddate: null,
517
+ anonymizeddate: null,
518
+ emailhardbounce: false,
519
+ id: 1045,
520
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
521
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
522
+ descriptive: 'Morten Andersen',
523
+ company: 1024,
524
+ },
525
+ {
526
+ firstname: 'Morten',
527
+ inactive: false,
528
+ phone: '+4566343455',
529
+ mobilephone: '+4554223344',
530
+ email: 'morten.larsen@limedemo.com',
531
+ lastname: 'Larsen',
532
+ name: 'Morten Larsen',
533
+ position: 'IT-chef',
534
+ expireddate: null,
535
+ anonymizeddate: null,
536
+ emailhardbounce: false,
537
+ id: 1046,
538
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
539
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
540
+ descriptive: 'Morten Larsen',
541
+ company: 1020,
542
+ },
543
+ {
544
+ firstname: 'Pelle',
545
+ inactive: false,
546
+ phone: '+358324242',
547
+ mobilephone: '+358450188',
548
+ email: 'pelle.peloton@limedemo.com',
549
+ lastname: 'Peloton',
550
+ name: 'Pelle Peloton',
551
+ position: 'Myyntipäällikkö',
552
+ expireddate: null,
553
+ anonymizeddate: null,
554
+ emailhardbounce: false,
555
+ id: 1048,
556
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
557
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
558
+ descriptive: 'Pelle Peloton',
559
+ company: 1009,
560
+ },
561
+ {
562
+ firstname: 'Per',
563
+ inactive: false,
564
+ phone: '040789498',
565
+ mobilephone: '070943682',
566
+ email: 'per.moberg@limedemo.com',
567
+ lastname: 'Moberg',
568
+ name: 'Per Moberg',
569
+ position: 'VD',
570
+ expireddate: null,
571
+ anonymizeddate: null,
572
+ emailhardbounce: false,
573
+ id: 1049,
574
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
575
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
576
+ descriptive: 'Per Moberg',
577
+ company: 1013,
578
+ },
579
+ {
580
+ firstname: 'Peter',
581
+ inactive: false,
582
+ phone: '0818321254',
583
+ mobilephone: '0708136548',
584
+ email: 'peter.johansson@limedemo.com',
585
+ lastname: 'Johansson',
586
+ name: 'Peter Johansson',
587
+ position: 'Säljare',
588
+ expireddate: null,
589
+ anonymizeddate: null,
590
+ emailhardbounce: false,
591
+ id: 1051,
592
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
593
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
594
+ descriptive: 'Peter Johansson',
595
+ company: 1011,
596
+ },
597
+ {
598
+ firstname: 'Petra',
599
+ inactive: false,
600
+ phone: '0818321254',
601
+ mobilephone: '0807352121',
602
+ email: 'petra.danielsson@limedemo.com',
603
+ lastname: 'Danielsson',
604
+ name: 'Petra Danielsson',
605
+ position: 'Kundtjänst',
606
+ expireddate: null,
607
+ anonymizeddate: null,
608
+ emailhardbounce: false,
609
+ id: 1052,
610
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
611
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
612
+ descriptive: 'Petra Danielsson',
613
+ company: 1011,
614
+ },
615
+ {
616
+ firstname: 'Pia',
617
+ inactive: false,
618
+ phone: '',
619
+ mobilephone: '',
620
+ email: 'pia.nielsen@limedemo.com',
621
+ lastname: 'Nielsen',
622
+ name: 'Pia Nielsen',
623
+ position: 'Ekonomiansvarig',
624
+ expireddate: null,
625
+ anonymizeddate: null,
626
+ emailhardbounce: false,
627
+ id: 1053,
628
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
629
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
630
+ descriptive: 'Pia Nielsen',
631
+ company: 1012,
632
+ },
633
+ {
634
+ firstname: 'Robin',
635
+ inactive: false,
636
+ phone: '',
637
+ mobilephone: '+46736401994',
638
+ email: 'robin.toresson@limedemo.com',
639
+ lastname: 'Toresson',
640
+ name: 'Robin Toresson',
641
+ position: 'Kundtjänst',
642
+ expireddate: null,
643
+ anonymizeddate: null,
644
+ emailhardbounce: false,
645
+ id: 1055,
646
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
647
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
648
+ descriptive: 'Robin Toresson',
649
+ company: 1026,
650
+ },
651
+ {
652
+ firstname: 'Roger',
653
+ inactive: false,
654
+ phone: '0402224008',
655
+ mobilephone: '0708679127',
656
+ email: 'roger.andersson@limedemo.com',
657
+ lastname: 'Andersson',
658
+ name: 'Roger Andersson',
659
+ position: 'Försäljningsansvarig',
660
+ expireddate: null,
661
+ anonymizeddate: null,
662
+ emailhardbounce: false,
663
+ id: 1056,
664
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
665
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
666
+ descriptive: 'Roger Andersson',
667
+ company: 1010,
668
+ },
669
+ {
670
+ firstname: 'Sanna',
671
+ inactive: false,
672
+ phone: '0822254382',
673
+ mobilephone: '0707535727',
674
+ email: 'sanna.johansson@limedemo.com',
675
+ lastname: 'Johansson',
676
+ name: 'Sanna Johansson',
677
+ position: 'Marknadsansvarig',
678
+ expireddate: null,
679
+ anonymizeddate: null,
680
+ emailhardbounce: false,
681
+ id: 1057,
682
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
683
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
684
+ descriptive: 'Sanna Johansson',
685
+ company: 1016,
686
+ },
687
+ {
688
+ firstname: 'Sara',
689
+ inactive: false,
690
+ phone: '040789685',
691
+ mobilephone: '070139786',
692
+ email: 'sara.klappert@limedemo.com',
693
+ lastname: 'Klappert',
694
+ name: 'Sara Klappert',
695
+ position: 'Säljare',
696
+ expireddate: null,
697
+ anonymizeddate: null,
698
+ emailhardbounce: false,
699
+ id: 1058,
700
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
701
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
702
+ descriptive: 'Sara Klappert',
703
+ company: 1013,
704
+ },
705
+ {
706
+ firstname: 'Torben',
707
+ inactive: false,
708
+ phone: '+4532559912',
709
+ mobilephone: '+4529264755',
710
+ email: 'torben.hansen@limedemo.com',
711
+ lastname: 'Hansen',
712
+ name: 'Torben Hansen',
713
+ position: 'VD',
714
+ expireddate: null,
715
+ anonymizeddate: null,
716
+ emailhardbounce: false,
717
+ id: 1060,
718
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
719
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
720
+ descriptive: 'Torben Hansen',
721
+ company: 1023,
722
+ },
723
+ {
724
+ firstname: 'Trine Noa',
725
+ inactive: false,
726
+ phone: '+4588556670',
727
+ mobilephone: '+23237000',
728
+ email: 'trine noa.keldsen@limedemo.com',
729
+ lastname: 'Keldsen',
730
+ name: 'Trine Noa Keldsen',
731
+ position: 'VD',
732
+ expireddate: null,
733
+ anonymizeddate: null,
734
+ emailhardbounce: false,
735
+ id: 1061,
736
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
737
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
738
+ descriptive: 'Trine Noa Keldsen',
739
+ company: 1024,
740
+ },
741
+ {
742
+ firstname: 'Ulla',
743
+ inactive: false,
744
+ phone: '0402224005',
745
+ mobilephone: '0706145119',
746
+ email: 'ulla.bengtsson@limedemo.com',
747
+ lastname: 'Bengtsson',
748
+ name: 'Ulla Bengtsson',
749
+ position: 'Ekonomiansvarig',
750
+ expireddate: null,
751
+ anonymizeddate: null,
752
+ emailhardbounce: false,
753
+ id: 1062,
754
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
755
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
756
+ descriptive: 'Ulla Bengtsson',
757
+ company: 1010,
758
+ },
759
+ {
760
+ firstname: 'Vishal',
761
+ inactive: false,
762
+ phone: '+4722134783',
763
+ mobilephone: '+4791144999',
764
+ email: 'vishal.studio@lime.tech',
765
+ lastname: 'Studio',
766
+ name: 'Vishal Studio',
767
+ position: 'Tekniker',
768
+ expireddate: null,
769
+ anonymizeddate: null,
770
+ emailhardbounce: false,
771
+ id: 1064,
772
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
773
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
774
+ descriptive: 'Vishal Studio',
775
+ company: 1021,
776
+ },
777
+ {
778
+ firstname: 'Hubert',
779
+ inactive: false,
780
+ phone: '+358324234',
781
+ mobilephone: '+3584541155',
782
+ email: 'hubert.karlsson@limedemo.com',
783
+ lastname: 'Karlsson',
784
+ name: 'Hubert Karlsson',
785
+ position: 'Toimitusjohtaja',
786
+ expireddate: null,
787
+ anonymizeddate: null,
788
+ emailhardbounce: false,
789
+ id: 1019,
790
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
791
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
792
+ descriptive: 'Hubert Karlsson',
793
+ company: 1009,
794
+ },
795
+ {
796
+ firstname: 'Kenneth',
797
+ inactive: false,
798
+ phone: '',
799
+ mobilephone: '+4566727289',
800
+ email: 'kenneth.hansen@limedemo.com',
801
+ lastname: 'Hansen',
802
+ name: 'Kenneth Hansen',
803
+ position: 'Försäljningsansvarig',
804
+ expireddate: null,
805
+ anonymizeddate: null,
806
+ emailhardbounce: false,
807
+ id: 1027,
808
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
809
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
810
+ descriptive: 'Kenneth Hansen',
811
+ company: 1012,
812
+ },
813
+ {
814
+ firstname: 'Villy',
815
+ inactive: false,
816
+ phone: '+4556767676',
817
+ mobilephone: '+4589897621',
818
+ email: 'villy.sovndahl@limedemo.com',
819
+ lastname: 'Sovndahl',
820
+ name: 'Villy Sovndahl',
821
+ position: 'VD',
822
+ expireddate: null,
823
+ anonymizeddate: null,
824
+ emailhardbounce: false,
825
+ id: 1063,
826
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
827
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
828
+ descriptive: 'Villy Sovndahl',
829
+ company: 1019,
830
+ },
831
+ {
832
+ firstname: 'Linda',
833
+ inactive: false,
834
+ phone: '+4532955001',
835
+ mobilephone: '+4550403020',
836
+ email: 'linda.pedersen@limedemo.com',
837
+ lastname: 'Pedersen',
838
+ name: 'Linda Pedersen',
839
+ position: 'VD',
840
+ expireddate: null,
841
+ anonymizeddate: null,
842
+ emailhardbounce: false,
843
+ id: 1038,
844
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
845
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
846
+ descriptive: 'Linda Pedersen',
847
+ company: 1017,
848
+ },
849
+ {
850
+ firstname: 'Mona',
851
+ inactive: false,
852
+ phone: '+4588556674',
853
+ mobilephone: '+4532446655',
854
+ email: 'mona.larsen@limedemo.com',
855
+ lastname: 'Larsen',
856
+ name: 'Mona Larsen',
857
+ position: 'Försäljningsansvarig',
858
+ expireddate: null,
859
+ anonymizeddate: null,
860
+ emailhardbounce: false,
861
+ id: 1044,
862
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
863
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
864
+ descriptive: 'Mona Larsen',
865
+ company: 1024,
866
+ },
867
+ {
868
+ firstname: 'Poul',
869
+ inactive: false,
870
+ phone: '+4560606076',
871
+ mobilephone: '+4534353637',
872
+ email: 'poul.hansen@limedemo.com',
873
+ lastname: 'Hansen',
874
+ name: 'Poul Hansen',
875
+ position: 'VD',
876
+ expireddate: null,
877
+ anonymizeddate: null,
878
+ emailhardbounce: false,
879
+ id: 1054,
880
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
881
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
882
+ descriptive: 'Poul Hansen',
883
+ company: 1022,
884
+ },
885
+ {
886
+ firstname: 'Staale',
887
+ inactive: false,
888
+ phone: '+4567676778',
889
+ mobilephone: '+4527272729',
890
+ email: 'staale.solbakken@limedemo.com',
891
+ lastname: 'Solbakken',
892
+ name: 'Staale Solbakken',
893
+ position: 'Försäljningsansvarig',
894
+ expireddate: null,
895
+ anonymizeddate: null,
896
+ emailhardbounce: false,
897
+ id: 1059,
898
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
899
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
900
+ descriptive: 'Staale Solbakken',
901
+ company: 1022,
902
+ },
903
+ {
904
+ firstname: 'Peter',
905
+ inactive: false,
906
+ phone: '+4586230001',
907
+ mobilephone: '+4520234545',
908
+ email: 'peter.andersen@limedemo.com',
909
+ lastname: 'Andersen',
910
+ name: 'Peter Andersen',
911
+ position: 'VD',
912
+ expireddate: null,
913
+ anonymizeddate: null,
914
+ emailhardbounce: false,
915
+ id: 1050,
916
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
917
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
918
+ descriptive: 'Peter Andersen',
919
+ company: 1008,
920
+ },
921
+ {
922
+ firstname: 'Lars',
923
+ inactive: false,
924
+ phone: '+4560607070',
925
+ mobilephone: '+4521325353',
926
+ email: 'lars.olsen@limedemo.com',
927
+ lastname: 'Olsen',
928
+ name: 'Lars Olsen',
929
+ position: 'Försäljningsansvarig',
930
+ expireddate: null,
931
+ anonymizeddate: null,
932
+ emailhardbounce: false,
933
+ id: 1036,
934
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
935
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
936
+ descriptive: 'Lars Olsen',
937
+ company: 1014,
938
+ },
939
+ {
940
+ firstname: 'Kim',
941
+ inactive: false,
942
+ phone: '',
943
+ mobilephone: '+4526778900',
944
+ email: 'kim.thøgersen@limedemo.com',
945
+ lastname: 'Thøgersen',
946
+ name: 'Kim Thøgersen',
947
+ position: 'Försäljningsansvarig',
948
+ expireddate: null,
949
+ anonymizeddate: null,
950
+ emailhardbounce: false,
951
+ id: 1030,
952
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
953
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
954
+ descriptive: 'Kim Thøgersen',
955
+ company: 1023,
956
+ },
957
+ {
958
+ firstname: 'Niels',
959
+ inactive: false,
960
+ phone: '+4566343435',
961
+ mobilephone: '+4520214567',
962
+ email: 'niels.tang@limedemo.com',
963
+ lastname: 'Tang',
964
+ name: 'Niels Tang',
965
+ position: 'VD',
966
+ expireddate: null,
967
+ anonymizeddate: null,
968
+ emailhardbounce: false,
969
+ id: 1047,
970
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
971
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
972
+ descriptive: 'Niels Tang',
973
+ company: 1020,
974
+ },
975
+ {
976
+ firstname: 'Kenneth',
977
+ inactive: false,
978
+ phone: '0809143571',
979
+ mobilephone: '070101853135',
980
+ email: 'kenneth.uggla@limedemo.com',
981
+ lastname: 'Uggla',
982
+ name: 'Kenneth Uggla',
983
+ position: 'IT-chef',
984
+ expireddate: null,
985
+ anonymizeddate: null,
986
+ emailhardbounce: false,
987
+ id: 1028,
988
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
989
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
990
+ descriptive: 'Kenneth Uggla',
991
+ company: 1027,
992
+ },
993
+ {
994
+ firstname: 'Hanna',
995
+ inactive: false,
996
+ phone: '',
997
+ mobilephone: '',
998
+ email: 'hanna.book@limedemo.com',
999
+ lastname: 'Book',
1000
+ name: 'Hanna Book',
1001
+ position: 'Säljare',
1002
+ expireddate: null,
1003
+ anonymizeddate: null,
1004
+ emailhardbounce: false,
1005
+ id: 1016,
1006
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
1007
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
1008
+ descriptive: 'Hanna Book',
1009
+ company: 1015,
1010
+ },
1011
+ {
1012
+ firstname: 'Erik',
1013
+ inactive: false,
1014
+ phone: '0818321254',
1015
+ mobilephone: '0805246551',
1016
+ email: 'erik.danielsson@limedemo.com',
1017
+ lastname: 'Danielsson',
1018
+ name: 'Erik Danielsson',
1019
+ position: 'Ekonomiansvarig',
1020
+ expireddate: null,
1021
+ anonymizeddate: null,
1022
+ emailhardbounce: false,
1023
+ id: 1011,
1024
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
1025
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
1026
+ descriptive: 'Erik Danielsson',
1027
+ company: 1011,
1028
+ },
1029
+ {
1030
+ firstname: 'Christian',
1031
+ inactive: false,
1032
+ phone: '0822254389',
1033
+ mobilephone: '0707323181',
1034
+ email: 'christian.börjeson@limedemo.com',
1035
+ lastname: 'Börjeson',
1036
+ name: 'Christian Börjeson',
1037
+ position: 'Försäljningsansvarig',
1038
+ expireddate: null,
1039
+ anonymizeddate: null,
1040
+ emailhardbounce: false,
1041
+ id: 1007,
1042
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
1043
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
1044
+ descriptive: 'Christian Börjeson',
1045
+ company: 1016,
1046
+ },
1047
+ {
1048
+ firstname: 'Art',
1049
+ inactive: false,
1050
+ phone: '010010101',
1051
+ mobilephone: '07070034565',
1052
+ email: 'art.vandaley@limedemo.com',
1053
+ lastname: 'Vandaley',
1054
+ name: 'Art Vandaley',
1055
+ position: 'VD',
1056
+ expireddate: null,
1057
+ anonymizeddate: null,
1058
+ emailhardbounce: false,
1059
+ id: 1003,
1060
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
1061
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
1062
+ descriptive: 'Art Vandaley',
1063
+ company: 1025,
1064
+ },
1065
+ {
1066
+ firstname: 'Indiana',
1067
+ inactive: false,
1068
+ phone: '0736446921',
1069
+ mobilephone: '',
1070
+ email: 'indiana.jones@limedemo.com',
1071
+ lastname: 'Jones',
1072
+ name: 'Indiana Jones',
1073
+ position: 'VD',
1074
+ expireddate: null,
1075
+ anonymizeddate: null,
1076
+ emailhardbounce: false,
1077
+ id: 1021,
1078
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
1079
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
1080
+ descriptive: 'Indiana Jones',
1081
+ company: 1018,
1082
+ },
1083
+ {
1084
+ firstname: 'Klara',
1085
+ inactive: false,
1086
+ phone: '040789685',
1087
+ mobilephone: '070123986',
1088
+ email: 'klara.ring@limedemo.com',
1089
+ lastname: 'Ring',
1090
+ name: 'Klara Ring',
1091
+ position: 'Försäljningsansvarig',
1092
+ expireddate: null,
1093
+ anonymizeddate: null,
1094
+ emailhardbounce: false,
1095
+ id: 1031,
1096
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
1097
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
1098
+ descriptive: 'Klara Ring',
1099
+ company: 1013,
1100
+ },
1101
+ {
1102
+ firstname: 'Camilla',
1103
+ inactive: false,
1104
+ phone: '',
1105
+ mobilephone: '+46733501222',
1106
+ email: 'camilla.bangsgaard@limedemo.com',
1107
+ lastname: 'Bangsgaard',
1108
+ name: 'Camilla Bangsgaard',
1109
+ position: 'IT-chef',
1110
+ expireddate: null,
1111
+ anonymizeddate: null,
1112
+ emailhardbounce: false,
1113
+ id: 1005,
1114
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
1115
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
1116
+ descriptive: 'Camilla Bangsgaard',
1117
+ company: 1026,
1118
+ },
1119
+ {
1120
+ firstname: 'Bob',
1121
+ inactive: false,
1122
+ phone: '0402224001',
1123
+ mobilephone: '0736456612',
1124
+ email: 'bob.bengtsson@limedemo.com',
1125
+ lastname: 'Bengtsson',
1126
+ name: 'Bob Bengtsson',
1127
+ position: 'VD',
1128
+ expireddate: null,
1129
+ anonymizeddate: null,
1130
+ emailhardbounce: false,
1131
+ id: 1004,
1132
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
1133
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
1134
+ descriptive: 'Bob Bengtsson',
1135
+ company: 1010,
1136
+ },
1137
+ {
1138
+ firstname: 'David',
1139
+ inactive: false,
1140
+ phone: '04058501',
1141
+ mobilephone: '0734224656',
1142
+ email: 'david.waterwood@limedemo.com',
1143
+ lastname: 'Waterwood',
1144
+ name: 'David Waterwood',
1145
+ position: 'VD',
1146
+ expireddate: null,
1147
+ anonymizeddate: null,
1148
+ emailhardbounce: false,
1149
+ id: 1009,
1150
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
1151
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
1152
+ descriptive: 'David Waterwood',
1153
+ company: 1007,
1154
+ },
1155
+ ].map((data) => {
1156
+ const limeobject = Object.assign(Object.assign({}, data), { getLimetype: () => getLimetype('person'), getValue: (property) => getValue(property, limeobject) });
1157
+ return limeobject;
1158
+ });