@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,660 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.company = void 0;
4
+ var tslib_1 = require("tslib");
5
+ var _1 = require(".");
6
+ exports.company = [
7
+ {
8
+ name: 'Lime Technologies A/S',
9
+ phone: '+4589887080',
10
+ www: 'www.lime-technologies.dk',
11
+ postaladdress1: 'Købmagergade 67, 4.tv.',
12
+ visitingaddress1: 'Købmagergade 67, 4.tv.',
13
+ registrationno: '36053291',
14
+ postalzipcode: '1150',
15
+ postalcity: 'Copenhagen',
16
+ visitingzipcode: '1150',
17
+ visitingcity: 'Copenhagen',
18
+ postaladdress2: '',
19
+ visitingaddress2: '',
20
+ country: 'Denmark',
21
+ inactive: false,
22
+ buyingstatus: 'active',
23
+ fullpostaladdress: 'Købmagergade 67, 4.tv.\n1150 Copenhagen',
24
+ fullvisitingaddress: 'Købmagergade 67, 4.tv.\n1150 Copenhagen',
25
+ id: 1002,
26
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
27
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
28
+ descriptive: 'Lime Technologies A/S',
29
+ coworker: null,
30
+ },
31
+ {
32
+ name: 'Lime Technologies AB',
33
+ phone: '+46317124400',
34
+ www: 'www.lime-technologies.se',
35
+ postaladdress1: 'Första Långgatan 4',
36
+ visitingaddress1: 'Första Långgatan 4',
37
+ registrationno: '556677-8888',
38
+ postalzipcode: '413 03',
39
+ postalcity: 'Göteborg',
40
+ visitingzipcode: '222 70',
41
+ visitingcity: 'Göteborg',
42
+ postaladdress2: '',
43
+ visitingaddress2: '',
44
+ country: 'Sweden',
45
+ inactive: false,
46
+ buyingstatus: 'active',
47
+ fullpostaladdress: 'Första Långgatan 4\n413 03 Göteborg',
48
+ fullvisitingaddress: 'Första Långgatan 4\n222 70 Göteborg',
49
+ id: 1003,
50
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
51
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
52
+ descriptive: 'Lime Technologies AB',
53
+ coworker: 1001,
54
+ },
55
+ {
56
+ name: 'Lime Technologies AB',
57
+ phone: '+46856277600',
58
+ www: 'www.lime-technologies.se',
59
+ postaladdress1: 'Anderstorpsvägen 10',
60
+ visitingaddress1: 'Anderstorpsvägen 10',
61
+ registrationno: '556677-8888',
62
+ postalzipcode: '171 54',
63
+ postalcity: 'Solna',
64
+ visitingzipcode: '171 54',
65
+ visitingcity: 'Solna',
66
+ postaladdress2: '',
67
+ visitingaddress2: '',
68
+ country: 'Sweden',
69
+ inactive: false,
70
+ buyingstatus: 'active',
71
+ fullpostaladdress: 'Anderstorpsvägen 10\n171 54 Solna',
72
+ fullvisitingaddress: 'Anderstorpsvägen 10\n171 54 Solna',
73
+ id: 1004,
74
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
75
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
76
+ descriptive: 'Lime Technologies AB',
77
+ coworker: null,
78
+ },
79
+ {
80
+ name: 'Lime Technologies AS',
81
+ phone: '+4721611710',
82
+ www: 'www.lime-technologies.no',
83
+ postaladdress1: 'Inkognitogata 33',
84
+ visitingaddress1: 'Inkognitogata 33',
85
+ registrationno: '989711393',
86
+ postalzipcode: '0256',
87
+ postalcity: 'Oslo',
88
+ visitingzipcode: '0256',
89
+ visitingcity: 'Oslo',
90
+ postaladdress2: '',
91
+ visitingaddress2: '',
92
+ country: 'Norway',
93
+ inactive: false,
94
+ buyingstatus: 'prospect',
95
+ fullpostaladdress: 'Inkognitogata 33\n0256 Oslo',
96
+ fullvisitingaddress: 'Inkognitogata 33\n0256 Oslo',
97
+ id: 1005,
98
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
99
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
100
+ descriptive: 'Lime Technologies AS',
101
+ coworker: null,
102
+ },
103
+ {
104
+ name: 'Lime Technologies Finland Oy',
105
+ phone: '+358467148000',
106
+ www: 'www.lime-technologies.fi',
107
+ postaladdress1: 'Nilsiänkatu 11-13',
108
+ visitingaddress1: 'Nilsiänkatu 11-13',
109
+ registrationno: 'FI23208111',
110
+ postalzipcode: '00510',
111
+ postalcity: 'Helsinki',
112
+ visitingzipcode: '00510',
113
+ visitingcity: 'Helsinki',
114
+ postaladdress2: '',
115
+ visitingaddress2: '',
116
+ country: 'Finland',
117
+ inactive: false,
118
+ buyingstatus: 'prospect',
119
+ fullpostaladdress: 'Nilsiänkatu 11-13\n00510 Helsinki',
120
+ fullvisitingaddress: 'Nilsiänkatu 11-13\n00510 Helsinki',
121
+ id: 1006,
122
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
123
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
124
+ descriptive: 'Lime Technologies Finland Oy',
125
+ coworker: null,
126
+ },
127
+ {
128
+ name: 'Orkla AS (DEMO)',
129
+ phone: '+4722134788',
130
+ www: 'http://www.egelectronics.com/web/Hem.aspx',
131
+ postaladdress1: 'Valkyr',
132
+ visitingaddress1: 'Langkaia 1',
133
+ registrationno: '990399124',
134
+ postalzipcode: 'egat',
135
+ postalcity: 'OSLO',
136
+ visitingzipcode: '0155',
137
+ visitingcity: 'Oslo',
138
+ postaladdress2: '',
139
+ visitingaddress2: '',
140
+ country: 'Norge',
141
+ inactive: false,
142
+ buyingstatus: 'active',
143
+ fullpostaladdress: 'Valkyr\negat OSLO',
144
+ fullvisitingaddress: 'Langkaia 1\n0155 Oslo',
145
+ id: 1021,
146
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
147
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
148
+ descriptive: 'Orkla AS (DEMO)',
149
+ coworker: null,
150
+ },
151
+ {
152
+ name: 'Basemetrics Oy (demo)',
153
+ phone: '0417784718',
154
+ www: 'www.google.com',
155
+ postaladdress1: 'Tehtaankatu 35',
156
+ visitingaddress1: 'Tehtaankatu 35',
157
+ registrationno: '232312-1',
158
+ postalzipcode: '00100',
159
+ postalcity: 'HELSINKI',
160
+ visitingzipcode: '00100',
161
+ visitingcity: 'Helsinki',
162
+ postaladdress2: '',
163
+ visitingaddress2: '',
164
+ country: '',
165
+ inactive: false,
166
+ buyingstatus: 'active',
167
+ fullpostaladdress: 'Tehtaankatu 35\n00100 HELSINKI',
168
+ fullvisitingaddress: 'Tehtaankatu 35\n00100 Helsinki',
169
+ id: 1009,
170
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
171
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
172
+ descriptive: 'Basemetrics Oy (demo)',
173
+ coworker: null,
174
+ },
175
+ {
176
+ name: 'Dansk Byg A/S (DEMO)',
177
+ phone: '+4522669191',
178
+ www: 'Danskbyg.dk',
179
+ postaladdress1: 'Agenavej 11',
180
+ visitingaddress1: 'Agenavej 11',
181
+ registrationno: '24556920',
182
+ postalzipcode: '2670',
183
+ postalcity: 'Greve',
184
+ visitingzipcode: '2670',
185
+ visitingcity: 'Greve',
186
+ postaladdress2: '',
187
+ visitingaddress2: '',
188
+ country: '',
189
+ inactive: false,
190
+ buyingstatus: 'prospect',
191
+ fullpostaladdress: 'Agenavej 11\n2670 Greve',
192
+ fullvisitingaddress: 'Agenavej 11\n2670 Greve',
193
+ id: 1012,
194
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
195
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
196
+ descriptive: 'Dansk Byg A/S (DEMO)',
197
+ coworker: null,
198
+ },
199
+ {
200
+ name: 'Medlemsklubben A/S (DEMO)',
201
+ phone: '+4567678383',
202
+ www: 'www.medlem.com',
203
+ postaladdress1: 'Bøgevej 21B',
204
+ visitingaddress1: 'Bøgevej 21B',
205
+ registrationno: '86765654',
206
+ postalzipcode: '8000',
207
+ postalcity: 'Århus C',
208
+ visitingzipcode: '8000',
209
+ visitingcity: 'Århus C',
210
+ postaladdress2: '',
211
+ visitingaddress2: '',
212
+ country: '',
213
+ inactive: false,
214
+ buyingstatus: 'prospect',
215
+ fullpostaladdress: 'Bøgevej 21B\n8000 Århus C',
216
+ fullvisitingaddress: 'Bøgevej 21B\n8000 Århus C',
217
+ id: 1019,
218
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
219
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
220
+ descriptive: 'Medlemsklubben A/S (DEMO)',
221
+ coworker: null,
222
+ },
223
+ {
224
+ name: 'Konsulenthuset A/S (DEMO)',
225
+ phone: '+4532955001',
226
+ www: 'k-huset.dk',
227
+ postaladdress1: 'Marievej 14',
228
+ visitingaddress1: 'Marievej 14',
229
+ registrationno: '90800224',
230
+ postalzipcode: '2660',
231
+ postalcity: 'Brøndby Strand',
232
+ visitingzipcode: '2660',
233
+ visitingcity: 'Brøndby Strand',
234
+ postaladdress2: '',
235
+ visitingaddress2: '',
236
+ country: '',
237
+ inactive: false,
238
+ buyingstatus: 'active',
239
+ fullpostaladdress: 'Marievej 14\n2660 Brøndby Strand',
240
+ fullvisitingaddress: 'Marievej 14\n2660 Brøndby Strand',
241
+ id: 1017,
242
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
243
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
244
+ descriptive: 'Konsulenthuset A/S (DEMO)',
245
+ coworker: null,
246
+ },
247
+ {
248
+ name: 'TNK Teknik & Maskiner A/S (DEMO)',
249
+ phone: '+4588556677',
250
+ www: 'www.tnk.dk',
251
+ postaladdress1: 'Maskinparken 1',
252
+ visitingaddress1: 'Maskinparken 1',
253
+ registrationno: '97667623',
254
+ postalzipcode: '9000',
255
+ postalcity: 'Aalborg',
256
+ visitingzipcode: '9000',
257
+ visitingcity: 'Aalborg',
258
+ postaladdress2: '',
259
+ visitingaddress2: '',
260
+ country: '',
261
+ inactive: false,
262
+ buyingstatus: 'prospect',
263
+ fullpostaladdress: 'Maskinparken 1\n9000 Aalborg',
264
+ fullvisitingaddress: 'Maskinparken 1\n9000 Aalborg',
265
+ id: 1024,
266
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
267
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
268
+ descriptive: 'TNK Teknik & Maskiner A/S (DEMO)',
269
+ coworker: null,
270
+ },
271
+ {
272
+ name: 'PH Glas (DEMO)',
273
+ phone: '+4521324545',
274
+ www: 'www.phglas.com',
275
+ postaladdress1: 'Glasgade 300',
276
+ visitingaddress1: 'Glasgade 300',
277
+ registrationno: '80838485',
278
+ postalzipcode: '8210',
279
+ postalcity: 'Århus V',
280
+ visitingzipcode: '8210',
281
+ visitingcity: 'Århus V',
282
+ postaladdress2: '',
283
+ visitingaddress2: '',
284
+ country: '',
285
+ inactive: false,
286
+ buyingstatus: 'active',
287
+ fullpostaladdress: 'Glasgade 300\n8210 Århus V',
288
+ fullvisitingaddress: 'Glasgade 300\n8210 Århus V',
289
+ id: 1022,
290
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
291
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
292
+ descriptive: 'PH Glas (DEMO)',
293
+ coworker: null,
294
+ },
295
+ {
296
+ name: 'Andersen International (DEMO)',
297
+ phone: '+4586235688',
298
+ www: 'www.aint.com',
299
+ postaladdress1: 'Silkeborgvej 77',
300
+ visitingaddress1: 'Silkeborgvej 77',
301
+ registrationno: '55643299',
302
+ postalzipcode: '7400',
303
+ postalcity: 'Herning',
304
+ visitingzipcode: '7400',
305
+ visitingcity: 'Herning',
306
+ postaladdress2: '',
307
+ visitingaddress2: '',
308
+ country: '',
309
+ inactive: false,
310
+ buyingstatus: 'active',
311
+ fullpostaladdress: 'Silkeborgvej 77\n7400 Herning',
312
+ fullvisitingaddress: 'Silkeborgvej 77\n7400 Herning',
313
+ id: 1008,
314
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
315
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
316
+ descriptive: 'Andersen International (DEMO)',
317
+ coworker: null,
318
+ },
319
+ {
320
+ name: 'Engros Specialisten A/S (DEMO)',
321
+ phone: '+4525565670',
322
+ www: 'www.engros.nu',
323
+ postaladdress1: 'Maskinvej 45',
324
+ visitingaddress1: 'Maskinvej 45',
325
+ registrationno: '80808001',
326
+ postalzipcode: '2000',
327
+ postalcity: 'Frederiksberg',
328
+ visitingzipcode: '2000',
329
+ visitingcity: 'Frederiksberg',
330
+ postaladdress2: '',
331
+ visitingaddress2: '',
332
+ country: '',
333
+ inactive: false,
334
+ buyingstatus: 'prospect',
335
+ fullpostaladdress: 'Maskinvej 45\n2000 Frederiksberg',
336
+ fullvisitingaddress: 'Maskinvej 45\n2000 Frederiksberg',
337
+ id: 1014,
338
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
339
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
340
+ descriptive: 'Engros Specialisten A/S (DEMO)',
341
+ coworker: null,
342
+ },
343
+ {
344
+ name: 'T-BYG (DEMO)',
345
+ phone: '+4530005000',
346
+ www: 'tbyg.dk',
347
+ postaladdress1: 'Byggepladsvej 50',
348
+ visitingaddress1: 'Byggepladsvej 50',
349
+ registrationno: '10202030',
350
+ postalzipcode: '2300',
351
+ postalcity: 'Sundby',
352
+ visitingzipcode: '2300',
353
+ visitingcity: 'Sundby',
354
+ postaladdress2: '',
355
+ visitingaddress2: '',
356
+ country: '',
357
+ inactive: false,
358
+ buyingstatus: 'prospect',
359
+ fullpostaladdress: 'Byggepladsvej 50\n2300 Sundby',
360
+ fullvisitingaddress: 'Byggepladsvej 50\n2300 Sundby',
361
+ id: 1023,
362
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
363
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
364
+ descriptive: 'T-BYG (DEMO)',
365
+ coworker: null,
366
+ },
367
+ {
368
+ name: 'NTA Ejendomme (DEMO)',
369
+ phone: '+4566343434',
370
+ www: 'www.ntaejendomme.dk',
371
+ postaladdress1: 'Tietgensgade 20',
372
+ visitingaddress1: 'Tietgensgade 20',
373
+ registrationno: '45678122',
374
+ postalzipcode: '5000',
375
+ postalcity: 'Odense',
376
+ visitingzipcode: '5000',
377
+ visitingcity: 'Odense',
378
+ postaladdress2: '',
379
+ visitingaddress2: '',
380
+ country: '',
381
+ inactive: false,
382
+ buyingstatus: 'prospect',
383
+ fullpostaladdress: 'Tietgensgade 20\n5000 Odense',
384
+ fullvisitingaddress: 'Tietgensgade 20\n5000 Odense',
385
+ id: 1020,
386
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
387
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
388
+ descriptive: 'NTA Ejendomme (DEMO)',
389
+ coworker: null,
390
+ },
391
+ {
392
+ name: 'Åre Chokladfabrik (DEMO)',
393
+ phone: '08090000320',
394
+ www: 'www.arechokladfabrik.se',
395
+ postaladdress1: 'Björnvägen 32',
396
+ visitingaddress1: 'Björnvägen 32',
397
+ registrationno: '6505-043943',
398
+ postalzipcode: '830 13',
399
+ postalcity: 'Åre',
400
+ visitingzipcode: '830 13',
401
+ visitingcity: 'Åre',
402
+ postaladdress2: '',
403
+ visitingaddress2: '',
404
+ country: '',
405
+ inactive: false,
406
+ buyingstatus: 'active',
407
+ fullpostaladdress: 'Björnvägen 32\n830 13 Åre',
408
+ fullvisitingaddress: 'Björnvägen 32\n830 13 Åre',
409
+ id: 1027,
410
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
411
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
412
+ descriptive: 'Åre Chokladfabrik (DEMO)',
413
+ coworker: null,
414
+ },
415
+ {
416
+ name: 'HBA Fordonsteknik AB (DEMO)',
417
+ phone: '468680900',
418
+ www: 'http://www.hba.nu',
419
+ postaladdress1: 'Villagatan 21',
420
+ visitingaddress1: 'Villagatan 21',
421
+ registrationno: '556321-8832',
422
+ postalzipcode: '382 12',
423
+ postalcity: 'NYBRO',
424
+ visitingzipcode: '382 12',
425
+ visitingcity: 'NYBRO',
426
+ postaladdress2: '',
427
+ visitingaddress2: '',
428
+ country: 'Sverige',
429
+ inactive: false,
430
+ buyingstatus: 'active',
431
+ fullpostaladdress: 'Villagatan 21\n382 12 NYBRO',
432
+ fullvisitingaddress: 'Villagatan 21\n382 12 NYBRO',
433
+ id: 1015,
434
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
435
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
436
+ descriptive: 'HBA Fordonsteknik AB (DEMO)',
437
+ coworker: null,
438
+ },
439
+ {
440
+ name: 'Cykelviktor (DEMO)',
441
+ phone: '0718321546',
442
+ www: '',
443
+ postaladdress1: 'Ymergatan 15',
444
+ visitingaddress1: 'Ymergatan 15',
445
+ registrationno: '751523-3512',
446
+ postalzipcode: '753 25',
447
+ postalcity: 'Uppsala',
448
+ visitingzipcode: '753 25',
449
+ visitingcity: 'Uppsala',
450
+ postaladdress2: '',
451
+ visitingaddress2: '',
452
+ country: '',
453
+ inactive: false,
454
+ buyingstatus: 'active',
455
+ fullpostaladdress: 'Ymergatan 15\n753 25 Uppsala',
456
+ fullvisitingaddress: 'Ymergatan 15\n753 25 Uppsala',
457
+ id: 1011,
458
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
459
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
460
+ descriptive: 'Cykelviktor (DEMO)',
461
+ coworker: null,
462
+ },
463
+ {
464
+ name: 'Hugo Tillquist AB (DEMO)',
465
+ phone: '0822254376',
466
+ www: 'www.tillquist.com',
467
+ postaladdress1: 'Nybrogatan 7',
468
+ visitingaddress1: 'Nybrogatan 7',
469
+ registrationno: '556125-1942',
470
+ postalzipcode: '114 34',
471
+ postalcity: 'Stockholm',
472
+ visitingzipcode: '114 34',
473
+ visitingcity: 'Stockholm',
474
+ postaladdress2: '',
475
+ visitingaddress2: '',
476
+ country: '',
477
+ inactive: false,
478
+ buyingstatus: 'active',
479
+ fullpostaladdress: 'Nybrogatan 7\n114 34 Stockholm',
480
+ fullvisitingaddress: 'Nybrogatan 7\n114 34 Stockholm',
481
+ id: 1016,
482
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
483
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
484
+ descriptive: 'Hugo Tillquist AB (DEMO)',
485
+ coworker: null,
486
+ },
487
+ {
488
+ name: 'Vandaley Industier AB (DEMO)',
489
+ phone: '0771793336',
490
+ www: 'www.vandaley.se',
491
+ postaladdress1: 'Pennygången 32',
492
+ visitingaddress1: 'Pennygången 32',
493
+ registrationno: '5555-987652',
494
+ postalzipcode: '126 55',
495
+ postalcity: 'STOCKHOLM',
496
+ visitingzipcode: '126 55',
497
+ visitingcity: 'STOCKHOLM',
498
+ postaladdress2: '',
499
+ visitingaddress2: '',
500
+ country: '',
501
+ inactive: false,
502
+ buyingstatus: 'prospect',
503
+ fullpostaladdress: 'Pennygången 32\n126 55 STOCKHOLM',
504
+ fullvisitingaddress: 'Pennygången 32\n126 55 STOCKHOLM',
505
+ id: 1025,
506
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
507
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
508
+ descriptive: 'Vandaley Industier AB (DEMO)',
509
+ coworker: null,
510
+ },
511
+ {
512
+ name: 'LEGO (DEMO)',
513
+ phone: '+4675632541',
514
+ www: 'www.lego.com',
515
+ postaladdress1: 'Star wars st. 46',
516
+ visitingaddress1: 'Star wars st. 46',
517
+ registrationno: '8656589',
518
+ postalzipcode: '236 31',
519
+ postalcity: 'Tatooine',
520
+ visitingzipcode: '236 31',
521
+ visitingcity: 'Tatooine',
522
+ postaladdress2: '',
523
+ visitingaddress2: '',
524
+ country: '',
525
+ inactive: false,
526
+ buyingstatus: 'prospect',
527
+ fullpostaladdress: 'Star wars st. 46\n236 31 Tatooine',
528
+ fullvisitingaddress: 'Star wars st. 46\n236 31 Tatooine',
529
+ id: 1018,
530
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
531
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
532
+ descriptive: 'LEGO (DEMO)',
533
+ coworker: null,
534
+ },
535
+ {
536
+ name: 'Din Maskin AB (DEMO)',
537
+ phone: '0418459862',
538
+ www: 'www.dinmaskinas.se',
539
+ postaladdress1: 'Västra Varvsgatan 48',
540
+ visitingaddress1: 'Västra Varvsgatan 48',
541
+ registrationno: '129873-7894',
542
+ postalzipcode: '21114',
543
+ postalcity: 'Malmö',
544
+ visitingzipcode: '21114',
545
+ visitingcity: 'Malmö',
546
+ postaladdress2: '',
547
+ visitingaddress2: '',
548
+ country: '',
549
+ inactive: false,
550
+ buyingstatus: 'active',
551
+ fullpostaladdress: 'Västra Varvsgatan 48\n21114 Malmö',
552
+ fullvisitingaddress: 'Västra Varvsgatan 48\n21114 Malmö',
553
+ id: 1013,
554
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
555
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
556
+ descriptive: 'Din Maskin AB (DEMO)',
557
+ coworker: null,
558
+ },
559
+ {
560
+ name: 'Välinge Innovation + (DEMO)',
561
+ phone: '+4640722592',
562
+ www: 'www.valinge.se',
563
+ postaladdress1: 'Sannarpsvägen 25',
564
+ visitingaddress1: 'Sannarpsvägen 25',
565
+ registrationno: '660312-4101',
566
+ postalzipcode: '224 41',
567
+ postalcity: 'VIKEN',
568
+ visitingzipcode: '224 41',
569
+ visitingcity: 'VIKEN',
570
+ postaladdress2: '',
571
+ visitingaddress2: '',
572
+ country: '',
573
+ inactive: false,
574
+ buyingstatus: 'prospect',
575
+ fullpostaladdress: 'Sannarpsvägen 25\n224 41 VIKEN',
576
+ fullvisitingaddress: 'Sannarpsvägen 25\n224 41 VIKEN',
577
+ id: 1026,
578
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
579
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
580
+ descriptive: 'Välinge Innovation + (DEMO)',
581
+ coworker: null,
582
+ },
583
+ {
584
+ name: 'Byggare Bob (DEMO)',
585
+ phone: '0402224000',
586
+ www: 'http://www.bobthebuilder.com/',
587
+ postaladdress1: 'Box 1451',
588
+ visitingaddress1: 'Timmervägen 3',
589
+ registrationno: '551872-1418',
590
+ postalzipcode: '222 40',
591
+ postalcity: 'MALMÖ',
592
+ visitingzipcode: '271 91',
593
+ visitingcity: 'MALMÖ',
594
+ postaladdress2: '',
595
+ visitingaddress2: '',
596
+ country: '',
597
+ inactive: false,
598
+ buyingstatus: 'active',
599
+ fullpostaladdress: 'Box 1451\n222 40 MALMÖ',
600
+ fullvisitingaddress: 'Timmervägen 3\n271 91 MALMÖ',
601
+ id: 1010,
602
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
603
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
604
+ descriptive: 'Byggare Bob (DEMO)',
605
+ coworker: null,
606
+ },
607
+ {
608
+ name: 'AB Culinar (DEMO)',
609
+ phone: '04058500',
610
+ www: 'www.culinar.com',
611
+ postaladdress1: 'Box 65',
612
+ visitingaddress1: 'Borrgatan 30',
613
+ registrationno: '56528-7181',
614
+ coworker: null,
615
+ postalzipcode: '211 24',
616
+ postalcity: 'MALMÖ',
617
+ visitingzipcode: '211 24',
618
+ visitingcity: 'MALMÖ',
619
+ postaladdress2: '',
620
+ visitingaddress2: '',
621
+ country: '',
622
+ inactive: false,
623
+ buyingstatus: 'active',
624
+ fullpostaladdress: 'Box 65\n211 24 MALMÖ',
625
+ fullvisitingaddress: 'Borrgatan 30\n211 24 MALMÖ',
626
+ id: 1007,
627
+ createduser: 1,
628
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
629
+ updateduser: 1,
630
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
631
+ descriptive: 'AB Culinar (DEMO)',
632
+ },
633
+ {
634
+ name: 'Lime Technologies AB',
635
+ phone: '0462704800',
636
+ www: 'www.lime-technologies.se',
637
+ postaladdress1: 'Sankt Lars väg 46',
638
+ visitingaddress1: 'Sankt Lars väg 46',
639
+ registrationno: '556677-8888',
640
+ postalzipcode: '222 70',
641
+ postalcity: 'Lund',
642
+ visitingzipcode: '222 70',
643
+ visitingcity: 'Lund',
644
+ postaladdress2: '',
645
+ visitingaddress2: '',
646
+ country: 'Sweden',
647
+ inactive: false,
648
+ buyingstatus: 'active',
649
+ fullpostaladdress: 'Sankt Lars väg 46\n222 70 Lund',
650
+ fullvisitingaddress: 'Sankt Lars väg 46\n222 70 Lund',
651
+ id: 1001,
652
+ createdtime: '2018-06-21T14:38:38.837000+02:00',
653
+ timestamp: '2018-06-21T14:38:38.837000+02:00',
654
+ descriptive: 'Lime Technologies AB',
655
+ coworker: null,
656
+ },
657
+ ].map(function (data) {
658
+ var limeobject = tslib_1.__assign(tslib_1.__assign({}, data), { getLimetype: function () { return (0, _1.getLimetype)('company'); }, getValue: function (property) { return (0, _1.getValue)(property, limeobject); } });
659
+ return limeobject;
660
+ });