@kalisio/kdk 2.3.2 → 2.4.1
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.
- package/.eslintignore +2 -1
- package/.github/workflows/main.yaml +3 -3
- package/README.md +1 -0
- package/core/api/db.js +6 -1
- package/core/api/hooks/hooks.model.js +1 -1
- package/core/api/hooks/hooks.schemas.js +0 -2
- package/core/api/models/messages.model.mongodb.js +13 -0
- package/core/api/services/authorisations/authorisations.service.js +13 -4
- package/core/api/services/index.js +19 -0
- package/core/api/services/messages/messages.hooks.js +38 -0
- package/core/client/api.js +7 -32
- package/core/client/capabilities.js +2 -2
- package/core/client/components/KActivity.vue +29 -6
- package/core/client/components/KContent.vue +2 -2
- package/core/client/components/KDialog.vue +4 -7
- package/core/client/components/KStamp.vue +3 -9
- package/core/client/components/KStore.vue +2 -4
- package/core/client/components/KTab.vue +95 -0
- package/core/client/components/action/KAction.vue +15 -2
- package/core/client/components/action/KBugReportAction.vue +4 -2
- package/core/client/components/action/KToggleFullscreenAction.vue +25 -0
- package/core/client/components/app/KSettings.vue +17 -13
- package/core/client/components/chart/KDataTable.vue +6 -9
- package/core/client/components/chart/KTimeSeriesChart.vue +62 -49
- package/core/client/components/collection/KBoard.vue +22 -33
- package/core/client/components/collection/KCard.vue +71 -56
- package/core/client/components/collection/KCardSection.vue +20 -10
- package/core/client/components/collection/KDescriptionCardSection.vue +47 -0
- package/core/client/components/collection/KGrid.vue +234 -54
- package/core/client/components/collection/KScrollDown.vue +97 -0
- package/core/client/components/collection/KScrollToTop.vue +93 -0
- package/core/client/components/collection/KTable.vue +87 -33
- package/core/client/components/collection/KTimeLine.vue +406 -0
- package/core/client/components/collection/index.js +1 -5
- package/core/client/components/document/KDocument.vue +20 -55
- package/core/client/components/document/KHtml.vue +17 -7
- package/core/client/components/document/KImage.vue +78 -0
- package/core/client/components/document/KMarkdown.vue +12 -16
- package/core/client/components/document/KPdf.vue +69 -0
- package/core/client/components/form/KFileField.vue +2 -2
- package/core/client/components/form/KSelectField.vue +2 -1
- package/core/client/components/form/KUnitField.vue +3 -1
- package/core/client/components/layout/KFab.vue +9 -10
- package/core/client/components/layout/KLayout.vue +104 -6
- package/core/client/components/layout/KOpener.vue +14 -19
- package/core/client/components/layout/KPage.vue +195 -105
- package/core/client/components/layout/KWindow.vue +54 -32
- package/core/client/components/layout/index.js +0 -2
- package/core/client/components/media/KRibbon.vue +95 -0
- package/core/client/components/menu/KMenu.vue +4 -4
- package/core/client/components/team/KGroupsActivity.vue +25 -27
- package/core/client/components/team/KMembersActivity.vue +21 -23
- package/core/client/components/team/KOrganisationsActivity.vue +20 -22
- package/core/client/components/team/KTagsActivity.vue +21 -23
- package/core/client/components/time/KAbsoluteTimeRange.vue +70 -170
- package/core/client/components/time/KDate.vue +4 -1
- package/core/client/components/time/KDateTimeRange.vue +2 -2
- package/core/client/components/time/KTime.vue +3 -1
- package/core/client/composables/activity.js +14 -12
- package/core/client/composables/collection.js +3 -1
- package/core/client/composables/counter.js +51 -0
- package/core/client/composables/index.js +3 -0
- package/core/client/composables/layout.js +13 -2
- package/core/client/composables/messages.js +15 -0
- package/core/client/composables/pwa.js +1 -1
- package/core/client/composables/schema.js +6 -6
- package/core/client/composables/screen.js +23 -0
- package/core/client/directives/index.js +1 -0
- package/core/client/directives/v-hover.js +23 -0
- package/core/client/document.js +61 -0
- package/core/client/exporter.js +1 -1
- package/core/client/filter.js +0 -1
- package/core/client/guards.js +1 -1
- package/core/client/i18n/core_en.json +14 -8
- package/core/client/i18n/core_fr.json +15 -9
- package/core/client/index.js +9 -3
- package/core/client/layout.js +129 -29
- package/core/client/local-storage.js +1 -1
- package/core/client/mixins/index.js +0 -1
- package/core/client/mixins/mixin.base-activity.js +23 -13
- package/core/client/mixins/mixin.base-item.js +6 -3
- package/core/client/services/index.js +4 -1
- package/core/client/services/local-settings.service.js +4 -0
- package/core/client/storage.js +1 -1
- package/core/client/store.js +1 -1
- package/core/client/template-context.js +17 -0
- package/core/client/time.js +1 -1
- package/core/client/units.js +49 -27
- package/core/client/utils/index.js +3 -2
- package/core/client/utils/utils.actions.js +4 -0
- package/core/client/utils/utils.colors.js +155 -2
- package/core/client/utils/utils.items.js +26 -0
- package/core/client/utils/utils.math.js +3 -0
- package/core/client/utils/utils.platform.js +3 -1
- package/core/client/utils/utils.screen.js +82 -0
- package/core/client/utils/utils.time.js +0 -1
- package/core/common/schemas/settings.update.json +12 -0
- package/coverage/base.css +224 -0
- package/coverage/block-navigation.js +87 -0
- package/coverage/core/api/application.js.html +1870 -0
- package/coverage/core/api/authentication.js.html +742 -0
- package/coverage/core/api/db.js.html +793 -0
- package/coverage/core/api/hooks/hooks.authentication.js.html +313 -0
- package/coverage/core/api/hooks/hooks.authorisations.js.html +1243 -0
- package/coverage/core/api/hooks/hooks.groups.js.html +229 -0
- package/coverage/core/api/hooks/hooks.logger.js.html +163 -0
- package/coverage/core/api/hooks/hooks.model.js.html +955 -0
- package/coverage/core/api/hooks/hooks.organisations.js.html +541 -0
- package/coverage/core/api/hooks/hooks.push.js.html +253 -0
- package/coverage/core/api/hooks/hooks.query.js.html +862 -0
- package/coverage/core/api/hooks/hooks.schemas.js.html +298 -0
- package/coverage/core/api/hooks/hooks.service.js.html +319 -0
- package/coverage/core/api/hooks/hooks.storage.js.html +193 -0
- package/coverage/core/api/hooks/hooks.users.js.html +868 -0
- package/coverage/core/api/hooks/index.html +296 -0
- package/coverage/core/api/hooks/index.js.html +121 -0
- package/coverage/core/api/index.html +191 -0
- package/coverage/core/api/index.js.html +148 -0
- package/coverage/core/api/marshall.js.html +448 -0
- package/coverage/core/api/models/groups.model.mongodb.js.html +109 -0
- package/coverage/core/api/models/index.html +176 -0
- package/coverage/core/api/models/messages.model.mongodb.js.html +121 -0
- package/coverage/core/api/models/organisations.model.mongodb.js.html +94 -0
- package/coverage/core/api/models/tags.model.mongodb.js.html +115 -0
- package/coverage/core/api/models/users.model.mongodb.js.html +115 -0
- package/coverage/core/api/services/account/account.hooks.js.html +208 -0
- package/coverage/core/api/services/account/account.service.js.html +436 -0
- package/coverage/core/api/services/account/index.html +131 -0
- package/coverage/core/api/services/authorisations/authorisations.hooks.js.html +184 -0
- package/coverage/core/api/services/authorisations/authorisations.service.js.html +529 -0
- package/coverage/core/api/services/authorisations/index.html +131 -0
- package/coverage/core/api/services/databases/databases.hooks.js.html +193 -0
- package/coverage/core/api/services/databases/databases.service.js.html +100 -0
- package/coverage/core/api/services/databases/index.html +131 -0
- package/coverage/core/api/services/groups/groups.hooks.js.html +178 -0
- package/coverage/core/api/services/groups/index.html +116 -0
- package/coverage/core/api/services/import-export/import-export.hooks.js.html +184 -0
- package/coverage/core/api/services/import-export/import-export.service.js.html +118 -0
- package/coverage/core/api/services/import-export/index.html +131 -0
- package/coverage/core/api/services/index.html +116 -0
- package/coverage/core/api/services/index.js.html +556 -0
- package/coverage/core/api/services/mailer/index.html +131 -0
- package/coverage/core/api/services/mailer/mailer.hooks.js.html +190 -0
- package/coverage/core/api/services/mailer/mailer.service.js.html +118 -0
- package/coverage/core/api/services/messages/index.html +116 -0
- package/coverage/core/api/services/messages/messages.hooks.js.html +199 -0
- package/coverage/core/api/services/organisations/index.html +131 -0
- package/coverage/core/api/services/organisations/organisations.hooks.js.html +178 -0
- package/coverage/core/api/services/organisations/organisations.service.js.html +343 -0
- package/coverage/core/api/services/push/index.html +131 -0
- package/coverage/core/api/services/push/push.hooks.js.html +190 -0
- package/coverage/core/api/services/push/push.service.js.html +121 -0
- package/coverage/core/api/services/storage/index.html +131 -0
- package/coverage/core/api/services/storage/storage.hooks.js.html +190 -0
- package/coverage/core/api/services/storage/storage.service.js.html +172 -0
- package/coverage/core/api/services/tags/index.html +116 -0
- package/coverage/core/api/services/tags/tags.hooks.js.html +178 -0
- package/coverage/core/api/services/users/index.html +116 -0
- package/coverage/core/api/services/users/users.hooks.js.html +307 -0
- package/coverage/core/api/utils.js.html +118 -0
- package/coverage/core/common/errors.js.html +88 -0
- package/coverage/core/common/index.html +176 -0
- package/coverage/core/common/index.js.html +115 -0
- package/coverage/core/common/permissions.js.html +1048 -0
- package/coverage/core/common/schema.js.html +190 -0
- package/coverage/core/common/utils.js.html +220 -0
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +506 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/core/api/application.js.html +1870 -0
- package/coverage/lcov-report/core/api/authentication.js.html +742 -0
- package/coverage/lcov-report/core/api/db.js.html +793 -0
- package/coverage/lcov-report/core/api/hooks/hooks.authentication.js.html +313 -0
- package/coverage/lcov-report/core/api/hooks/hooks.authorisations.js.html +1243 -0
- package/coverage/lcov-report/core/api/hooks/hooks.groups.js.html +229 -0
- package/coverage/lcov-report/core/api/hooks/hooks.logger.js.html +163 -0
- package/coverage/lcov-report/core/api/hooks/hooks.model.js.html +955 -0
- package/coverage/lcov-report/core/api/hooks/hooks.organisations.js.html +541 -0
- package/coverage/lcov-report/core/api/hooks/hooks.push.js.html +253 -0
- package/coverage/lcov-report/core/api/hooks/hooks.query.js.html +862 -0
- package/coverage/lcov-report/core/api/hooks/hooks.schemas.js.html +298 -0
- package/coverage/lcov-report/core/api/hooks/hooks.service.js.html +319 -0
- package/coverage/lcov-report/core/api/hooks/hooks.storage.js.html +193 -0
- package/coverage/lcov-report/core/api/hooks/hooks.users.js.html +868 -0
- package/coverage/lcov-report/core/api/hooks/index.html +296 -0
- package/coverage/lcov-report/core/api/hooks/index.js.html +121 -0
- package/coverage/lcov-report/core/api/index.html +191 -0
- package/coverage/lcov-report/core/api/index.js.html +148 -0
- package/coverage/lcov-report/core/api/marshall.js.html +448 -0
- package/coverage/lcov-report/core/api/models/groups.model.mongodb.js.html +109 -0
- package/coverage/lcov-report/core/api/models/index.html +176 -0
- package/coverage/lcov-report/core/api/models/messages.model.mongodb.js.html +121 -0
- package/coverage/lcov-report/core/api/models/organisations.model.mongodb.js.html +94 -0
- package/coverage/lcov-report/core/api/models/tags.model.mongodb.js.html +115 -0
- package/coverage/lcov-report/core/api/models/users.model.mongodb.js.html +115 -0
- package/coverage/lcov-report/core/api/services/account/account.hooks.js.html +208 -0
- package/coverage/lcov-report/core/api/services/account/account.service.js.html +436 -0
- package/coverage/lcov-report/core/api/services/account/index.html +131 -0
- package/coverage/lcov-report/core/api/services/authorisations/authorisations.hooks.js.html +184 -0
- package/coverage/lcov-report/core/api/services/authorisations/authorisations.service.js.html +529 -0
- package/coverage/lcov-report/core/api/services/authorisations/index.html +131 -0
- package/coverage/lcov-report/core/api/services/databases/databases.hooks.js.html +193 -0
- package/coverage/lcov-report/core/api/services/databases/databases.service.js.html +100 -0
- package/coverage/lcov-report/core/api/services/databases/index.html +131 -0
- package/coverage/lcov-report/core/api/services/groups/groups.hooks.js.html +178 -0
- package/coverage/lcov-report/core/api/services/groups/index.html +116 -0
- package/coverage/lcov-report/core/api/services/import-export/import-export.hooks.js.html +184 -0
- package/coverage/lcov-report/core/api/services/import-export/import-export.service.js.html +118 -0
- package/coverage/lcov-report/core/api/services/import-export/index.html +131 -0
- package/coverage/lcov-report/core/api/services/index.html +116 -0
- package/coverage/lcov-report/core/api/services/index.js.html +556 -0
- package/coverage/lcov-report/core/api/services/mailer/index.html +131 -0
- package/coverage/lcov-report/core/api/services/mailer/mailer.hooks.js.html +190 -0
- package/coverage/lcov-report/core/api/services/mailer/mailer.service.js.html +118 -0
- package/coverage/lcov-report/core/api/services/messages/index.html +116 -0
- package/coverage/lcov-report/core/api/services/messages/messages.hooks.js.html +199 -0
- package/coverage/lcov-report/core/api/services/organisations/index.html +131 -0
- package/coverage/lcov-report/core/api/services/organisations/organisations.hooks.js.html +178 -0
- package/coverage/lcov-report/core/api/services/organisations/organisations.service.js.html +343 -0
- package/coverage/lcov-report/core/api/services/push/index.html +131 -0
- package/coverage/lcov-report/core/api/services/push/push.hooks.js.html +190 -0
- package/coverage/lcov-report/core/api/services/push/push.service.js.html +121 -0
- package/coverage/lcov-report/core/api/services/storage/index.html +131 -0
- package/coverage/lcov-report/core/api/services/storage/storage.hooks.js.html +190 -0
- package/coverage/lcov-report/core/api/services/storage/storage.service.js.html +172 -0
- package/coverage/lcov-report/core/api/services/tags/index.html +116 -0
- package/coverage/lcov-report/core/api/services/tags/tags.hooks.js.html +178 -0
- package/coverage/lcov-report/core/api/services/users/index.html +116 -0
- package/coverage/lcov-report/core/api/services/users/users.hooks.js.html +307 -0
- package/coverage/lcov-report/core/api/utils.js.html +118 -0
- package/coverage/lcov-report/core/common/errors.js.html +88 -0
- package/coverage/lcov-report/core/common/index.html +176 -0
- package/coverage/lcov-report/core/common/index.js.html +115 -0
- package/coverage/lcov-report/core/common/permissions.js.html +1048 -0
- package/coverage/lcov-report/core/common/schema.js.html +190 -0
- package/coverage/lcov-report/core/common/utils.js.html +220 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +506 -0
- package/coverage/lcov-report/map/api/hooks/hooks.catalog.js.html +457 -0
- package/coverage/lcov-report/map/api/hooks/hooks.features.js.html +397 -0
- package/coverage/lcov-report/map/api/hooks/hooks.query.js.html +1309 -0
- package/coverage/lcov-report/map/api/hooks/index.html +161 -0
- package/coverage/lcov-report/map/api/hooks/index.js.html +94 -0
- package/coverage/lcov-report/map/api/index.html +131 -0
- package/coverage/lcov-report/map/api/index.js.html +139 -0
- package/coverage/lcov-report/map/api/marshall.js.html +178 -0
- package/coverage/lcov-report/map/api/models/alerts.model.mongodb.js.html +106 -0
- package/coverage/lcov-report/map/api/models/catalog.model.mongodb.js.html +127 -0
- package/coverage/lcov-report/map/api/models/features.model.mongodb.js.html +196 -0
- package/coverage/lcov-report/map/api/models/index.html +161 -0
- package/coverage/lcov-report/map/api/models/projects.model.mongodb.js.html +109 -0
- package/coverage/lcov-report/map/api/services/alerts/alerts.hooks.js.html +274 -0
- package/coverage/lcov-report/map/api/services/alerts/alerts.service.js.html +610 -0
- package/coverage/lcov-report/map/api/services/alerts/index.html +131 -0
- package/coverage/lcov-report/map/api/services/catalog/catalog.hooks.js.html +310 -0
- package/coverage/lcov-report/map/api/services/catalog/index.html +116 -0
- package/coverage/lcov-report/map/api/services/daptiles/daptiles.service.js.html +1510 -0
- package/coverage/lcov-report/map/api/services/daptiles/index.html +116 -0
- package/coverage/lcov-report/map/api/services/features/features.hooks.js.html +241 -0
- package/coverage/lcov-report/map/api/services/features/features.service.js.html +241 -0
- package/coverage/lcov-report/map/api/services/features/index.html +131 -0
- package/coverage/lcov-report/map/api/services/index.html +116 -0
- package/coverage/lcov-report/map/api/services/index.js.html +817 -0
- package/coverage/lcov-report/map/api/services/projects/index.html +116 -0
- package/coverage/lcov-report/map/api/services/projects/projects.hooks.js.html +439 -0
- package/coverage/lcov-report/map/common/dynamic-grid-source.js.html +466 -0
- package/coverage/lcov-report/map/common/errors.js.html +94 -0
- package/coverage/lcov-report/map/common/geotiff-grid-source.js.html +541 -0
- package/coverage/lcov-report/map/common/grid.js.html +1612 -0
- package/coverage/lcov-report/map/common/index.html +371 -0
- package/coverage/lcov-report/map/common/index.js.html +172 -0
- package/coverage/lcov-report/map/common/meteo-model-grid-source.js.html +556 -0
- package/coverage/lcov-report/map/common/moment-utils.js.html +157 -0
- package/coverage/lcov-report/map/common/opendap-grid-source.js.html +868 -0
- package/coverage/lcov-report/map/common/opendap-utils.js.html +826 -0
- package/coverage/lcov-report/map/common/permissions.js.html +124 -0
- package/coverage/lcov-report/map/common/time-based-grid-source.js.html +418 -0
- package/coverage/lcov-report/map/common/tms-utils.js.html +274 -0
- package/coverage/lcov-report/map/common/wcs-grid-source.js.html +364 -0
- package/coverage/lcov-report/map/common/wcs-utils.js.html +586 -0
- package/coverage/lcov-report/map/common/weacast-grid-source.js.html +1033 -0
- package/coverage/lcov-report/map/common/wfs-utils.js.html +574 -0
- package/coverage/lcov-report/map/common/wms-utils.js.html +451 -0
- package/coverage/lcov-report/map/common/wmts-utils.js.html +547 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +196 -0
- package/coverage/lcov.info +11245 -0
- package/coverage/map/api/hooks/hooks.catalog.js.html +457 -0
- package/coverage/map/api/hooks/hooks.features.js.html +397 -0
- package/coverage/map/api/hooks/hooks.query.js.html +1309 -0
- package/coverage/map/api/hooks/index.html +161 -0
- package/coverage/map/api/hooks/index.js.html +94 -0
- package/coverage/map/api/index.html +131 -0
- package/coverage/map/api/index.js.html +139 -0
- package/coverage/map/api/marshall.js.html +178 -0
- package/coverage/map/api/models/alerts.model.mongodb.js.html +106 -0
- package/coverage/map/api/models/catalog.model.mongodb.js.html +127 -0
- package/coverage/map/api/models/features.model.mongodb.js.html +196 -0
- package/coverage/map/api/models/index.html +161 -0
- package/coverage/map/api/models/projects.model.mongodb.js.html +109 -0
- package/coverage/map/api/services/alerts/alerts.hooks.js.html +274 -0
- package/coverage/map/api/services/alerts/alerts.service.js.html +610 -0
- package/coverage/map/api/services/alerts/index.html +131 -0
- package/coverage/map/api/services/catalog/catalog.hooks.js.html +310 -0
- package/coverage/map/api/services/catalog/index.html +116 -0
- package/coverage/map/api/services/daptiles/daptiles.service.js.html +1510 -0
- package/coverage/map/api/services/daptiles/index.html +116 -0
- package/coverage/map/api/services/features/features.hooks.js.html +241 -0
- package/coverage/map/api/services/features/features.service.js.html +241 -0
- package/coverage/map/api/services/features/index.html +131 -0
- package/coverage/map/api/services/index.html +116 -0
- package/coverage/map/api/services/index.js.html +817 -0
- package/coverage/map/api/services/projects/index.html +116 -0
- package/coverage/map/api/services/projects/projects.hooks.js.html +439 -0
- package/coverage/map/common/dynamic-grid-source.js.html +466 -0
- package/coverage/map/common/errors.js.html +94 -0
- package/coverage/map/common/geotiff-grid-source.js.html +541 -0
- package/coverage/map/common/grid.js.html +1612 -0
- package/coverage/map/common/index.html +371 -0
- package/coverage/map/common/index.js.html +172 -0
- package/coverage/map/common/meteo-model-grid-source.js.html +556 -0
- package/coverage/map/common/moment-utils.js.html +157 -0
- package/coverage/map/common/opendap-grid-source.js.html +868 -0
- package/coverage/map/common/opendap-utils.js.html +826 -0
- package/coverage/map/common/permissions.js.html +124 -0
- package/coverage/map/common/time-based-grid-source.js.html +418 -0
- package/coverage/map/common/tms-utils.js.html +274 -0
- package/coverage/map/common/wcs-grid-source.js.html +364 -0
- package/coverage/map/common/wcs-utils.js.html +586 -0
- package/coverage/map/common/weacast-grid-source.js.html +1033 -0
- package/coverage/map/common/wfs-utils.js.html +574 -0
- package/coverage/map/common/wms-utils.js.html +451 -0
- package/coverage/map/common/wmts-utils.js.html +547 -0
- package/coverage/prettify.css +1 -0
- package/coverage/prettify.js +2 -0
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +196 -0
- package/coverage/tmp/coverage-280506-1731704745613-0.json +1 -0
- package/coverage/tmp/coverage-280518-1731704745599-0.json +1 -0
- package/coverage/tmp/coverage-280529-1731704745588-0.json +1 -0
- package/coverage/tmp/coverage-280541-1731704745574-0.json +1 -0
- package/coverage/tmp/coverage-280548-1731704745545-0.json +1 -0
- package/extras/css/core.variables.scss +32 -8
- package/extras/icons/attribution.png +0 -0
- package/map/api/services/catalog/catalog.hooks.js +5 -7
- package/map/api/services/features/features.hooks.js +1 -1
- package/map/client/cesium/utils/utils.style.js +11 -2
- package/map/client/components/KAttribution.vue +108 -0
- package/map/client/components/KPositionIndicator.vue +11 -18
- package/map/client/components/KProjectMenu.vue +4 -4
- package/map/client/components/catalog/KCategoryItem.vue +74 -0
- package/map/client/components/catalog/KLayerCategories.vue +24 -12
- package/map/client/components/catalog/KLayersPanel.vue +139 -116
- package/map/client/components/catalog/KProjectSelector.vue +29 -17
- package/map/client/components/catalog/KProjectsPanel.vue +19 -35
- package/map/client/components/catalog/KViewSelector.vue +37 -25
- package/map/client/components/catalog/KViewsPanel.vue +19 -35
- package/map/client/components/form/KLocationField.vue +1 -2
- package/map/client/components/legend/KLegend.vue +34 -34
- package/map/client/components/location/KLocationCardSection.vue +18 -22
- package/map/client/components/location/KLocationMap.vue +36 -38
- package/map/client/components/location/KLocationTimeLineCard.vue +147 -0
- package/map/client/components/location/KLocationTip.vue +12 -2
- package/map/client/components/widget/KInformationBox.vue +0 -4
- package/map/client/components/widget/KStackableTimeSeries.vue +8 -1
- package/map/client/components/widget/KTimeSeries.vue +1 -1
- package/map/client/composables/highlight.js +29 -31
- package/map/client/composables/probe.js +7 -3
- package/map/client/composables/weather.js +71 -31
- package/map/client/i18n/map_en.json +3 -0
- package/map/client/i18n/map_fr.json +3 -0
- package/map/client/init.js +4 -3
- package/map/client/leaflet/ShapeMarker.js +1 -1
- package/map/client/leaflet/TiledFeatureLayer.js +2 -3
- package/map/client/leaflet/utils/utils.events.js +1 -1
- package/map/client/leaflet/utils/utils.style.js +20 -8
- package/map/client/mixins/globe/mixin.base-globe.js +111 -13
- package/map/client/mixins/globe/mixin.file-layers.js +10 -10
- package/map/client/mixins/globe/mixin.geojson-layers.js +90 -15
- package/map/client/mixins/globe/mixin.style.js +2 -0
- package/map/client/mixins/index.js +0 -1
- package/map/client/mixins/map/index.js +1 -0
- package/map/client/mixins/map/mixin.base-map.js +21 -2
- package/map/client/mixins/map/mixin.canvas-layers.js +7 -2
- package/map/client/mixins/map/mixin.edit-layers.js +12 -4
- package/map/client/mixins/map/mixin.file-layers.js +3 -0
- package/map/client/mixins/map/mixin.geojson-layers.js +92 -6
- package/map/client/mixins/map/mixin.pmtiles-layers.js +106 -0
- package/map/client/mixins/mixin.activity.js +8 -3
- package/map/client/mixins/mixin.feature-service.js +73 -32
- package/map/client/mixins/mixin.levels.js +1 -0
- package/map/client/mixins/mixin.weacast.js +10 -87
- package/map/client/utils/index.js +1 -0
- package/map/client/utils/utils.capture.js +1 -1
- package/map/client/utils/utils.catalog.js +7 -7
- package/map/client/utils/utils.features.js +59 -1
- package/map/client/utils/utils.js +10 -0
- package/map/client/utils/utils.layers.js +8 -0
- package/map/client/utils/utils.time-series.js +195 -0
- package/map/client/utils/utils.weacast.js +102 -0
- package/package.json +6 -6
- package/scripts/init_runner.sh +2 -2
- package/scripts/kash/CHANGELOG.md +12 -0
- package/scripts/kash/README.md +2 -0
- package/scripts/kash/kash.sh +34 -32
- package/scripts/run_tests.sh +2 -2
- package/scripts/setup_workspace.sh +24 -6
- package/test/api/core/hooks.test.js +6 -3
- package/test/api/core/test-log-2023-12-19.log +7 -0
- package/test/api/core/test-log-2024-01-04.log +14 -0
- package/test/api/core/test-log-2024-05-14.log +6 -0
- package/test/api/core/{test-log-2024-04-23.log → test-log-2024-06-06.log} +3 -3
- package/test/api/core/test-log-2024-06-26.log +25 -0
- package/test/api/core/test-log-2024-06-28.log +2 -0
- package/test/api/core/test-log-2024-07-09.log +0 -0
- package/test/api/core/test-log-2024-08-13.log +69 -0
- package/test/api/core/test-log-2024-10-28.log +53 -0
- package/test/api/core/test-log-2024-11-05.log +30 -0
- package/test/api/core/test-log-2024-11-15.log +23 -0
- package/test/api/core/test-log-2024-11-18.log +0 -0
- package/test/api/core/test-log-2024-12-03.log +30 -0
- package/test/api/map/alerts.test.js +3 -1
- package/test/api/map/config/layers.json +3 -1
- package/test/api/map/index.test.js +18 -1
- package/test/api/map/test-log-2023-11-24.log +121 -0
- package/test/api/map/test-log-2023-12-12.log +29 -0
- package/test/api/map/test-log-2023-12-13.log +5 -0
- package/test/api/map/test-log-2024-01-04.log +2 -0
- package/test/api/map/test-log-2024-01-11.log +1 -0
- package/test/api/map/test-log-2024-01-25.log +19 -0
- package/test/api/map/test-log-2024-06-06.log +39 -0
- package/test/api/map/test-log-2024-08-13.log +13 -0
- package/test/api/map/test-log-2024-08-20.log +55 -0
- package/test/api/map/test-log-2024-09-09.log +92 -0
- package/test/api/map/test-log-2024-10-28.log +11 -0
- package/test/client/core/utils.js +13 -0
- package/test/client/map/api.js +34 -0
- package/test/client/map/catalog.js +6 -2
- package/test/client/map/index.js +1 -0
- package/test/client/map/utils.js +4 -2
- package/core/client/components/collection/KList.vue +0 -135
- package/core/client/components/layout/KPageSticky.vue +0 -53
- package/core/client/mixins/mixin.base-collection.js +0 -162
- package/core/client/utils/utils.data.js +0 -22
- package/map/client/mixins/mixin.catalog-panel.js +0 -26
- package/test/api/core/test-log-2024-04-22.log +0 -84
|
@@ -1,162 +0,0 @@
|
|
|
1
|
-
import _ from 'lodash'
|
|
2
|
-
import logger from 'loglevel'
|
|
3
|
-
import { getLocale } from '../utils/utils.locale.js'
|
|
4
|
-
|
|
5
|
-
export const baseCollection = {
|
|
6
|
-
emits: [
|
|
7
|
-
'collection-refreshed',
|
|
8
|
-
'selection-changed',
|
|
9
|
-
'item-toggled'
|
|
10
|
-
],
|
|
11
|
-
props: {
|
|
12
|
-
// This value can be overriden in activities if they want to manage pagination by themselves
|
|
13
|
-
// nbItemsPerPage = 0 means that the client does not handle pagination and server defaults will be used
|
|
14
|
-
nbItemsPerPage: {
|
|
15
|
-
type: Number,
|
|
16
|
-
default: 12
|
|
17
|
-
},
|
|
18
|
-
// This value indicate if items of each page replace or are appended to previous ones
|
|
19
|
-
appendItems: {
|
|
20
|
-
type: Boolean,
|
|
21
|
-
default: false
|
|
22
|
-
},
|
|
23
|
-
// Only invoke refresh at most once per every refreshThrottle milliseconds
|
|
24
|
-
refreshThrottle: {
|
|
25
|
-
type: Number,
|
|
26
|
-
default: 500
|
|
27
|
-
}
|
|
28
|
-
},
|
|
29
|
-
computed: {
|
|
30
|
-
nbPages () {
|
|
31
|
-
return (this.nbItemsPerPage > 0 ? Math.ceil(this.nbTotalItems / this.nbItemsPerPage) : 1)
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
data () {
|
|
35
|
-
return {
|
|
36
|
-
items: [],
|
|
37
|
-
nbTotalItems: 0,
|
|
38
|
-
currentPage: 1
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
methods: {
|
|
42
|
-
subscribe (query) {
|
|
43
|
-
// Remove previous listener if any
|
|
44
|
-
this.unsubscribe()
|
|
45
|
-
this.itemListener = this.getService().watch({ listStrategy: this.listStrategy || 'smart' })
|
|
46
|
-
.find({ query })
|
|
47
|
-
.subscribe(response => {
|
|
48
|
-
// Manage GeoJson features collection as well
|
|
49
|
-
if (response.type === 'FeatureCollection') {
|
|
50
|
-
this.items = response.features
|
|
51
|
-
} else if (this.appendItems) {
|
|
52
|
-
// Append the response ensuring there is no duplicates
|
|
53
|
-
this.items = _.unionBy(response.data, this.items, '_id')
|
|
54
|
-
// We keep order from the updated list as depending on the sorting criteria a new item might have to be pushed on top of current items
|
|
55
|
-
const sortQuery = _.get(this.getCollectionBaseQuery(), '$sort')
|
|
56
|
-
if (sortQuery) {
|
|
57
|
-
// By default orderBy is case sensitive while using collation we want to perform case insensitive sort
|
|
58
|
-
this.items = _.orderBy(this.items,
|
|
59
|
-
// Sort function for each sort property
|
|
60
|
-
_.map(_.keys(sortQuery), property => {
|
|
61
|
-
return item => {
|
|
62
|
-
const value = _.get(item, property)
|
|
63
|
-
return (typeof value === 'string' ? value.toLowerCase() : value)
|
|
64
|
-
}
|
|
65
|
-
}),
|
|
66
|
-
// Sort order for each sort property
|
|
67
|
-
_.map(_.values(sortQuery), value => { return value > 0 ? 'asc' : 'desc' }))
|
|
68
|
-
}
|
|
69
|
-
} else {
|
|
70
|
-
this.items = response.data
|
|
71
|
-
}
|
|
72
|
-
this.nbTotalItems = response.total
|
|
73
|
-
this.onCollectionRefreshed()
|
|
74
|
-
}, error => {
|
|
75
|
-
logger.error(error)
|
|
76
|
-
})
|
|
77
|
-
},
|
|
78
|
-
unsubscribe () {
|
|
79
|
-
if (this.itemListener) {
|
|
80
|
-
this.itemListener.unsubscribe()
|
|
81
|
-
this.itemListener = null
|
|
82
|
-
}
|
|
83
|
-
},
|
|
84
|
-
getCollectionBaseQuery () {
|
|
85
|
-
// This method should be overriden in collections
|
|
86
|
-
return {}
|
|
87
|
-
},
|
|
88
|
-
getCollectionFilterQuery () {
|
|
89
|
-
// This method should be overriden in collections
|
|
90
|
-
return {}
|
|
91
|
-
},
|
|
92
|
-
getCollectionPaginationQuery () {
|
|
93
|
-
// This method can be overriden in collections
|
|
94
|
-
if (this.nbItemsPerPage > 0) {
|
|
95
|
-
return {
|
|
96
|
-
$limit: this.nbItemsPerPage,
|
|
97
|
-
$skip: (this.currentPage - 1) * this.nbItemsPerPage
|
|
98
|
-
}
|
|
99
|
-
} else return {}
|
|
100
|
-
},
|
|
101
|
-
resetCollection () {
|
|
102
|
-
// Reset pagination and start again refreshing the collection
|
|
103
|
-
this.items = []
|
|
104
|
-
this.currentPage = 1
|
|
105
|
-
this.refreshCollection()
|
|
106
|
-
},
|
|
107
|
-
onPageChanged () {
|
|
108
|
-
this.refreshCollection()
|
|
109
|
-
},
|
|
110
|
-
onItemToggled (item, toggled) {
|
|
111
|
-
this.$emit('item-toggled', item, toggled)
|
|
112
|
-
},
|
|
113
|
-
onItemSelected (item, section) {
|
|
114
|
-
this.$emit('selection-changed', item, section)
|
|
115
|
-
},
|
|
116
|
-
onItemsSelected (items) {
|
|
117
|
-
this.$emit('selection-changed', items)
|
|
118
|
-
},
|
|
119
|
-
onCollectionRefreshed () {
|
|
120
|
-
this.$emit('collection-refreshed', this.items)
|
|
121
|
-
},
|
|
122
|
-
onItemsUpdated (items) {
|
|
123
|
-
// When we append items some items of the previous pages might have been updated.
|
|
124
|
-
// In this case we need to reset the full collection as Rx only tracks changes on the current page
|
|
125
|
-
let updatedItems = (Array.isArray(items) ? items : [items])
|
|
126
|
-
// We keep order from the updated list as depending on the sorting criteria a new item might have to be pushed on top of current items
|
|
127
|
-
updatedItems = _.intersectionWith(this.items, updatedItems, (item1, item2) => (item1._id.toString() === item2._id.toString()))
|
|
128
|
-
if (updatedItems.length > 0) this.resetCollection()
|
|
129
|
-
}
|
|
130
|
-
},
|
|
131
|
-
created () {
|
|
132
|
-
// Avoid initiating too much request as the same time, this might be the case
|
|
133
|
-
// when async UI components update simultaneously the base/filter query
|
|
134
|
-
// see https://github.com/kalisio/kdk/issues/432
|
|
135
|
-
const refreshCollection = () => {
|
|
136
|
-
// Add locale to perform sorting (i.e. collation) correctly w.r.t. user's language
|
|
137
|
-
const fullQuery = Object.assign({ $locale: getLocale() },
|
|
138
|
-
this.getCollectionBaseQuery(),
|
|
139
|
-
this.getCollectionFilterQuery(),
|
|
140
|
-
this.getCollectionPaginationQuery())
|
|
141
|
-
// Find the desired items
|
|
142
|
-
this.subscribe(fullQuery)
|
|
143
|
-
}
|
|
144
|
-
this.refreshCollection = _.throttle(refreshCollection, this.refreshThrottle, { leading: false })
|
|
145
|
-
|
|
146
|
-
if (this.appendItems) {
|
|
147
|
-
const service = this.getService()
|
|
148
|
-
service.on('patched', this.onItemsUpdated)
|
|
149
|
-
service.on('updated', this.onItemsUpdated)
|
|
150
|
-
service.on('removed', this.onItemsUpdated)
|
|
151
|
-
}
|
|
152
|
-
},
|
|
153
|
-
beforeUnmount () {
|
|
154
|
-
this.unsubscribe()
|
|
155
|
-
if (this.appendItems) {
|
|
156
|
-
const service = this.getService()
|
|
157
|
-
service.off('patched', this.onItemsUpdated)
|
|
158
|
-
service.off('updated', this.onItemsUpdated)
|
|
159
|
-
service.off('removed', this.onItemsUpdated)
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import _ from 'lodash'
|
|
2
|
-
import { Units } from '../units.js'
|
|
3
|
-
|
|
4
|
-
export function convertData (data, valuePaths, sourceUnit, targetUnit) {
|
|
5
|
-
if (!Array.isArray(valuePaths)) valuePaths = [valuePaths]
|
|
6
|
-
_.forEach(data, document => {
|
|
7
|
-
_.forEach(valuePaths, valuePath => {
|
|
8
|
-
const value = _.get(document, valuePath)
|
|
9
|
-
if (value) _.set(document, valuePath, Units.convert(value, sourceUnit.name, targetUnit.name))
|
|
10
|
-
})
|
|
11
|
-
})
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export function convertTimeSerie (data, variable, valuePaths) {
|
|
15
|
-
if (!Array.isArray(valuePaths)) valuePaths = [valuePaths]
|
|
16
|
-
const unit = variable.unit
|
|
17
|
-
const targetUnit = variable.targetUnit || Units.getDefaultUnit(unit.name)
|
|
18
|
-
if (unit.name !== targetUnit.name) {
|
|
19
|
-
convertData(data, valuePaths, unit, targetUnit)
|
|
20
|
-
variable.unit = targetUnit
|
|
21
|
-
}
|
|
22
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
export const catalogPanel = {
|
|
2
|
-
computed: {
|
|
3
|
-
panelStyle () {
|
|
4
|
-
const screenHeight = this.$q.screen.height
|
|
5
|
-
this.scrollAreaMaxHeight = screenHeight * 0.75 // 75vh
|
|
6
|
-
this.scrollAreaMinWidth = 390
|
|
7
|
-
if (this.$q.screen.lt.sm) {
|
|
8
|
-
this.scrollAreaMaxHeight = screenHeight * 0.6
|
|
9
|
-
this.scrollAreaMinWidth = 300
|
|
10
|
-
} else if (this.$q.screen.lt.md) {
|
|
11
|
-
this.scrollAreaMaxHeight = screenHeight * 0.65
|
|
12
|
-
this.scrollAreaMinWidth = 330
|
|
13
|
-
} else if (this.$q.screen.lt.lg) {
|
|
14
|
-
this.scrollAreaMaxHeight = screenHeight * 0.7
|
|
15
|
-
this.scrollAreaMinWidth = 360
|
|
16
|
-
}
|
|
17
|
-
return `height: ${this.scrollAreaMaxHeight}px; min-width: ${this.scrollAreaMinWidth}px;'`
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
data () {
|
|
21
|
-
return {
|
|
22
|
-
scrollAreaMaxHeight: 0,
|
|
23
|
-
scrollAreaMinWidth: 390
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|
|
@@ -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"}
|