@limetech/lime-web-components 4.47.4 → 4.49.1-alpha.0

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 (366) hide show
  1. package/CHANGELOG.md +130 -0
  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/location/decorator.js +12 -0
  129. package/dist/es5/location/index.js +17 -0
  130. package/dist/es5/navigator/decorator.js +13 -0
  131. package/dist/es5/navigator/index.js +6 -0
  132. package/dist/es5/navigator/navigator.js +2 -0
  133. package/dist/es5/navigator/types.js +5 -0
  134. package/dist/es5/notifications/index.js +5 -0
  135. package/dist/es5/notifications/notifications.js +2 -0
  136. package/dist/es5/notifications/types.js +5 -0
  137. package/dist/es5/query/index.js +6 -0
  138. package/dist/es5/query/query.js +17 -0
  139. package/dist/es5/query/service.js +2 -0
  140. package/dist/es5/query/types.js +5 -0
  141. package/dist/es5/routeregistry/index.js +5 -0
  142. package/dist/es5/routeregistry/registry.js +2 -0
  143. package/dist/es5/routeregistry/types.js +5 -0
  144. package/dist/es5/task/index.js +5 -0
  145. package/dist/es5/task/repository.js +17 -0
  146. package/dist/es5/task/types.js +5 -0
  147. package/dist/es5/testing/component-testing.js +102 -0
  148. package/dist/es5/testing/index.js +10 -0
  149. package/dist/es5/testing/limeobjects/company.js +660 -0
  150. package/dist/es5/testing/limeobjects/coworker.js +110 -0
  151. package/dist/es5/testing/limeobjects/deal.js +447 -0
  152. package/dist/es5/testing/limeobjects/document.js +82 -0
  153. package/dist/es5/testing/limeobjects/index.js +55 -0
  154. package/dist/es5/testing/limeobjects/person.js +1162 -0
  155. package/dist/es5/testing/limetypes/campaign.js +486 -0
  156. package/dist/es5/testing/limetypes/company.js +621 -0
  157. package/dist/es5/testing/limetypes/consent.js +237 -0
  158. package/dist/es5/testing/limetypes/consenttype.js +194 -0
  159. package/dist/es5/testing/limetypes/coworker.js +579 -0
  160. package/dist/es5/testing/limetypes/deal.js +422 -0
  161. package/dist/es5/testing/limetypes/document.js +343 -0
  162. package/dist/es5/testing/limetypes/helpdesk.js +426 -0
  163. package/dist/es5/testing/limetypes/helpdesktype.js +142 -0
  164. package/dist/es5/testing/limetypes/history.js +349 -0
  165. package/dist/es5/testing/limetypes/index.js +69 -0
  166. package/dist/es5/testing/limetypes/infotiles.js +514 -0
  167. package/dist/es5/testing/limetypes/localize.js +287 -0
  168. package/dist/es5/testing/limetypes/mailing.js +218 -0
  169. package/dist/es5/testing/limetypes/office.js +388 -0
  170. package/dist/es5/testing/limetypes/participant.js +195 -0
  171. package/dist/es5/testing/limetypes/person.js +535 -0
  172. package/dist/es5/testing/limetypes/recipient.js +175 -0
  173. package/dist/es5/testing/limetypes/solutionimprovement.js +353 -0
  174. package/dist/es5/testing/limetypes/successplan.js +215 -0
  175. package/dist/es5/testing/limetypes/target.js +181 -0
  176. package/dist/es5/testing/limetypes/todo.js +429 -0
  177. package/dist/es5/testing/platform/index.js +53 -0
  178. package/dist/es5/testing/platform/platform.spec.js +44 -0
  179. package/dist/es5/translator/index.js +5 -0
  180. package/dist/es5/translator/translator.js +2 -0
  181. package/dist/es5/translator/types.js +5 -0
  182. package/dist/es5/userdata/decorator.js +13 -0
  183. package/dist/es5/userdata/index.js +6 -0
  184. package/dist/es5/userdata/repository.js +2 -0
  185. package/dist/es5/userdata/types.js +5 -0
  186. package/dist/eventdispatcher/eventdispatcher.d.ts +26 -0
  187. package/dist/eventdispatcher/eventdispatcher.js +1 -0
  188. package/dist/eventdispatcher/index.d.ts +2 -0
  189. package/dist/eventdispatcher/index.js +2 -0
  190. package/dist/eventdispatcher/types.d.ts +14 -0
  191. package/dist/eventdispatcher/types.js +3 -0
  192. package/dist/filter/decorator.d.ts +15 -0
  193. package/dist/filter/decorator.js +14 -0
  194. package/dist/filter/index.d.ts +3 -0
  195. package/dist/filter/index.js +3 -0
  196. package/dist/filter/repository.d.ts +18 -0
  197. package/dist/filter/repository.js +1 -0
  198. package/dist/filter/types.d.ts +14 -0
  199. package/dist/filter/types.js +3 -0
  200. package/dist/http/http.d.ts +72 -0
  201. package/dist/http/http.js +1 -0
  202. package/dist/http/index.d.ts +2 -0
  203. package/dist/http/index.js +2 -0
  204. package/dist/http/types.d.ts +14 -0
  205. package/dist/http/types.js +3 -0
  206. package/dist/index.d.ts +19 -0
  207. package/dist/index.js +19 -0
  208. package/dist/keybindings/index.d.ts +2 -0
  209. package/dist/keybindings/index.js +2 -0
  210. package/dist/keybindings/registry.d.ts +79 -0
  211. package/dist/keybindings/registry.js +1 -0
  212. package/dist/keybindings/types.d.ts +17 -0
  213. package/dist/keybindings/types.js +3 -0
  214. package/dist/limeobject/commands/bulk-create-dialog.d.ts +49 -0
  215. package/dist/limeobject/commands/bulk-create-dialog.js +48 -0
  216. package/dist/limeobject/commands/create-dialog.d.ts +28 -0
  217. package/dist/limeobject/commands/create-dialog.js +26 -0
  218. package/dist/limeobject/commands/delete-object.d.ts +10 -0
  219. package/dist/limeobject/commands/delete-object.js +15 -0
  220. package/dist/limeobject/commands/index.d.ts +5 -0
  221. package/dist/limeobject/commands/index.js +5 -0
  222. package/dist/limeobject/commands/object-access.d.ts +10 -0
  223. package/dist/limeobject/commands/object-access.js +15 -0
  224. package/dist/limeobject/commands/save-object.d.ts +16 -0
  225. package/dist/limeobject/commands/save-object.js +21 -0
  226. package/dist/limeobject/decorator.d.ts +32 -0
  227. package/dist/limeobject/decorator.js +42 -0
  228. package/dist/limeobject/error.d.ts +4 -0
  229. package/dist/limeobject/error.js +1 -0
  230. package/dist/limeobject/index.d.ts +6 -0
  231. package/dist/limeobject/index.js +6 -0
  232. package/dist/limeobject/limeobject.d.ts +43 -0
  233. package/dist/limeobject/limeobject.js +1 -0
  234. package/dist/limeobject/repository.d.ts +113 -0
  235. package/dist/limeobject/repository.js +1 -0
  236. package/dist/limeobject/types.d.ts +14 -0
  237. package/dist/limeobject/types.js +3 -0
  238. package/dist/limetype/acl.d.ts +6 -0
  239. package/dist/limetype/acl.js +1 -0
  240. package/dist/limetype/decorator.d.ts +21 -0
  241. package/dist/limetype/decorator.js +32 -0
  242. package/dist/limetype/index.d.ts +5 -0
  243. package/dist/limetype/index.js +5 -0
  244. package/dist/limetype/limetype.d.ts +25 -0
  245. package/dist/limetype/limetype.js +1 -0
  246. package/dist/limetype/property.d.ts +32 -0
  247. package/dist/limetype/property.js +32 -0
  248. package/dist/limetype/types.d.ts +14 -0
  249. package/dist/limetype/types.js +3 -0
  250. package/dist/location/decorator.d.ts +12 -0
  251. package/dist/location/decorator.js +15 -0
  252. package/dist/location/index.d.ts +1 -0
  253. package/dist/location/index.js +1 -0
  254. package/dist/navigator/decorator.d.ts +18 -0
  255. package/dist/navigator/decorator.js +15 -0
  256. package/dist/navigator/index.d.ts +3 -0
  257. package/dist/navigator/index.js +3 -0
  258. package/dist/navigator/navigator.d.ts +158 -0
  259. package/dist/navigator/navigator.js +1 -0
  260. package/dist/navigator/types.d.ts +17 -0
  261. package/dist/navigator/types.js +3 -0
  262. package/dist/notifications/index.d.ts +2 -0
  263. package/dist/notifications/index.js +2 -0
  264. package/dist/notifications/notifications.d.ts +101 -0
  265. package/dist/notifications/notifications.js +1 -0
  266. package/dist/notifications/types.d.ts +14 -0
  267. package/dist/notifications/types.js +3 -0
  268. package/dist/query/index.d.ts +3 -0
  269. package/dist/query/index.js +3 -0
  270. package/dist/query/query.d.ts +46 -0
  271. package/dist/query/query.js +14 -0
  272. package/dist/query/service.d.ts +12 -0
  273. package/dist/query/service.js +1 -0
  274. package/dist/query/types.d.ts +14 -0
  275. package/dist/query/types.js +3 -0
  276. package/dist/routeregistry/index.d.ts +2 -0
  277. package/dist/routeregistry/index.js +2 -0
  278. package/dist/routeregistry/registry.d.ts +92 -0
  279. package/dist/routeregistry/registry.js +1 -0
  280. package/dist/routeregistry/types.d.ts +17 -0
  281. package/dist/routeregistry/types.js +3 -0
  282. package/dist/task/index.d.ts +2 -0
  283. package/dist/task/index.js +2 -0
  284. package/dist/task/repository.d.ts +82 -0
  285. package/dist/task/repository.js +49 -0
  286. package/dist/task/types.d.ts +14 -0
  287. package/dist/task/types.js +3 -0
  288. package/dist/testing/component-testing.d.ts +53 -0
  289. package/dist/testing/component-testing.js +162 -0
  290. package/dist/testing/index.d.ts +4 -0
  291. package/dist/testing/index.js +4 -0
  292. package/dist/testing/limeobjects/company.d.ts +55 -0
  293. package/dist/testing/limeobjects/company.js +656 -0
  294. package/dist/testing/limeobjects/coworker.d.ts +22 -0
  295. package/dist/testing/limeobjects/coworker.js +106 -0
  296. package/dist/testing/limeobjects/deal.d.ts +41 -0
  297. package/dist/testing/limeobjects/deal.js +443 -0
  298. package/dist/testing/limeobjects/document.d.ts +20 -0
  299. package/dist/testing/limeobjects/document.js +78 -0
  300. package/dist/testing/limeobjects/index.d.ts +177 -0
  301. package/dist/testing/limeobjects/index.js +50 -0
  302. package/dist/testing/limeobjects/person.d.ts +20 -0
  303. package/dist/testing/limeobjects/person.js +1158 -0
  304. package/dist/testing/limetypes/campaign.d.ts +417 -0
  305. package/dist/testing/limetypes/campaign.js +477 -0
  306. package/dist/testing/limetypes/company.d.ts +591 -0
  307. package/dist/testing/limetypes/company.js +614 -0
  308. package/dist/testing/limetypes/consent.d.ts +199 -0
  309. package/dist/testing/limetypes/consent.js +232 -0
  310. package/dist/testing/limetypes/consenttype.d.ts +188 -0
  311. package/dist/testing/limetypes/consenttype.js +189 -0
  312. package/dist/testing/limetypes/coworker.d.ts +563 -0
  313. package/dist/testing/limetypes/coworker.js +564 -0
  314. package/dist/testing/limetypes/deal.d.ts +391 -0
  315. package/dist/testing/limetypes/deal.js +419 -0
  316. package/dist/testing/limetypes/document.d.ts +309 -0
  317. package/dist/testing/limetypes/document.js +332 -0
  318. package/dist/testing/limetypes/helpdesk.d.ts +394 -0
  319. package/dist/testing/limetypes/helpdesk.js +417 -0
  320. package/dist/testing/limetypes/helpdesktype.d.ts +136 -0
  321. package/dist/testing/limetypes/helpdesktype.js +137 -0
  322. package/dist/testing/limetypes/history.d.ts +308 -0
  323. package/dist/testing/limetypes/history.js +346 -0
  324. package/dist/testing/limetypes/index.d.ts +5 -0
  325. package/dist/testing/limetypes/index.js +63 -0
  326. package/dist/testing/limetypes/infotiles.d.ts +387 -0
  327. package/dist/testing/limetypes/infotiles.js +509 -0
  328. package/dist/testing/limetypes/localize.d.ts +283 -0
  329. package/dist/testing/limetypes/localize.js +284 -0
  330. package/dist/testing/limetypes/mailing.d.ts +212 -0
  331. package/dist/testing/limetypes/mailing.js +213 -0
  332. package/dist/testing/limetypes/office.d.ts +384 -0
  333. package/dist/testing/limetypes/office.js +385 -0
  334. package/dist/testing/limetypes/participant.d.ts +165 -0
  335. package/dist/testing/limetypes/participant.js +188 -0
  336. package/dist/testing/limetypes/person.d.ts +472 -0
  337. package/dist/testing/limetypes/person.js +530 -0
  338. package/dist/testing/limetypes/recipient.d.ts +147 -0
  339. package/dist/testing/limetypes/recipient.js +170 -0
  340. package/dist/testing/limetypes/solutionimprovement.d.ts +302 -0
  341. package/dist/testing/limetypes/solutionimprovement.js +344 -0
  342. package/dist/testing/limetypes/successplan.d.ts +209 -0
  343. package/dist/testing/limetypes/successplan.js +210 -0
  344. package/dist/testing/limetypes/target.d.ts +160 -0
  345. package/dist/testing/limetypes/target.js +178 -0
  346. package/dist/testing/limetypes/todo.d.ts +386 -0
  347. package/dist/testing/limetypes/todo.js +426 -0
  348. package/dist/testing/platform/index.d.ts +8 -0
  349. package/dist/testing/platform/index.js +61 -0
  350. package/dist/testing/platform/platform.spec.d.ts +1 -0
  351. package/dist/testing/platform/platform.spec.js +41 -0
  352. package/dist/translator/index.d.ts +2 -0
  353. package/dist/translator/index.js +2 -0
  354. package/dist/translator/translator.d.ts +13 -0
  355. package/dist/translator/translator.js +1 -0
  356. package/dist/translator/types.d.ts +14 -0
  357. package/dist/translator/types.js +3 -0
  358. package/dist/userdata/decorator.d.ts +17 -0
  359. package/dist/userdata/decorator.js +14 -0
  360. package/dist/userdata/index.d.ts +3 -0
  361. package/dist/userdata/index.js +3 -0
  362. package/dist/userdata/repository.d.ts +29 -0
  363. package/dist/userdata/repository.js +1 -0
  364. package/dist/userdata/types.d.ts +14 -0
  365. package/dist/userdata/types.js +3 -0
  366. package/package.json +11 -6
