@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,106 @@
1
+ import { getLimetype, getValue } from '.';
2
+ export const coworker = [
3
+ {
4
+ name: 'Lime Test user',
5
+ phone: '',
6
+ mobilephone: '',
7
+ email: '',
8
+ username: 1701,
9
+ inactive: true,
10
+ picture: 29701,
11
+ firstname: 'Lime Test user',
12
+ lastname: '',
13
+ lastlogintime: null,
14
+ nbrlogin: 0,
15
+ nbrupdates: 0,
16
+ admin: false,
17
+ id: 1002,
18
+ createdtime: '2012-01-27T08:10:17.293000+01:00',
19
+ timestamp: '2018-06-21T11:16:49.110000+02:00',
20
+ descriptive: 'Lime Test user ',
21
+ office: null,
22
+ },
23
+ {
24
+ id: 1001,
25
+ createdtime: '2012-01-27T08:10:06.970000+01:00',
26
+ timestamp: '2018-06-05T11:24:56.620000+02:00',
27
+ descriptive: 'LIME Administrator ',
28
+ name: 'LIME Administrator',
29
+ phone: '',
30
+ mobilephone: '',
31
+ email: '',
32
+ username: 2901,
33
+ inactive: true,
34
+ picture: 29601,
35
+ firstname: 'LIME Administrator',
36
+ lastname: '',
37
+ lastlogintime: null,
38
+ nbrlogin: 0,
39
+ nbrupdates: 0,
40
+ admin: true,
41
+ office: null,
42
+ },
43
+ {
44
+ name: 'Inaktiv',
45
+ phone: '',
46
+ mobilephone: '',
47
+ email: '',
48
+ username: null,
49
+ inactive: true,
50
+ picture: null,
51
+ firstname: 'Inaktiv',
52
+ lastname: '',
53
+ lastlogintime: null,
54
+ nbrlogin: 0,
55
+ nbrupdates: 0,
56
+ admin: false,
57
+ id: 1008,
58
+ createdtime: '2017-03-07T14:01:34.500000+01:00',
59
+ timestamp: '2017-03-07T14:01:44.463000+01:00',
60
+ descriptive: 'Inaktiv ',
61
+ office: null,
62
+ },
63
+ {
64
+ name: 'Aktiv',
65
+ phone: '',
66
+ mobilephone: '',
67
+ email: '',
68
+ username: null,
69
+ inactive: false,
70
+ picture: null,
71
+ firstname: 'Aktiv',
72
+ lastname: '',
73
+ lastlogintime: null,
74
+ nbrlogin: 0,
75
+ nbrupdates: 0,
76
+ admin: false,
77
+ id: 1007,
78
+ createdtime: '2017-03-07T14:01:30.393000+01:00',
79
+ timestamp: '2017-03-07T14:01:33.490000+01:00',
80
+ descriptive: 'Aktiv ',
81
+ office: null,
82
+ },
83
+ {
84
+ name: 'Administrator',
85
+ phone: '',
86
+ mobilephone: '',
87
+ email: '',
88
+ username: 1,
89
+ inactive: true,
90
+ picture: 29801,
91
+ firstname: 'Administrator',
92
+ lastname: '',
93
+ lastlogintime: null,
94
+ nbrlogin: 1,
95
+ nbrupdates: 0,
96
+ admin: true,
97
+ id: 1003,
98
+ createdtime: '2012-01-27T08:11:03.620000+01:00',
99
+ timestamp: '2018-06-27T09:29:51.193000+02:00',
100
+ descriptive: 'Administrator ',
101
+ office: null,
102
+ },
103
+ ].map((data) => {
104
+ const limeobject = Object.assign(Object.assign({}, data), { getLimetype: () => getLimetype('coworker'), getValue: (property) => getValue(property, limeobject) });
105
+ return limeobject;
106
+ });
@@ -0,0 +1,41 @@
1
+ export declare const deal: ({
2
+ getLimetype: () => import("../..").LimeType;
3
+ getValue: (property: string) => any;
4
+ dealstatus: string;
5
+ value: number;
6
+ quotesent: string;
7
+ expecteddate: string;
8
+ closeddate: string;
9
+ wonlostreason: string;
10
+ name: string;
11
+ probability: number;
12
+ weightedvalue: number;
13
+ id: number;
14
+ createdtime: string;
15
+ timestamp: string;
16
+ descriptive: string;
17
+ person: number;
18
+ coworker: any;
19
+ company: number;
20
+ todo2: any;
21
+ } | {
22
+ getLimetype: () => import("../..").LimeType;
23
+ getValue: (property: string) => any;
24
+ dealstatus: string;
25
+ value: number;
26
+ quotesent: string;
27
+ expecteddate: string;
28
+ closeddate: any;
29
+ wonlostreason: string;
30
+ name: string;
31
+ probability: number;
32
+ weightedvalue: number;
33
+ id: number;
34
+ createdtime: string;
35
+ timestamp: string;
36
+ descriptive: string;
37
+ person: any;
38
+ coworker: number;
39
+ company: number;
40
+ todo2: any;
41
+ })[];
@@ -0,0 +1,443 @@
1
+ import { getLimetype, getValue } from '.';
2
+ export const deal = [
3
+ {
4
+ dealstatus: 'tender',
5
+ value: 20000,
6
+ quotesent: '2016-06-07T00:00:00+02:00',
7
+ expecteddate: null,
8
+ closeddate: null,
9
+ wonlostreason: '',
10
+ name: 'Basemetrics Oy - tekninen konsultointi',
11
+ probability: 0.64,
12
+ weightedvalue: 12800,
13
+ id: 1023,
14
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
15
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
16
+ descriptive: 'Basemetrics Oy - tekninen konsultointi',
17
+ person: 1019,
18
+ coworker: null,
19
+ company: 1009,
20
+ todo2: null,
21
+ },
22
+ {
23
+ dealstatus: 'agreement',
24
+ value: 50000,
25
+ quotesent: '2016-04-29T00:00:00+02:00',
26
+ expecteddate: '2016-08-01T00:00:00+02:00',
27
+ closeddate: '2016-08-30T00:00:00+02:00',
28
+ wonlostreason: 'Meidän järjestelmä vastaa tarpeisiin ja mahdollistaa integraatiot 2016-06-04',
29
+ name: 'Basemetrics Oy - järjestelmän käyttöönotto',
30
+ probability: 1,
31
+ weightedvalue: 50000,
32
+ id: 1022,
33
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
34
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
35
+ descriptive: 'Basemetrics Oy - järjestelmän käyttöönotto',
36
+ person: 1019,
37
+ coworker: null,
38
+ company: 1009,
39
+ todo2: null,
40
+ },
41
+ {
42
+ dealstatus: 'rejection',
43
+ value: 0,
44
+ quotesent: null,
45
+ expecteddate: null,
46
+ closeddate: '2017-03-07T00:00:00+01:00',
47
+ wonlostreason: 'Test',
48
+ name: 'Byggeløsning til Dansk Byg',
49
+ probability: 0,
50
+ weightedvalue: 0,
51
+ id: 1021,
52
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
53
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
54
+ descriptive: 'Byggeløsning til Dansk Byg',
55
+ person: 1027,
56
+ coworker: null,
57
+ company: 1012,
58
+ todo2: null,
59
+ },
60
+ {
61
+ dealstatus: 'contact',
62
+ value: 1000000,
63
+ quotesent: null,
64
+ expecteddate: null,
65
+ closeddate: null,
66
+ wonlostreason: '',
67
+ name: 'Lime CRM til medlemmer - 5 brugere',
68
+ probability: 0,
69
+ weightedvalue: 0,
70
+ id: 1020,
71
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
72
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
73
+ descriptive: 'Lime CRM til medlemmer - 5 brugere',
74
+ person: 1063,
75
+ coworker: null,
76
+ company: 1019,
77
+ todo2: null,
78
+ },
79
+ {
80
+ dealstatus: 'contact',
81
+ value: 0,
82
+ quotesent: '2016-05-03T00:00:00+02:00',
83
+ expecteddate: null,
84
+ closeddate: null,
85
+ wonlostreason: '2016-05-17',
86
+ name: 'Kosulentløsning Lime CRM',
87
+ probability: 0,
88
+ weightedvalue: 0,
89
+ id: 1019,
90
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
91
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
92
+ descriptive: 'Kosulentløsning Lime CRM',
93
+ person: 1038,
94
+ coworker: null,
95
+ company: 1017,
96
+ todo2: null,
97
+ },
98
+ {
99
+ dealstatus: 'contact',
100
+ value: 0,
101
+ quotesent: '2016-05-17T00:00:00+02:00',
102
+ expecteddate: null,
103
+ closeddate: null,
104
+ wonlostreason: '',
105
+ name: 'Lime CRM Maskin 5 brugere',
106
+ probability: 0,
107
+ weightedvalue: 0,
108
+ id: 1018,
109
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
110
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
111
+ descriptive: 'Lime CRM Maskin 5 brugere',
112
+ person: 1044,
113
+ coworker: null,
114
+ company: 1024,
115
+ todo2: null,
116
+ },
117
+ {
118
+ dealstatus: 'contact',
119
+ value: 0,
120
+ quotesent: '2016-05-17T00:00:00+02:00',
121
+ expecteddate: null,
122
+ closeddate: null,
123
+ wonlostreason: '',
124
+ name: 'Ekstra brugeruddannelse 2 dage',
125
+ probability: 0,
126
+ weightedvalue: 0,
127
+ id: 1017,
128
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
129
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
130
+ descriptive: 'Ekstra brugeruddannelse 2 dage',
131
+ person: 1054,
132
+ coworker: null,
133
+ company: 1022,
134
+ todo2: null,
135
+ },
136
+ {
137
+ dealstatus: 'contact',
138
+ value: 0,
139
+ quotesent: '2016-05-11T00:00:00+02:00',
140
+ expecteddate: null,
141
+ closeddate: null,
142
+ wonlostreason: '2016-05-17',
143
+ name: 'Lime CRM 50 brugere plus integrationer',
144
+ probability: 0,
145
+ weightedvalue: 0,
146
+ id: 1016,
147
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
148
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
149
+ descriptive: 'Lime CRM 50 brugere plus integrationer',
150
+ person: 1059,
151
+ coworker: null,
152
+ company: 1022,
153
+ todo2: null,
154
+ },
155
+ {
156
+ dealstatus: 'contact',
157
+ value: 0,
158
+ quotesent: '2016-02-09T00:00:00+01:00',
159
+ expecteddate: null,
160
+ closeddate: null,
161
+ wonlostreason: '2016-02-11',
162
+ name: 'Lime CRM Ejendom 25 brugere',
163
+ probability: 0,
164
+ weightedvalue: 0,
165
+ id: 1015,
166
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
167
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
168
+ descriptive: 'Lime CRM Ejendom 25 brugere',
169
+ person: 1050,
170
+ coworker: null,
171
+ company: 1008,
172
+ todo2: null,
173
+ },
174
+ {
175
+ dealstatus: 'contact',
176
+ value: 0,
177
+ quotesent: null,
178
+ expecteddate: null,
179
+ closeddate: null,
180
+ wonlostreason: '',
181
+ name: 'Lime CRM 10 brugere inkl. integration',
182
+ probability: 0.1,
183
+ weightedvalue: 0,
184
+ id: 1014,
185
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
186
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
187
+ descriptive: 'Lime CRM 10 brugere inkl. integration',
188
+ person: 1036,
189
+ coworker: null,
190
+ company: 1014,
191
+ todo2: null,
192
+ },
193
+ {
194
+ dealstatus: 'contact',
195
+ value: 0,
196
+ quotesent: '2016-05-17T00:00:00+02:00',
197
+ expecteddate: null,
198
+ closeddate: null,
199
+ wonlostreason: '',
200
+ name: 'Byggeløsning Lime CRM',
201
+ probability: 0,
202
+ weightedvalue: 0,
203
+ id: 1013,
204
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
205
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
206
+ descriptive: 'Byggeløsning Lime CRM',
207
+ person: 1030,
208
+ coworker: null,
209
+ company: 1023,
210
+ todo2: null,
211
+ },
212
+ {
213
+ dealstatus: 'contact',
214
+ value: 0,
215
+ quotesent: null,
216
+ expecteddate: null,
217
+ closeddate: null,
218
+ wonlostreason: '',
219
+ name: 'Lime CRM Ejendom til 20 brugere',
220
+ probability: 0,
221
+ weightedvalue: 0,
222
+ id: 1012,
223
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
224
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
225
+ descriptive: 'Lime CRM Ejendom til 20 brugere',
226
+ person: 1047,
227
+ coworker: null,
228
+ company: 1020,
229
+ todo2: null,
230
+ },
231
+ {
232
+ dealstatus: 'requirement',
233
+ value: 1000,
234
+ quotesent: null,
235
+ expecteddate: null,
236
+ closeddate: null,
237
+ wonlostreason: '',
238
+ name: 'Processkonsult till chokladfabriken',
239
+ probability: 0.3,
240
+ weightedvalue: 300,
241
+ id: 1011,
242
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
243
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
244
+ descriptive: 'Processkonsult till chokladfabriken',
245
+ person: 1028,
246
+ coworker: null,
247
+ company: 1027,
248
+ todo2: null,
249
+ },
250
+ {
251
+ dealstatus: 'contact',
252
+ value: 0,
253
+ quotesent: null,
254
+ expecteddate: null,
255
+ closeddate: null,
256
+ wonlostreason: '',
257
+ name: 'Nytt CRM-system med reklammatinoer för HBA',
258
+ probability: 0,
259
+ weightedvalue: 0,
260
+ id: 1010,
261
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
262
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
263
+ descriptive: 'Nytt CRM-system med reklammatinoer för HBA',
264
+ person: 1016,
265
+ coworker: null,
266
+ company: 1015,
267
+ todo2: null,
268
+ },
269
+ {
270
+ dealstatus: 'contact',
271
+ value: 0,
272
+ quotesent: null,
273
+ expecteddate: null,
274
+ closeddate: null,
275
+ wonlostreason: '',
276
+ name: '20 cykelkomponenter',
277
+ probability: 0,
278
+ weightedvalue: 0,
279
+ id: 1009,
280
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
281
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
282
+ descriptive: '20 cykelkomponenter',
283
+ person: 1011,
284
+ coworker: null,
285
+ company: 1011,
286
+ todo2: null,
287
+ },
288
+ {
289
+ dealstatus: 'contact',
290
+ value: 0,
291
+ quotesent: null,
292
+ expecteddate: null,
293
+ closeddate: null,
294
+ wonlostreason: '',
295
+ name: 'Lime CRM - 6 användare',
296
+ probability: 0,
297
+ weightedvalue: 0,
298
+ id: 1008,
299
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
300
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
301
+ descriptive: 'Lime CRM - 6 användare',
302
+ person: 1007,
303
+ coworker: null,
304
+ company: 1016,
305
+ todo2: null,
306
+ },
307
+ {
308
+ dealstatus: 'agreement',
309
+ value: 1000,
310
+ quotesent: null,
311
+ expecteddate: null,
312
+ closeddate: '2017-05-26T00:00:00+02:00',
313
+ wonlostreason: 'test',
314
+ name: 'Tobleroneaffären',
315
+ probability: 1,
316
+ weightedvalue: 1000,
317
+ id: 1007,
318
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
319
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
320
+ descriptive: 'Tobleroneaffären',
321
+ person: 1003,
322
+ coworker: null,
323
+ company: 1025,
324
+ todo2: null,
325
+ },
326
+ {
327
+ dealstatus: 'contact',
328
+ value: 0,
329
+ quotesent: '2016-04-17T00:00:00+02:00',
330
+ expecteddate: null,
331
+ closeddate: null,
332
+ wonlostreason: '',
333
+ name: 'LEGO Big Deal!',
334
+ probability: 0,
335
+ weightedvalue: 0,
336
+ id: 1006,
337
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
338
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
339
+ descriptive: 'LEGO Big Deal!',
340
+ person: 1021,
341
+ coworker: null,
342
+ company: 1018,
343
+ todo2: null,
344
+ },
345
+ {
346
+ dealstatus: 'contact',
347
+ value: 0,
348
+ quotesent: '2016-03-12T00:00:00+01:00',
349
+ expecteddate: null,
350
+ closeddate: null,
351
+ wonlostreason: '',
352
+ name: 'Superaffären',
353
+ probability: 0,
354
+ weightedvalue: 0,
355
+ id: 1005,
356
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
357
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
358
+ descriptive: 'Superaffären',
359
+ person: 1031,
360
+ coworker: null,
361
+ company: 1013,
362
+ todo2: null,
363
+ },
364
+ {
365
+ dealstatus: 'contact',
366
+ value: 0,
367
+ quotesent: '2016-03-11T00:00:00+01:00',
368
+ expecteddate: null,
369
+ closeddate: null,
370
+ wonlostreason: '',
371
+ name: 'Supertech Deal',
372
+ probability: 0,
373
+ weightedvalue: 0,
374
+ id: 1004,
375
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
376
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
377
+ descriptive: 'Supertech Deal',
378
+ person: 1005,
379
+ coworker: null,
380
+ company: 1026,
381
+ todo2: null,
382
+ },
383
+ {
384
+ dealstatus: 'contact',
385
+ value: 0,
386
+ quotesent: '2015-09-14T00:00:00+02:00',
387
+ expecteddate: null,
388
+ closeddate: null,
389
+ wonlostreason: '2015-09-19',
390
+ name: 'CRM för byggbolag',
391
+ probability: 0,
392
+ weightedvalue: 0,
393
+ id: 1003,
394
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
395
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
396
+ descriptive: 'CRM för byggbolag',
397
+ person: 1004,
398
+ coworker: null,
399
+ company: 1010,
400
+ todo2: null,
401
+ },
402
+ {
403
+ dealstatus: 'contact',
404
+ value: 0,
405
+ quotesent: '2014-12-22T00:00:00+01:00',
406
+ expecteddate: null,
407
+ closeddate: null,
408
+ wonlostreason: '2015-02-28',
409
+ name: 'CRM-system, Lime CRM',
410
+ probability: 0,
411
+ weightedvalue: 0,
412
+ id: 1002,
413
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
414
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
415
+ descriptive: 'CRM-system, Lime CRM',
416
+ person: 1009,
417
+ coworker: null,
418
+ company: 1007,
419
+ todo2: null,
420
+ },
421
+ {
422
+ dealstatus: 'tender',
423
+ value: 500000,
424
+ quotesent: '2016-08-25T00:00:00+02:00',
425
+ expecteddate: '2016-08-01T00:00:00+02:00',
426
+ closeddate: null,
427
+ wonlostreason: '',
428
+ name: 'Big business',
429
+ probability: 0.7,
430
+ weightedvalue: 350000,
431
+ id: 1001,
432
+ createdtime: '2018-06-21T14:38:38.883000+02:00',
433
+ timestamp: '2018-06-21T14:38:38.883000+02:00',
434
+ descriptive: 'Big business',
435
+ person: null,
436
+ coworker: 1003,
437
+ company: 1001,
438
+ todo2: null,
439
+ },
440
+ ].map((data) => {
441
+ const limeobject = Object.assign(Object.assign({}, data), { getLimetype: () => getLimetype('deal'), getValue: (property) => getValue(property, limeobject) });
442
+ return limeobject;
443
+ });
@@ -0,0 +1,20 @@
1
+ export declare const document: {
2
+ getLimetype: () => import("../..").LimeType;
3
+ getValue: (property: string) => any;
4
+ iddocument: number;
5
+ status: number;
6
+ createduser: number;
7
+ createdtime: string;
8
+ updateduser: number;
9
+ timestamp: string;
10
+ rowguid: string;
11
+ comment: string;
12
+ type: number;
13
+ company: number;
14
+ person: any;
15
+ document: any;
16
+ coworker: number;
17
+ deal: any;
18
+ campaign: any;
19
+ solutionimprovement: any;
20
+ }[];
@@ -0,0 +1,78 @@
1
+ import { getLimetype, getValue } from '.';
2
+ export const document = [
3
+ {
4
+ iddocument: 1001,
5
+ status: 2,
6
+ createduser: 2901,
7
+ createdtime: '2020-03-11T16:45:16.21',
8
+ updateduser: 2901,
9
+ timestamp: '2020-03-26T14:06:58.893',
10
+ rowguid: '828dd5c3-6093-4a85-bca3-632aa8aec475',
11
+ comment: 'Screenshot',
12
+ type: 40401,
13
+ company: null,
14
+ person: null,
15
+ document: null,
16
+ coworker: null,
17
+ deal: null,
18
+ campaign: null,
19
+ solutionimprovement: null,
20
+ },
21
+ {
22
+ iddocument: 1002,
23
+ status: 0,
24
+ createduser: 2901,
25
+ createdtime: '2020-03-26T09:10:16.927',
26
+ updateduser: 2901,
27
+ timestamp: '2020-03-26T09:10:17.157',
28
+ rowguid: '661106c3-1d4a-4c87-b369-4b8f0c1dda44',
29
+ comment: 'adaddada',
30
+ type: 40701,
31
+ company: 1029,
32
+ person: null,
33
+ document: null,
34
+ coworker: 1001,
35
+ deal: null,
36
+ campaign: null,
37
+ solutionimprovement: null,
38
+ },
39
+ {
40
+ iddocument: 1003,
41
+ status: 2,
42
+ createduser: 2901,
43
+ createdtime: '2020-03-26T09:26:08.427',
44
+ updateduser: 2901,
45
+ timestamp: '2020-05-05T11:39:30.633',
46
+ rowguid: '6ab7bb0d-e6e5-4e5c-a5bf-510aff143dfa',
47
+ comment: 'test',
48
+ type: 40601,
49
+ company: null,
50
+ person: null,
51
+ document: null,
52
+ coworker: null,
53
+ deal: null,
54
+ campaign: null,
55
+ solutionimprovement: null,
56
+ },
57
+ {
58
+ iddocument: 1004,
59
+ status: 2,
60
+ createduser: 2901,
61
+ createdtime: '2020-03-26T09:28:38.24',
62
+ updateduser: 2901,
63
+ timestamp: '2020-03-26T14:07:32.743',
64
+ rowguid: '2b711a88-bd72-4bb0-807e-502118194383',
65
+ comment: 'testPDF.pdf',
66
+ type: 40401,
67
+ company: null,
68
+ person: null,
69
+ document: null,
70
+ coworker: null,
71
+ deal: null,
72
+ campaign: null,
73
+ solutionimprovement: null,
74
+ },
75
+ ].map((data) => {
76
+ const limeobject = Object.assign(Object.assign({}, data), { getLimetype: () => getLimetype('document'), getValue: (property) => getValue(property, limeobject) });
77
+ return limeobject;
78
+ });