@kalisio/kdk 2.6.2 → 2.6.3

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 (299) hide show
  1. package/client/css/core.variables.scss +72 -0
  2. package/client/i18n/core_en.json +744 -0
  3. package/client/i18n/core_fr.json +744 -0
  4. package/client/i18n/map_en.json +800 -0
  5. package/client/i18n/map_fr.json +800 -0
  6. package/client/kdk.client.css +47 -0
  7. package/client/kdk.client.js +41097 -0
  8. package/client/kdk.client.map.css +47 -0
  9. package/client/kdk.client.map.js +38182 -0
  10. package/client/kdk.client.map.min.css +1 -0
  11. package/client/kdk.client.map.min.js +27032 -0
  12. package/client/kdk.client.min.css +1 -0
  13. package/client/kdk.client.min.js +29074 -0
  14. package/client/schemas/capture.create.json +132 -0
  15. package/client/schemas/catalog.update.json +44 -0
  16. package/client/schemas/messages.update.json +16 -0
  17. package/client/schemas/projects.create.json +52 -0
  18. package/client/schemas/projects.update.json +52 -0
  19. package/client/schemas/settings.update.json +286 -0
  20. package/client/schemas/tags.update.json +35 -0
  21. package/client/schemas/users.update-profile.json +34 -0
  22. package/core/api/authentication.js +13 -1
  23. package/core/api/hooks/hooks.query.js +9 -0
  24. package/core/client/capabilities.js +6 -1
  25. package/core/client/components/KChip.vue +27 -6
  26. package/core/client/components/collection/KCard.vue +2 -2
  27. package/core/client/utils/utils.session.js +5 -1
  28. package/coverage/core/api/application.js.html +392 -398
  29. package/coverage/core/api/authentication.js.html +352 -187
  30. package/coverage/core/api/db.js.html +165 -126
  31. package/coverage/core/api/hooks/hooks.authentication.js.html +22 -196
  32. package/coverage/core/api/hooks/hooks.authorisations.js.html +383 -662
  33. package/coverage/core/api/hooks/hooks.logger.js.html +41 -41
  34. package/coverage/core/api/hooks/hooks.model.js.html +113 -101
  35. package/coverage/core/api/hooks/hooks.push.js.html +112 -97
  36. package/coverage/core/api/hooks/hooks.query.js.html +270 -222
  37. package/coverage/core/api/hooks/hooks.schemas.js.html +123 -123
  38. package/coverage/core/api/hooks/hooks.service.js.html +1 -1
  39. package/coverage/core/api/hooks/hooks.storage.js.html +1 -1
  40. package/coverage/core/api/hooks/{hooks.groups.js.html → hooks.tags.js.html} +100 -76
  41. package/coverage/core/api/hooks/hooks.users.js.html +255 -447
  42. package/coverage/core/api/hooks/index.html +107 -122
  43. package/coverage/core/api/hooks/index.js.html +4 -10
  44. package/coverage/core/api/index.html +46 -61
  45. package/coverage/core/api/index.js.html +9 -9
  46. package/coverage/core/api/marshall.js.html +9 -9
  47. package/coverage/core/api/models/{organisations.model.mongodb.js.html → configurations.model.mongodb.js.html} +10 -7
  48. package/coverage/core/api/models/index.html +35 -50
  49. package/coverage/core/api/models/messages.model.mongodb.js.html +39 -27
  50. package/coverage/core/api/models/tags.model.mongodb.js.html +26 -32
  51. package/coverage/core/api/models/users.model.mongodb.js.html +10 -10
  52. package/coverage/core/api/services/account/account.hooks.js.html +5 -5
  53. package/coverage/core/api/services/account/account.service.js.html +127 -127
  54. package/coverage/core/api/services/account/index.html +22 -22
  55. package/coverage/core/api/services/authorisations/authorisations.hooks.js.html +1 -1
  56. package/coverage/core/api/services/authorisations/authorisations.service.js.html +213 -222
  57. package/coverage/core/api/services/authorisations/index.html +21 -21
  58. package/coverage/core/api/services/{groups/groups.hooks.js.html → configurations/configurations.hooks.js.html} +16 -10
  59. package/coverage/{lcov-report/core/api/services/groups → core/api/services/configurations}/index.html +8 -8
  60. package/coverage/core/api/services/databases/databases.hooks.js.html +1 -1
  61. package/coverage/core/api/services/databases/databases.service.js.html +1 -1
  62. package/coverage/core/api/services/databases/index.html +1 -1
  63. package/coverage/core/api/services/import-export/import-export.hooks.js.html +76 -76
  64. package/coverage/core/api/services/import-export/import-export.service.js.html +32 -32
  65. package/coverage/core/api/services/import-export/index.html +32 -32
  66. package/coverage/core/api/services/index.html +21 -21
  67. package/coverage/core/api/services/index.js.html +313 -142
  68. package/coverage/core/api/services/mailer/index.html +32 -32
  69. package/coverage/core/api/services/mailer/mailer.hooks.js.html +80 -80
  70. package/coverage/core/api/services/mailer/mailer.service.js.html +32 -32
  71. package/coverage/core/api/services/messages/index.html +21 -21
  72. package/coverage/core/api/services/messages/messages.hooks.js.html +112 -76
  73. package/coverage/core/api/services/push/index.html +32 -32
  74. package/coverage/core/api/services/push/push.hooks.js.html +80 -80
  75. package/coverage/core/api/services/push/push.service.js.html +34 -34
  76. package/coverage/core/api/services/storage/index.html +29 -29
  77. package/coverage/core/api/services/storage/storage.hooks.js.html +80 -80
  78. package/coverage/core/api/services/storage/storage.service.js.html +29 -29
  79. package/coverage/core/api/services/tags/index.html +21 -21
  80. package/coverage/core/api/services/tags/tags.hooks.js.html +119 -71
  81. package/coverage/core/api/services/users/index.html +27 -12
  82. package/coverage/core/api/services/users/users.hooks.js.html +14 -11
  83. package/coverage/core/api/services/users/users.service.js.html +100 -0
  84. package/coverage/core/common/errors.js.html +1 -1
  85. package/coverage/core/common/index.html +42 -27
  86. package/coverage/core/common/index.js.html +1 -1
  87. package/coverage/core/common/permissions.js.html +166 -472
  88. package/coverage/core/common/schema.js.html +4 -4
  89. package/coverage/core/common/utils.js.html +31 -25
  90. package/coverage/core/common/utils.offline.js.html +199 -0
  91. package/coverage/index.html +192 -192
  92. package/coverage/lcov-report/core/api/application.js.html +392 -398
  93. package/coverage/lcov-report/core/api/authentication.js.html +352 -187
  94. package/coverage/lcov-report/core/api/db.js.html +165 -126
  95. package/coverage/lcov-report/core/api/hooks/hooks.authentication.js.html +22 -196
  96. package/coverage/lcov-report/core/api/hooks/hooks.authorisations.js.html +383 -662
  97. package/coverage/lcov-report/core/api/hooks/hooks.logger.js.html +41 -41
  98. package/coverage/lcov-report/core/api/hooks/hooks.model.js.html +113 -101
  99. package/coverage/lcov-report/core/api/hooks/hooks.push.js.html +112 -97
  100. package/coverage/lcov-report/core/api/hooks/hooks.query.js.html +270 -222
  101. package/coverage/lcov-report/core/api/hooks/hooks.schemas.js.html +123 -123
  102. package/coverage/lcov-report/core/api/hooks/hooks.service.js.html +1 -1
  103. package/coverage/lcov-report/core/api/hooks/hooks.storage.js.html +1 -1
  104. package/coverage/lcov-report/core/api/hooks/{hooks.groups.js.html → hooks.tags.js.html} +100 -76
  105. package/coverage/lcov-report/core/api/hooks/hooks.users.js.html +255 -447
  106. package/coverage/lcov-report/core/api/hooks/index.html +107 -122
  107. package/coverage/lcov-report/core/api/hooks/index.js.html +4 -10
  108. package/coverage/lcov-report/core/api/index.html +46 -61
  109. package/coverage/lcov-report/core/api/index.js.html +9 -9
  110. package/coverage/lcov-report/core/api/marshall.js.html +9 -9
  111. package/coverage/lcov-report/core/api/models/{organisations.model.mongodb.js.html → configurations.model.mongodb.js.html} +10 -7
  112. package/coverage/lcov-report/core/api/models/index.html +35 -50
  113. package/coverage/lcov-report/core/api/models/messages.model.mongodb.js.html +39 -27
  114. package/coverage/lcov-report/core/api/models/tags.model.mongodb.js.html +26 -32
  115. package/coverage/lcov-report/core/api/models/users.model.mongodb.js.html +10 -10
  116. package/coverage/lcov-report/core/api/services/account/account.hooks.js.html +5 -5
  117. package/coverage/lcov-report/core/api/services/account/account.service.js.html +127 -127
  118. package/coverage/lcov-report/core/api/services/account/index.html +22 -22
  119. package/coverage/lcov-report/core/api/services/authorisations/authorisations.hooks.js.html +1 -1
  120. package/coverage/lcov-report/core/api/services/authorisations/authorisations.service.js.html +213 -222
  121. package/coverage/lcov-report/core/api/services/authorisations/index.html +21 -21
  122. package/coverage/lcov-report/core/api/services/{groups/groups.hooks.js.html → configurations/configurations.hooks.js.html} +16 -10
  123. package/coverage/{core/api/services/groups → lcov-report/core/api/services/configurations}/index.html +8 -8
  124. package/coverage/lcov-report/core/api/services/databases/databases.hooks.js.html +1 -1
  125. package/coverage/lcov-report/core/api/services/databases/databases.service.js.html +1 -1
  126. package/coverage/lcov-report/core/api/services/databases/index.html +1 -1
  127. package/coverage/lcov-report/core/api/services/import-export/import-export.hooks.js.html +76 -76
  128. package/coverage/lcov-report/core/api/services/import-export/import-export.service.js.html +32 -32
  129. package/coverage/lcov-report/core/api/services/import-export/index.html +32 -32
  130. package/coverage/lcov-report/core/api/services/index.html +21 -21
  131. package/coverage/lcov-report/core/api/services/index.js.html +313 -142
  132. package/coverage/lcov-report/core/api/services/mailer/index.html +32 -32
  133. package/coverage/lcov-report/core/api/services/mailer/mailer.hooks.js.html +80 -80
  134. package/coverage/lcov-report/core/api/services/mailer/mailer.service.js.html +32 -32
  135. package/coverage/lcov-report/core/api/services/messages/index.html +21 -21
  136. package/coverage/lcov-report/core/api/services/messages/messages.hooks.js.html +112 -76
  137. package/coverage/lcov-report/core/api/services/push/index.html +32 -32
  138. package/coverage/lcov-report/core/api/services/push/push.hooks.js.html +80 -80
  139. package/coverage/lcov-report/core/api/services/push/push.service.js.html +34 -34
  140. package/coverage/lcov-report/core/api/services/storage/index.html +29 -29
  141. package/coverage/lcov-report/core/api/services/storage/storage.hooks.js.html +80 -80
  142. package/coverage/lcov-report/core/api/services/storage/storage.service.js.html +29 -29
  143. package/coverage/lcov-report/core/api/services/tags/index.html +21 -21
  144. package/coverage/lcov-report/core/api/services/tags/tags.hooks.js.html +119 -71
  145. package/coverage/lcov-report/core/api/services/users/index.html +27 -12
  146. package/coverage/lcov-report/core/api/services/users/users.hooks.js.html +14 -11
  147. package/coverage/lcov-report/core/api/services/users/users.service.js.html +100 -0
  148. package/coverage/lcov-report/core/common/errors.js.html +1 -1
  149. package/coverage/lcov-report/core/common/index.html +42 -27
  150. package/coverage/lcov-report/core/common/index.js.html +1 -1
  151. package/coverage/lcov-report/core/common/permissions.js.html +166 -472
  152. package/coverage/lcov-report/core/common/schema.js.html +4 -4
  153. package/coverage/lcov-report/core/common/utils.js.html +31 -25
  154. package/coverage/lcov-report/core/common/utils.offline.js.html +199 -0
  155. package/coverage/lcov-report/index.html +192 -192
  156. package/coverage/lcov-report/map/api/hooks/hooks.catalog.js.html +169 -31
  157. package/coverage/lcov-report/map/api/hooks/hooks.features.js.html +1 -1
  158. package/coverage/lcov-report/map/api/hooks/hooks.query.js.html +32 -32
  159. package/coverage/lcov-report/map/api/hooks/index.html +5 -5
  160. package/coverage/lcov-report/map/api/hooks/index.js.html +1 -1
  161. package/coverage/lcov-report/map/api/index.html +1 -1
  162. package/coverage/lcov-report/map/api/index.js.html +1 -1
  163. package/coverage/lcov-report/map/api/marshall.js.html +1 -1
  164. package/coverage/lcov-report/map/api/models/alerts.model.mongodb.js.html +1 -1
  165. package/coverage/lcov-report/map/api/models/catalog.model.mongodb.js.html +82 -7
  166. package/coverage/lcov-report/map/api/models/features.model.mongodb.js.html +1 -1
  167. package/coverage/lcov-report/map/api/models/index.html +22 -7
  168. package/coverage/lcov-report/map/api/models/projects.model.mongodb.js.html +1 -1
  169. package/coverage/lcov-report/{core/api/models/groups.model.mongodb.js.html → map/api/models/styles.model.mongodb.js.html} +10 -7
  170. package/coverage/lcov-report/map/api/services/alerts/alerts.hooks.js.html +1 -1
  171. package/coverage/lcov-report/map/api/services/alerts/alerts.service.js.html +1 -1
  172. package/coverage/lcov-report/map/api/services/alerts/index.html +1 -1
  173. package/coverage/lcov-report/map/api/services/catalog/catalog.hooks.js.html +39 -12
  174. package/coverage/lcov-report/map/api/services/catalog/index.html +5 -5
  175. package/coverage/lcov-report/map/api/services/daptiles/daptiles.service.js.html +1 -1
  176. package/coverage/lcov-report/map/api/services/daptiles/index.html +1 -1
  177. package/coverage/lcov-report/map/api/services/features/features.hooks.js.html +86 -11
  178. package/coverage/lcov-report/map/api/services/features/features.service.js.html +307 -4
  179. package/coverage/lcov-report/map/api/services/features/index.html +7 -7
  180. package/coverage/lcov-report/map/api/services/index.html +5 -5
  181. package/coverage/lcov-report/map/api/services/index.js.html +326 -50
  182. package/coverage/lcov-report/map/api/services/projects/index.html +1 -1
  183. package/coverage/lcov-report/map/api/services/projects/projects.hooks.js.html +1 -1
  184. package/coverage/{core/api/services/organisations → lcov-report/map/api/services/styles}/index.html +10 -25
  185. package/coverage/{core/api/services/organisations/organisations.hooks.js.html → lcov-report/map/api/services/styles/styles.hooks.js.html} +45 -12
  186. package/coverage/lcov-report/map/common/dynamic-grid-source.js.html +1 -1
  187. package/coverage/lcov-report/map/common/errors.js.html +1 -1
  188. package/coverage/lcov-report/map/common/geotiff-grid-source.js.html +7 -10
  189. package/coverage/lcov-report/map/common/grid.js.html +1 -1
  190. package/coverage/lcov-report/map/common/index.html +19 -19
  191. package/coverage/lcov-report/map/common/index.js.html +1 -1
  192. package/coverage/lcov-report/map/common/meteo-model-grid-source.js.html +1 -1
  193. package/coverage/lcov-report/map/common/moment-utils.js.html +1 -1
  194. package/coverage/lcov-report/map/common/opendap-grid-source.js.html +1 -1
  195. package/coverage/lcov-report/map/common/opendap-utils.js.html +4 -7
  196. package/coverage/lcov-report/map/common/permissions.js.html +10 -4
  197. package/coverage/lcov-report/map/common/time-based-grid-source.js.html +1 -1
  198. package/coverage/lcov-report/map/common/tms-utils.js.html +9 -12
  199. package/coverage/lcov-report/map/common/wcs-grid-source.js.html +3 -3
  200. package/coverage/lcov-report/map/common/wcs-utils.js.html +12 -15
  201. package/coverage/lcov-report/map/common/weacast-grid-source.js.html +2 -2
  202. package/coverage/lcov-report/map/common/wfs-utils.js.html +14 -17
  203. package/coverage/lcov-report/map/common/wms-utils.js.html +30 -12
  204. package/coverage/lcov-report/map/common/wmts-utils.js.html +10 -13
  205. package/coverage/lcov.info +4172 -3909
  206. package/coverage/map/api/hooks/hooks.catalog.js.html +169 -31
  207. package/coverage/map/api/hooks/hooks.features.js.html +1 -1
  208. package/coverage/map/api/hooks/hooks.query.js.html +32 -32
  209. package/coverage/map/api/hooks/index.html +5 -5
  210. package/coverage/map/api/hooks/index.js.html +1 -1
  211. package/coverage/map/api/index.html +1 -1
  212. package/coverage/map/api/index.js.html +1 -1
  213. package/coverage/map/api/marshall.js.html +1 -1
  214. package/coverage/map/api/models/alerts.model.mongodb.js.html +1 -1
  215. package/coverage/map/api/models/catalog.model.mongodb.js.html +82 -7
  216. package/coverage/map/api/models/features.model.mongodb.js.html +1 -1
  217. package/coverage/map/api/models/index.html +22 -7
  218. package/coverage/map/api/models/projects.model.mongodb.js.html +1 -1
  219. package/coverage/{core/api/models/groups.model.mongodb.js.html → map/api/models/styles.model.mongodb.js.html} +10 -7
  220. package/coverage/map/api/services/alerts/alerts.hooks.js.html +1 -1
  221. package/coverage/map/api/services/alerts/alerts.service.js.html +1 -1
  222. package/coverage/map/api/services/alerts/index.html +1 -1
  223. package/coverage/map/api/services/catalog/catalog.hooks.js.html +39 -12
  224. package/coverage/map/api/services/catalog/index.html +5 -5
  225. package/coverage/map/api/services/daptiles/daptiles.service.js.html +1 -1
  226. package/coverage/map/api/services/daptiles/index.html +1 -1
  227. package/coverage/map/api/services/features/features.hooks.js.html +86 -11
  228. package/coverage/map/api/services/features/features.service.js.html +307 -4
  229. package/coverage/map/api/services/features/index.html +7 -7
  230. package/coverage/map/api/services/index.html +5 -5
  231. package/coverage/map/api/services/index.js.html +326 -50
  232. package/coverage/map/api/services/projects/index.html +1 -1
  233. package/coverage/map/api/services/projects/projects.hooks.js.html +1 -1
  234. package/coverage/{lcov-report/core/api/services/organisations → map/api/services/styles}/index.html +10 -25
  235. package/coverage/{lcov-report/core/api/services/organisations/organisations.hooks.js.html → map/api/services/styles/styles.hooks.js.html} +45 -12
  236. package/coverage/map/common/dynamic-grid-source.js.html +1 -1
  237. package/coverage/map/common/errors.js.html +1 -1
  238. package/coverage/map/common/geotiff-grid-source.js.html +7 -10
  239. package/coverage/map/common/grid.js.html +1 -1
  240. package/coverage/map/common/index.html +19 -19
  241. package/coverage/map/common/index.js.html +1 -1
  242. package/coverage/map/common/meteo-model-grid-source.js.html +1 -1
  243. package/coverage/map/common/moment-utils.js.html +1 -1
  244. package/coverage/map/common/opendap-grid-source.js.html +1 -1
  245. package/coverage/map/common/opendap-utils.js.html +4 -7
  246. package/coverage/map/common/permissions.js.html +10 -4
  247. package/coverage/map/common/time-based-grid-source.js.html +1 -1
  248. package/coverage/map/common/tms-utils.js.html +9 -12
  249. package/coverage/map/common/wcs-grid-source.js.html +3 -3
  250. package/coverage/map/common/wcs-utils.js.html +12 -15
  251. package/coverage/map/common/weacast-grid-source.js.html +2 -2
  252. package/coverage/map/common/wfs-utils.js.html +14 -17
  253. package/coverage/map/common/wms-utils.js.html +30 -12
  254. package/coverage/map/common/wmts-utils.js.html +10 -13
  255. package/coverage/tmp/coverage-222524-1765963609350-0.json +1 -0
  256. package/coverage/tmp/coverage-222536-1765963609335-0.json +1 -0
  257. package/coverage/tmp/coverage-222547-1765963609324-0.json +1 -0
  258. package/coverage/tmp/coverage-222559-1765963609309-0.json +1 -0
  259. package/coverage/tmp/coverage-222566-1765963609278-0.json +1 -0
  260. package/map/api/hooks/hooks.query.js +60 -0
  261. package/map/client/components/stickies/KZoomControl.vue +17 -9
  262. package/map/client/i18n/map_en.json +6 -0
  263. package/map/client/i18n/map_fr.json +6 -0
  264. package/map/client/mixins/map/mixin.base-map.js +19 -1
  265. package/package.json +2 -2
  266. package/scripts/kash/CHANGELOG.md +4 -0
  267. package/scripts/kash/LICENSE +21 -0
  268. package/scripts/kash/README.md +9 -0
  269. package/scripts/kash/kash.sh +40 -45
  270. package/scripts/kash/scripts/run_tests.sh +4 -1
  271. package/test/api/core/config/default.cjs +1 -0
  272. package/test/api/core/test-log-2025-07-31.log +15 -0
  273. package/test/api/core/{test-log-2024-04-23.log → test-log-2025-10-03.log} +4 -9
  274. package/test/api/core/test-log-2025-11-12.log +117 -0
  275. package/test/api/core/test-log-2025-11-27.log +0 -0
  276. package/test/api/core/test-log-2025-11-28.log +17 -0
  277. package/test/api/core/test-log-2025-12-09.log +148 -0
  278. package/test/api/core/test-log-2025-12-17.log +58 -0
  279. package/test/api/core/test-log-2026-01-29.log +17 -0
  280. package/test/api/map/index.test.js +21 -0
  281. package/test/api/map/test-log-2025-07-23.log +1 -0
  282. package/test/api/map/test-log-2025-11-28.log +33 -0
  283. package/test/api/map/test-log-2025-12-10.log +2 -0
  284. package/test/api/map/test-log-2026-01-06.log +26 -0
  285. package/.vscode/settings.json +0 -5
  286. package/coverage/core/api/hooks/hooks.organisations.js.html +0 -541
  287. package/coverage/core/api/services/organisations/organisations.service.js.html +0 -343
  288. package/coverage/core/api/utils.js.html +0 -118
  289. package/coverage/lcov-report/core/api/hooks/hooks.organisations.js.html +0 -541
  290. package/coverage/lcov-report/core/api/services/organisations/organisations.service.js.html +0 -343
  291. package/coverage/lcov-report/core/api/utils.js.html +0 -118
  292. package/coverage/tmp/coverage-151166-1723543324307-0.json +0 -1
  293. package/coverage/tmp/coverage-151178-1723543324283-0.json +0 -1
  294. package/coverage/tmp/coverage-151189-1723543324271-0.json +0 -1
  295. package/coverage/tmp/coverage-151201-1723543324248-0.json +0 -1
  296. package/coverage/tmp/coverage-151208-1723543324227-0.json +0 -1
  297. package/test/api/core/test-log-2024-04-22.log +0 -84
  298. package/test/api/core/test-log-2024-08-13.log +0 -3
  299. /package/test/api/{map/test-log-2025-03-08.log → core/test-log-2025-11-10.log} +0 -0