package/CHANGELOG.md CHANGED
@@ -3,6 +3,136 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.49.1-alpha.0](https://github.com/Lundalogik/lime-web-components/compare/v4.49.0-alpha.0...v4.49.1-alpha.0) (2022-07-04)
7
+
8
+ **Note:** Version bump only for package @limetech/lime-web-components
9
+
10
+
11
+
12
+
13
+
14
+ # [4.49.0-alpha.0](https://github.com/Lundalogik/lime-web-components/compare/v4.48.1...v4.49.0-alpha.0) (2022-06-29)
15
+
16
+
17
+
18
+ # [4.46.0-alpha.2](https://github.com/Lundalogik/lime-web-components/compare/v4.46.0...v4.46.0-alpha.2) (2022-05-25)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * **docs:** add deprecation note ([a7bf0c5](https://github.com/Lundalogik/lime-web-components/commit/a7bf0c5dedb1dfb2b1452be370b543374b9809cc))
24
+
25
+
26
+
27
+ # [4.46.0-alpha.1](https://github.com/Lundalogik/lime-web-components/compare/v4.46.0-alpha.0...v4.46.0-alpha.1) (2022-05-20)
28
+
29
+
30
+ ### Features
31
+
32
+ * **navigator:** move decorator `SelectQueryParam` to `@limetech/lime-web-components` ([1e5fa78](https://github.com/Lundalogik/lime-web-components/commit/1e5fa78b2035f0c358ed4fca8b679e818adc536d))
33
+
34
+
35
+
36
+ # [4.46.0-alpha.0](https://github.com/Lundalogik/lime-web-components/compare/v4.45.3...v4.46.0-alpha.0) (2022-05-12)
37
+
38
+
39
+
40
+ # [4.42.0-alpha.1](https://github.com/Lundalogik/lime-web-components/compare/v4.42.0...v4.42.0-alpha.1) (2022-04-14)
41
+
42
+
43
+
44
+ # [4.42.0-alpha.0](https://github.com/Lundalogik/lime-web-components/compare/v4.41.10...v4.42.0-alpha.0) (2022-04-14)
45
+
46
+
47
+
48
+ # [4.24.0-alpha.1](https://github.com/Lundalogik/lime-web-components/compare/v4.24.0-alpha.0...v4.24.0-alpha.1) (2022-03-28)
49
+
50
+
51
+ ### Features
52
+
53
+ * **application:** move decorator to `@limetech/lime-web-components` ([bd0bfc1](https://github.com/Lundalogik/lime-web-components/commit/bd0bfc127355139a3818e0730f21224bf30cbbd4))
54
+ * **config:** move decorator to `@limetech/lime-web-components` ([8b7d6d9](https://github.com/Lundalogik/lime-web-components/commit/8b7d6d90192f86e7a9ea0fc5223663a0b126c295))
55
+ * **current-user:** move decorator to `@limetech/lime-web-components` ([1e9bd8a](https://github.com/Lundalogik/lime-web-components/commit/1e9bd8a95055e2382e3803fd577c948256d59057))
56
+ * **decorators:** move interface to `@limetech/lime-web-components` ([3b9a6c8](https://github.com/Lundalogik/lime-web-components/commit/3b9a6c82564fc46864d1698adb6d42299e355c0e))
57
+ * **device:** move decorator to `@limetech/lime-web-components` ([9b43f89](https://github.com/Lundalogik/lime-web-components/commit/9b43f897169486081d665bab5aaec357d78251ec))
58
+ * **filter:** move decorator to `@limetech/lime-web-components` ([7e200ed](https://github.com/Lundalogik/lime-web-components/commit/7e200ed9bb97ee9592fb69026cbdd8fe9ffba4f3))
59
+ * **limeobject:** move decorator to `@limetech/lime-web-components` ([37894f1](https://github.com/Lundalogik/lime-web-components/commit/37894f1524e8db1cf80165c2f0a63bdd954e0859))
60
+ * **limetype:** move decorator to `@limetech/lime-web-components` ([fc49855](https://github.com/Lundalogik/lime-web-components/commit/fc49855bb64d325ca4f1c55bf04e175b48e0efaa))
61
+ * **session:** move decorator to `@limetech/lime-web-components` ([3c72f12](https://github.com/Lundalogik/lime-web-components/commit/3c72f12012662d2caf6255abf1c6f7101fb1e86a))
62
+ * **user-data:** move decorator to `@limetech/lime-web-components` ([9a5f996](https://github.com/Lundalogik/lime-web-components/commit/9a5f9960d9441d511d84af60eb6bc08352341bef))
63
+
64
+
65
+
66
+ # [4.24.0-alpha.0](https://github.com/Lundalogik/lime-web-components/compare/v4.41.6...v4.24.0-alpha.0) (2022-03-25)
67
+
68
+
69
+ ### Bug Fixes
70
+
71
+ * **platform:** add missing platform service names ([de30d58](https://github.com/Lundalogik/lime-web-components/commit/de30d580528a9ed05b646dd79c3f0b9af5aadd46))
72
+
73
+
74
+ ### Features
75
+
76
+ * **config:** move interface to `@limetech/lime-web-components` ([d6b12bd](https://github.com/Lundalogik/lime-web-components/commit/d6b12bdf49b0a0a39f542d7899e3db67f5f38840))
77
+ * **device:** move interface to `@limetech/lime-web-components` ([3ec207b](https://github.com/Lundalogik/lime-web-components/commit/3ec207b4737e6c1592bd46125e4bdd8160ff8be0))
78
+ * **dialog:** move interface to `@limetech/lime-web-components` ([ce8f8fc](https://github.com/Lundalogik/lime-web-components/commit/ce8f8fca810e649cda82c6bb152d9959898dbf89))
79
+ * **filter:** move interface to `@limetech/lime-web-components` ([624afa4](https://github.com/Lundalogik/lime-web-components/commit/624afa4e78dd89da4140b0c74f3a82928dcf6936))
80
+ * **keybindings:** move interface to `@limetech/lime-web-components` ([c867376](https://github.com/Lundalogik/lime-web-components/commit/c86737653045fd2123345bde0123e92a384b9205))
81
+ * **limeobject:** move interface to `@limetech/lime-web-components` ([167d5a2](https://github.com/Lundalogik/lime-web-components/commit/167d5a24d2bbb51632be64a1271e66f957bd9458))
82
+ * **limeobject:** move interface to `@limetech/lime-web-components` ([ab608b3](https://github.com/Lundalogik/lime-web-components/commit/ab608b38288aa24289f1486bed6eabe0189f1174))
83
+ * **navigator:** move interface to `@limetech/lime-web-components` ([603510e](https://github.com/Lundalogik/lime-web-components/commit/603510e57a09b8e2faedeb464e7a1206388f93fe))
84
+ * **notifications:** move interface to `@limetech/lime-web-components` ([f69a1fc](https://github.com/Lundalogik/lime-web-components/commit/f69a1fcf7be22409e35381b278cb74c9199bbe87))
85
+ * **platform:** use module augmentation to add service names ([53e19eb](https://github.com/Lundalogik/lime-web-components/commit/53e19ebb41761750fb7e2feeb9a9d5980ecce543))
86
+ * **platform:** use module augmentation to overload services ([e7460ad](https://github.com/Lundalogik/lime-web-components/commit/e7460ad275691b15fc7981a80d649fe1c31f25c9))
87
+ * **query:** move interface to `@limetech/lime-web-components` ([e2f5c9f](https://github.com/Lundalogik/lime-web-components/commit/e2f5c9faa38041150161ee71d1ec315fead147e4))
88
+ * **router:** move interface to `@limetech/lime-web-components` ([fa3d83c](https://github.com/Lundalogik/lime-web-components/commit/fa3d83c8291bf08b68b99d5d3fa78154d88c26a8))
89
+ * **session:** move interface to `@limetech/lime-web-components` ([1b005c8](https://github.com/Lundalogik/lime-web-components/commit/1b005c842d555b097c32114f7a8f1a5d064ae86a))
90
+ * **state:** move interface to `@limetech/lime-web-components` ([91970f4](https://github.com/Lundalogik/lime-web-components/commit/91970f4a150708a20afb292eeb9d740b47ff416b))
91
+ * **task:** move interface to `@limetech/lime-web-components` ([65a6f46](https://github.com/Lundalogik/lime-web-components/commit/65a6f46d30da7971ef5d5f6d746632b0f808ea76))
92
+ * **translator:** move interface to `@limetech/lime-web-components` ([38b2890](https://github.com/Lundalogik/lime-web-components/commit/38b2890833e06736cd0d02f40f3e3f3635018212))
93
+ * **user:** move interface to `@limetech/lime-web-components` ([0c75aa5](https://github.com/Lundalogik/lime-web-components/commit/0c75aa5bd4e2b9c7fa35407a91a383c18edb7ce3))
94
+ * **userdata:** move interface to `@limetech/lime-web-components` ([b4adf23](https://github.com/Lundalogik/lime-web-components/commit/b4adf238bc0013d23331a718a210f823705a8358))
95
+
96
+
97
+
98
+ ## [4.23.3-alpha.3](https://github.com/Lundalogik/lime-web-components/compare/v4.41.3...v4.23.3-alpha.3) (2022-03-21)
99
+
100
+
101
+
102
+ ## [4.23.3-alpha.2](https://github.com/Lundalogik/lime-web-components/compare/v4.29.2...v4.23.3-alpha.2) (2021-11-15)
103
+
104
+
105
+
106
+ ## [4.23.3-alpha.1](https://github.com/Lundalogik/lime-web-components/compare/v4.24.0...v4.23.3-alpha.1) (2021-09-28)
107
+
108
+
109
+
110
+ ## [4.23.3-alpha.0](https://github.com/Lundalogik/lime-web-components/compare/v4.23.3...v4.23.3-alpha.0) (2021-09-27)
111
+
112
+
113
+
114
+ ## [4.13.3-alpha.0](https://github.com/Lundalogik/lime-web-components/compare/v4.13.2...v4.13.3-alpha.0) (2021-02-26)
115
+
116
+
117
+
118
+
119
+
120
+ ## [4.48.1](https://github.com/Lundalogik/lime-web-components/compare/v4.48.0...v4.48.1) (2022-06-21)
121
+
122
+ **Note:** Version bump only for package @limetech/lime-web-components
123
+
124
+
125
+
126
+
127
+
128
+ # [4.48.0](https://github.com/Lundalogik/lime-web-components/compare/v4.47.4...v4.48.0) (2022-06-21)
129
+
130
+ **Note:** Version bump only for package @limetech/lime-web-components
131
+
132
+
133
+
134
+
135
+
6
136
  ## [4.47.4](https://github.com/Lundalogik/lime-web-components/compare/v4.47.3...v4.47.4) (2022-06-17)
7
137
 
8
138
  **Note:** Version bump only for package @limetech/lime-web-components
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Lime Web Components
2
2
 
3
- This package contains the main library for Lime Web Components. It simply wraps all of its sibling packages up into one comprehensive library for convenience.
3
+ This package contains the main library for Lime Web Components
4
4
 
5
5
  Lime Web Components are web components that are used to customize [Lime CRM](https://lime-crm.se/). Components are built using [StencilJS](https://stenciljs.com/docs/introduction), which uses [TypeScript](https://www.typescriptlang.org), [JSX](https://reactjs.org/docs/introducing-jsx.html) and [reactive](https://en.wikipedia.org/wiki/Reactive_programming) data-binding.
6
6
 
@@ -0,0 +1,8 @@
1
+ import { StateOptions } from '../../core';
2
+ /**
3
+ * Get the name of the application
4
+ *
5
+ * @param {StateOptions} [options] options for the state selector
6
+ * @returns {Function} state decorator
7
+ */
8
+ export declare function SelectApplicationName(options?: StateOptions): PropertyDecorator;
@@ -0,0 +1,18 @@
1
+ import { PlatformServiceName, } from '../../core';
2
+ import { createStateDecorator } from '../../core/decorators/factory';
3
+ /**
4
+ * Get the name of the application
5
+ *
6
+ * @param {StateOptions} [options] options for the state selector
7
+ * @returns {Function} state decorator
8
+ */
9
+ export function SelectApplicationName(options = {}) {
10
+ const config = {
11
+ name: PlatformServiceName.Application,
12
+ };
13
+ options.map = [getApplicationName, ...(options.map || [])];
14
+ return createStateDecorator(options, config);
15
+ }
16
+ function getApplicationName(applicationData) {
17
+ return applicationData.applicationName;
18
+ }
@@ -0,0 +1,3 @@
1
+ export * from './application';
2
+ export * from './user';
3
+ export * from './session';
@@ -0,0 +1,3 @@
1
+ export * from './application';
2
+ export * from './user';
3
+ export * from './session';
@@ -0,0 +1,8 @@
1
+ import { StateOptions } from '../../core';
2
+ /**
3
+ * Get the application session
4
+ *
5
+ * @param {StateOptions} [options] state decorator options
6
+ * @returns {Function} state decorator
7
+ */
8
+ export declare function SelectSession(options?: StateOptions): PropertyDecorator;
@@ -0,0 +1,18 @@
1
+ import { PlatformServiceName, } from '../../core';
2
+ import { createStateDecorator } from '../../core/decorators/factory';
3
+ /**
4
+ * Get the application session
5
+ *
6
+ * @param {StateOptions} [options] state decorator options
7
+ * @returns {Function} state decorator
8
+ */
9
+ export function SelectSession(options = {}) {
10
+ const config = {
11
+ name: PlatformServiceName.Application,
12
+ };
13
+ options.map = [getSession, ...(options.map || [])];
14
+ return createStateDecorator(options, config);
15
+ }
16
+ function getSession(applicationData) {
17
+ return applicationData.session;
18
+ }
@@ -0,0 +1,8 @@
1
+ import { StateOptions } from '../../core';
2
+ /**
3
+ * Get the currently logged in user
4
+ *
5
+ * @param {StateOptions} [options] state decorator options
6
+ * @returns {Function} state decorator
7
+ */
8
+ export declare function SelectCurrentUser(options?: StateOptions): PropertyDecorator;
@@ -0,0 +1,18 @@
1
+ import { PlatformServiceName, } from '../../core';
2
+ import { createStateDecorator } from '../../core/decorators/factory';
3
+ /**
4
+ * Get the currently logged in user
5
+ *
6
+ * @param {StateOptions} [options] state decorator options
7
+ * @returns {Function} state decorator
8
+ */
9
+ export function SelectCurrentUser(options = {}) {
10
+ const config = {
11
+ name: PlatformServiceName.Application,
12
+ };
13
+ options.map = [getCurrentUser, ...(options.map || [])];
14
+ return createStateDecorator(options, config);
15
+ }
16
+ function getCurrentUser(applicationData) {
17
+ return applicationData.currentUser;
18
+ }
@@ -0,0 +1,4 @@
1
+ export * from './types';
2
+ export * from './decorators';
3
+ export * from './session';
4
+ export * from './user';
@@ -0,0 +1,4 @@
1
+ export * from './types';
2
+ export * from './decorators';
3
+ export * from './session';
4
+ export * from './user';
@@ -0,0 +1,67 @@
1
+ export interface Session {
2
+ /**
3
+ * Whether the session is active or not
4
+ */
5
+ active: boolean;
6
+ /**
7
+ * Enabled addons
8
+ */
9
+ addons: Record<string, any>;
10
+ /**
11
+ * Whether the user is an admin or not
12
+ */
13
+ admin: boolean;
14
+ /**
15
+ * Apm config
16
+ */
17
+ apm: Record<string, unknown>;
18
+ /**
19
+ * Name of the application
20
+ */
21
+ application: string;
22
+ /**
23
+ * Name of the application database
24
+ */
25
+ database: string;
26
+ /**
27
+ * Application's display name
28
+ */
29
+ displayName: string;
30
+ expirationTime?: string;
31
+ /**
32
+ * Feature switches
33
+ */
34
+ features: Record<string, boolean>;
35
+ /**
36
+ * Session ID
37
+ */
38
+ id: string;
39
+ /**
40
+ * Current language
41
+ */
42
+ language: string;
43
+ /**
44
+ * Time of login
45
+ */
46
+ loginTime: string;
47
+ /**
48
+ * Time of logout
49
+ */
50
+ logoutTime?: string;
51
+ /**
52
+ * Application service number
53
+ */
54
+ serviceNumber?: number;
55
+ /**
56
+ * Time before the session times out
57
+ */
58
+ sessionTimeout: number;
59
+ /**
60
+ * ID of the user
61
+ */
62
+ userId: number;
63
+ /**
64
+ * Name of the user's workstation
65
+ */
66
+ workstation: string;
67
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,14 @@
1
+ import { StateRepository } from '../core';
2
+ declare const SERVICE_NAME = "state.application";
3
+ declare module '../core/platform' {
4
+ interface PlatformServiceName {
5
+ /**
6
+ * @see {@link StateRepository}
7
+ */
8
+ Application: typeof SERVICE_NAME;
9
+ }
10
+ interface LimeWebComponentPlatform {
11
+ get(name: PlatformServiceName['Application']): StateRepository;
12
+ }
13
+ }
14
+ export {};
@@ -0,0 +1,3 @@
1
+ import { PlatformServiceName } from '../core/platform';
2
+ const SERVICE_NAME = 'state.application';
3
+ PlatformServiceName.Application = SERVICE_NAME;
@@ -0,0 +1,59 @@
1
+ export interface User {
2
+ /**
3
+ * The name of the user
4
+ */
5
+ username: string;
6
+ /**
7
+ * The full name of the user
8
+ */
9
+ fullname: string;
10
+ /**
11
+ * The id of the user
12
+ */
13
+ id: number;
14
+ /**
15
+ * The email of the user
16
+ */
17
+ email: string;
18
+ /**
19
+ * Whether the user is active or not
20
+ */
21
+ active: boolean;
22
+ /**
23
+ * The groups the user belongs to
24
+ */
25
+ groups: UserGroup[];
26
+ /**
27
+ * The default group the user belongs to
28
+ */
29
+ defaultGroup: UserGroup;
30
+ /**
31
+ * The coworker the user is connected to
32
+ */
33
+ coworker: UserCoworker;
34
+ }
35
+ export interface UserGroup {
36
+ /**
37
+ * Name of the group
38
+ */
39
+ name: string;
40
+ /**
41
+ * Id of the group
42
+ */
43
+ id: number;
44
+ /**
45
+ * Group description
46
+ */
47
+ description: string;
48
+ }
49
+ interface UserCoworker {
50
+ /**
51
+ * Id of the coworker `LimeObject`
52
+ */
53
+ id: number;
54
+ /**
55
+ * Name of the `Limetype` used for coworkers
56
+ */
57
+ limetype: string;
58
+ }
59
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,112 @@
1
+ export declare type CommandClass = new (...args: any[]) => any;
2
+ export declare type CommandIdentifier = CommandClass | string;
3
+ /**
4
+ * Service for registering and executing commands
5
+ */
6
+ export interface CommandBus extends CommandHandler {
7
+ /**
8
+ * Register a command to be executed by the given handler
9
+ *
10
+ * @param {CommandClass} commandClass type of command
11
+ * @param {CommandHandler} handler the handler instance used to execute the command
12
+ */
13
+ register(commandClass: CommandClass, handler: CommandHandler): void;
14
+ /**
15
+ * Execute the given command with it's registered command handler
16
+ *
17
+ * @param {Object} command command to execute
18
+ *
19
+ * @returns {any} result from the command handler
20
+ */
21
+ handle(command: object): any;
22
+ /**
23
+ * Check if a command is supported
24
+ *
25
+ * @param {CommandIdentifier} commandId identifier of the command. Can be either the class or the string the class was registered with
26
+ *
27
+ * @returns {boolean} true if the command is supported, false otherwise
28
+ */
29
+ isSupported(commandId: CommandIdentifier): boolean;
30
+ /**
31
+ * Get a handler associated with a command
32
+ *
33
+ * @param {CommandClass} commandClass The command class
34
+ *
35
+ * @returns {CommandHandler} the handler for the command class
36
+ */
37
+ getHandler(commandClass: CommandClass): CommandHandler;
38
+ }
39
+ /**
40
+ * Service for executing commands
41
+ */
42
+ export interface CommandHandler {
43
+ /**
44
+ * Handle the execution of the given command
45
+ *
46
+ * @param {Object} command the command to handle
47
+ *
48
+ * @returns {any} the result of the operation
49
+ */
50
+ handle(command: object): any;
51
+ }
52
+ export declare type CallableCommandMiddleware = (command: object) => any;
53
+ /**
54
+ * Middleware for the command bus
55
+ */
56
+ export interface CommandMiddleware {
57
+ /**
58
+ * Execute the middleware before passing the command further down the chain
59
+ *
60
+ * @param {Object} command the command that is being handled
61
+ * @param {CallableCommandMiddleware} next the next middleware in the chain
62
+ *
63
+ * @returns {any} the result of the operation
64
+ */
65
+ execute(command: object, next: CallableCommandMiddleware): any;
66
+ }
67
+ /**
68
+ * Events dispatched by the commandbus event middleware
69
+ */
70
+ export declare enum CommandEventName {
71
+ /**
72
+ * Dispatched when the command has been received by the commandbus.
73
+ * Calling `preventDefault()` on the event will stop the command from being handled
74
+ *
75
+ * @detail { command }
76
+ */
77
+ Received = "command.received",
78
+ /**
79
+ * Dispatched when the command has been handled by the commandbus
80
+ *
81
+ * @detail { command | result }
82
+ */
83
+ Handled = "command.handled",
84
+ /**
85
+ * Dispatched if an error occurs while handling the command
86
+ *
87
+ * @detail { command | error }
88
+ */
89
+ Failed = "command.failed"
90
+ }
91
+ export interface CommandOptions {
92
+ /**
93
+ * Id of the command
94
+ */
95
+ id: string;
96
+ }
97
+ /**
98
+ * Register a class as a command
99
+ *
100
+ * @param {CommandOptions} options a CommandOptions object containing the id of the command
101
+ *
102
+ * @returns {Function} callback which accepts a `CommandClass` and sets the command id
103
+ */
104
+ export declare function Command(options: CommandOptions): (commandClass: CommandClass) => void;
105
+ /**
106
+ * Get the registered id of the command
107
+ *
108
+ * @param {Object | CommandIdentifier} value either a command or a command identifier
109
+ *
110
+ * @returns {string} id of the command
111
+ */
112
+ export declare function getCommandId(value: object | CommandIdentifier): string;
@@ -0,0 +1,63 @@
1
+ /**
2
+ * Events dispatched by the commandbus event middleware
3
+ */
4
+ // eslint-disable-next-line no-shadow
5
+ export var CommandEventName;
6
+ (function (CommandEventName) {
7
+ /**
8
+ * Dispatched when the command has been received by the commandbus.
9
+ * Calling `preventDefault()` on the event will stop the command from being handled
10
+ *
11
+ * @detail { command }
12
+ */
13
+ CommandEventName["Received"] = "command.received";
14
+ /**
15
+ * Dispatched when the command has been handled by the commandbus
16
+ *
17
+ * @detail { command | result }
18
+ */
19
+ CommandEventName["Handled"] = "command.handled";
20
+ /**
21
+ * Dispatched if an error occurs while handling the command
22
+ *
23
+ * @detail { command | error }
24
+ */
25
+ CommandEventName["Failed"] = "command.failed";
26
+ })(CommandEventName || (CommandEventName = {}));
27
+ /**
28
+ * Register a class as a command
29
+ *
30
+ * @param {CommandOptions} options a CommandOptions object containing the id of the command
31
+ *
32
+ * @returns {Function} callback which accepts a `CommandClass` and sets the command id
33
+ */
34
+ export function Command(options) {
35
+ return (commandClass) => {
36
+ setCommandId(commandClass, options.id);
37
+ };
38
+ }
39
+ function setCommandId(commandClass, id) {
40
+ // eslint-disable-next-line @typescript-eslint/dot-notation
41
+ commandClass['commandId'] = id;
42
+ }
43
+ /**
44
+ * Get the registered id of the command
45
+ *
46
+ * @param {Object | CommandIdentifier} value either a command or a command identifier
47
+ *
48
+ * @returns {string} id of the command
49
+ */
50
+ export function getCommandId(value) {
51
+ if (typeof value === 'string') {
52
+ return value;
53
+ }
54
+ /* eslint-disable @typescript-eslint/dot-notation */
55
+ if (value && value.constructor && value.constructor['commandId']) {
56
+ return value.constructor['commandId'];
57
+ }
58
+ if (value && value['commandId']) {
59
+ return value['commandId'];
60
+ }
61
+ /* eslint-enable @typescript-eslint/dot-notation */
62
+ return null;
63
+ }
@@ -0,0 +1,2 @@
1
+ export * from './commandbus';
2
+ export * from './types';
@@ -0,0 +1,2 @@
1
+ export * from './commandbus';
2
+ export * from './types';
@@ -0,0 +1,14 @@
1
+ import { CommandBus as Service } from './commandbus';
2
+ declare const SERVICE_NAME = "commandBus";
3
+ declare module '../core/platform' {
4
+ interface PlatformServiceName {
5
+ /**
6
+ * @see {@link Service CommandBus}
7
+ */
8
+ CommandBus: typeof SERVICE_NAME;
9
+ }
10
+ interface LimeWebComponentPlatform {
11
+ get(name: PlatformServiceName['CommandBus']): Service;
12
+ }
13
+ }
14
+ export {};
@@ -0,0 +1,3 @@
1
+ import { PlatformServiceName } from '../core/platform';
2
+ const SERVICE_NAME = 'commandBus';
3
+ PlatformServiceName.CommandBus = SERVICE_NAME;
@@ -0,0 +1,14 @@
1
+ import { StateOptions } from '../core';
2
+ /**
3
+ * Config for the {@link SelectConfig} state decorator
4
+ */
5
+ export interface SelectConfigOptions extends StateOptions {
6
+ name?: string;
7
+ }
8
+ /**
9
+ * Gets an object with all configs where key is used as key.
10
+ *
11
+ * @param {SelectConfigOptions} options state decorator options
12
+ * @returns {Function} state decorator
13
+ */
14
+ export declare function SelectConfig(options: SelectConfigOptions): PropertyDecorator;
@@ -0,0 +1,14 @@
1
+ import { PlatformServiceName, } from '../core';
2
+ import { createStateDecorator } from '../core/decorators/factory';
3
+ /**
4
+ * Gets an object with all configs where key is used as key.
5
+ *
6
+ * @param {SelectConfigOptions} options state decorator options
7
+ * @returns {Function} state decorator
8
+ */
9
+ export function SelectConfig(options) {
10
+ const config = {
11
+ name: PlatformServiceName.ConfigRepository,
12
+ };
13
+ return createStateDecorator(options, config);
14
+ }
@@ -0,0 +1,3 @@
1
+ export * from './repository';
2
+ export * from './types';
3
+ export * from './decorator';
@@ -0,0 +1,3 @@
1
+ export * from './repository';
2
+ export * from './types';
3
+ export * from './decorator';