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