@@ -1,84 +0,0 @@
1
- {"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:513:28)\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:628:26)\n at Socket.emit (node:events:513:28)\n at emitErrorNT (node:internal/streams/destroy:157:8)\n at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)"}
2
- {"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:513:28)\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:628:26)\n at Socket.emit (node:events:513:28)\n at emitErrorNT (node:internal/streams/destroy:157:8)\n at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)"}
3
- {"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:513:28)\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:628:26)\n at Socket.emit (node:events:513:28)\n at emitErrorNT (node:internal/streams/destroy:157:8)\n at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)"}
4
- {"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:513:28)\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:628:26)\n at Socket.emit (node:events:513:28)\n at emitErrorNT (node:internal/streams/destroy:157:8)\n at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)"}
5
- {"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:513:28)\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:628:26)\n at Socket.emit (node:events:513:28)\n at emitErrorNT (node:internal/streams/destroy:157:8)\n at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)"}
6
- {"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:513:28)\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:628:26)\n at Socket.emit (node:events:513:28)\n at emitErrorNT (node:internal/streams/destroy:157:8)\n at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)"}
7
- {"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:513:28)\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:628:26)\n at Socket.emit (node:events:513:28)\n at emitErrorNT (node:internal/streams/destroy:157:8)\n at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)"}
8
- {"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:513:28)\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:628:26)\n at Socket.emit (node:events:513:28)\n at emitErrorNT (node:internal/streams/destroy:157:8)\n at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)"}
9
- {"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:513:28)\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:628:26)\n at Socket.emit (node:events:513:28)\n at emitErrorNT (node:internal/streams/destroy:157:8)\n at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)"}
10
- {"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:513:28)\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:628:26)\n at Socket.emit (node:events:513:28)\n at emitErrorNT (node:internal/streams/destroy:157:8)\n at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)"}
11
- {"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:513:28)\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:628:26)\n at Socket.emit (node:events:513:28)\n at emitErrorNT (node:internal/streams/destroy:157:8)\n at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)"}
12
- {"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:513:28)\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:628:26)\n at Socket.emit (node:events:513:28)\n at emitErrorNT (node:internal/streams/destroy:157:8)\n at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)"}
13
- {"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:513:28)\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:628:26)\n at Socket.emit (node:events:513:28)\n at emitErrorNT (node:internal/streams/destroy:157:8)\n at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)"}
14
- {"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1278:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:513:28)\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/kikish/Projets/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:628:26)\n at Socket.emit (node:events:513:28)\n at emitErrorNT (node:internal/streams/destroy:157:8)\n at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)"}
15
- {"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
16
- {"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
17
- {"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
18
- {"level":"error","message":"error: api/tags - Method: create: You are not allowed to access service tags"}
19
- {"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
20
- {"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
21
- {"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
22
- {"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
23
- {"level":"info","message":"This is a log test"}
24
- {"level":"error","message":"error: api/users - Method: patch: Exec error resulting in state FAILURE :: caused by :: collection dropped. UUID 488d4520-b7cf-4a5b-bc49-59de1d5a072d"}
25
- {"level":"error","message":"error: api/service - Method: create: validation failed"}
26
- {"level":"error","message":"error: api/service - Method: create: validation failed"}
27
- {"level":"error","message":"error: api/service - Method: create: validation failed"}
28
- {"level":"error","message":"error: api/service - Method: create: validation failed"}
29
- {"level":"error","message":"error: api/storage - Method: get: The specified key does not exist."}
30
- {"level":"error","message":"error: api/storage - Method: get: The specified key does not exist."}
31
- {"level":"error","message":"error: api/organisations - Method: create: You are not allowed to access service organisations"}
32
- {"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to perform create operation on authorisations"}
33
- {"level":"error","message":"error: api/6626c4405afcf756ac61b23a/storage - Method: get: You are not allowed to access service 6626c4405afcf756ac61b23a/storage"}
34
- {"level":"error","message":"error: api/6626c4405afcf756ac61b23a/groups - Method: create: You are not allowed to perform create operation on groups"}
35
- {"level":"error","message":"error: api/6626c4405afcf756ac61b23a/groups - Method: patch: You are not allowed to perform patch operation on groups"}
36
- {"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to perform create operation on authorisations"}
37
- {"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to perform create operation on authorisations"}
38
- {"level":"error","message":"error: api/users - Method: remove: You are not allowed to delete the user undefined"}
39
- {"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
40
- {"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
41
- {"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
42
- {"level":"error","message":"error: api/tags - Method: create: You are not allowed to access service tags"}
43
- {"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
44
- {"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
45
- {"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
46
- {"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
47
- {"level":"info","message":"This is a log test"}
48
- {"level":"error","message":"error: api/service - Method: create: validation failed"}
49
- {"level":"error","message":"error: api/service - Method: create: validation failed"}
50
- {"level":"error","message":"error: api/service - Method: create: validation failed"}
51
- {"level":"error","message":"error: api/service - Method: create: validation failed"}
52
- {"level":"error","message":"error: api/storage - Method: get: The specified key does not exist."}
53
- {"level":"error","message":"error: api/storage - Method: get: The specified key does not exist."}
54
- {"level":"error","message":"error: api/organisations - Method: create: You are not allowed to access service organisations"}
55
- {"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to perform create operation on authorisations"}
56
- {"level":"error","message":"error: api/6626c47bac14a25930d5e077/storage - Method: get: You are not allowed to access service 6626c47bac14a25930d5e077/storage"}
57
- {"level":"error","message":"error: api/6626c47bac14a25930d5e077/groups - Method: create: You are not allowed to perform create operation on groups"}
58
- {"level":"error","message":"error: api/6626c47bac14a25930d5e077/groups - Method: patch: You are not allowed to perform patch operation on groups"}
59
- {"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to perform create operation on authorisations"}
60
- {"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to perform create operation on authorisations"}
61
- {"level":"error","message":"error: api/users - Method: remove: You are not allowed to delete the user undefined"}
62
- {"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
63
- {"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
64
- {"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
65
- {"level":"error","message":"error: api/tags - Method: create: You are not allowed to access service tags"}
66
- {"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
67
- {"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
68
- {"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
69
- {"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
70
- {"level":"info","message":"This is a log test"}
71
- {"level":"error","message":"error: api/service - Method: create: validation failed"}
72
- {"level":"error","message":"error: api/service - Method: create: validation failed"}
73
- {"level":"error","message":"error: api/service - Method: create: validation failed"}
74
- {"level":"error","message":"error: api/service - Method: create: validation failed"}
75
- {"level":"error","message":"error: api/storage - Method: get: The specified key does not exist."}
76
- {"level":"error","message":"error: api/storage - Method: get: The specified key does not exist."}
77
- {"level":"error","message":"error: api/organisations - Method: create: You are not allowed to access service organisations"}
78
- {"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to perform create operation on authorisations"}
79
- {"level":"error","message":"error: api/6626d569e56ed6b3c9399e6b/storage - Method: get: You are not allowed to access service 6626d569e56ed6b3c9399e6b/storage"}
80
- {"level":"error","message":"error: api/6626d569e56ed6b3c9399e6b/groups - Method: create: You are not allowed to perform create operation on groups"}
81
- {"level":"error","message":"error: api/6626d569e56ed6b3c9399e6b/groups - Method: patch: You are not allowed to perform patch operation on groups"}
82
- {"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to perform create operation on authorisations"}
83
- {"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to perform create operation on authorisations"}
84
- {"level":"error","message":"error: api/users - Method: remove: You are not allowed to delete the user undefined"}
@@ -1,3 +0,0 @@
1
- {"level":"info","message":"This is a log test"}
2
- {"level":"info","message":"This is a log test"}
3
- {"level":"info","message":"This is a log test"}